:root {
    --main-blue: #0E2E57;
    --sec-blue: #0085FF;
    --hover-blue: #48a0f3;
}

body {
    background-color: #F1F1F1;
}

@media screen and (min-width:1000px) {
    main {

        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 60px;
        align-items: center;
        transition: transform 0.3s ease;
        transition-delay: 0.1s;

    }

    .wrapper.active {
        transform: translateX(125px);
    }

    .title {
        font-family: "KoHo Bold";
        font-size: 30px;
        color: #0E2E57;
        text-transform: uppercase;
        margin-bottom: 30px;

    }

    section {
        padding: 0 160px;
        max-width: 1200px;
        min-width: 1200px;
    }

}

@media screen and (max-width:999px) {
    main {
        margin: 0px 0px 0 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 60px;

    }

    .wrapper {

        font-family: "KoHo Regular";
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .title {
        font-family: "KoHo Regular";
        font-size: 30px;
        color: #0E2E57;
        text-transform: uppercase;
        margin-bottom: 30px;
        text-align: center;

    }

    .container {
        overflow: hidden;
        margin: 0px 20px 0 20px;
    }


}


@media screen and (min-width:1000px) {
    .about__content {
        display: flex;
        justify-content: space-between;
        gap: 60px;
    }

    .about__text-container {
        display: flex;
        flex-direction: column;
        gap: 30px;

        max-width: 470px;
        font-size: 18px;
        width: 100%;

        font-family: "KoHo Regular";
    }

    .about__text__sec  { 
        margin-top: 20px;
        font-size: 18px;
        width: 100%;

        font-family: "KoHo Regular";
    }

    .about__img-container {
        display: flex;
        

        width: 100%;
        height: 250px;
        border-radius: 20px;
    }

    .about__img-container img { 
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }
}


@media screen and (max-width:1000px) {
    .about__content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: space-between;
    }

    .about__text-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        font-family: "KoHo Regular";
        font-size: 20px;
        width: 100%;
    }

    .about__text__sec  { 
        margin-top: 30px;
        font-size: 20px;
        width: 100%;

        font-family: "KoHo Regular";
    }

    .about__img-container {
        display: flex;
        

        width: 100%;
        
        border-radius: 20px;
    }

    .about__img-container img { 
        border-radius: 20px;
    }
}

@media screen and (min-width:1000px) {
    .serv__list {
        display: flex;
        justify-content: space-between;
        font-family: "KoHo Regular";
        gap: 20px;
    }

    .serv__card {
        border-radius: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        min-width: 240px;
        width: 100%;
        display: flex;
        flex-direction: column;
        
    }

    .serv__card__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        
        font-family: 'KoHo Bold';
        width: 100%;
    }

    .serv__card__name {
        font-size: 16px;
        text-transform: uppercase;
        width: 100%;
    }

    .serv__card__price {
        font-size: 14px;
        
        text-align: right;
        width: 40%;
    }

    .serv__card__disc {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        flex-direction: column;
        
        margin-bottom: 45px;
    }

    .serv__card__disc__point {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-top: 20px;
        
    }

    .serv__card__text {
        font-size: 10px;
        text-transform: uppercase;
        max-width: 180px;

    }

    .serv__card__btn__cont { 
        margin-top: auto;
        display: flex;
        justify-content: flex-end;
    }

    .serv__card__btn {
        background-color: var(--main-blue);
        border-radius: 50px;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        min-width: 100px;
        padding: 5px 0px;
        margin-left: auto;
        transition: background-color 0.3s ease;
       
    }

    .serv__card__btn a  { 
        color: #fff;
        width: 100%;
        height: 100%;
    }

    

    .service__more {
        font-family: "KoHo Regular";
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
    }

    .service__more button {
        text-decoration: underline;
        margin-left: auto;
        padding: 2px;

    }

    .service__more button:hover {
        color: var(--main-blue);
    }
}

@media screen and (max-width: 999px) and (min-width:710px) {
    .serv__list {
        display: flex;
        font-family: "KoHo Regular";
        gap: 10px;

    }
}

@media screen and (max-width: 710px) {
    .serv__list {
        display: flex;
        font-family: "KoHo Regular";


    }
}

@media screen and (max-width:999px) {
    .service__container {
        overflow: visible;
        margin: 0px 0px 0px 0px;
    }

    



    .serv__list .slick-track {
        display: flex;
        gap: 0px;
        padding: 10px 0px;

    }

    .serv__list .slick-slide {
        
        scale: 0.9;
        filter: none;
        transition: all 0.3s ease;
    }

    .serv__list .slick-slide.slick-current.slick-center {
        scale: 1;
        filter: none;
    }

    .serv__card {
        border-radius: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px 20px;
        min-width: 218px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        height: auto !important;

    }

    .serv__card__title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'KoHo Bold';
        width: 100%;
    }

    .serv__card__name {
        font-size: 15px;
        width: 100%;
        text-transform: uppercase;
    }

    .serv__card__price {
        font-size: 14px;
        width: 43%;
        text-align: right;
    }

    .serv__card__disc {
        display: flex;
        flex-direction: column;
        
        margin-bottom: 24px;
    }

    .serv__card__disc__point {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        
    }

    .serv__card__text {
        font-size: 11px;
        text-transform: uppercase;


    }

    .serv__card__btn__cont {
        display: flex;
        margin-top: auto;
    }

    .serv__card__btn {
        background-color: var(--main-blue);
        border-radius: 50px;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        min-width: 100px;
        padding: 5px 0px;
        margin-left: auto;
        transition: background-color 0.3s ease;
        margin: 0 auto;
    }

    

    .service__more {
        font-family: "KoHo Regular";
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;

    }

    .service__more button {
        background-color: var(--main-blue);
        color: #fff;
        border-radius: 15px;
        margin: 0 auto;
        padding: 5px 10px;

    }

    .service__more button:hover {
        color: var(--main-blue);
    }
}

@media screen and (min-width: 1000px) {
    .gallery__content {
        margin-top: 40px;
        display: flex;
        padding: 0px 40px 0px 0px;
    }

    .gallery__point,
    .gallery__slider {
        width: 100%;
    }

    .gallery__item {
        cursor: pointer;
        display: flex;
        gap: 20px;
        align-items: flex-start;
        font-family: "KoHo Regular";
    }

    .gallery__check {
        font-family: "KoHo Bold";
        font-size: 30px;
        color: var(--main-blue);
        min-width: 20px;
        text-align: center;
    }

    .gallery__item__title {
        font-size: 20px;
        margin-top: 6px;
    }

    .gallery__item__disc {
        display: none;
        font-size: 17px;
    }

    .gallery__slider__container {
        height: 300px;

    }
    
    .gallery__slider .slick-list { 
        overflow: hidden;   
    }

    .gallery__slider.active {
        display: block;
        height: 100%;
        width: 362px;
        position: relative;
    }

    .gallery__slider:not(.active) {
        display: none !important;
    }

    /* .gallery__slider .slick-arrow::before {

        border-radius: 50%;
        font-size: 32px;
        position: absolute;
        top: -2.5px;
        left: -3px;
        
        opacity: 1;
    }

    .gallery__slider .slick-arrow.slick-prev {
        left: -5px;
        z-index: 100;
        color: #F1F1F1;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--main-blue);
    }

    .gallery__slider .slick-arrow.slick-next {
        right: -5px;
        z-index: 100;
        color: #F1F1F1;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--main-blue);
    } */

    .gallery__slider .slick-arrow{ 
        position: absolute;
        z-index: 999;
        top: calc(50% - 15px);
        transform: translateY(-50%);
        cursor: pointer;
        background: var(--main-blue);
        background-size: 50% auto;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border-radius: 50%;
        padding: 1.5px;
    }

    .gallery__slider .prev-arrow { 
        left: 2px;
    }

    .gallery__slider .next-arrow { 
        right: 2px;
    }

    .gallery__slider img {
        max-height: 300px;
    }
}

@media screen and (max-width: 999px) {
    .gallery__container {
        overflow: visible;
    }

    .gallery__content {
        margin-top: 40px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        padding: 0px 0px 0px 0px;
    }

    .gallery__point,
    .gallery__slider {
        width: 100%;
    }

    .gallery__item {
        cursor: pointer;
        display: flex;
        gap: 20px;
        align-items: flex-start;
        font-family: "KoHo Regular";
    }

    .gallery__check {
        font-family: "KoHo Bold";
        font-size: 30px;
        color: var(--main-blue);
        min-width: 20px;
        text-align: center;
    }

    .gallery__item__title {
        font-size: 17px;
        margin-top: 9px;
    }

    .gallery__item__disc {
        display: none;
        font-family: "KoHo Regular";
        font-size: 15px;
    }

    .gallery__slider__container {
        min-height: 300px;
    }



    .gallery__slider.active {
        display: block;
        height: 100%;
        width: 100%;
    }

    .gallery__slider:not(.active) {
        display: none !important;
    }

    /* .gallery__slider .slick-arrow::before {
        border-radius: 50%;
        font-size: 32px;
        position: absolute;
        top: -2.5px;
        left: -3px;
        
        opacity: 1;
    }

    .gallery__slider .slick-arrow.slick-prev {
        left: -5px;
        z-index: 100;
        color: #F1F1F1;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--main-blue);
    }

    .gallery__slider .slick-arrow.slick-next {
        right: -5px;
        z-index: 100;
        color: #F1F1F1;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background-color: var(--main-blue);
    } */

    .gallery__slider .slick-arrow{ 
        position: absolute;
        z-index: 999;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        background: var(--main-blue);
        background-size: 50% auto;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border-radius: 50%;
        padding: 1.5px;
    }

    .gallery__slider .prev-arrow { 
        left: 2px;
    }

    .gallery__slider .next-arrow { 
        right: 2px;
    }

    .gallery__slider img {
        max-height: 300px;
    }

    .gallery__slider img {
        max-height: 300px;
        border-radius: 15px;
    }
}

@media screen and (min-width:1000px) {
    .benefits__list {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 140px;
        font-family: "KoHo Regular";
    }

    .benefits__item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .benefits__title {
        position: relative;
        font-size: 20px;
        display: flex;
        justify-content: space-between;
    }

    .benefits__title::before {
        position: absolute;
        content: "";
        top: -10px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--main-blue);
    }
}

@media screen and (max-width:999px) {
    .benefits__list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;

        gap: 35px;
        font-family: "KoHo Regular";
    }

    .benefits__item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .benefits__title {
        position: relative;
        font-size: 17px;
        font-family: "KoHo Bold";
        display: flex;
        justify-content: space-between;
    }

    .benefits__title::before {
        position: absolute;
        content: "";
        top: -20px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--main-blue);
    }

    .benefits__disc {
        font-size: 15px;
    }
}

@media screen and (min-width:1000px) {
    .contact__form {
        background-image: url('../assets/img/contact__back.svg');
        background-size: cover;
        border-radius: 25px;
        display: flex;
        padding: 15px 40px 25px 10px;
    }

    .contact__cont {
        margin-left: auto;
        color: #fff;
        font-family: "KoHo Regular";
        display: flex;
        flex-direction: column;
    }

    .contact__cont h3 {
        font-size: 30px;
        text-align: center;
    }

    .contact__subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact__input {
        display: flex;
        gap: 5px;
        align-items: center;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 10px 0px 10px 0px;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
        padding: 10px;
        width: 300px;

        margin-bottom: 10px;
    }

    .contact__input input { 
        width: 100%;
    }

    #phoneInput { 
        width: 100%;
    }

    input::placeholder {
        color: white;
    }

    input[type="tel"]::-webkit-search-decoration,
    input[type="tel"]::-webkit-search-cancel-button,
    input[type="tel"]::-webkit-search-results-button,
    input[type="tel"]::-webkit-search-results-decoration {
        display: none;
    }

    .contact__btn {
        margin-left: auto;
    }

    .contact__btn {
        border: 1px solid #fff;
        border-radius: 10px 0px 10px 0px;
        font-family: "KoHo Bold";
        padding: 5px 20px;
        position: relative;
        overflow: hidden;
        border: 1px solid #fff;
        background-color: transparent;
        z-index: 2;
    }

    .form-contact { 
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width:999px) {
    .contact__form {
        background-image: url('../assets/img/contact__back__mob.svg');
        background-size: cover;
        border-radius: 25px;
        display: flex;
        padding: 15px 10px 25px 10px;
    }

    .contact__cont {
        margin: 0 auto;
        color: #fff;
        font-family: "KoHo Regular";
        display: flex;
        flex-direction: column;
    }

    .contact__cont h3 {
        font-size: 30px;
        text-align: center;
    }

    .contact__subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact__input {
        display: flex;
        gap: 5px;
        align-items: center;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 10px 0px 10px 0px;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
        padding: 10px;
        min-width: 270px;
        margin-bottom: 10px;
    }

    .contact__input input { 
        width: 100%;
    }

    #phoneInput { 
        width: 100%;
    }

    input::placeholder {
        color: white;
    }



    .contact__btn {
        margin-left: auto;
    }

    .contact__btn {
        border: 1px solid #fff;
        border-radius: 10px 0px 10px 0px;
        font-family: "KoHo Bold";
        padding: 5px 20px;
        position: relative;
        overflow: hidden;
        border: 1px solid #fff;
        background-color: transparent;
        z-index: 2;
    }

    .iti { 
        display: flex;
        align-items: center;
    }

    .form-contact { 
        display: flex;
        flex-direction: column;
    }
}

.iti__country-list {
    font-family: "KoHo Regular";
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0);
}



@media screen and (min-width: 1000px) {
    .footer {
        width: 100%;
        height: 265px;

        background-color: #212121;
    }

    .footer__container {
        height: 100%;
        width: 100%;
        padding: 57px 73px 0px 120px;
        margin-bottom: 37px;
        font-family: "KoHo Regular";
        color: #fff;
        display: flex;
        gap: 95px;
    }



    .footer__disc {
        display: flex;
        flex-direction:column;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 17px 4px;
        width: 100%;
    }

    .footer__disc__number {
        font-size: 18px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer__disc__number__int {
        text-decoration: underline;
    }

    .footer__disc__text {
        max-width: 262px;
    }

    .footer__disc__text,
    .footer__disc__right {
        font-size: 15px;
    }
    
    .footer__disc__right { 
        margin-bottom: 20px;   
    }

    .footer__links {
        font-family: "KoHo Regular";
        display: flex;
        width: 60%;
        align-items: center;
        justify-content: space-between;
    }

    .footer__links__site {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0px 0px 20px 0px;
    }

    .footer__links__item {
        display: flex;
        gap: 9px;
        align-items: center;
        font-size: 20px;
    }

    .iti__country-list {
        background-color: #F1F1F1;
        color: #000;
        z-index: 1000;
        left: -40px;
    }
}

@media screen and (max-width: 999px) {
    .footer {
        width: 100%;
        overflow: hidden;

        background-color: #212121;
    }

    .footer__container {
        height: 100%;

        padding: 25px 41px 0px 41px;
        overflow: hidden;
        font-family: "KoHo Regular";
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 95px;
    }



    .footer__disc {
        display: flex;

        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
        gap: 17px 4px;
        width: 100%;
    }

    .footer__disc__number {
        font-size: 18px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer__disc__number__int {
        text-decoration: underline;
    }

    .footer__disc__text {
        max-width: 262px;
    }

    .footer__disc__text,
    .footer__disc__right {
        font-size: 15px;
    }

    .footer__links {
        font-family: "KoHo Regular";
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .footer__links__site {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 17px;
        padding: 0px 0px 20px 0px;
    }

    .footer__links__item {
        display: flex;
        gap: 9px;
        align-items: center;
        font-size: 20px;
    }

    .iti__country-list {
        background-color: #F1F1F1;
        color: #000;
        z-index: 1000;
        left: 10px;
    }
}