@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px;
    max-width: 1920px;
    margin: auto;
}

h1 {
    font-size: clamp(2rem, 3.3vw, 4.3rem);
}

h2 {
    font-size: clamp(1rem, 2.3vw, 3.3rem);
}

body a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

body p {
    margin: 0;
    padding: 0;
}

body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body video {
    width: 100%;
    max-width: 300px;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

:root {
    --space: clamp(0.5rem, 3vw, 2rem);
    --bg-main: radial-gradient(circle at left bottom, rgba(255, 255, 255, 1) 0%, rgba(207, 243, 255, 0.5) 50%);
}

.border {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/*================== Topper ==================*/

.topper {
    position: fixed;
    top: 0.5rem;
    width: 100%;
    white-space: nowrap;
    border-radius: 20px;
    z-index: 999;
}

/*================== Header-block-1 ==================*/

.header-block-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/*================== Header ==================*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    width: 100%;
    max-width: 1860px;
    margin: var(--space);
    padding: var(--space);
    transition: all 0.3s ease;
    background: none;
    box-shadow: none;
}

.header-wrapper.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .h-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

@media (max-width: 576px) {
    header .h-icons {
        gap: 1.3rem;
    }
}

header a {
    font-weight: 400;
}

header i {
    font-size: 25px;
}

/* ========================================================== */

header .logo-header img {
    width: 100%;
    max-width: 250px;
}

/* ========================================================== */

header .location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    gap: 0.6rem;
}

header .loc-disc {
    display: inline-block;
}

@media (max-width: 1320px) {
    header .loc-disc {
        display: none;
    }
}

header .location:hover a {
    text-decoration: underline;
    color: rgba(0, 95, 140, 1);
}

/* ========================================================== */

header .phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    gap: 0.6rem;
}

header .phone-disc {
    display: inline-block;
}

@media (max-width: 1320px) {
    header .phone-disc {
        display: none;
    }
}

header .num:hover {
    text-decoration: underline;
    color: rgba(0, 95, 140, 1);
}


/* ========================================================== */


.nav-icons {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.nav-icons #nav-close {
    display: none;
}

#check:checked~.nav-icons #nav-open {
    display: none;
}

#check:checked~.nav-icons #nav-close {
    display: block;
}

header #check {
    position: absolute;
    top: 10px;
    right: 5px;
    display: none;
}

@media (max-width: 992px) {
    .nav-icons {
        display: flex;
    }
}


/*========================= Nav-win =========================*/


.nav-win ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.nav-win ul li {
    display: flex;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

@media (max-width: 992px) {
    .nav-win ul li {
        display: none;
    }
}

.nav-win ul li a {
    color: rgba(0, 0, 0, 0.7);
}

.nav-win ul li a:hover {
    text-decoration: underline;
    color: rgba(0, 95, 140, 1);
}

/*========================= Nav-mob =========================*/

.nav-mob {
    display: none;
    overflow: hidden;
    background: white;
    opacity: 0;
    max-height: 0;
    margin: 0 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 999;
}

@media (max-width: 992px) {
    .nav-mob {
        display: block;
    }
}

.nav-mob.active {
    opacity: 1;
    max-height: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-mob ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.3rem;
    margin: 2.5rem;
}


/*========================= main =========================*/


main {
    display: flex;
    align-items: center;
    margin: var(--space);
    padding: var(--space);
    border-radius: 20px;
    background: var(--bg-main);
    max-height: 90vh;
}

.main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-top: 0;
}

main .main-disc {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.main-img {
    flex: 0 0 50%;
    width: 100%;
}

@media (max-width: 992px) {
    main {
        max-height: none;
    }

    .main-wrapper {
        flex-direction: column;
        margin-top: 5rem;
    }

    main .main-disc {
        margin-top: 0;
        gap: 1.5rem;
    }

    main .main-disc,
    main .main-img {
        flex: 0 0 100%;
        width: auto;
    }
}

main p {
    margin-right: 3rem;
}

main h1 {
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.btn-main {
    margin-right: auto;
    padding: 20px 30px;
    border: 1px solid black;
    border-radius: 100px;
    font-size: 18px;
}

.btn-main:hover {
    background-color: #005F8C;
    color: white;
    border: 1px solid #005F8C;
}

.btn-main::after {
    content: '\f061';
    font-family: FontAwesome;
    font-size: 14px;
    margin-left: 14px;
    transition: all 0.3s ease;
}

.btn-main:hover::after {
    margin-left: 18px;
    font-size: 16px;
}

/*========================= gallery =========================*/

.gallery-wrapper {
    margin: var(--space);
}

.gallery-title {
    margin: 5rem 0;
}

.gallery-title h2 {
    max-width: 70%;
}

.gallery .a-wrapper {
    margin-top: 2rem;
    width: max-content;
    margin-left: auto;
}

.gallery a {
    display: inline-block;
    border: 1px solid black;
    border-radius: 40px;
    padding: 20px;
    white-space: nowrap;
}

.gallery a::after {
    content: '\f061';
    font-family: FontAwesome;
    font-size: 14px;
    margin-left: 14px;
    transition: all 0.3s ease;
}

.gallery a:hover {
    background-color: #005F8C;
    color: white;
    border: 1px solid #005F8C;
}

@media (max-width: 576px) {
    .gallery-title h2 {
        max-width: 100%;
    }
}

/*========================= about =========================*/

.about-wrapper {
    margin: var(--space);
    padding: var(--space);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: white;
}

.about {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 5rem 0;
    align-items: center;
}

.about h2 {
    font-size: clamp(1.5rem, 2.5vw, 5rem);
    max-width: 100%;
    margin-bottom: 2rem;
}

.about-gallery {
    display: flex;
    flex-direction: row;
    margin: 5rem 0;
    max-width: 25%;
    gap: 1rem;
}

.about-gallery img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about .img-wrapper img {
    display: inline;
    width: 100%;
    height: 100%;
}

.about a {
    font-size: 1.5rem;
    background-color: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    border: 1px solid black;
}

.about a:hover {
    background-color: #00457A;
    border: 1px solid #00457A;
    color: white;
}

@media (max-width: 992px) {
    .about {
        align-items: none;
        flex-direction: column;
        margin: 2rem 0;
    }

    .about-gallery {
        max-width: 100%;
    }

    .about-gallery {
        flex-direction: column;
        margin: 2rem 0;
    }

    .about .img-wrapper img {
        display: none;
    }
}

/*========================= why we =========================*/


.why-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--space);
    padding: var(--space);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: white;
}

.why {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0;
    width: 100%;
}

.why-block-1 h2 {
    margin-bottom: 1rem;
}

.why-block-1 p {
    max-width: 50%;
}

.why-block-1 span {
    display: block;
    font-size: clamp(2rem, 20vw, 10rem);
    font-weight: 800;
    line-height: 0.9;
    color: rgba(210, 220, 230, 0.3);
    margin-top: 5rem;
    margin-bottom: 0;
}

.why-block-2 {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-block-2 .why-item {
    display: flex;
    flex-direction: row;
    text-align: none;
    gap: 1.5rem;
    text-align: center;
}

.why-block-2 img {
    scale: 1.2;
}

.why-img-wrapper {
    text-align: center;
    width: 150px;
}

@media (max-width: 576px) {
    .why-block-1 p {
        max-width: 100%;
    }

    .why-block-1 span {
        margin-top: 3rem;
        margin-bottom: 4rem;
    }

    .why-block-2 .why-item {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
}


/*========================= form =========================*/


.form-wrapper {
    display: flex;
    justify-content: center;
    margin: var(--space);
    padding: var(--space);
    background: radial-gradient(circle at left bottom,
            rgba(207, 243, 255, 1) 0%,
            rgba(255, 255, 255, 1) 20%,
            rgba(255, 255, 255, 1) 100%);
}

.main-form {
    display: flex;
    justify-content: space-between;
    margin: 5rem 0;
}

.form-left {
    max-height: 100%;
    opacity: 100%;
    overflow: hidden;
}

.form-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-title p {
    color: grey;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form .form-control {
    font-size: 16px;
    border: 1px solid black;
    border-radius: 0;
    padding: 1.5rem;
}

.btn-file-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: auto;
    gap: 0.5rem;
}

.btn-file {
    display: inline-block;
    padding: 8px 20px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: auto;
}

.btn-file:hover {
    background-color: #218838;
}

.btn-file-wrapper span {
    margin-left: 1rem;
    color: gray;
    font-size: 12px;
    font-style: italic;
}

form .btn-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-direction: row;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 1rem;
}

form .btn-block p {
    width: 60%;
    margin-left: auto;
    text-align: right;
}

form .btn-form {
    padding: 18px 34px;
    border-radius: 36px;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    color: white;
    background: #005F8C;
    border: 0;
}

form .btn-form:hover {
    background: #00457A;
}

form .btn-form.JSsend {
    background: green;
    color: white;
    cursor: wait;
}

@media (max-width: 576px) {
    .main-form {
        margin: 3rem 0;
    }

    .form-right {
        gap: 2rem;
        margin-top: 2rem;
    }

    form .form-control {
        padding: 1rem;
    }

    .btn-file-wrapper {
        flex-direction: column;
        margin-right: 0;
        margin: auto;
    }

    form .btn-block {
        flex-direction: column;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    form .btn-block p {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

/*========================= services =========================*/

.services-hero,
.services-wrapper {
    margin: var(--space);
    padding: var(--space);
}

.card-item {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: var(--bg-main);
    z-index: 1;
}

.card-title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 40%;
    height: 100%;
}

.card-title p {
    opacity: 0;
    transform: translateY(50px);
    transition: all .7s ease;
}

.card-item:hover .card-title p {
    opacity: 1;
    transform: translateY(0);
}

.card-img {
    position: absolute;
    z-index: -1;
    left: 55%;
    top: 50%;
    transform: rotate(-25deg) translate3d(0, -50%, 0);
    transform-origin: center center;
    transition: all .5s cubic-bezier(.215, .61, .355, 1);
    max-width: 50%;
    height: auto;
}

.card-item:hover .card-img {
    transform: rotate(-30deg) translate3d(0, -50%, 0) scale(1.1);
}

@media (max-width: 576px) {
    .card-item {
        min-height: 300px;
    }

    .card-title {
        width: 80%;
    }

    .card-title p {
        font-size: 0.7rem;
    }

    .card-img {
        left: 60%;
        top: 70%;
        max-width: 100%;
    }
}

/*========================= about =========================*/

.about-us-wrapper,
.about-values {
    margin: var(--space);
    padding: var(--space);
}

.about-hero {
    background: #6999db;
    background: linear-gradient(45deg, rgba(105, 153, 219, 1) 0%, rgba(162, 195, 235, 1) 100%);
    color: #fff;
}

.about-values img {
    filter: grayscale(20%);
    transition: 0.3s;
}

.about-values img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/*========================= footer =========================*/

footer {
    margin: var(--space);
    padding: var(--space);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
}

.f-wrapper {
    margin: 2rem 0;
}

.f-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 2rem;
}

@media (max-width: 992px) {
    .f-content {
        flex-direction: column;
    }
}

footer a:hover {
    text-decoration: underline;
    color: rgba(0, 95, 140, 1);
}

footer p {
    font-size: 14px;
}

.f-block-1 {
    display: flex;
    flex: 1 1 50%;
    gap: 2rem;
}

.f-block-2 {
    flex: 1 1 50%;
}

.f-cont-1 {
    display: flex;
    flex-direction: column;
    flex: 1 1 60%;
    gap: 1rem;
}

.f-cont-2 {
    display: flex;
    flex-direction: column;
    flex: 1 1 40%;
    gap: 1rem;
}


.f-cont-1 ul {
    display: flex;
    flex-direction: row;
    font-size: 2rem;
}

.f-cont-2 ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.f-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.f-bottom .rights-1 {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

span {
    font-size: 0.7rem;
}

.f-bottom .rights-2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
}

@media (max-width: 576px) {
    .f-bottom .rights-2 {
        flex-direction: column;
        gap: 0.3rem;
    }
}


/*========================= Terms / Politics =========================*/


.banner {
    height: 200px;
}

@media (max-width: 576px) {
    .banner {
        height: 80px;
    }
}

.breadcrumbs ul {
    display: flex;
    margin: var(--space);
    padding: var(--space);
}

.breadcrumbs ul li {
    display: flex;
    align-items: center;
}

.breadcrumbs ul li a:hover {
    text-decoration: underline;
}

.breadcrumbs ul li span {
    font-size: 1rem;
}

.breadcrumbs ul li span::before {
    content: '\f105';
    font-family: FontAwesome;
    font-size: 10px;
    margin: 0 0.5rem;
    text-decoration: none;
}

.politics {
    margin: var(--space);
    padding: var(--space);
}

.politics h1 {
    margin-bottom: 0.5rem;
}

.politics h4 {
    margin: 40px 0;
}

.politics .wp-block-table th,
.politics .wp-block-table td {
    border: 1px solid;
    padding: .5em;
}