/* font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Hedvig+Letters+Serif:opsz@12..24&display=swap');
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primaryFont: "DM Sans", sans-serif;
    --secondaryFont: "Hedvig Letters Serif", serif;;
    --white: #fff;
    --black: #000;
    --primaryColor: #BF0A30;
    --btnHover: #E61B46;
    --blue: #102F81;
    --lightGray: #F1F0E3;
    --dark: #000715;
}
html {
    font-size: 62.5%;
}
body {
    font-family: var(--primaryFont);
    font-size: 1.6rem;
    line-height: 1.6;
    color: rgba(0, 7, 22, 0.8);
    font-weight: 400;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 2rem;
    width: 100%;
}
ul,
oi {
    list-style: none;
}
button,
a {
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
button {
    border: none;
    background-color: transparent;
    font-family: inherit;
}
h1{
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
    font-family: var(--secondaryFont);
}
h2 {
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    font-family: var(--secondaryFont);
}
h3 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
    font-family: var(--secondaryFont);
}

h2 span {
    font-family: var(--secondaryFont);
    font-size: 5rem;
    font-weight: 400;
    font-style: italic;
}
.py_80 {
    padding-block: 8rem;
}
img {
    max-width: 100%;
}
.for_small {
    display: none !important;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.max-960{
    max-width: 96rem;
}
.max-720{
    max-width: 72rem;
}
.max-520{
    max-width: 52rem;
}
.for_medium {
    display: none !important;
}
.for_large {
    display: block;
}
.common_btn {
    display: inline-block;
    background-color: var(--primaryColor);
    border-radius: 0rem;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.05rem 2.4rem;
    text-align: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 1.5;
}
.common_btn:hover {
    background-color: var(--btnHover);
    color: #fff;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
header.scrolled {
    background-color: var(--white);
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, .1);
            box-shadow: 0 0 3rem rgba(0, 0, 0, .1);
}
.header_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    grid-area: 1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: 1.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logo {
    height: 4rem;
}
.header_content nav ul,
.header_content nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 3.2rem;
       -moz-column-gap: 3.2rem;
            column-gap: 3.2rem;
}
header .header_content nav ul a {
    color: var(--black);
    line-height: 1.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}
.header_content nav ul a:hover,
.header_content nav ul a.active {
    color: var(--blue) !important;
    text-decoration: underline;
}
.mobile_fix{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 10;
    padding: 2.4rem 0;
    opacity: 0;
    pointer-events: none;
}
.mobile_fix.scrolled{
    opacity: 1;
    pointer-events: all;
}
.mobile_fix .common_btn{
    width: 100%;
}
/* banner */
.banner {
    position: relative;
    z-index: 1;
    padding: 10rem 0 0rem;
    overflow: hidden;
}
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -o-radial-gradient(50% 100%, 74.03% 100%, #A0DEFF 0%, #E7F6FF 50.28%, #FFFFFF 100%);
    background: radial-gradient(74.03% 100% at 50% 100%, #A0DEFF 0%, #E7F6FF 50.28%, #FFFFFF 100%);
}
.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.home_content {
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.home_content h1 span {
    color: var(--blue);
}
.home_content ul  {
    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;
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 3.2rem;
}
.home_content ul li,
.tooltip_info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: left;
    letter-spacing: 0.01em;
    color: var(--dark);
}
.home_content ul li img,
.tooltip_info img{
    height: 4.8rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1rem;
}
.tooltip_info {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}
img {
    vertical-align: middle;
}
.banner_img{
    width: 100%;
}
.tooltip_wrap {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: rgba(0, 7, 22, 0.5);
    border-radius: 0;
    border: none;
    padding: 0;
}
.tooltip_text {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: absolute;
    bottom: 150%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
    -webkit-box-shadow: 0 2.0rem 4.0rem rgba(0, 7, 22, 0.2);
            box-shadow: 0 2.0rem 4.0rem rgba(0, 7, 22, 0.2);
    width: 18.5rem;
    text-align: left;
}
.tooltip_text::after {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border-width: 1.2rem 1.5rem;
    border-style: solid;
    border-color: var(--dark) transparent transparent transparent;
}
.tooltip_info:hover .tooltip_text,
.tooltip_info:focus .tooltip_text,
.tooltip_info:focus-within .tooltip_text {
    visibility: visible;
    opacity: 1;
}
/*partner area*/
.partner_wrap{
    border-bottom: 0.1rem solid rgba(0, 7, 22, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3.75rem 0;
}
.partner_logo{
    width: 100%;
    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;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.partner_logo img{
    height: 2.2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.impression{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    font-size: 1.4rem;
    font-family: var(--secondaryFont);
    line-height: 1.4;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-right: 0.1rem solid rgba(0, 7, 22, 0.2);
    padding-right: 4.6rem;
    margin-right: 4.6rem;
}
.impression h2{
    font-size: 4.8rem;
    line-height: 0.86;
}

/*about area*/
.about_area{
    padding-top: 6rem;
    text-align: center;
}
.about_area h2{
    text-wrap: balance;
    margin-bottom: 1rem;
}
.about_area p{
    padding-top: 0.4rem;
}

/* testimonial */
.testimonial {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.testimonial_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4.8rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
}
.testimonial_grid>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.testimonial_grid>div img{
    height: 2.4rem;
}
.testimonial_grid h4 {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--secondaryFont);
    color: var(--dark);
}
.testi_author h5 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark);
}
.testi_author p {
    font-size: 1.1rem;
    color: rgba(0, 7, 22, 0.5);
}


/* faq */
.faq_area{
    padding-bottom: 6rem;
}
.faq_wrap{
    border-top: 0.1rem solid rgba(0, 7, 22, 0.1);
    padding-top: 6rem;
}
.faq{
    margin-top: 0.8rem;
}
.faq_item:not(:last-child) {
    border-bottom: 0.1rem solid rgba(0, 7, 22, 0.1);
}
.faq_question {
    width: 100%;
    text-align: left;
    padding: 1.6rem 3rem 1.5rem 0;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    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;
    color: var(--dark);
    font-size: 1.6rem;
    position: relative;
    line-height: 1.5;
}
.faq_question::before{
    content: '';
    position: absolute;
    right: 0;
    top: 2.4rem;
    width: 1.4rem;
    height: 0.9rem;
    background-image: url(../images/angle-down.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.faq_item.active .faq_question{
    color: var(--blue);
}
.faq_item.active .faq_question::before{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.faq_answer {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
    color: var(--dark);
    font-size: 1.4rem;
    line-height: 1.5;
}
.faq_item.active .faq_answer{
    margin-bottom: 1.8rem;
}

/*contact area*/
.contact_box{
    background-color: var(--blue);
    position: relative;
    z-index: 1;
    padding: 6.4rem 3rem;
    color: #fff;
}
.contact_box>img{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.contact_row{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.contact_box h3{
    color: #fff;
}
.contact_box h3 span{
    display: block;
    color: #CEE9FD;
}
.form-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.4rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2.4rem;
}
.full {
    grid-column: 1 / -1;
}
.input_group label{
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}
.input_group input,
.input_group textarea{
    display: block;
    width: 100%;
    height: 4.2rem;
    border-radius: 0;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
    border: none;
    font-family: inherit;
    outline: none;
    resize: none;
    color: var(--dark);
}
.input_group input::-webkit-input-placeholder, .input_group textarea::-webkit-input-placeholder{
    color: var(--dark);
    opacity: 0.5;
}
.input_group input::-moz-placeholder, .input_group textarea::-moz-placeholder{
    color: var(--dark);
    opacity: 0.5;
}
.input_group input:-ms-input-placeholder, .input_group textarea:-ms-input-placeholder{
    color: var(--dark);
    opacity: 0.5;
}
.input_group input::-ms-input-placeholder, .input_group textarea::-ms-input-placeholder{
    color: var(--dark);
    opacity: 0.5;
}
.input_group input::placeholder,
.input_group textarea::placeholder{
    color: var(--dark);
    opacity: 0.5;
}
.input_group textarea {
    height: 8.4rem;
}
.apply_btn{
    text-align: right;
    padding-top: 0.8rem;
}

/* footer */
footer {
    padding-top: 4rem;
    font-size: 1.4rem;
    color: var(--dark);
    line-height: 1.5;
}
.footer_grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.flogo{
    display: block;
    width: 19.2rem;
}
.flogo img{
    width: 100%;
}
.link ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}
footer a {
    color: var(--dark);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
footer a:hover {
    color: var(--blue);
    text-decoration: underline;
}
.info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
}
.info img{
    height: 2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.info h4{
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blue);
    font-family: var(--secondaryFont);
}
.info p{
    max-width: 19rem;
}
.footer_bottom {
    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;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    margin-top: 3.2rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    gap: 1rem;
    border-top: .1rem solid rgba(0, 7, 22, 0.1);
}
.footer_bottom p {
    color: rgba(0, 7, 22, 0.5);
    font-weight: 300;
}
.footer_bottom ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
}

.privacy_area{
    padding: 11.4rem 0 6rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.privacy_area>img{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}
.privacy_area h2 + p{
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
}
.privacy_area h4{
    font-size: 2.2rem;
    font-weight: 600;
    color: inherit;
    margin-top: 1.4rem;
}
.privacy_area h5{
    font-size: 1.6rem;
    font-weight: 400;
    color: inherit;
    margin-top: 1.4rem;
    font-family: var(--secondaryFont);
}
.privacy_area ul {
    list-style: disc;
    padding-left: 2.5rem;
    margin: 0.4rem 0;
}
.privacy_area ul li::marker{
    color: inherit;
}
.privacy_area a{
    color: inherit;
    text-decoration: underline;
}
.privacy_area a:hover{
    color: var(--blue);
}
