@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Schoolbell&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    --yellow: #faa41a;
}

* {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all 0.2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    background: var(--yellow);
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 3rem;
}

.btn:hover {
    background: var(--green);
    letter-spacing: 0.1rem;
}

.sub-heading {
    text-align: center;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}

.heading {
    text-align: center;
    color: var(--black);
    font-size: 5rem;
    padding-bottom: 1%;
    padding-top: 1%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

header .logo {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: bolder;
}

header .logo i {
    color: var(--green);
}

header .navbar a {
    font-size: 1.7rem;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    color: var(--light-color);
}

header .navbar .sub_menu a {
    font-size: 1.7rem;
    border-radius: 0;
    padding: 0;
    color: var(--light-color);
}

header .navbar a.active,
header .navbar a:hover {
    color: #fff;
    background: var(--green);
}

header .icons i,
header .icons a {
    cursor: pointer;
    margin-left: 0.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
}

header .icons i:hover,
header .icons a:hover {
    color: #fff;
    background: var(--green);
    transform: rotate(360deg);
}

header .icons #menu-bars {
    display: none;
}

.sub_menu {
    position: absolute;
    background: #fff;
    width: 100%;

    left: 0;
    top: 75px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-around;
    visibility: hidden;
    line-height: 20px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.sub_menu a:hover {
    background: none;
    letter-spacing: normal;
    padding: 0;
}

.sub_menu .col img {
    width: 90px;
    height: 90px;
    display: block;
    visibility: hidden;
    border-radius: 10%;
}
.sub_menu .col img:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.sub_menu p {
    color: #666;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    visibility: hidden;
}

.sub_menu:hover {
    visibility: visible;
}

.sub_menu:hover .col img {
    visibility: visible;
}
.sub_menu:hover p {
    visibility: visible;
}

.nope:hover + .sub_menu {
    visibility: visible;
}

.nope:hover + .sub_menu .col img {
    visibility: visible;
}
.nope:hover + .sub_menu p {
    visibility: visible;
}

.sub_menu h4 {
    color: #ca914e;
}

.burger {
    height: auto;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    margin: auto;
    text-align: left;
    font-size: 4em;
    padding: 50px;
    display: none;
    transition-delay: 2s;
}

.burger img {
    padding-bottom: 3%;
}

.burger a {
    color: #27ae60;
    text-align: left;
    font-weight: bold;
}

.ico {
    text-align: right;
    margin-top: 10%;
}

.starts {
    width: 100%;
    height: auto;
    color: #fff;
    margin-top: auto;
}

.container {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.div_left {
    width: 50%;
    height: auto;
    margin: auto;
    text-transform: none;
    padding: 5%;
    padding-top: 8%;
}

.div_left h4 {
    text-align: left;
    font-size: 5rem;
    color: var(--black);
    font-family: "Schoolbell", cursive;
    font-weight: lighter;
    opacity: 0;
    animation: ani2 1s ease-out 0.3s forwards;
}

.div_left p {
    font-size: 2rem;
    color: var(--light-color);
    opacity: 0;
    animation: ani2 1s ease-out 0.6s forwards;
}

@keyframes ani2 {
    100% {
        opacity: 1;
    }
}

.div_right {
    width: 50%;
    height: 90vh;
    border-radius: 5px;

    background-image: url(./images/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;
    animation: ani2 1s ease-out 1s forwards;
}

.mid {
    width: 100%;
    height: auto;
    padding: 2rem 9%;
}

.texts {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    background: #fff;
}

.text {
    position: relative;
    transform: skewY(345deg) translateY(-200px);
    animation: animateColor 5s linear infinite;
}

@keyframes animateColor {
    0% {
        filter: hue-rotate(260deg);
    }
    100% {
        filter: hue-rotate(300deg);
    }
}

.text h2 {
    position: relative;
    width: 100%;
    font-size: 8rem;
    color: var(--black);
    pointer-events: none;
    line-height: 1em;
    white-space: nowrap;
    text-shadow: calc(var(--x)) 100px 0 rgba(0, 0, 0, 0.055);
    transform: translateX(calc(0% - var(--x) * var(--i)));
}

.text h2 span {
    color: #0f0;
    margin: 0 20px;
}

.text h2 span:nth-child(even) {
    color: transparent;
    -webkit-text-stroke: 2px var(--black);
}

.size {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .texts {
        height: 40vh;
        padding-left: 0;
        margin-left: -2%;
    }

    .text h2 {
        font-size: 2rem;
    }

    .text {
        transform: none;
    }
}

/*ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc*/

.zzzz {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.containerZ {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
}

.containerZ .cardZ {
    position: relative;
    border-radius: 8px;
    width: 350px;
    height: 300px;
    margin: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.containerZ .cardZ:hover {
    transform: scale(0.93);
}

.containerZ .cardZ .imgBx,
.containerZ .cardZ .contentBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.containerZ .cardZ .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.containerZ .cardZ .contentBx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    transform-origin: right;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.containerZ .cardZ:hover .contentBx::before {
    transform: scaleX(1);
    transition: transform 0.5s ease-in-out 0.3s;
    transform-origin: left;
}

.containerZ .cardZ .contentBx {
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerZ .cardZ .contentBx .contentZ {
    position: relative;
    padding: 30px;
    z-index: 1;
    transition: 0.5s;
    transform: translate(-350px);
    transition-delay: 0s;
    text-align: center;
}

.containerZ .cardZ:hover .contentBx .contentZ {
    transform: translate(0px);
    transition-delay: 0.7s;
}

.containerZ .cardZ:hover .contentBx .contentZ h3 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.containerZ .cardZ:hover .contentBx .contentZ p {
    font-size: 1.8em;
    line-height: 2rem;
    font-weight: 300;
    color: var(--light-color);
}

/*ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc*/

.mid_4 {
    width: 100%;
    height: auto;
    padding: 2rem 9%;
}

.mid_4 img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.siz {
    padding-top: 3%;
    padding-bottom: 1%;
}

.logos {
    text-align: center;
}

/*ishcvda;uccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc*/

.end {
    width: 100%;
    height: auto;
    margin-top: 5%;
    overflow: hidden;
}
.end_container {
    display: flex;
    flex-direction: row;
    background-color: black;
    overflow: hidden;
}

.end_right,
.end_left {
    width: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.end_right img {
    object-fit: cover;
    width: 100%;
    height: auto;
}
.end_left img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.zoom:hover {
    transform: scaleY(1.2);
}

/*ishcvda;uccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc*/

.test {
    z-index: 1;
    width: 100%;

    padding: 2rem 9%;
    text-align: center;
    justify-content: center;
}

.testi-item {
    transition: all 0.3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.9;
}

.testimonials-text {
    padding: 75px 50px 75px;
    overflow: hidden;
    background: #ffffff;
    border: 1ps solid #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: var(--green);

    font-size: 35px;
    transition: all 400ms linear;
    bottom: 25px;
    right: 30px;
}

.testimonials-avatar h3 {
    font-size: 15px;
}
.testimonials-avatar h4 {
    font-weight: 400;
    font-size: 15px;
    padding-top: 6px;
    color: #faa41a;
}
.testimonials-carousel .swiper-slide {
    padding-top: 1%;
    padding-bottom: 5%;
}

.swiper-slide-active .testimonials-text {
    background: #ffeccd;
}
.testimonials-text p {
    color: var(--light-color);
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}

.swiper-slide-active .testi-item {
    opacity: 1;
    transform: scale(1);
}
.tc-pagination {
    float: left;

    width: 100% !important;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
    opacity: 1;
    background: #27ae60;
    margin: 0 2px;
    width: 10px;
    height: 10px;
    transition: all 300ms ease-in-out;
}

.footer {
    margin-top: 10rem;
    padding: 2rem 9%;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 5rem;
}

.footer .box-container .box h3 {
    padding: 0.5rem 0;
    font-size: 2.5rem;
    color: var(--black);
}

.footer .box-container .box a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}
.footer .box-container .box span {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.footer .box-container .box a:hover {
    color: var(--green);
    text-decoration: underline;
}

.footer .credit {
    text-align: center;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    color: var(--black);
    padding: 0.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.footer .credit span {
    color: var(--green);
}

/* media queries  */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 1rem 2rem;
    }

    section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    header .icons #menu-bars {
        display: inline-block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .mid_4 img {
        max-width: 100px;
        height: auto;
    }

    .end_right,
    .end_left {
        width: 100%;
    }
    .end_container {
        display: block;
    }

    .div_left {
        width: 100%;
    }
    .container {
        background-image: url(./images/3.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .div_right {
        width: 0;
        opacity: 0;
        padding: 0;
    }

    .starts {
        padding: 0;
    }
}
