
/*------------------------
    Fonts
------------------------*/
@font-face
{
    font-family: "Gilroy";
    font-weight: 400;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-Regular.woff") format("woff"),
    url("../fonts/Gilroy-Regular.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 400;
    font-style: italic;

    font-display: swap;
    src: url("../fonts/Gilroy-RegularItalic.woff") format("woff"),
    url("../fonts/Gilroy-RegularItalic.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 500;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-Medium.woff") format("woff"),
    url("../fonts/Gilroy-Medium.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 600;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-SemiBold.woff") format("woff"),
    url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 600;
    font-style: italic;

    font-display: swap;
    src: url("../fonts/Gilroy-SemiboldItalic.woff") format("woff"),
    url("../fonts/Gilroy-SemiboldItalic.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-Bold.woff") format("woff"),
    url("../fonts/Gilroy-Bold.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 700;
    font-style: italic;

    font-display: swap;
    src: url("../fonts/Gilroy-BoldItalic.woff") format("woff"),
    url("../fonts/Gilroy-BoldItalic.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 800;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-Extrabold.woff") format("woff"),
    url("../fonts/Gilroy-Extrabold.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 800;
    font-style: italic;

    font-display: swap;
    src: url("../fonts/Gilroy-ExtraboldItalic.woff") format("woff"),
    url("../fonts/Gilroy-ExtraboldItalic.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 900;
    font-style: normal;

    font-display: swap;
    src: url("../fonts/Gilroy-Black.woff") format("woff"),
    url("../fonts/Gilroy-Black.ttf") format("truetype");
}

@font-face
{
    font-family: "Gilroy";
    font-weight: 900;
    font-style: italic;

    font-display: swap;
    src: url("../fonts/Gilroy-BlackItalic.woff") format("woff"),
    url("../fonts/Gilroy-BlackItalic.ttf") format("truetype");
}


/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body
{
    margin: 0;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    -webkit-tap-highlight-color: transparent;
    text-decoration-skip: objects;
    text-rendering: optimizeLegibility;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --font_family: "Gilroy", sans-serif;
    --scroll_width: 17px;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


@media (min-width: 1025px)
{
    html.custom_scroll,
    html.custom_scroll *
    {
        scrollbar-color: #C1C1C1 #F1F1F1;
        scrollbar-width: thin;
    }

    html.custom_scroll ::-webkit-scrollbar
    {
        width: 12px;
        height: 12px;

        background-color: #F1F1F1;
    }

    html.custom_scroll ::-webkit-scrollbar-track
    {
        background-color: #F1F1F1;
    }

    html.custom_scroll ::-webkit-scrollbar-thumb
    {
        border: 2px solid #F1F1F1;
        background-color: #C1C1C1;
        -webkit-box-shadow: none;
                box-shadow: none;
    }
}


body
{
    color: #FFF;
    font: 16px/1.5 var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    background: #202260;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}

.main
{
    flex: 1 0 auto;
}


.cont
{
    position: relative;

    width: 100%;
    max-width: 1294px;
    margin: 0 auto;
    padding: 0 20px;
}


.lazyload
{
    opacity: 0;

    transition: opacity .5s linear;
}

.lazyload.loaded
{
    opacity: 1;
}


._flex
{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}


/*------------
    Header
------------*/
.header
{
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;

    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;

    background: #141437;

    transition: background .2s linear, padding-top .2s linear, padding-bottom .2s linear;
}

.header.fixed
{
    position: fixed;
}

.header .cont
{
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.header__logo img
{
    display: block;
	max-width: 157px;
}

.mob-menu-btn
{
    position: relative;
    z-index: 100;

    display: none;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 32px;
    height: 32px;
}

.mob-menu-btn span
{
    position: relative;

    display: block;

    width: 100%;
    height: 3px;

    background: #FFE600;
}

.mob-menu-btn span + span
{
    margin-top: 5px;
}

.mob-menu-btn._active span:nth-child(2)
{
    opacity: 0;
}

.mob-menu-btn._active span:nth-child(1)
{
    top: 8px;

    width: 100%;

    transform: rotate(45deg);
}

.mob-menu-btn._active span:nth-child(3)
{
    top: -8px;

    width: 100%;

    transform: rotate(-45deg);
}


.header__menu-item + .header__menu-item
{
    margin-left: 24px;
}

.header__menu-btn
{
    position: relative;

    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;

    display: block;

    width: 100%;
    padding: 6px 0;

    text-align: center;
    text-transform: uppercase;

    transition: color .2s linear;
}

.header__menu-btn::after
{
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: currentColor;

    transition: transform .2s linear;
    transform: scale(0);
}

@media (any-hover: hover)
{
    .header__menu-btn:hover::after
    {
        transform: scale(1);
    }
}

@media (min-width: 1024px)
{
    .header__menu-btn._active::after
    {
        transform: scale(1);
    }
}

.header__links-item + .header__links-item
{
    margin-left: 10px;
}

.header__login
{
    color: #FFE600;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 45px;

    display: inline-block;

    padding: 0 23px;

    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #FFF;
    border-radius: 10px;
    background: #1E1D5B;
    box-shadow: 0px -4px 0px #FFF inset;

    transition: box-shadow .2s linear;
}

@media (any-hover: hover)
{
    .header__login:hover
    {
        box-shadow: 0 4px 0 #FFF inset;
    }
}

.header__reg
{
    color: #151515;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 45px;

    display: inline-block;

    padding: 0 23px;

    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #141435;
    border-radius: 10px;
    background: #FFE600;
    box-shadow: 0px -4px 0px #FF8A00 inset;

    transition: box-shadow .2s linear;
}

@media (any-hover: hover)
{
    .header__reg:hover
    {
        box-shadow: 0 4px 0 #FF8A00 inset;
    }
}

.overlay
{
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .65);
}



/*------------
    BTNS
------------*/
.wrap-btn
{
    margin-top: 30px;
}

.btn-yellow
{
    color: #151515;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 45px;

    display: inline-block;

    padding: 0 23px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #141435;
    border-radius: 10px;
    background: #FFE600;
    box-shadow: 0 -4px 4px #FF8A00 inset;

    transition: box-shadow .2s linear;
}

.btn-yellow._big
{
    font-size: 24px;
    line-height: 84px;

    padding: 0 75px;

    border-width: 2px;
    border-radius: 30px;
}

.btn-white
{
    color: #FFE600;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    line-height: 45px;

    display: inline-block;

    padding: 0 23px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;

    border: 1px solid #FFF;
    border-radius: 10px;
    background: #1E1D5B;
    box-shadow: 0 -4px 0 #FFF inset;

    transition: box-shadow .2s linear;
}

@media (any-hover: hover)
{
    .btn-yellow:hover
    {
        box-shadow: 0 4px 4px #FF8A00 inset;
    }

    .btn-white:hover
    {
        box-shadow: 0 4px 0 #FFF inset;
    }
}



/*---------------
	Page head
---------------*/
.main-title
{
    color: #FFF;
    font-size: 48px;
    font-weight: 600;
    font-style: italic;
    line-height: 1;

    text-transform: uppercase;
}

.section-head
{
    flex-wrap: nowrap;
}

.section-head .main-title
{
    align-self: center;
}

.section-head__icon
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;

    width: 49px;
    height: 49px;
    margin-left: 24px;
}

.section-head__icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


/*------------
    First-section
------------*/
.first-section
{
    padding: 228px 0 136px;
}

.first-section__flex
{
    justify-content: space-between;
}

.first-section__coll
{
    width: calc(57% - 30px);
}

.first-section__title
{
    color: #FFF;
    font-size: 60px;
    font-weight: 800;
    font-style: italic;
    line-height: normal;
}

.first-section__desc
{
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;

    max-width: 492px;
    margin-top: 32px;
}

.first-section__btn
{
    margin-top: 48px;
}

.first-section__colr
{
    width: 43%;
}

.first-section__colr img
{
    display: block;

    max-width: 100%;
}


.advantages__bg
{
    position: relative;

    margin-top: 70px;

    background: linear-gradient(to right, rgba(255,230,0,1) 0%,rgba(255,138,0,1) 100%);
}

.advantages__bg::before
{
    content: "";

    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;

    width: 100%;
    height: 42px;

    background: linear-gradient(to right, rgba(255,230,0,1) 0%,rgba(255,138,0,1) 100%);

    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.advantages__bg::after
{
    content: "";

    position: absolute;
    top: calc(100% - 1px);
    left: 0;

    width: 100%;
    height: 42px;

    background: linear-gradient(to right, rgba(255,230,0,1) 0%,rgba(255,138,0,1) 100%);

    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.advantages__flex
{
    position: relative;
    z-index: 2;

    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.advantages__coll
{
    width: 43%;
    max-width: 519px;
}

.advantages__img
{
    position: relative;

    display: block;

    margin-top: -55px;
    margin-bottom: -90px;
    padding-bottom: 100%;
}

.advantages__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.advantages__colr
{
    width: calc(57% - 30px);
    max-width: 623px;
    padding: 30px;

    border-radius: 24px;
    background: rgba(255, 255, 255, .20);
}

.advantages__items
{
    justify-content: space-between;

    margin-top: -60px;
}

.advantages__item
{
    flex-wrap: nowrap;

    width: 260px;
    margin-top: 60px;
}

.advantages__icon
{
    flex-shrink: 0;

    width: 80px;
    height: 80px;
    margin-right: 24px;
    padding: 4px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .30);
    box-shadow: 0px 29.091px 34.909px 0px rgba(138, 80, 230, .06);
}

.advantages__icon-bg
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 100%;
    height: 100%;
    padding: 5px;

    border-radius: 50%;
    background: linear-gradient(180deg, #151515 0%, rgba(30, 29, 91, .20) 100%);

    filter: drop-shadow(0px 16px 34.909px #8A50E6);
}

.advantages__icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.advantages__box
{
    align-self: center;

    width: 100%;
}

.advantages__number
{
    color: #141437;
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
}

.advantages__desc
{
    color: #141437;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.42;

    margin-top: 2px;

    letter-spacing: .2px;
    text-transform: uppercase;
}



.why-us
{
    padding: 165px 0 140px;
}

.why-us__flex
{
    justify-content: space-between;
}

.why-us__coll
{
    width: calc(41% - 30px);
    max-width: 520px;
}

.why-us__desc
{
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;

    margin-top: 40px;
}

.why-us__btns
{
    margin: 28px 0 0 -48px;
}

.why-us__btn
{
    margin: 20px 0 0 48px;
}

.why-us__colr
{
    width: 59%;
    max-width: 734px;
}

.why-us__img
{
    position: relative;

    display: block;

    padding-bottom: 74.11%;
}

.why-us__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.features
{
    position: relative;

    padding: 68px 0;

    background: #141437;
}

.features::before
{
    content: "";

    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;

    width: 100%;
    height: 42px;

    background: #141437;

    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.features::after
{
    content: "";

    position: absolute;
    top: calc(100% - 1px);
    left: 0;

    width: 100%;
    height: 42px;

    background: #141437;

    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
}


.features__items
{
    align-content: stretch;
    align-items: stretch;

    margin: 16px 0 0 -16px;
}

.features__item
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: calc(100%/3 - 16px);
    min-height: 330px;
    margin: 16px 0 0 16px;
    padding: 30px;

    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
}

.features__box
{
    width: 100%;
}

.features__icon
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    width: 80px;
    height: 80px;
    margin-bottom: 19px;
    padding: 5px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .30);
    box-shadow: 0px 29.091px 34.909px 0px rgba(138, 80, 230, .06);
}

.features__icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;

    filter: drop-shadow(0px 13.091px 26.182px rgba(79, 46, 211, .56));
}

.features__name
{
    color: #FFF;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;

    margin-bottom: 19px;
}

.features__title
{
    color: #FFF;
    font-size: 38px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.16;

    margin-bottom: 16px;

    text-transform: uppercase;
}

.features__btn
{
    margin-top: 16px;
}

.features__btn-yellow
{
    font-size: 16px;
    line-height: 74px;

    width: 100%;

    border-width: 2px;
    border-radius: 30px;
}




.commissions
{
    padding-top: 144px;
    padding-bottom: 40px;

    background: #15151F;
}

.commissions__coll
{
    width: calc(53% - 11px);
}

.commissions__items
{
    align-content: stretch;
    align-items: stretch;

    margin: 36px 0 0 -16px;
}

.commissions__item
{
    width: calc(100%/2 - 16px);
    min-height: 250px;
    margin: 16px 0 0 16px;
    padding: 24px;

    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
}

.commissions__name
{
    color: #FFF;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.commissions__number
{
    color: #FFE600;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;

    margin-top: 16px;
}

.commissions__list
{
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;

    margin-top: 28px;
}

.commissions__list li
{
    position: relative;

    padding-left: 23px;

    list-style: none;
}

.commissions__list li + li
{
    margin-top: 16px;
}

.commissions__list li::before
{
    content: "";

    position: absolute;
    top: 13px;
    left: 0;

    width: 4px;
    height: 4px;

    border-radius: 50%;
    background: currentColor;
}

.commissions__colr
{
    width: calc(47% - 29px);
    max-width: 534px;
    margin-left: 40px;
}

.commissions__img
{
    position: relative;

    display: block;

    padding-bottom: 104%;
}

.commissions__img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.commissions__btn
{
    position: relative;

    margin-top: -15px;
    padding-left: 40px;

    text-align: center;
}

/*------------
    footer
------------*/
.footer
{
    padding-top: 47px;
    padding-bottom: 71px;

    background: #15151F;
}

.footer__payments
{
    justify-content: center;

    margin: -20px 0 0 -20px;
}

.footer__payment
{
    width: 120px;
    margin: 20px 0 0 20px;
}

.footer__payment-img
{
    position: relative;

    display: block;

    padding-bottom: 48.5%;
}

.footer__payment-img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.footer__info
{
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;

    margin-top: 34px;
}

.footer__bot
{
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-end;

    margin-top: 37px;
}

.footer__icons
{
    align-content: center;
    align-items: center;

    margin-left: -22px;
}

.footer__icon
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;

    height: 42px;
    margin-left: 22px;
}

.footer__icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.footer__copy
{
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}



@media (max-width: 1290px)
{
    .first-section__title
    {
        font-size: 56px;
    }
}