@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');
/* --------------- Style to null --------------- */
*{-moz-box-sizing:border-box;box-sizing:border-box;}html,body,div,span,h1,h2,h3,h4,h5,h6,p,em,img,strong,sub,sup,b,u,i,dl,dt,dd,ol,ul,li,fieldset,form,label,table,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,a,footer,header,menu,nav,section,summary,time,mark,audio,video{border:0;outline:0;vertical-align:baseline;background:transparent;font-size:100%;margin:0;padding:0;}a{background:transparent;}table{border-collapse:collapse;border-spacing:0;}td,td img{vertical-align:top;}input,select,button,textarea{font-size:12px;font-family:Arial, Helvetica, sans-serif;margin:0;}input[type="checkbox"]{vertical-align:bottom;}input[type="radio"]{vertical-align:text-bottom;}sub{vertical-align:sub;font-size:smaller;}sup{vertical-align:super;font-size:smaller;}article,aside,details,figcaption,figure,footer,header,menu,nav,section{display:block;}ul,ol{list-style:none;}html{overflow-y:scroll;overflow-x:auto;}html,body{height:100%;}body{line-height:1;color:#000;text-align:left;z-index:1;position:relative;}input [type='text']{padding:0;}textarea{resize:none;overflow:auto;}label,input[type="button"],input[type="submit"],button{cursor:pointer;}input[type="button"],input[type="reset"],input[type="submit"],button,input[type="text"],input[type="password"],textarea,input[type="email"],input[type="tel"],input[type="phone"],input[type="number"]{-webkit-appearance:none;}a,a:visited,a:hover,a:focus,a:active{text-decoration:none;}input[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border:0;padding:0;}input:invalid{outline:none;-moz-box-shadow:none;border:none;}input,textarea,input[type="search"]:focus,:focus{outline:none;}
body {
    background: var(--bg-main);
    font-family: 'Rubik', sans-serif;
}
p {
    color: inherit;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}
/* --------------- Style to null --------------- */

/*
    main styles
    author: Roman Bondar
    version: 15.07.2025
*/

:root {
    --bg-main: #fff;
    --bg-2: linear-gradient(to left, #FFD270, #FFAF02);
    --bg-3: var(--brand-color-1);
    --brand-color-1: #FFBB00;
    --font-color-1: #0E2F4B;
    --max-width: 1210px;
    --inline-paddings: 20px;
    --left-column-width: 500px;
}

/* ------------ site ------------ */
.site__centered {
    max-width: var(--max-width);
    padding: 0 var(--inline-paddings);
    margin: 0 auto;
}
.site__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
}
/* ------------ /site ------------ */

/* ------------ hero ------------ */
.hero {
    padding-top: 37px;
    background: linear-gradient(#fff, #FFB209);
}
.hero__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
}
.hero__txt {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.hero__part p {
    line-height: 1.2;
}
.hero__pic-mob {
    display: block;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}
.hero__pic-desktop {
    display: none;
}
/* ------------ /hero ------------ */

/* ------------ text-section ------------ */
.text-section {
    padding: 53px 0 49px;
}
.text-section__wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.text-section__inner {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
/* ------------ /text-section ------------ */

/* ------------ custom-slider ------------ */
.custom-slider {
    background: var(--bg-2);
}
.custom-slider__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    user-select: none;
}
.custom-slider__pic img {
    display: block;
    max-width: 100%;
    height: 315px;
    object-fit: contain;
    margin-inline: auto;
}
.custom-slider__inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    color: #0E2F4B;
}
.custom-slider__inner ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.custom-slider__inner li {
    line-height: 1.4;
}
.custom-slider__inner ul li {
    position: relative;
    padding-left: 18px;
}
.custom-slider__inner ul li:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    color: inherit;
    background: currentColor;
    border-radius: 50%;
}
.custom-slider__function {
    line-height: 1.4;
}
.custom-slider__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.custom-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.custom-slider .swiper-pagination-bullet-active {
    opacity: 1;
}
.custom-slider .swiper-button-next,
.custom-slider .swiper-button-prev {
    display: none;
}
.custom-slider .custom-slider__swiper {
    padding-bottom: 70px;
}
.custom-slider .swiper-pagination {
    bottom: 30px;
}
/* ------------ /custom-slider ------------ */

@media screen and (min-width: 768px) {
    /* ------------ site ------------ */
    .site__title {
        font-size: 36px;
    }
    /* ------------ /site ------------ */

    /* ------------ hero ------------ */
    .hero {
        padding-top: 52px;
        background: var(--bg-3);
        overflow: hidden;
    }
    .hero__wrap {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
    }
    .hero__part {
        width: 300px;
        padding: 41px 20px 0 0;
    }
    .hero__part + .hero__part {
        width: calc(100% - 300px);
        padding: 0;
    }
    .hero__pic-wrap {
        position: relative;
    }
    .hero__pic-wrap:before {
        content: '';
        position: absolute;
        bottom: -115px;
        left: 50%;
        margin-left: -198px;
        width: 403px;
        height: 403px;
        border-radius: 50%;
        background: rgba(255,255,255, 0.3);
    }
    .hero__pic-wrap:after {
        content: '';
        position: absolute;
        bottom: -134px;
        left: 50%;
        margin-left: -215px;
        width: 437px;
        height: 437px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255, 0.3);
    }
    .hero__pic-mob {
        display: none;
    }
    .hero__pic-desktop {
        display: block;
        position: relative;
        z-index: 1;
        max-width: 281px;
        margin-inline: auto;
    }
    /* ------------ /hero ------------ */

    /* ------------ text-section ------------ */
    .text-section {
        padding: 91px 0;
    }
    .text-section__wrap {
        gap: 21px;
    }
    /* ------------ /text-section ------------ */

    /* ------------ custom-slider ------------ */
    .custom-slider__pic img {
        height: 302px;
    }
    /* ------------ /custom-slider ------------ */
}

@media screen and (min-width: 1024px) {
    /* ------------ hero ------------ */
    .hero {
        padding-top: 0;
    }
    .hero__part {
        display: flex;
        align-items: center;
        width: var(--left-column-width);
        padding-top: 0;
    }
    .hero__part + .hero__part {
        align-items: flex-end;
        justify-content: flex-end;
        width: calc(100% - var(--left-column-width));
        padding: 22px 57px 0 0;
    }
    .hero__title {
        font-size: 46px;
    }
    .hero__pic-desktop {
        max-width: 100%;
    }
    /* ------------ /hero ------------ */

    /* ------------ text-section ------------ */
    .text-section {
        padding: 120px 0;
    }
    .text-section__wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    .text-section__part {
        width: var(--left-column-width);
        padding-right: 20px;
    }
    .text-section__part + .text-section__part {
        width: calc(100% - var(--left-column-width));
    }
    /* ------------ /text-section ------------ */

    /* ------------ custom-slider ------------ */
    .custom-slider__item {
        flex-direction: row;
        gap: 0;
    }
    .custom-slider__pic {
        width: var(--left-column-width);
        padding-right: 20px;
    }
    .custom-slider__pic img {
        height: auto;
    }
    .custom-slider__inner {
        width: calc(100% - var(--left-column-width));
        padding: 37px 0 60px;
        gap: 10px;
    }
    .custom-slider__inner ul {
        gap: 12px;
    }
    .custom-slider__function {
        margin-bottom: -7px;
    }
    .custom-slider__title {
        font-size: 36px;
        margin-bottom: 21px;
    }
    .custom-slider__controls {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 46px;
        left: 500px;
    }
    .custom-slider .swiper-pagination-bullet {
        margin: 0 10px !important;
        width: 9px;
        height: 9px;
    }
    .custom-slider .swiper-button-next,
    .custom-slider .swiper-button-prev {
        position: relative;
        display: block;
        top: unset;
        right: auto;
        bottom: unset;
        left: unset;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0;
        transition: background-color 0.3s ease;
    }
    .custom-slider .swiper-button-next:after,
    .custom-slider .swiper-button-prev:after {
        content: '';
        display: block;
        position: absolute;
        top: 17px;
        width: 7px;
        height: 7px;
        background: none;
        border-bottom: 2px solid var(--font-color-1);
        border-left: 2px solid var(--font-color-1);
    }
    .custom-slider .swiper-button-next:after {
        right: 19px;
        transform: translateY(0) rotate(-135deg);
    }
    .custom-slider .swiper-button-prev:after {
        left: 19px;
        transform: translateY(0) rotate(45deg);
    }
    .custom-slider .swiper-button-next:hover,
    .custom-slider .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 0.7);
    }
    .custom-slider .custom-slider__swiper {
        padding-bottom: 0;
    }
    .custom-slider .swiper-pagination {
        position: relative;
        top: unset;
        bottom: unset;
        left: unset;
        width: auto;
        padding: 0 10px;
    }
    /* ------------ /custom-slider ------------ */
}
