@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+SA+Beginner:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');
body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

p {
    font-family: 'ABeeZee', sans-serif;
}

h5 {
    font-family: 'Varela', sans-serif;
}

h1 {
    font-family: 'Varela', sans-serif;
}

.menu-container {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #ffffff;
    color: #000000;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 100;
    -webkit-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.menu-logo {
    line-height: 0;
    margin: 0 20px;
}

.menu-container a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
    animation: focus-in-contract-bck 2s cubic-bezier(.25, .46, .45, .94) both;
}

.menu-container input {
    display: block;
    width: 35px;
    height: 25px;
    margin: 0;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
}


/* Burger menu */

.menu-container span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #6b9ac4;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

.menu-container span:first-child {
    transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
    transform-origin: 0% 100%;
}

.menu-container input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(3px, -1px);
    background: black;
}

.menu-container input:checked~span:nth-child(4) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked~span:nth-child(3) {
    transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
    list-style: none;
}

.menu li {
    padding: 10px 0;
    font-size: 22px;
}

h2 {
    color: black;
}

.bannner-img {
    width: 100%;
    height: auto;
    margin-top: -5%;
    -webkit-animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in 1.2s cubic-bezier(.39, .575, .565, 1.000) both;
}

.section-container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
}

.section-container .columns {
    flex: 0 0 auto;
    width: 45%;
}

.section-container .columns.image {
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    margin-top: 1%;
    height: 600px;
    -webkit-animation: fade-in 2.2s cubic-bezier(.39, .575, .565, 1.000) both;
    animation: fade-in 2.2s cubic-bezier(.39, .575, .565, 1.000) both;
    transition: background-color 2.2s ease, transform .6s;
}

.section-container .columns.content .content-container {
    text-align: center;
    padding: 40px 90px;
    margin-top: 20%;
}

.section-container .columns.content .content-container h5 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

.section-container .columns.content .content-container p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    margin-bottom: 15px;
    text-align: justify;
}

.image:hover {
    -webkit-transform: scale(1.05);
    -webkit-transition: all 1.6s ease-in-out;
}

@media screen and (max-width: 1000px) {
    .section-container {
        flex-flow: row wrap;
    }
    .section-container .columns.image {
        display: block;
        order: 1;
        width: 85%;
        margin: 0 auto;
        height: 250px;
    }
    .section-container .columns.content {
        display: block;
        order: 2;
        width: 100%;
    }
    .section-container .columns.content .content-container {
        margin-top: 1%;
        padding: 20px 35px;
    }
    .section-container .columns.content .content-container h5 {
        margin-bottom: 5px;
    }
}

:root {
    --text-light: #ffffff;
    --text-lighter: #ffffff;
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
    --width-container: 1200px;
}

.hero-section {
    font-family: 'Edu SA Beginner', cursive;
    align-items: flex-start;
    display: flex;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-l);
}

.card5-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: var(--spacing-l);
    grid-row-gap: var(--spacing-l);
    max-width: 100%;
    width: 100%;
}

@media (min-width: 540px) {
    .card5-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .card5-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card5 {
    list-style: none;
    position: relative;
}

.card5:before {
    content: '';
    display: block;
    padding-bottom: 100%;
    width: 100%;
}

.card5__background {
    background-size: cover;
    background-position: center;
    /* border-radius: var(--spacing-l); */
    border-radius: 1%;
    bottom: 0;
    filter: brightness(0.95) saturate(2.2) contrast(0.95);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    trsnsform: scale(1) translateZ(0);
    transition: filter 200ms linear, transform 200ms linear;
}

.card5:hover .card5__background {
    transform: scale(1.05) translateZ(0);
}

.card5-grid:hover>.card5:not(:hover) .card5__background {
    filter: brightness(0.7) saturate(0.4) contrast(1.9) blur(30px);
}

.card5__content {
    left: 0;
    padding: var(--spacing-l);
    position: absolute;
    top: 0;
}

.card5__heading {
    color: var(--text-lighter);
    font-size: 1.9rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    word-spacing: 100vw;
}

#black-banner {
    background: #000000;
    color: #ffffff;
    padding: 35px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

#contact {
    background: #000000;
    color: #ffffff;
    padding: 35px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.footer-basic {
    padding: 40px 0;
    margin-bottom: -250px;
    background-color: #ffffff;
    color: black;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

#dd:hover {
    color: #4059ad;
}

.footer-basic ul a:hover {
    opacity: 1;
    color: #4059ad;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer-basic .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid black;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer-basic .social>a:hover {
    opacity: 0.9;
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: black;
    margin-bottom: 0;
}

.gtco-testimonials {
    position: relative;
    margin-top: 30px;
}

.gtco-testimonials h2 {
    font-size: 30px;
    text-align: center;
    color: black;
    margin-bottom: 50px;
}

.gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
}

.gtco-testimonials .owl-nav {
    display: none;
}

.gtco-testimonials .owl-dots {
    text-align: center;
}

.gtco-testimonials .owl-dots span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: #fff;
    border: 2px solid #4059ad;
    margin: 0 5px;
}

.gtco-testimonials .owl-dots .active {
    box-shadow: none;
}

.gtco-testimonials .owl-dots .active span {
    background: #4059ad;
    box-shadow: none;
    height: 12px;
    width: 12px;
    margin-bottom: -1px;
}

.gtco-testimonials .card1 {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
}

.gtco-testimonials .card1 .card-img-top {
    max-width: 100px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100px;
    height: 100px;
}

.gtco-testimonials .card1 h5 {
    color: #4059ad;
    font-size: 21px;
    line-height: 1.3;
}

.gtco-testimonials .card1 h5 span {
    font-size: 18px;
    color: black;
}

.gtco-testimonials .card1 p {
    font-size: 18px;
    color: black;
    padding-bottom: 15px;
}

.gtco-testimonials .active {
    opacity: 0.5;
    transition: all 0.3s;
}

.gtco-testimonials .center {
    opacity: 1;
}

.gtco-testimonials .center h5 {
    font-size: 24px;
}

.gtco-testimonials .center h5 span {
    font-size: 20px;
}

.gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
}

@media (max-width: 767px) {
    .gtco-testimonials {
        margin-top: 20px;
    }
}

button {
    text-decoration: none;
    outline: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    outline: 0;
}

.owl-carousel button.owl-dot {
    outline: 0;
}

a {
    text-decoration: none;
    outline: none;
}

#button {
    font-family: 'ABeeZee', sans-serif;
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-top: 2%;
    margin-bottom: 2%;
}

#button:hover {
    background-color: #4059ad;
    box-shadow: 0px 15px 20px #ff3366;
    color: #fff;
    transform: translateY(-7px);
}

#button:active {
    transform: translateY(-1px);
}


/* mobile styles */

@media only screen and (max-width: 899px) {
    .menu-container {
        flex-direction: column;
        align-items: flex-end;
    }
    .menu-logo {
        position: absolute;
        left: 0;
        top: 30%;
        transform: translateY(-50%);
    }
    .menu-logo {
        color: black;
    }
    .menu {
        color: black;
        position: absolute;
        box-sizing: border-box;
        border-radius: 20px;
        width: 300px;
        right: -300px;
        top: 0;
        margin: -20px;
        padding: 75px 50px 50px;
        background: white;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        transform-origin: 0% 0%;
        transform: translateX(0%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }
    .menu-container input:checked~.menu {
        transform: translateX(-100%);
    }
}


/* desktop styles */

@media only screen and (min-width: 900px) {
     ::-webkit-scrollbar {
        width: 2px;
    }
    .menu-container {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu-container a {
        color: #000000;
    }
    .menu-container input {
        display: none;
    }
    /* Burger menu */
    .menu-container span {
        display: none;
    }
    .menu {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .menu ul {
        display: flex;
        padding: 0;
    }
    .menu li {
        padding: 0 20px;
    }
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes focus-in-contract-bck {
    0% {
        letter-spacing: 1em;
        transform: translateZ(300px);
        filter: blur(12px);
        opacity: 0
    }
    100% {
        transform: translateZ(12px);
        filter: blur(0);
        opacity: 1
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4059ad;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b9ac4;
}