@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, 
h2, 
h3, 
h4, 
h5 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #141E48;
    margin-bottom: 0;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #3B4360;
}

p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    .container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

.common-btn {
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    font-weight: 500;
    background: #141E48;
    border-radius: 10px;
    transition: 0.5s;
    padding: 15px 25px;
}

.common-btn:hover {
    color: #ffffff;
    background: #0399FF;
}

@media (min-width: 768px) {
    h2 {
        font-size: 30px;
        line-height: 1.2;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 40px;
        line-height: 48px;
    }

    p {
        font-size: 18px;
        line-height: 27px;
    }
}



/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F2F7FD;
    z-index: 99;
    transition: 0.4s;
    padding: 20px 0;
}

header.sticky {
    background: #ffffff;
    box-shadow: 0 0 10px #aaa;
}

.header-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
    max-width: 100px;
    transition: 0.4s;
}

.right-part {
    display: flex;
    gap: 15px;
}

.right-part .text {
    display: none;
}

.right-part .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    background: #ffffff;
    transition: 0.4s;
}

.right-part .mail-icon {
    background: #141E48;
}

@media (max-width: 576px) {
    header.sticky .wrap-box:last-child .icon {
        background: #F2F7FD;
    }
}


@media (min-width: 768px) {
    .logo a {
        max-width: 110px;
    }

    .right-part .text {
        display: block;
    }

    .right-part .wrap-box {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        border: 1px solid #141E48;
        border-radius: 10px;
        padding: 10px;
    }

    .right-part .wrap-box:last-child {
        background: #141E48;
    }

    .right-part .text p {
        font-size: 14px;
        color: #141E48;
        line-height: 1;
        margin-bottom: 0;
    }

    .right-part .text a {
        font-size: 16px;
        line-height: 1;
        color: #141E48;
        font-weight: 600;
    }

    .right-part .text a:hover {
        text-decoration: underline;
    }

    .wrap-box:last-child p, 
    .wrap-box:last-child a {
        color: #ffffff;
    }

    .right-part .icon {
        width: 38px;
        height: 38px;
    }
}

@media (min-width: 1200px) {
    .logo a {
        max-width: 142px;
    }

    .right-part {
        gap: 20px;
    }

    .right-part .icon {
        width: 44px;
        height: 44px;
    }

    .right-part .text p {
        margin-bottom: 6px;
    }

    .right-part .wrap-box {
        padding: 10px 20px 10px 10px;
    }
}


/* banner */
.banner {
    position: relative;
    background: #F2F7FD;
    padding: 135px 0 80px 0;
}

.banner .shape-1, 
.banner .shape-2 {
    position: absolute;
    bottom: 0;
}

.banner .shape-1 {
    left: 0;
}

.banner .shape-2 {
    right: 0;
    bottom: -10px;
    filter: brightness(0) invert(1);
}

.banner-content {
    text-align: center;
}

.banner-content span {
    position: relative;
    font-size: 16px;
    color: #0399FF;
}

.banner-content span::before, 
.banner-content span::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    background: #0399FF;
    height: 1px;
}

.banner-content span::before {
    left: -60px;
}

.banner-content span::after {
    right: -60px;
}

.banner-content h2 {
    margin: 10px 0 20px 0;
}

.banner-content p {
    margin-bottom: 20px;
}

.down-btn {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #141E48;
    border-radius: 50%;
    z-index: 2;
    padding: 7px;
}

.down-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px dashed #ffffff;
    border-radius: 50%;
}

.down-btn img {
    max-width: 15px;
}

@media (min-width: 768px) {
    .banner {
        padding: 170px 0 130px 0;
    }

    .down-btn {
        bottom: 5px;

    }

    .banner-content h2 {
        margin: 15px 0 25px 0;
    }

    .banner-content span::before, 
    .banner-content span::after {
        width: 120px;
    }

    .banner-content span::before {
        left: -135px;
    }

    .banner-content span::after {
        right: -135px;
    }

    .banner-content span {
        font-size: 18px;
    }

    .banner-content p {
        margin-bottom: 25px;
    }

    .down-btn a {
        width: 45px;
        height: 45px;
    }

    .down-btn img {
        max-width: 20px;
    }
}

@media (min-width: 1200px) {
    .banner {
        padding: 200px 0 260px 0;
    }

    .down-btn {
        bottom: 24px;
    }

    .down-btn img {
        max-width: 28px;
    }

    .down-btn a {
        width: 66px;
        height: 66px;
    }

    .banner-content {
        max-width: 830px;
        margin: 0 auto;
    }

    .banner-content span::before, 
    .banner-content span::after {
        width: 230px;
    }

    .banner-content span::before {
        left: -250px;
    }

    .banner-content span::after {
        right: -250px;
    }
}


/* about-us */
.about-us {
    padding: 50px 0;
}

.about-img img {
    margin: 0 auto;
}

.about-detl {
    text-align: center;
    margin-top: 30px;
}

.about-detl p {
    margin: 10px 0 20px 0;
}

@media (min-width: 768px) {
    .about-us {
        padding: 70px 0;
    }

    .about-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .about-img {
        width: 45%;
        padding-right: 10px;
    }

    .about-detl {
        width: 55%;
        text-align: left;
        margin-top: 0;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .about-us {
        padding: 100px 0;
    }

    .about-wrap {
        max-width: 1070px;
        margin: 0 auto;
    }

    .about-img, .about-detl {
        width: 50%;
    }

    .about-img {
        padding-right: 30px;
    }

    .about-detl {
        padding-left: 30px;
    }

    .about-detl p {
        margin: 20px 0 25px 0;
    }
}


/* service */
.service {
    background: #F2F7FD;
    padding: 50px 0;
}

.service .titel {
    text-align: center;
    margin-bottom: 80px;
}

.service-wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 80px;
}

.service-col {
    text-align: center;
    cursor: pointer;
}

.service-col .inner {
    border: 1px solid #C0CEE0;
    border-radius: 20px;
    height: 310px;
    transition: all 0.4s;
    padding: 0 20px;
}

.service-col .inner:hover {
    background: #FFFFFF;
    border: 2px solid #0399FF;
    border-left: transparent;
    border-right: transparent;
    box-shadow: 0px 0px 50px rgba(32, 52, 155, 0.1);
}

.service-col .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #F2F7FD;
    margin: 0 auto;
    margin-top: -60px;
}

.service-col .icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto;
}

.service-col img {
    filter: grayscale(100%);
}

.service-col .inner:hover img {
    filter: grayscale(0);
}

.service-col h4 {
    font-size: 25px;
    margin: 20px 0 15px 0;
}

@media (min-width: 768px) {
    .service {
        padding: 70px 0;
    }

    .service-wrap {
        margin: 0 -15px;
    }

    .service-col {
        width: 50%;
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    .service {
        padding: 80px 0 110px 0;
    }

    .service .titel {
        margin-bottom: 100px;
    }

    .service-col {
        width: 33.33%;
    }

    .service-col.srv-item {
        margin-top: 60px;
    }
}


.image-step-text {
    padding: 50px 0;
}

.image-step-text h2 {
    margin-bottom: 30px;
}

.left-text {
    position: relative;
    counter-reset: textbox;
    display: -webkit-box;
    -webkit-line-clamp: 24;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 35px;
    padding-bottom: 3px;
    margin-bottom: 0;
}

.left-text::before {
    position: absolute;
    content: "";
    top: 0;
    left: 16px;
    border-left: 1px dashed #0399FF;
    height: 100%;
}

.left-text.expand {
    -webkit-line-clamp: unset;
}

.left-text p {
    position: relative;
    margin-top: 15px;
    margin-bottom: 0;
}

.left-text p:first-child {
    margin-top: 0;
}

.left-text a {
    font-size: 16px;
    font-weight: 600;
    color: #0399FF;
}

.left-text #seeMore {
    position: absolute;
    bottom: 0;
    right: 25px;
    background: #ffffff;
}

.left-text p::before {
    position: absolute;
    counter-increment: textbox;
    content: counter(textbox) " ";
    width: 26px;
    height: 26px;
    left: -32px;
    border: 1px dashed #0399FF;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #0399FF;
    font-weight: 600;
}

.right-img img {
    display: none;
    background: #F2F7FD;
    border-radius: 20px;
    padding: 45px 15px;
}

.image-step-text .dot-shape {
    display: none;
}

@media (min-width: 768px) {
    .image-step-text {
        padding: 70px 0;
    }

    .left-text {
        -webkit-line-clamp: 17;
        padding-left: 45px;
    }

    .left-text #seeMore {
        right: 38px;
    }

    .left-text p::before {
        left: -42px;
    }
}

@media (min-width: 1200px) {
    .image-step-text {
        overflow-x: hidden;
        padding: 100px 0;
    }

    .image-step-text .wrapper {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .image-step-text .dot-shape {
        display: block;
        position: absolute;
        top: -75px;
        right: -55px;
        max-width: 203px;
        z-index: -1;
    }

    .image-step-text h2 {
        max-width: 1005px;
        margin-bottom: 15px;
    }

    .left-text {
        -webkit-line-clamp: 18;
        width: 55%;
        padding-right: 20px;
        padding-bottom: 0px;
        margin-top: 20px;
    }

    .left-text #seeMore {
        right: 0px;
    }

    .left-text p {
        margin-top: 25px;
    }

    .right-img {
        width: 45%;
        padding-left: 20px;
    }

    .right-img img {
        display: block;
    }
}



/* discount-area */
.discount-area {
    position: relative;
    background: #F2F7FD;
    overflow-x: hidden;
    padding: 80px 0;
}

.discount-area .shape-1, 
.discount-area .shape-2 {
    position: absolute;
    top: 0;
}

.discount-area .shape-1, 
.discount-area .shape-3 {
    left: 0;
    filter: brightness(0) invert(1);
}

.discount-area .shape-2, 
.discount-area .shape-4 {
    right: 0;
}

.discount-area .shape-3, 
.discount-area .shape-4 {
    position: absolute;
    bottom: 0;
}

.disc-img img {
    border-radius: 20px;
    filter: drop-shadow(0px 0px 50px rgba(32, 52, 155, 0.1));
}

.discount-wrap:last-child {
    margin-top: 30px;
}

.disc-cont {
    text-align: center;
    margin-top: 30px;
}

.disc-cont p {
    margin: 20px 0;
}

.disc-img .dot-shape, 
.disc-img .dot-shape2 {
    display: none;
}

@media (min-width: 768px) {
    .discount-area {
        padding: 110px 0;
    }
    
    .discount-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .discount-wrap:nth-child(even) {
        flex-direction: row-reverse;
    }

    .discount-wrap:last-child {
        margin-top: 15px;
    }

    .discount-wrap:nth-child(even) 
    .disc-cont {
        padding-left: 0;
        padding-right: 30px;
    }

    .disc-img {
        position: relative;
        z-index: 1;
        width: 44%;
    }

    .disc-img .dot-shape, 
    .disc-img .dot-shape2 {
        display: block;
        position: absolute;
        bottom: -60px;
        max-width: 120px;
        z-index: -1;
    }

    .disc-img .dot-shape {
        left: -50px;
    }

    .disc-img .dot-shape2 {
        right: -50px;
    }

    .disc-cont {
        width: 56%;
        text-align: left;
        padding-left: 30px;
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .discount-area {
        padding: 150px 0;
    }

    .discount-wrap:last-child {
        margin-top: 50px;
    }

    .disc-cont {
        width: 50%;
        padding-left: 48px;
    }

    .disc-cont span {
        display: block;
    }

    .discount-wrap:nth-child(even)
     .disc-cont {
        padding-right: 48px;
    }

    .disc-img {
        width: 50%;
    }

    .disc-img .dot-shape, 
    .disc-img .dot-shape2 {
        max-width: 200px;
    }
}

/* our plans */
.our-plan {
    overflow-x: hidden;
    padding: 50px 0;
}

.our-plan h2 {
    text-align: center;
    margin-bottom: 30px;
}

.plans-wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.plans-item {
    background: #F2F7FD;
    border: 1px solid #C0CEE0;
    border-radius: 20px;
    transition: 0.5s;
    padding: 20px;
}

.plans-item:hover {
    background: #FFFFFF;
    border-color: #ffffff;
    box-shadow: 0px 0px 50px rgba(32, 52, 155, 0.2);
}

.plans-item h5 {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: #141E48;
    background: #D2E6FF;
    border-radius: 15px;
    padding: 20px 0;
    margin-bottom: 20px;
}

.plan-detl-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.price {
    text-align: center;
    background: #ffffff;
    box-shadow: 0px 0px 50px rgba(32, 52, 155, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.price span {
    display: block;
    margin: 5px 0 15px 0;
}

.price h1 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 900;
    color: #3B4360;
}

.price a {
    padding: 15px 40px;
}

.plan-detl-wrap .text p {
    text-align: center;
    margin-top: 20px;
}

.plans-item .dot-shape {
    display: none;
}

@media (min-width: 768px) {
    .our-plan {
        padding: 70px 0;
    }

    .plans-wrap {
        margin: 0 -10px;
    }

    .plans-col {
        width: 50%;
        padding: 0 10px;
    }
}

@media (min-width: 1200px) {
    .our-plan {
        padding: 80px 0 100px 0;
    }

    .plans-wrap {
        margin: 0 -15px;
    }

    .plans-col {
        padding: 0 15px;
    }

    .plan-detl-wrap {
        flex-wrap: wrap;
        justify-content: unset;
        align-items: flex-start;
    }

    .plan-detl-wrap .text p {
        margin-top: 0;
        text-align: left;
        padding-left: 20px;
    }

    .price {
        width: 39%;
    }

    .plan-detl-wrap .text {
        width: 61%;
    }

    .plans-item {
        position: relative;
    }

    .plans-item .dot-shape {
        display: block;
        position: absolute;
        bottom: -70px;
        left: -40px;
        max-width: 200px;
        z-index: -1;
    }
}

/* testimonial */

.testimonial {
    padding-bottom: 50px;
}

.testimonial h2 {
    text-align: center;
    margin-bottom: 10px;
}

.testi-item {
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 50px rgba(32, 52, 155, 0.1);
    border-radius: 20px;
    padding: 25px;
}

.testi-item p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0 35px 0;
}

.user-wrap {
    display: flex;
    align-items: center;
}

.user-img {
    max-width: 60px;
    display: none;
}

.user-detl {
    padding-left: 0;
}

.user-detl h5 {
    font-size: 20px;
    margin-bottom: 6px
}

.user-detl span {
    font-size: 16px;
    line-height: 24px;
}

.testi-item .qute-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.slick-list {
    padding: 30px 0;
    margin: 0 -15px;
}

.slider-container .prev-arrow, 
.slider-container .next-arrow {
    position: absolute;
    bottom: -50px;
    border: none;
    cursor: pointer;
    color: #5C5E5E;
    background: transparent;
    border: 1px solid #5C5E5E;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.slider-container .prev-arrow {
    left: 45%;
    transform: translateX(-60%);
}

.slider-container .next-arrow {
    right: 45%;
    transform: translateX(90%);
}

.slider-container .prev-arrow:focus, 
.slider-container .next-arrow:focus {
    outline: none;
}

.slider-container .prev-arrow:hover, 
.slider-container .next-arrow:hover {
    border-color: #0399FF;
    color: #0399FF;
}

.slide-item {
        padding: 0 15px;
}

@media(min-width: 768px) {
    .testimonial h2 {
        margin-bottom: 20px;
    }

    .slick-list {
        margin: 0 -15px;
    }
}

@media (min-width: 1200px) {
    .testimonial {
        padding-bottom: 0;
    }

    .user-img {
        max-width: 60px;
    }
}

@media (min-width: 1366px) {
    .slider-container .prev-arrow {
        left: -80px;
        bottom: unset;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .slider-container .next-arrow {
        right: -80px;
        top: 50%;
        bottom: unset;
        transform: translateY(-50%);
    }
}


/* location-area */

.location-area {
    margin: 50px 0;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 300px;
    visibility: visible;
}

.contact-form {
    background: #FFFFFF;
    box-shadow: 0px 0px 50px rgba(32, 52, 155, 0.1);
    border-radius: 20px;
    padding: 25px;
}

.contact-form h4 {
    font-size: 25px;
    line-height: 30px;
}

.contact-form p {
    margin: 10px 0 25px 0;
}

.cont-form input, 
.cont-form textarea {
    width: 100%;
    height: 28px;
    border: none;
    font-size: 15px;
    color: #141E48;
    border-bottom: 1px solid #2632386b;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.cont-form input:focus, 
.cont-form textarea:focus {
    outline: none;
}

.cont-form textarea {
    height: 100px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.cont-form input::placeholder, 
.cont-form textarea::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #5C5E5E;
}

.cont-form button {
    border: none;
    outline: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .location-area {
        margin: 80px 0 50px 0;
    }

    .map-box iframe {
        height: 420px;
    }
}

@media (min-width: 1200px) {
    .location-area {
        position: relative;
        margin: 150px 0 66px 0;
    }

    .map-box iframe {
        height: 650px;
    }

    .contact-form {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 135px;
        max-width: 480px;
    }

    .cont-form input {
        margin-bottom: 35px;
    }
}

@media (min-width: 1366px) {
    .location-area {
        margin: 100px 0 66px 0;
    }
}

/* footer */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 50%;
    background: rgba(3, 153, 255, 0.1);
    color: #263238;
    transition: 0.4s;
}

.social-link li a:hover {
    background: #141E48;
    color: #ffffff;
}

.date-detl img {
    max-width: 15px;
    margin-top: 5px;
}

.date-detl p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.date-detl p:last-child {
    margin-bottom: 0;
}

.copy-right-area {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid rgba(38, 50, 56, 0.3);
    padding-top: 20px;
    padding-bottom: 35px;
    margin-top: 20px;
}

.copy-right-area p {
    margin-bottom: 0;
}

.copy-right-area a {
    color: #263238;
}

.copy-right-area a:hover {
    text-decoration: underline;
}

.copy-right-area .terms {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.click-top a {
    background: #141E48;
    border-radius: 50%;
    padding: 7px;
}

.click-top span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px dashed #ffffff;
    border-radius: 50%;
}

.footer-wrap {
    position: relative;
    padding-bottom: 30px;
}

.click-top {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.click-top img {
    max-width: 15px;
}

@media (min-width: 768px) {
    .date-detl p {
        justify-content: center;
        align-items: center;
    }

    .date-detl img {
        margin-top: 0;
    }

    .click-top {
        bottom: unset;
        left: unset;
        transform: translateX(0);
        top: -16px;
        right: 0;
    }

    .click-top span {
        width: 45px;
        height: 45px;
    }

    .click-top img {
        max-width: 20px;
    }

    .copy-right-area .terms {
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .social-link  {
        margin-bottom: 40px;
    }

    .social-link li a {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .date-detl {
        display: flex;
        justify-content: space-between;
    }

    .date-detl p {
        margin-bottom: 0
    }

    .date-detl img {
        max-width: 20px;
    }

    .copy-right-area {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 35px;
    }

    .copy-right-area .terms {
        gap: 50px;
    }

    .click-top span {
        width: 66px;
        height: 66px;
    }

    .click-top img {
        max-width: 28px;
    }
}