@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Londrina+Outline&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --color-bg1: rgb(249, 248, 250);
    --color-bg2: rgb(255, 255, 255);
    --color1: 0, 60, 255;
    --color2: 255, 0, 0;
    --color3: 255, 208, 0;
    --color4: 72, 255, 0;
    --color5: 254, 255, 254;
    --color-interactive: 140, 100, 255;
    --circle-size: 80%;
    --blending: hard-light;
    --dark: #343651;
}

body {
    min-height: 100vh;
    background-color: white;
}

.landing {
    /* background: linear-gradient(50deg, #f1e499de, #adc3dfea, #f3b5b5ec, #a6f1a6e0, #f1e499dc, #adc3dfe1, #f3b5b5e3, #a6f1a6e3, #f1e499e5, #adc3dfe8, #f3b5b5e5, #a6f1a6e3); */
    background-size: 180% 180%;
    /* animation: gradient-animation 15s linear infinite; */
}

@-webkit-keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-webkit-keyframes moveInCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes moveInCircle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes moveVertical {
    0% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    50% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@keyframes moveVertical {
    0% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    50% {
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }

    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@-webkit-keyframes moveHorizontal {
    0% {
        -webkit-transform: translateX(-50%) translateY(-10%);
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        -webkit-transform: translateX(50%) translateY(10%);
        transform: translateX(50%) translateY(10%);
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-10%);
        transform: translateX(-50%) translateY(-10%);
    }
}

@keyframes moveHorizontal {
    0% {
        -webkit-transform: translateX(-50%) translateY(-10%);
        transform: translateX(-50%) translateY(-10%);
    }

    50% {
        -webkit-transform: translateX(50%) translateY(10%);
        transform: translateX(50%) translateY(10%);
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-10%);
        transform: translateX(-50%) translateY(-10%);
    }
}

.gradients-container {
    position: absolute;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bubble1 {
    position: absolute;
    background: -o-radial-gradient(center, circle, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    background: -webkit-radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation: moveVertical 30s ease infinite;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.bubble2 {
    position: absolute;
    background: -o-radial-gradient(center, circle, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    background: -webkit-radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    -webkit-transform-origin: calc(50% - 400px);
    -ms-transform-origin: calc(50% - 400px);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.bubble3 {
    position: absolute;
    background: -o-radial-gradient(center, circle, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    background: -webkit-radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    -webkit-transform-origin: calc(50% + 400px);
    -ms-transform-origin: calc(50% + 400px);
    transform-origin: calc(50% + 400px);
    -webkit-animation: moveInCircle 40s linear infinite;
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.bubble4 {
    position: absolute;
    background: -o-radial-gradient(center, circle, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    background: -webkit-radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    -webkit-transform-origin: calc(50% - 400px);
    -ms-transform-origin: calc(50% - 400px);
    transform-origin: calc(50% - 400px);
    -webkit-animation: moveHorizontal 40s ease infinite;
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.bubble5 {
    position: absolute;
    background: -o-radial-gradient(center, circle, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    background: -webkit-radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    -webkit-transform-origin: calc(50% - 800px) calc(50% + 200px);
    -ms-transform-origin: calc(50% - 800px) calc(50% + 200px);
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    -webkit-animation: moveInCircle 20s ease infinite;
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.top-bar.hidden {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.header {
    position: fixed;
    top: 50px;
    left: 0;
    height: 80px;
    width: 100vw;
    padding: 0px 20px;
    background: rgba(255, 255, 255, 0.479);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.666);
    z-index: 999;
    -webkit-transition: top 0.3s;
    -o-transition: top 0.3s;
    transition: top 0.3s;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.header.sticky {
    top: 0;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.699)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.699), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.699), transparent);
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.header:hover::before {
    left: 100%;
}

.logo {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 120px;
}

.navbar a {
    color: #000000;
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 35px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.navbar a:hover {
    color: #f00;
}

#menu-icon {
    font-size: 36px;
    color: #000000;
    display: none;
}

.flex-button {
    display: none;
}

.nav-button button {
    cursor: pointer;
    margin-left: -10px;
    height: 40px;
    width: 140px;
    border: none;
    color: white;
    font-size: 0.8rem;
    background-color: green;
    border-radius: 50px;
}

.nav-button button:hover {
    background-color: red;
}

.landing-content {
    padding-top: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.land-bttn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.button-container-1,
.button-container-3 {
    position: relative;
    width: 200px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6vh;
    overflow: hidden;
    border: 1px solid;
    font-weight: 300;
    font-size: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    letter-spacing: 1px;
    border-radius: 8px;
}

.button-container-1 button,
.button-container-3 button {
    width: 101%;
    height: 100%;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: bold;
    cursor: pointer;
}


.button-container-1 button {
    background: white;
    -webkit-mask: url(./site-image/nature-sprite.png);
    mask: url(./site-image/nature-sprite.png);
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    border: none;
    color: #000000;
    font-size: large;
    -webkit-animation: ani2 0.7s steps(22) forwards;
    animation: ani2 0.7s steps(22) forwards;
}

.button-container-1 button:hover {
    -webkit-animation: ani 0.7s steps(22) forwards;
    animation: ani 0.7s steps(22) forwards;
}

.button-container-1 {
    margin: 1vh;
    border: 1px solid #fcfcfc;
    border-radius: 50px;
    /* box-shadow: rgba(0, 0, 0, 0.253) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
}

.button-container-3 {
    margin: 1vh;
    border: 1px solid #000;
    border-radius: 50px;
    /* box-shadow: rgba(0, 0, 0, 0.253) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
}

.button-container-3 a {
    text-decoration: none;
    color: #fff;
}

.button-container-3 button {
    background: #000;
    -webkit-mask: url(./site-image/natureSmaller.png);
    mask: url(./site-image/natureSmaller.png);
    -webkit-mask-size: 7100% 100%;
    mask-size: 7100% 100%;
    border: none;
    color: #fff;
    font-size: large;
    -webkit-animation: ani2 0.7s steps(70) forwards;
    animation: ani2 0.7s steps(70) forwards;
}

.button-container-3 button:hover {
    -webkit-animation: ani 0.7s steps(70) forwards;
    animation: ani 0.7s steps(70) forwards;
}

.mas {
    position: absolute;
    color: #000;
    text-align: center;
    width: 101%;
    font-weight: 300;
    font-size: large;
    margin-top: 10px;
    overflow: hidden;
    font-weight: bold;
}

@-webkit-keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@keyframes ani {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

@-webkit-keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

@keyframes ani2 {
    from {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    to {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

.num {
    font-size: 2rex;
    padding-left: 1%;
    color: #000000;
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    .num {
        font-size: 1.7rex;
    }
    }
    @media only screen and (max-width: 480px) {
        .num {
            font-size: 1.4rex;
        }
    }
a {
    color: inherit !important;
    text-decoration: none !important;
}

.top-bar .social ul {
    margin-top: -10px;
    display: flex;
}

.top-bar .social ul li {
    margin-right: 20px;
    list-style: none;
}

.top-bar .social ul li a {
    width: 40px;
    height: 40px;
    background-color: #ececec;
    text-align: center;
    line-height: 36px;
    font-size: 25px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #ececec;
    z-index: 1;
}
@media only screen and (max-width: 480px) {
        .top-bar .social ul li a {
            width: 30px;
            height: 30px;
            background-color: #ececec;
            text-align: center;
            line-height: 26px;
            font-size: 15px;
            display: block;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 3px solid #ececec;
            z-index: 1;
        }
        .top-bar .social ul li {
            margin-right: 5px;
            list-style: none;
        }
    }
.top-bar .social ul li a .icondes {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
}

.top-bar .social ul li a:hover .icondes {
    color: #fff;
    transform: rotateY(360deg);
}

.top-bar .social ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

.top-bar .social ul li a:hover:before {
    top: 0;
}

.top-bar .social ul li:nth-child(1) a:before {
    background: #3b5999;
}

.top-bar .social ul li:nth-child(2) a:before {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.top-bar .social ul li:nth-child(3) a:before {
    background: #0077b5;
}

.main-heading {
    font-size: 5rem;
    font-family: "Chakra Petch", sans-serif;
    color: #fff0;
    font-weight: 800;
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: var(--dark);
}

.sub-heading {
    font-size: 1rem;
}

.typed {
    font-size: 7rem;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/* Dropdown Button */

.dropdown {
    position: relative !important;
    display: inline-block !important;
}

.dropdown-content {
    display: none !important;
    position: absolute !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    background: rgb(255, 255, 255) !important;
    min-width: 160px !important;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2) !important;
    z-index: 1 !important;
    left: 20px !important;
    border-radius: 5px !important;
}

.dropdown-content a {
    color: black !important;
    padding: 3px !important;
    margin: 10px !important;
    text-decoration: none !important;
    display: block !important;
}

.dropdown-content a:hover {
    background-color: #ddd !important;
    cursor: pointer;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}


/* BREAKPOINTS */
@media (max-width: 992px) {

    .main-heading {
        font-size: 4rem;
    }

    .typed {
        font-size: 5rem;
    }


}

@media (max-width: 600px) {

    .land-bttn {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        padding-top: 10px;
    }

    .button-container-1,
    .button-container-3 {
        margin: 2vh;
    }

    .main-heading {
        margin-top: 20px;
        font-size: 3rem;
        line-height: 1;
    }

    .typed {
        font-size: 2rem;
    }

}

@media (max-width: 1100px) {

    .dropdown-content a {
        color: black !important;
        padding: 2px 20px 2px 20px !important;
        text-decoration: none !important;
        display: block !important;
        margin-top: 0px !important;
    }

    .dropdown-content {
        display: none !important;
        position: absolute !important;
        width: -webkit-max-content !important;
        width: -moz-max-content !important;
        width: max-content !important;
        background: rgb(255, 255, 255) !important;
        min-width: 160px !important;
        -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2) !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2) !important;
        z-index: 1 !important;
        left: 50px !important;
        border-radius: 5px !important;
    }

    .dropdown {
        position: static !important;
        display: block !important;

    }

    .flex-button {
        display: block !important;
    }

    .flex-button button {
        cursor: pointer !important;
        margin-left: -10px !important;
        height: 40px !important;
        width: 140px !important;
        border: none !important;
        color: white !important;
        font-size: 0.7rem !important;
        background-color: green !important;
        border-radius: 50px !important;
    }

    .flex-button button:hover {
        background-color: red !important;
    }

    .nav-button {
        display: none !important;
    }

    #menu-icon {
        display: block !important;
    }

    .navbar {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        padding: 0.5rem 4% !important;
        display: none !important;
    }

    .navbar.active {
        display: block !important;
    }

    .navbar a {
        display: block !important;
        padding: 0.8rem 0 !important;
    }

    .nav-bg {
        position: fixed !important;
        top: 79px !important;
        left: 0 !important;
        width: 100% !important;
        height: 420px !important;
        background: rgba(255, 255, 255, 0.555) !important;
        border-bottom: 2px solid rgba(255, 255, 255, 0.555) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 99 !important;
        display: none !important;
    }

    .nav-bg.active {
        display: block !important;
    }
}

.container-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 40px;
    background: transparent;
    font-weight: 600;
    line-height: 60px;
    padding-top: 3%;
}

/* page 2 */
/* page 7 */
.container-3 {
    margin: 0 auto;
    height: 100%;
    width: auto;
    padding-bottom: 5%;
}

.hometab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

::-moz-selection {
    background: #6d50e2;
    color: #fff;
}

::selection {
    background: #6d50e2;
    color: #fff;
}

.containertab {
    max-width: 1200px;
    width: 100%;
    padding: 40px;
    margin: 20px;
    border-radius: 12px;
    background: #fff;
}

.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.content .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    margin-right: 50px;
    position: relative;
}

.content .list label {
    height: 60px;
    font-size: 20px;
    font-weight: 500;
    line-height: 50px;
    cursor: pointer;
    padding-left: 25px;
    color: #333;
    z-index: 12;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content .list img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}

.content .text-content img {
    width: 250px;
    height: 250px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}

#home:checked~.list label.home,
#blog:checked~.list label.blog,
#help:checked~.list label.help,
#code:checked~.list label.code,
#about:checked~.list label.about,
#contents:checked~.list label.contents,
#contents2:checked~.list label.contents2,
#addition:checked~.list label.addition {
    color: #fff;
    border-radius: 12px;
    background: #6d50e2;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.content .list label:hover {
    color: #6d50e2;
}

.content .text-content {
    width: 100%;
    height: 100%;
}

.content .text {
    display: none;
}

.content .text .title {
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 500;
}

.content .text p {
    text-align: justify;
    font-size: 20px;
}

.content .text-content .home {
    display: block;
}

#home:checked~.text-content .home,
#blog:checked~.text-content .blog,
#help:checked~.text-content .help,
#code:checked~.text-content .code,
#about:checked~.text-content .about,
#contents:checked~.text-content .contents,
#contents2:checked~.text-content .contents2,
#addition:checked~.text-content .addition {
    display: block;
}

#blog:checked~.text-content .home,
#help:checked~.text-content .home,
#code:checked~.text-content .home,
#about:checked~.text-content .home,
#contents:checked~.text-content .home,
#contents2:checked~.text-content .home,
#addition:checked~.text-content .home {
    display: none;
}

.content input {
    display: none;
}

@media (max-width: 1150px) {
    .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .content .list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%;
        margin-right: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 50px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        overflow: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .content .list label {
        height: auto;
        line-height: normal;
        padding: 15px 10px;
        font-size: 16px;
        display: inline-block;
    }

    .content .list img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .content .text-content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 20px;
    }
}


/* page 8 */
.container-6 {
    background: #f7fbff;
    width: 100%;
    padding: 2%;
}

/* page 9 */
.container-7 {
    padding-bottom: 2%;
}

.slider-2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    padding: 5% 15% 5% 15%;
}

.slider-2>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.slider-2>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.slider-2>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

.slider-2>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
}

.slider-2>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.slider-2>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.slider-2>*:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

.slider-2>*:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
}

.slider-2>*:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
}

.slider-2>*:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
}

.slider-2>*:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
}

.slider-2>*:nth-child(12) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
}

.slider-2>*:nth-child(13) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
}

.slider-2>*:nth-child(14) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
}

.slider-2>*:nth-child(15) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
}

.slider-2>*:nth-child(16) {
    -ms-grid-row: 7;
    -ms-grid-column: 7;
}

.slide-2 {
    height: 100%;
    width: 100%;
    background-color: #e0e0e0;
    padding: 10px;
    border-radius: 20px;
}

.slide-2 img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: contain;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.port_details img {
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: contain;
    object-fit: contain;
    mix-blend-mode: multiply;
    z-index: 1;
}

.container-8 {
    background: #f7fbff;
    padding: 5%;
    padding-top: 0;
}

/* page 11 */
.container-9 {
    padding-bottom: 5%;
}

.container-9 .imgHolder {
    height: 130px;
    width: 130px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: -30px;
    top: -30px;
}

.container-9 img {
    height: 130px;
    width: 130px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50% !important;
    border: 5px solid rgb(32, 202, 224);
}

.container-9 .items {
    margin: 90px 35px
}

.container-9 .item-testimonials {
    background-color: rgb(255, 255, 255);
    padding: 30px 30px 20px;
    position: relative;
    border-radius: 30px;
    -webkit-box-shadow: 10px 10px 18px rgba(54, 54, 54, 0.671);
    box-shadow: 10px 10px 18px rgba(54, 54, 54, 0.671);
}

.item-testimonials .quote {
    position: absolute;
    bottom: 0;
    right: 60px;
    font-size: 40px;
    color: rgb(32, 202, 224);
}

.item-testimonials ul.stars {
    margin-top: 20px;
    padding: 0;
    padding-left: 80px;
}

.item-testimonials ul.stars li {
    display: inline-block;
}

.item-testimonials ul.stars li i {
    color: rgb(247, 49, 49);
}

.item-testimonials p {
    padding-left: 80px;
}


.item-testimonials h4 {
    padding-left: 80px;
    margin-top: 20px;
}

.item-testimonials h5 {
    padding-left: 80px;
    margin-top: -5px
}

@media screen and (max-width:350px) {
    .item-testimonials p {
        display: none;
    }

    .item-testimonials .quote {
        display: none;
    }
}

.owl-dot {
    width: 15px;
    height: 15px;
    background-color: transparent !important;
    border: 1px solid rgb(16, 211, 81) !important;
    margin-left: 7px;
}

.owl-dot.active {
    width: 15px;
    height: 15px;
    background-color: rgb(16, 211, 81) !important;
    border: 1px solid rgb(255, 255, 255) !important;
}

.owl-carousel .owl-item {
    height: 506px;
}

.owl-dots {
    text-align: center;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
*  Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/* page 11 */
section {
    padding: 60px;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq {
    padding: 60px 30px 90px;
    background: #f7fbff;
    min-height: 100vh;
}

.faq .section-title {
    margin-bottom: 54px;
}

.faq .section-title h2 {
    margin-bottom: 22px;
}

.faq .accordion .card {
    border: none;
    margin-bottom: 30px;
}

.faq .accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 10px;
}

.faq .accordion .card .card-header {
    border: none;
    border-radius: 10px;
    padding: 0;
}

.faq .accordion .card .card-header h5 {
    padding: 0;
}

.faq .accordion .card .card-header h5 button {
    color: #1e3056;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 30px 2px 70px;
    height: 80px;
    display: block;
    width: 100%;
    color: rgba(30, 48, 86, 0.8);
    text-align: left;
    background: #fff;
    -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 10px 10px 0 0;
    position: relative;
}

@media screen and (max-width:550px) {
    .faq .accordion .card .card-header h5 button {
        font-size: 12px;
        font-weight: 600;
        overflow: hidden;
    }

    .faq .accordion .card .card-body {
        font-size: 12px;
    }
}

.faq .accordion .card .card-header h5 button:after {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: #ff5f74;
    text-align: center;
    border: 1px solid #ff5f74;
    border-radius: 50%;
    line-height: 100%;
    content: '\f067';
    font-size: 10px;
    line-height: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq .accordion .card .card-header h5 button.collapsed {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(97, 125, 255, 0.2);
}

.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
    content: '\f068';
    color: #fff;
    background-color: #ff5f74;
}

.faq .accordion .card .card-body {
    -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 0 0 10px 10px;
    padding-top: 5px;
    margin-top: -6px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 23px;
    color: rgba(30, 48, 86, 0.8);
    line-height: 30px;
}

/* page 12 */
.container-10 {
    font-family: 'Roboto Serif', serif;
    color: var(--textColor);
    background: var(--bodyBg);
    padding-bottom: 5em;
}

.container10-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    width: 100%;
    /* margin: 20px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}


.contact-info h2 {
    padding: 10% 10% 5% 0;
    font-size: 3rem;
    color: #333;
}

.contact-info p {
    color: #555;
}

.contact-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 40px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #9c9c9c;
    border-radius: 0;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #ff3333;
}

.contact-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #ff3333;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #e60000;
}

/* Media Queries */
@media (min-width: 600px) {

    .contact-info,
    .contact-form {
        width: 48%;
    }
}

@media (min-width: 900px) {
    .container10-1 {
        padding: 50px;
    }

    .contact-form button {
        width: auto;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}

/* footer */
.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fafafa;
    padding: 1% 13% 2% 13%;
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    gap: 8%;
}

.footer-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-section.about img {
    width: 300px;
    margin-bottom: 20px;
}

.footer-section.about p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* .footemail {
    font-size: 1.5rem !important;
    color: #6d32a5 !important;
    font-weight: 500 !important;
    animation: buton 2.5s ease infinite;
    animation-play-state: running;
    overflow: hidden !important;
}

.footemail:hover {
    animation-play-state: paused;
}

@keyframes buton {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1, 1);
    }
}

@media (max-width: 600px) {

    .footemail {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }
} */


.footer-section.subscribe,
.footer-section.links {
    margin-top: 50px;
}

.footer-section.subscribe h3,
.footer-section.links h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.footer-section.subscribe p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.footer-section.subscribe form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* width: 350px; */
}

.footer-section.subscribe input[type="email"] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.footer-section.subscribe button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 30px 30px 0;
    background: -o-linear-gradient(228deg, #FE7484, #ED579E, #B35EF1, #8986F7, #31DAF2, #1CE4F3) no-repeat 0 50%/200% 200%;
    background: linear-gradient(222deg, #FE7484, #ED579E, #B35EF1, #8986F7, #31DAF2, #1CE4F3) no-repeat 0 50%/200% 200%;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.footer-section.subscribe button:hover {
    background: -webkit-gradient(linear, left top, right top, from(#e600b3), to(#2929cc));
    background: -o-linear-gradient(left, #e600b3, #2929cc);
    background: linear-gradient(to right, #e600b3, #2929cc);
}
.footer-section.links{
    margin-left: 80px;
    margin-right: -10px;
}
.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin: 10px;
}

.footer-section.links ul li a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    -o-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
    background: none;
    /* Default background */
    -webkit-background-clip: text;
    -webkit-text-fill-color: currentColor;
}

.footer-section.links ul li a:hover {
    cursor: pointer;
    background: -o-linear-gradient(184.75deg, #9B78FF -16.81%, #1FFFC9 142.78%);
    background: linear-gradient(265.25deg, #9B78FF -16.81%, #1FFFC9 142.78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.footer-section.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-section.social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-top: 20px;
    margin-right: 30px;
    /* margin: 35px 50px; */
    margin-left: -8px;
    background-color: #eee;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    border: 2px solid rgb(219, 219, 219);
    text-decoration: none;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}
.footer-section.social a.facebook {
    background-color: #506aa1; 
}

.footer-section.social a.instagram {
    background-color: #e1306c; 
}

.footer-section.social a.linkedin {
    background-color: #0077b5; 
}

.footer-section.social a:hover {
    background: -o-linear-gradient(184.75deg, #9B78FF -16.81%, #1FFFC9 142.78%);
    background: linear-gradient(265.25deg, #9B78FF -16.81%, #1FFFC9 142.78%);
    color: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 10px;
}
.footer-bottom {
    background-color: #fafafa;
    padding: 2%;
    text-align: center;
}

.footer-bottom .footer-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.footer-bottom .footer-services a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 5px;
}

.footer-bottom .footer-services a img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

.footer-bottom .footer-services a:hover {
    transform: scale(1.1);
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgb(127, 33, 190);
    color: #000000;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: -webkit-grab;
    cursor: grab;
}


.footer-bottom p {
    font-size: 14px;
    color: #555;
}

.footer .copyright {
    margin-top: 20px;
    color: #888;
}

.copyright p {
    padding: 1%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (max-width: 1390px) {
    .footer-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: #fafafa;
        padding: 1% 6% 2% 6%;
        -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
        gap: 4%;
    }
    .footer-section.links{
        margin-left: 20px;
        margin-right: -1px;
    }
    
}

@media only screen and (max-width: 768px) {

    .footer-bottom .footer-services {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        /* Center align services */
        margin-bottom: 40px;
        /* Reduce bottom margin */
    }

    .footer-bottom .footer-services a {
        padding: 5px 10px;
        /* Adjust padding */
    }

    .footer-bottom p {
        font-size: 12px;
        /* Reduce font size */
    }
}



.map-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact-info-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.contact-info2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 20px 5px 20px;
    margin: 20px;
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 350px;
    height: 100px;
}

.contact-info2:hover {
    background-color: #eeeeee;
}

.contact-info2 img {
    width: 50px;
    height: 50px;
    background-color: rgb(214, 214, 214);
    padding: 5%;
    margin-right: 20px;
    border-radius: 10px;
}

.contact-info2 div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-info2 div p {
    margin: 0;
    font-size: 1rem;
}

.contact-info2 div p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

@media (max-width: 1300px) {
    iframe {
        height: 450px;
        width: 500px;
    }
}

@media (max-width: 1050px) {
    iframe {
        height: 350px;
        width: 400px;
    }
}

@media (max-width: 930px) {
    iframe {
        height: 250px;
        width: 300px;
    }

    .contact-info2 div p {
        margin: 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 830px) {
    .contact-info-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    iframe {
        margin-bottom: 5%;
        vertical-align: middle;
        display: table-cell;
    }

}

.container-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #247ee4cc, #fd1d1d9c, #e4c72498, #287438cb);
    color: white;
    padding-bottom: 60px;
    padding-top: 20px;
}

.cta-section h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin: 30px 0;
}

.cta-red{
    color: red;
}

.cta-section p {
    font-size: 1.2rem;
    margin: 10px 0 30px;
}

.cta-button {
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: transform 1.3s ease;
}

.cta-button:hover {
    border-radius: 50px;
    transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 768px) {
    .cta-section h1 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.cta-button {
    border: none;
    outline: none;
    color: #fff;
    background: #353651;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 15px;
}

.cta-button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
    border-radius: 50px;
}

.cta-button:active {
    color: #343651
}

.cta-button:active:after {
    background: transparent;
}

.cta-button:hover:before {
    opacity: 1;
}

.cta-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #343651;
    left: 0;
    top: 0;
    border-radius: 50px;
    transition: transform 1.3s ease;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}