@import"https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap";

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal
}

ol,
ul {
    list-style: none
}

img {
    /* width: 100px; */
    max-width: 100%;
    /*height: auto*/
}

a {
    text-decoration: unset
}


.container {
    /* max-width: 1470px; */
    width: 100%;
    padding: 0 15px;
    margin: 0 auto
}

@media(max-width: 1440px) {
    .container {
        max-width: 1230px;
        width: 90%
    }
}

@media(max-width: 1199px) {
    .container {
        width: 100%;
        padding: 0 20px
    }
}

.header {
    background-color: #fff;
    padding: 32px 0
}

@media(max-width: 991px) {
    .header {
        padding: 16px 0
    }
}

.header__logo {
    width: auto;
    cursor: pointer
}

@media(max-width: 1700px) {
    .header__logo {
        max-width: 220px
    }
}

@media(max-width: 991px) {
    .header__logo {
        max-width: 170px
    }
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__navigation a {
    position: relative;
    font-size: 20px;
    margin-left: 32px;
    color: #264e72;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    overflow-x: hidden
}

.header__navigation a:hover {
    color: #007bff;
}

@media(max-width: 1700px) {
    .header__navigation a {
        font-size: 18px
    }
}

@media(max-width: 991px) {
    .header__navigation a {
        margin-left: 24px;
        font-size: 16px
    }
}

.nav-link.mob-only {
    display: none
}

.header__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__navigation a:hover {
    color: #007bff
}

.nav-underlay {
    display: none
}

.menu-open-img,
.menu-close-img {
    display: none
}

@media(max-width: 599px) {
    .menu-open-img,
    .menu-close-img {
        display: block
    }
    .header__navigation {
        position: fixed;
        z-index: 33;
        right: -100%;
        top: 0;
        width: 70%;
        height: auto;
        min-height: 100vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background-color: #222;
        padding: 4rem 1rem;
        border-left: 2px solid #373737;
        -webkit-transition: all ease .4s;
        transition: all ease .4s
    }
    .header__navigation a {
        font-size: 1.2rem;
        margin-left: 0;
        padding: .5rem 0;
        text-align: center;
        color: #fff
    }
    .nav-underlay {
        display: block;
        position: fixed;
        z-index: -3;
        opacity: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: auto;
        min-height: 100vh;
        background-color: rgba(0, 0, 0, .6);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        -webkit-transition: all ease .4s;
        transition: all ease .4s
    }
    .nav-underlay.active {
        z-index: 12;
        opacity: 1
    }
    .nav-link.mob-only {
        display: block;
        margin-bottom: 1rem
    }
    .menu-close-img {
        position: absolute;
        top: 1rem;
        right: 1rem
    }
}

.hero {
    padding: 240px 0 120px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0.5) 12.77%,rgba(0,0,0,0) 20.13%),linear-gradient(90deg,rgba(0,0,0,0.85) 1.71%,rgba(52,52,52,0) 100%);
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 12.77%, rgba(0, 0, 0, 0) 20.13%), linear-gradient(90deg, rgba(0, 0, 0, 0.56) 1.71%, rgba(52, 52, 52, 0) 100%); */
    animation: fade_in 3s;
    z-index: 7;
}

@keyframes fade_in {
    from {
        opacity: 0;
    }
  
    to {
        opacity: 1;
    }
  }

@media(max-width: 1199px) {
    .hero {
        padding: 154px 0 64px;
    }
}

@media(max-width: 576px) {
    .hero {
        padding: 148px 0 48px;
    }
}

.hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 10;
    gap: 20px;
}

@media(max-width: 1199px) {
    .hero__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.hero__text {
    width: 64%;
    z-index: 10;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1199px) {
    .hero__text {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.hero__text h1 {
    margin-top: 8px;
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.52px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .hero__text h1 {
        font-size: 46px;
        line-height: 56px
    }
}

@media(max-width: 1199px) {
    .hero__text h1 {
        text-align: center
    }
}

@media(max-width: 767px) {
    .hero__text h1 {
        font-size: 40px;
        line-height: 50px
    }
}

@media(max-width: 576px) {
    .hero__text h1 {
        /* font-size: 34px;
        line-height: 40px; */
        font-size: 26px;
        line-height: 1.4;
    }
}

.hero__text p {
    display: inline-block;
    padding: 16px 24px;
    border-radius: 40px;
    background: #3b82f6;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: -0.2px;
    line-height: normal
}

@media(max-width: 1700px) {
    .hero__text p {
        font-size: 20px
    }
}

@media(max-width: 767px) {
    .hero__text p {
        text-align: center
    }
}

@media(max-width: 576px) {
    .hero__text p {
        font-size: 18px
    }
}

.hero__text video {
    margin-top: 32px;
    max-width: 700px;
    width: 100%
}

.hero__form {
    max-width: 460px;
    min-width: 460px;
    width: 31%;
    border-radius: 4px;
    border: 1px solid #264d72;
    background: #fff;
    padding: 32px;
    padding-bottom: 28px;
    z-index: 10;
}

@media(max-width: 1700px) {
    .hero__form {
        padding: 32px;
    }
}

@media(max-width: 1199px) {
    .hero__form {
        min-width: auto;
        width: 100%;
    }
}

@media(max-width: 576px) {
    .hero__form {
        padding: 24px;
    }
}

.hero__form-title {
    margin-top: 16px;
    text-align: center;
    color: #264d72;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .hero__form-title {
        font-size: 22px
    }
}

@media(max-width: 576px) {
    .hero__form-title {
        font-size: 18px
    }
}

.hero__form-block {
    text-align: center;
    padding: 16px 24px;
    border-radius: 56px;
    background: #264d72;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.16px;
    font-family: "Poppins", sans-serif ;
}

.form__footer {
    font-size: 11px;
    margin-top: 20px;
    display: block;
}

.reason {
    padding: 64px 0;
    background-color: #FDF1DF;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 576px) {
    .reason {
        padding: 48px 0
    }
}

.reason__wrapper {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 768px) {
    .reason__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.reason__img {
    width: 100%;
    max-width: 704px
}

.reason__left,
.reason__right {
    width: 44%
}

@media(max-width: 768px) {
    .reason__left,
    .reason__right {
        width: 100%
    }
}

.reason__left p {
    margin-top: 16px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-family: "Poppins", sans-serif ;
}

.reason__divider {
    width: 2px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    border-radius: 33px;
    background: #000
}

@media(max-width: 768px) {
    .reason__divider {
        display: none
    }
}

@media(max-width: 768px) {
    .reason__right {
        margin-top: 24px
    }
}

.reason__right p {
    margin-top: 16px;
    color: #3e3e3e;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
    font-family: "Poppins", sans-serif ;
}

.reason__president {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Poppins", sans-serif ;
}

.reason__president img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.reason__president-name {
    color: #264d72;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.28px;
    font-family: "Poppins", sans-serif ;
}

.reason__president-position {
    color: #bbb;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    font-family: "Poppins", sans-serif ;
}

.reason__president-wrapper {
    margin-left: 8px
}

.calculator {
    padding: 96px 0;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 768px) {
    .calculator {
        padding: 48px 0
    }
}

.calculator__title {
    text-align: center
}

.calculator__wrapper {
    max-width: 1200px;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 1199px) {
    .calculator__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.calculator__left {
    max-width: 704px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08)
}

.calculator__left-title {
    max-width: 510px;
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-family: "Poppins", sans-serif;
}

@media(max-width: 1199px) {
    .calculator__right {
        text-align: center;
        margin-top: 24px
    }
}

.calculator__right-block:first-child {
    margin-bottom: 40px
}

.calculator__right-text {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.16px;
    font-family: "Poppins", sans-serif;
}

.calculator__right-sum {
    margin-top: 16px;
    color: #000;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.56px;
    font-family: "Poppins", sans-serif !important;
}

@media(max-width: 1700px) {
    .calculator__right-sum {
        font-size: 46px;
        line-height: 50px
    }
}

@media(max-width: 767px) {
    .calculator__right-sum {
        font-size: 40px;
        line-height: 50px
    }
}

@media(max-width: 576px) {
    .calculator__right-sum {
        font-size: 34px;
        line-height: 43px
    }
}

.calculator__profit {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 38px;
    background: #264d72;
    width: 100%;
    padding: 16px;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.2px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 768px) {
    .calculator__profit {
        font-size: 16px;
        line-height: 20px
    }
}

.calculator__profit span {
    margin-left: 16px;
    color: #fff;
    font-family: Poppins;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.44px
}

@media(max-width: 1199px) {
    .calculator__profit span {
        font-size: 36px
    }
}

@media(max-width: 768px) {
    .calculator__profit span {
        font-size: 24px;
        line-height: 20px
    }
}

.why {
    padding: 64px 0;
    background: #FDF1DF;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 576px) {
    .why {
        padding: 48px 0
    }
}

.why__title {
    text-align: center;
    font-family: "Poppins", sans-serif ;
}

.why__subtitle {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    margin: 16px auto 0;
    max-width: 825px;
    font-family: "Poppins", sans-serif ;
}

.why__wrapper {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

.why__block {
    max-width: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    font-family: "Poppins", sans-serif;
}

@media(max-width: 576px) {
    .why__block {
        padding: 24px
    }
}

.why__text {
    margin-top: 16px;
    color: #3e3e3e;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px;
    font-family: "Poppins", sans-serif;
}

@media(max-width: 576px) {
    .why__text {
        margin-top: 24px;
        font-size: 14px
    }
}

.feed {
    padding: 96px 0
}

@media(max-width: 576px) {
    .feed {
        padding: 48px 0
    }
}

.feed__title {
    text-align: center;
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

@media(max-width: 1700px) {
    .feed__title {
        font-size: 32px
    }
}

@media(max-width: 576px) {
    .feed__title {
        font-size: 26px
    }
}

.feed__wrapper {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

@media(max-width: 767px) {
    .feed__wrapper {
        grid-template-columns: 1fr
    }
}

.feed__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08);
    box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, .03), 0px 15.40741px 40.45185px 0px rgba(0, 0, 0, .05), 0px 40px 127px 0px rgba(0, 0, 0, .08)
}

.feed__block img {
    max-width: 64px
}

@media(max-width: 576px) {
    .feed__block {
        padding: 24px
    }
}

.feed__name {
    margin-top: 16px;
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.28px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .feed__name {
        font-size: 22px
    }
}

@media(max-width: 576px) {
    .feed__name {
        font-size: 18px
    }
}

.feed__text {
    margin-top: 16px;
    color: #3e3e3e;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .feed__text {
        font-size: 18px
    }
}

@media(max-width: 576px) {
    .feed__text {
        margin-top: 24px;
        font-size: 16px
    }
}

.bottom {
    padding-top: 64px;
    padding-bottom: 30px;
    background: #fff
}

@media(max-width: 576px) {
    .bottom {
        padding-top: 48px
    }
}

.bottom__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 1199px) {
    .bottom__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.bottom__left {
    max-width: 800px;
    width: 100%
}

@media(max-width: 1199px) {
    .bottom__left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.bottom__left h2 {
    margin-top: 16px;
    color: #264d72;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 68px;
    letter-spacing: -0.52px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .bottom__left h2 {
        font-size: 46px;
        line-height: 52px
    }
}

@media(max-width: 1199px) {
    .bottom__left h2 {
        text-align: center
    }
}

@media(max-width: 576px) {
    .bottom__left h2 {
        font-size: 32px;
        line-height: 46px
    }
}

.bottom__left p {
    margin-top: 16px;
    color: #264d72;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.2px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .bottom__left p {
        font-size: 22px
    }
}

@media(max-width: 1199px) {
    .bottom__left p {
        text-align: center
    }
}

@media(max-width: 576px) {
    .bottom__left p {
        font-size: 20px
    }
}

.bottom__left img {
    max-width: 250px;
    width: auto;
}

.footer {
    margin-top: 52px;
    padding: 24px 0
}

.footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.footer__copy,
.footer__links {
    color: #264d72;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px
}

@media(max-width: 576px) {
    .footer__copy,
    .footer__links {
        font-size: 14px
    }
}

.footer__copy span,
.footer__links span {
    font-weight: 700
}

.footer__copy a,
.footer__links a {
    color: #264d72
}

.footer__links a:last-child {
    margin-left: 32px
}

@media(max-width: 767px) {
    .footer__links {
        margin-top: 24px
    }
}

/*
.irs--round .irs-min,
.irs--round .irs-max {
    display: none
}

.irs-grid-pol.small {
    display: none
}

.irs--round .irs-grid-text {
    display: none
}

.irs--round .irs-handle {
    opacity: 0
}

.js-irs-1 .irs-grid-pol {
    display: none
}

.irs--round .irs-single {
    cursor: pointer;
    top: 21px;
    z-index: 10;
    padding: 4px 16px;
    border-radius: 31px;
    background: #3b82f6;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.16px
}

.irs--round .irs-single::before {
    display: none
}

.irs--round .irs-grid-pol {
    top: -2px;
    width: 1px !important;
    height: 4px !important;
    border-radius: 35px !important;
    background: #000
}

.irs--round .irs-grid-pol::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 1px !important;
    height: 4px !important;
    border-radius: 35px !important;
    background: #000
}

.irs--round .irs-line {
    height: 8px;
    background: rgba(255, 198, 51, .14)
}

.irs--round .irs-bar {
    height: 8px;
    background: #ffc633
} 
*/

.irs--round .irs-single{
  background-color: #3b82f6;
}
.irs--round .irs-handle{
  border: 4px solid #3b82f6!important;
}
.irs--round .irs-bar{
  background-color: #3b82f6!important;
}

.page__title {
    color: #264d72;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.44px;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 1700px) {
    .page__title {
        font-size: 40px;
        line-height: 50px
    }
}

@media(max-width: 767px) {
    .page__title {
        font-size: 34px;
        line-height: 45px
    }
}

@media(max-width: 576px) {
    .page__title {
        font-size: 28px;
        line-height: 43px
    }
}

.page__title span {
    color: #3b82f6
}

input:not([type=checkbox]) {
    padding: 16px;
    color: #a6a6a6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-family: "Poppins", sans-serif ;
}

.checkbox-wrap a {
    color: #111;
    font-weight: 700
}

button[type=submit] {
    font-family: Poppins;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    padding: 16px;
    color: #ffffff;
    border-radius: 8px;
    background: #3b82f6;
    border: none;
    font-family: "Poppins", sans-serif ;
}

@media(max-width: 576px) {
    button[type=submit] {
        font-size: 18px
    }
}

.random {
    font-size: 20px;
    font-weight: 800 ;
}

.line {
    padding: 64px 0;
    background-color: #FDF1DF;
}

.line__wrapper {
    margin-top: 48px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.swiper-slide {
    width: 130px;
    display: flex !important;
    justify-content: center !important;
}

.line__slide {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
    width: 130px;
}

.line__slide img {
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
    object-fit: contain;
}

.line__slide span {
    display: block;
    align-items: center;
    font-size: 14px;
    color: #000;
    line-height: 1.3;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif ;
}

.swiper__prev,
.swiper__next {
    transform: translateY(-34px);
    transition: all .2s linear;
}

.swiper__prev img,
.swiper__next img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    transition: all .2s linear;
}

@media (hover: hover) {
    .swiper__prev:hover img,
    .swiper__next:hover img  {
        scale: 1.1;
    }
}

@media (hover: none) {
    .swiper__prev:active img,
    .swiper__next:active img {
        scale: 1.1;
    }
}

