* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Overpass", sans-serif;
    scroll-behavior: smooth;
    scroll-margin-top: 50px;
}

body {
    position: relative;
    margin: 0;
}

/* HEADER */
header {
    padding: 20px;
    background: transparent;
    z-index: 9999;
}

header .header_container {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    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;
    height: 100%;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

header .header_container .logo {
    text-decoration: none;
    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;
}

header .header_container .logo img {
    display: block;
    max-width: 250px;
}

header .header_container input#menu-toggle {
    display: none;
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(2) {
    opacity: 0;
    left: -100%;
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header .header_container input#menu-toggle:checked ~ .menu {
    height: 400px;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    header .header_container input#menu-toggle:checked ~ .menu {
        border-bottom: none;
        height: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

header .header_container .toggle {
    height: 35px;
    width: 35px;
    position: relative;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    right: 10px;
}

header .header_container .toggle span {
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
    background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
    top: 5px;
    left: 0px;
    right: 0px;
    height: 3px;
    border-radius: 100vmax;
    width: 33px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    visibility: visible;
}

@media (min-width: 1024px) {
    header .header_container .toggle span {
        display: none;
    }
}

header .header_container .toggle span:nth-of-type(2) {
    top: 15px;
}

header .header_container .toggle span:nth-of-type(3) {
    top: 25px;
}

header .header_container .menu {
    border-radius: 25px;
    z-index: 999;
    top: 120%;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    left: 0;
    right: 0;
    height: 0px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
    header .header_container .menu {
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        top: 0;
        width: 100%;
        height: 100%;
        border-bottom: none;
        background: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-transition: none;
        transition: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        gap: 20px!important;
        overflow: visible;
        color: #5a5a75;
    }
}

header .header_container .menu a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    color: #5a5a75;
    text-decoration: none;
    font-weight: 300;
    position: relative;
}

@media (min-width: 1024px) {
    header .header_container .menu a {
        margin-left: 25px;
    }
}

header .header_container .menu .dl-btn {
    padding: 10px 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
    background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

header .header_container .menu .dl-btn:hover {
    background: linear-gradient(0deg, #ed263c 0%, #a53d65 100%);
}

/* END OF HEADER */
.btn {
    background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
    background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
    color: #fff;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    font-size: 35px;
    border-radius: 50px;
    padding: 20px 50px;
    text-transform: uppercase;
    transition: .3s;
}
.btn:hover {
    background: linear-gradient(0deg, #ed263c 0%, #a53d65 100%);
    transition: .3s;
}

main .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 20px;
}

main .wrap h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
    color: #707070;
}

main .wrap h3 {
    color: #707070;
}

main .wrap .sub {
    text-align: center;
}

main .wrap p {
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

@media (min-width: 768px) {
    main .wrap p {
        font-weight: 300;
        line-height: 35px;
        font-size: 18px;
    }
}

main .banner {
    margin-top: -120px;
    padding: 100px 0 50px;
    background: #f2f2f2;
}

@media (min-width: 1200px) {
    main .banner {
        padding: 200px 0 100px;
        background: url(images/banner.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

main .banner .wrap .content {
    text-align: center;
}

@media (min-width: 1200px) {
    main .banner .wrap .content {
        margin-left: auto;
        max-width: 500px;
    }
}

main .banner .wrap .content h1 {
    font-size: 35px;
    letter-spacing: .45px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    main .banner .wrap .content h1 {
        font-size: 45px;
    }
}

main .banner .wrap .content h1 span {
    color: #707070;
}

main .banner .wrap .content p {
    font-weight: 600;
    font-size: 25px;
    margin: 20px 0;
}

main .choose {
    text-align: center;
}

main .choose .btn {
    font-size: 35px;
    border-radius: 50px;
    padding: 20px 50px 10px;
}

@media (min-width: 1024px) {
    main .choose .content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: -180px;
        gap: 50px;
    }
}

@media (min-width: 1024px) {
    main .choose .content:nth-of-type(2) {
        margin-top: -265px;
    }
}

main .choose .content .item {
    -webkit-box-shadow: 0px 0px 11px #00000029;
    box-shadow: 0px 0px 11px #00000029;
    border: 1px solid #E8E8E8;
    border-radius: 37px;
    padding: 30px 25px;
    text-align: center;
    min-height: auto;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    main .choose .content .item {
        width: 30%;
    }
}

@media (min-width: 1024px) {
    main .choose .content .item:nth-of-type(2) {
        margin-top: 240px;
    }
}

@media (min-width: 1024px) {
    main .choose .content .item:nth-of-type(3) {
        margin-top: 440px;
    }
}

main .choose .content .item img {
    margin-bottom: 20px;
    max-width: 120px;
}

main .choose .content .item h3 {
    font-size: 27px;
    margin-bottom: 20px;
}

main .reasons {
    background: url(images/h2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

main .reasons h2 {
    margin-bottom: 80px;
}

main .reasons .content {
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    main .reasons .content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 50px;
    }
}

main .reasons .content .item {
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    main .reasons .content .item {
        width: 30%;
        margin-bottom: 0;
    }
}

main .reasons .content .item img {
    width: 150px;
    margin-bottom: 20px;
}

main .reasons .content .item h3 {
    font-size: 28px;
}

main .pre-footer {
    background: #475D84;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

main .pre-footer h2 {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 25px;
    color: #fff;
}

@media (min-width: 768px) {
    main .pre-footer h2 {
        font-size: 35px;
    }
}

main .pre-footer .btn {
    font-size: 35px;
    border-radius: 50px;
    padding: 20px 50px 10px;
    text-transform: uppercase;
}

footer {
    padding: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
    background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
    color: #fff;
}

@media (min-width: 1300px) {
    footer {
        padding: 20px 0;
    }
}

footer .footer-wrap {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    footer .footer-wrap {
        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;
    }
}

footer .footer-wrap p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    footer .footer-wrap p {
        margin-bottom: 0;
    }
}

footer .footer-wrap ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-wrap ul li {
    list-style: none;
    font-size: 14px;
}

footer .footer-wrap ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.subpage h1 {
    margin-bottom: 30px;
}

.subpage .subpage-content {
    max-width: 1200px;
    margin: 30px auto;
    line-height: 30px;
    padding: 20px;
}

.subpage footer {
    padding: 5px 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
    background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
}

@media (min-width: 1200px) {
    .subpage footer {
        padding: 0px;
    }
}

.subpage footer .footer-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .subpage footer p {
        margin: 0;
    }
}

.subpage footer ul {
    padding-left: 0;
}

.subpage footer ul a {
    color: #fff;
    text-transform: capitalize !important;
}

/* DOWNLOAD FORM */
.subpage-content {
    margin: 75px 20px;
}
.subpage-content form {
    background: #f2f2f2;
    padding: 50px;
    max-width: 768px;
    margin: 0 auto;
}

.subpage-content form .form-group input, .subpage-content form .form-group textarea {
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 0;
    height: 50px;
}

.subpage-content form .form-group label {
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.subpage-content form .form-group textarea {
    height: 100px;
}

.subpage-content form .form-group .btn {
    border: none;
    font-size: 23px;
    padding: 15px 50px 10px;
    width: 250px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 3px;
}

.subpage-content form .form-group .btn:hover {
    background: linear-gradient(0deg, #ed263c 0%, #a53d65 100%);
    -webkit-transition: .3s;
    transition: .3s;
}

.subpage-content form .consent {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.subpage-content form .consent #consent {
    width: 15px;
    margin-right: 10px;
    height: 15px;
    margin-bottom: 3px;
}

.subpage-content form .consent label {
    margin-bottom: 0;
}

.subpage-content form .privacy {
    font-size: 13px;
    margin-top: 15px;
    display: block;
    color: #747373;
    text-align: center;
}

.subpage-content form .asterisk {
    color: red;
}

/*# sourceMappingURL=styles.css.map */