html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing-: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    direction: ltr;
    /*background-color: #F5F5F7 !important;*/
    background-color: #ffffff !important;
    padding-top: 0px;
    margin-top: 0px;
    letter-spacing: 0px;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); */
    color: #010915;
    font-family: "Inter", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "slnt"0;
}

h1 {
    font-size: 60px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h2 {
    font-size: 40px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h3 {
    font-size: 30px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h4 {
    font-size: 20px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h5 {
    font-size: 18px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

h6 {
    font-size: 16px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 740px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }
}

a {
    text-decoration: none !important;
}

ul li {
    list-style: none;
}

p {
    margin-bottom: 0 !important;
}

:root {
    --primary-light: #73f9a4;
    --primary: #dc318b;
    --primary-dark: #e8305b;
    --white: #ffffff;
    --greyLight-1: #e4ebf5;
    --greyLight-2: #c8d0e7;
    --greyLight-3: #bec8e4;
    --greyDark: #cf9bac;
}

.shd-mn {
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.brd-btm {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

@media(max-width:768px) {
    .brd-btm {
        padding-bottom: 15px;
    }
}

/* container-xxl */
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1400px !important;
    }
}

@keyframes move-animation {

    0%,
    100% {
        transform: translate(0, 0);

    }

    25% {
        transform: translate(0, 15px);

    }

    50% {
        transform: translate(0, -15px);

    }

    75% {
        transform: translate(15px, -15px);

    }
}

@keyframes jump-animation {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 5px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}


@keyframes loadingD {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drop-animation {
    0% {
        transform: translateY(-200px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes thankCardIntro {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes thankIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes thankCircleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes thankCheckDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes thankRingPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

@keyframes thankTextRise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes thankConfetti {
    0% {
        opacity: 0;
        transform: translate3d(0, -40px, 0) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--drift, 0px), 430px, 0) rotate(560deg);
    }
}

.loading-icon {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.ring-1 {
    width: 10px;
    height: 10px;
    margin: 0 auto;
    padding: 10px;
    border: 7px dashed #b64238;
    border-radius: 100%;
    animation: loadingD 1.5s 0.3s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}



.fadeIn {
    opacity: 0;
    animation-name: fadeIn;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
}

.fadeIn:first-child {
    animation-delay: 0.3s;
}

.fadeIn:nth-child(2) {
    animation-delay: 0.6s;
}

.fadeIn:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fadeInOnScroll {
    opacity: 0;
    transform: translateX(-50%);
    animation-name: slideInFromLeft;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

.navbar {
    background: transparent;
    /* box-shadow: 5px 5px 20px #bebebe,
        -5px -5px 20px #ffffff; */
    z-index: 1;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgb(1, 9, 21, 0.1);
}



@media (max-width: 1080px) {

    .navbar {
        border-bottom: 1px solid transparent;
    }

    .navbar .container {
        padding: 0 !important;
    }
}

@media (max-width: 1800px) {
    .navbar-collapse {
        background-color: #fff;
    }
}

.navbar-expand-xl {
    justify-content: flex-start;
    padding: 0 !important;
}

.navbar-logo {
    width: 150px;
    /* box-shadow: 3px 3px 20px rgb(82, 255, 228, .2),
        -3px -3px 20px rgb(82, 255, 228, .2); */
    border: none;
    position: relative;
}

@media (max-width: 1080px) {
    .navbar-logo {
        width: 120px;
    }
}

.nav-item .nav-link,
.dropdown-menu .dropdown-item {
    font-weight: 500;
    margin-left: 5px;
    transition: 350ms;
    font-size: 12px;
    word-break: normal;
    letter-spacing: 1px;
    color: #010915;
}

.nav-item .nav-link:hover,
.dropdown-menu .dropdown-item:hover {
    color: #b64238;
    background-color: #fff;
}

.dropdown-menu {
    background: #ffffff !important;
    border: 1px solid rgb(172, 147, 106, .3) !important;
    border-radius: 0 !important;
}




@media (max-width: 1080px) {

    .nav-item .nav-link,
    .dropdown-menu .dropdown-item {
        font-size: 15px;
        line-height: 40px;
        padding-left: 15px;
    }

    .nav-item {
        border-bottom: 1px solid rgb(172, 147, 106, .2) !important;
    }

    .navbar-collapse {
        padding-bottom: 0 !important;
    }


}

@media (min-width: 1080px) {
    .nav-item .nav-link {
        margin-left: 20px;
    }
}

/* .nav-item .nav-link:hover {} */

.navbar-toggler {
    border: none !important;
}

.lineStick {
    fill: none;
    stroke: #b64238;
    stroke-width: 6;
    box-shadow: 3px 3px 20px rgb(0, 0, 0, 0.7), -3px -3px 20px rgb(0, 0, 0, 0.7);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lineStick1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.lineStick2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.lineStick3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .lineStick1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .lineStick2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .lineStick3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.material-symbols-outlined {
    color: #010915;
}

.collapse {
    padding-bottom: 5px;
}

@media (min-width: 1084px) {
    .collapse {
        display: flex;
        justify-content: end;
    }
}

@media (max-width: 768px) {
    .nav-button-area {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1020px) {
    .nav-button-area {
        position: relative;
    }
}

.nav-form-button {
    margin-left: 100px;
}

@media (max-width: 768px) {
    .nav-form-button {
        margin-left: 0px;
    }
}

.btn.nav-form-button {
    /* background-color: rgba(223, 223, 223, 1);*/
    background-color: #b64238;
    border: 1px solid #b64238;
    color: #fff;
    padding: 4px 10px;
    border-radius: 0px;
    transition: 350ms;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
}

.btn.nav-form-button:hover {
    border: 1px solid #010915;
    background-color: transparent;
    color: #010915;
}

@media (max-width: 1020px) {
    .nav-form-button {
        margin-top: 15px;
        height: 40px;
        width: 100%;
    }
}

/* NAVBAR ENDS HERE */


/* PAGE HEADER STARTS HERE */

.page-header-area {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
}


.page-header {
    width: fit-content;
    text-align: center;
    font-size: 35px;
    line-height: 22px;
    color: #b64238;
    font-weight: 500;
}

.page-header span {
    float: right;
    font-size: 13px;
    font-weight: 300;
    color: rgb(182, 66, 56, .7);
}

.page-header-seconder {
    width: fit-content;
    text-align: center;
    font-size: 35px;
    line-height: 18px;
    color: #b64238;
    font-weight: 500;
}

.page-header-seconder span {
    float: right;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 300;
    color: rgb(182, 66, 56, .7);
}

.page-header-third {
    width: fit-content;
    text-align: center;
    font-size: 35px;
    line-height: 23px;
    color: #b64238;
    font-weight: 500;
}

.page-header-third span {
    float: right;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 300;
    color: rgb(182, 66, 56, .7);
}


@media(max-width:840px) {
    .page-header-area {
        margin-top: 35px;
    }

    .page-header {
        font-size: 30px;
        line-height: 20px;
    }

    .page-header span {
        font-size: 12px;
    }

    .page-header-seconder {
        font-size: 27px;
        line-height: 14px;
    }

    .page-header-seconder span {
        margin-top: 5px;
        font-size: 12px;
    }

    .page-header-third {
        font-size: 27px;
        line-height: 17px;
    }

    .page-header-third span {
        margin-top: 5px;
        font-size: 12px;
    }
}


/* PAGE HEADER ENDS HERE */


/* FOOTER AREA STARTS HERE */

.footer-section {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* background-color: #b64238; */
    background-color: #1A1B26;

}

.footer-area img {
    width: 150px;
    height: auto;
    filter: brightness(100);
}

.footer-section .row {
    align-items: center;
    justify-content: center;
}

.footer-section p,
.footer-section a {
    color: #fff;
    font-size: 12px;
    text-shadow: none !important;
    line-height: 25px;
    transition: 350ms;
}

.footer-section a:hover {
    color: #010915;
}

.row .footer-area:nth-child(1) {
    text-align: left;
}

.row .footer-area:nth-child(2) {
    text-align: center;
}

.row .footer-area:nth-child(3) {
    text-align: right;
}

@media(max-width:1024px) {

    .footer-section {
        margin-top: 50px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 11px;
    }

    .footer-area img {
        padding-bottom: 25px;
    }

}

@media(max-width:1024px) {
    .footer-area {
        text-align: center !important;
    }
}

/* FOOTER AREA ENDS HERE */

/* ARROW  AND STICK STARTS HERE */

.arrow-section {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

@media(max-width:767px) {
    .arrow-section {
        margin-top: 0;
    }
}

.arrow-link {
    cursor: default
}

.arrow-area {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 24px;
}

.arrow-text {
    display: none;
    margin-top: 50px;
    margin-left: 0px;
    font-size: 12px;
    color: #b64238;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

.arrow {
    position: absolute;
    width: 20px;
    height: 2px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

@media(max-width:767px) {
    .arrow {
        width: 15px;
        height: 2px;
    }
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    background: #b64238;
    height: 100%;
    width: 51%;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}



.vert-stick-area {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    margin-top: 20px;


}

.vert-stick {
    transform: rotate(90deg);
    width: 100px;
    height: 1px;
    border: none;
    background: linear-gradient(to left, #fff 0%, #fff 7%, #b64238 30%, #fff 84%, #fff 100%) !important;
    opacity: 1;
}

@media (max-width:1020px) {
    .vert-stick-area {
        display: flex;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 0px;
        position: relative;

    }

    .vert-stick {
        transform: rotate(90deg);
        width: 70px;
        color: #b64238;
        background: #b64238;
        opacity: 1;
    }
}


/* ARROW AND STICJ ENDS HERE */

/* OPENING AREA STARTS HERE */

.opening-section {
    margin-top: 10px;
    font-weight: 400;
    display: flex;

}

.opening-button {
    float: right;
    margin-top: 5px;
}

.opening-header-big {
    margin-left: 3px;
    font-size: 12px;
    line-height: 30px;
    color: rgb(1, 9, 21, .7);
    font-weight: 400;
}

.opening-header-seconder {
    font-size: 60px;
    line-height: 40px;
    font-weight: 600;
    color: #b64238;
    text-align: justify;
}

.opening-header-third {
    font-size: 38px;
    font-weight: 600;
    color: #b64238;
    text-align: justify;
}

.opening-text {
    text-align: justify;
    font-size: 14px;
    margin-top: 50px;
    font-weight: 300;
}

.btn.opening-header-button {
    background-color: #b64238;
    border: 1px solid #b64238;
    color: #fff;
    padding: 5px 20px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 300;
    transition: 250ms;
    text-transform: uppercase;
    margin-top: 0px;
    letter-spacing: 2px;
    display: flex;
    gap: 3px;
    justify-content: center;
    text-align: center;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.btn.opening-header-button:hover {
    border: 1px solid #b64238;
    background-color: transparent;
    color: #b64238;
}

@media (max-width: 1020px) {
    .btn.opening-header-button {
        margin-top: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
        font-size: 12px;
        letter-spacing: 5px;
        text-transform: uppercase;
    }
}

@media (max-width: 810px) {
    .opening-button {
        float: none;
        margin-top: 0px;
    }

    .opening-header-big {
        font-size: 12px;
        margin-left: 1px;
        line-height: 25px;
    }

    .opening-header-seconder {
        font-size: 40px;
        line-height: 25px;
    }

    .opening-header-third {
        font-size: 25px;

    }

    .opening-text {
        font-size: 13px;
        line-height: 16px;
        margin-top: 10px;
    }
}


/* OPENING AREA ENDS HERE */


/* OPENING VIDEO AREA STARTS HERE*/

.opening-video-area {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
    /* background-color: #b64238; */
    background-color: #1A1B26;

}

.opening-video-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    /* color: rgb(1, 9, 21, .8); */
    color: #fff;
}

.opening-video-header span {
    font-size: 9px;
    font-weight: 300;
}

.opening-header {
    font-size: 80px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: -4px;
}

.opening-header span {
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 400;

}

.opening-seconder-header {
    font-size: 10px;
}

.opening-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.opening-video video {
    width: 100%;
    height: auto;
    border: none;
    cursor: default !important;
    border-radius: 10px;
    margin-top: 10px;
    -webkit-box-shadow: 7px 5px 10px 3px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 7px 5px 10px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 7px 5px 10px 3px rgba(0, 0, 0, 0.25);
}

#edunetaOpeningVideo,
#edunetaOpeningVideo2,
#edunetaOpeningVideo3 {
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: none;
    font-size: 54px;
    color: #b64238;
    opacity: .9;
    transition: 250ms;
    border: 1px solid transparent;
    padding: 50px;
    border-radius: 50%;

}

.play-button:hover {
    color: white;
}

#edunetaOpeningVideo[controls]+.play-button {
    display: none;
}


@media (max-width:768px) {

    .opening-video-area {
        margin-top: 35px;
    }

    .opening-video-header {
        gap: 10px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .opening-video-header span {
        font-size: 9px;
    }


    .play-button {
        font-size: 30px;
    }
}

/* OPENING VIDEO AREA ENDS HERE*/


/* MAIN SECTON STARTS HERE*/

.main-section {
    margin-top: 75px;
}

.main-area-header {
    font-size: 50px;
    text-align: center;
    color: #fff;
    letter-spacing: -2px;
    line-height: 30px;
    font-weight: 600;
    margin-top: 50px;
}

.main-area-header-seconder {
    font-size: 30px;
    text-align: center;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 300;
}


.main-area-text {
    text-align: justify;
    font-size: 14px;
    margin-top: 22px;
    font-weight: 300;
    color: #fff;
}


@media (max-width:768px) {

    .main-section {
        margin-top: 30px;
    }

    .main-area-header {
        font-size: 30px;
        text-align: center;
        letter-spacing: -1px;
        line-height: 20px;
    }

    .main-area-header-seconder {
        font-size: 16px;
        text-align: center;
        letter-spacing: 5px;
        font-weight: 300;
    }


    .main-area-text {
        font-size: 13px;
        line-height: 16px;
        margin-top: 15px;
    }
}

/* MAIN SECTON ENDS HERE*/





/* FLEX SECTION STARTS HERE */

.flex-section {
    margin-top: 100px;
}

.flex-area {
    position: relative;
}


.flex-area-imgs img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.flex-area-header {
    font-size: 20px;
    color: #b64238;
    letter-spacing: 2px;
    font-weight: 600;
}

.flex-area-text {
    margin-top: 15px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 300;
    text-align: justify;
}

.flex-area-text span {
    color: #b64238;
    font-weight: 400;
}

@media(max-width: 1020px) {
    .flex-section {
        margin-top: 60px;
    }

    .flex-area-header {
        font-size: 20px;
        text-align: center;
        color: #b64238;
        font-weight: 300;
        margin-top: 30px;
    }

    .flex-area-text {
        margin-top: 15px;
        font-size: 13px;
        line-height: 18px;
    }
}


/* FLEX SECTION ENDS HERE */


/* SECTION AREA STARTS HERE */

.section-header-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}


.section-header {
    color: #b64238;
    font-size: 35px;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 800;
    text-align: center;
    text-shadow: none !important;
}

.section-header span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgb(182, 66, 56, .8);
}

@media(max-width:814px) {
    .section-header-area {
        margin-top: 25px;
    }

    .section-header {
        font-size: 25px;
        line-height: 22px;
        letter-spacing: 0px;
    }
}

/* SECTION AREA ENDS HERE */



/* EDUCATION AREA STARTS HERE */


.education-section {
    margin-top: 50px;
}

.education-section .row {
    gap: 20px;
    justify-content: center;
}

.education-area {
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
    background-color: transparent;
    padding-top: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 35px;
    transform: scale(1);
    transition: 250ms;
    border-radius: 15px;
}

.education-area img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


.education-header {
    font-size: 18px;
    letter-spacing: -1px;
    color: #b64238;
    text-align: center;
    margin-top: 10px;
}

.education-text {
    font-size: 14px;
    text-align: center;
    color: #010915;
    font-weight: 300;
    line-height: 15px;
    padding: 10px;
}

.education-area:hover {
    transform: scale(1.02);
}

@media(max-width:814px) {

    .education-area {
        padding-bottom: 20px;
    }

    .education-section {
        margin-top: 20px;
    }

    .education-header {
        font-size: 16px;
    }

    .education-text {
        font-size: 13px;
        line-height: 15px;
        padding: 10px;
    }
}

/* EDUCATION AREA ENDS HERE */



/* SOCIAL AREA STARTS HERE */


.seperator-social-area {
    margin-top: 50px;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    /* border-bottom: 1px solid #eee; */
}

.button a {
    font-size: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    color: #b64238;
    background-color: #fff;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
    transition: 350ms;
    border: none;
}

.button a:hover {
    cursor: pointer;
    color: #fff;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.facebook a:hover {
    background: #b64238;
}

.twitter a:hover {
    background: #b64238;
}

.instagram a:hover {
    /* background: linear-gradient(
    135deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  ); */
    background: #b64238;
}

.youtube a:hover {
    background: #b64238;
}

.linked-in a:hover {
    background: #b64238;
}


.social-text,
.social-text h5 {
    text-align: center;
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    color: rgb(182, 66, 56, .8);
    text-shadow: none !important;
}

.social-text h5 {
    animation: jump-animation 3s infinite;
}

.social-text-seconder,
.social-text-seconder h5 {
    text-align: center;
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    color: rgb(172, 147, 106, 1);
    text-shadow: none !important;
}




@media(max-width:768px) {
    .seperator-social-area {
        margin-top: 50px;
        padding-bottom: 10px;
    }
}

/* SOCIAL AREA ENDS HERE */



/* PROJECT MATERIAL STARTS HERE */


.material-section .material-text-desc {
    display: -webkit-box;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.material-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px;
}

.material-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 20px;
    padding-bottom: 15px;
}

.material-card {
    border: 1px solid transparent;
    background-color: #fff;
    white-space: wrap;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding-top: 20px;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.material-card i {
    font-size: 40px;
    color: #e4c951;
}

.material-text-area {
    padding-top: 15px;
    padding-bottom: 15px;
}

.material-text-header {
    font-size: 14px;
    color: #b64238;
    font-weight: 300;
    text-shadow: none;
    text-align: center;
}

.material-text-desc {
    text-shadow: none;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    line-height: 17px;
    margin-top: 20px;
}

.material-text-name {
    font-size: 14px;
    color: #b64238;
    font-weight: 600;
}

.material-scroll-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #e4c951;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
    font-size: 25px;
    transition: 350ms;
}


.material-scroll-btn:hover {
    color: #12312B;
}

.material-scroll-btn.left {
    left: 15px;
}

.material-scroll-btn.right {
    right: 15px;
}

@media(max-width:768px) {
    .material-area {
        margin-top: 45px;
        padding-bottom: 0px;
        padding: 0;
    }

    .material-wrapper {
        gap: 15px;
    }

    .material-scroll-btn {
        font-size: 20px;
    }

    .material-scroll-btn.left {
        left: -23px;
    }

    .material-scroll-btn.right {
        right: -23px;
    }

    .material-text-header {
        font-size: 13px;
    }

    .material-text-desc {
        text-shadow: none;
        padding-bottom: 5px;
        font-size: 12px;
        line-height: 15px;

    }

    .material-text-name {
        font-size: 12px;
    }
}

.material-button {
    margin-top: 5px;
    display: flex;
    justify-content: center;
}

.btn.material-success-button {
    background-color: #b64238;
    border: 1px solid #b64238;
    color: #fff;
    padding: 5px 20px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 300;
    transition: 250ms;
    margin-top: 0px;
    letter-spacing: 1px;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.btn.material-success-button:hover {
    border: 1px solid #b64238;
    background-color: transparent;
    color: #b64238;
}

@media (max-width: 1020px) {
    .btn.material-success-button {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 810px) {
    .material-button {
        margin-top: 35px;
    }
}

/* PROJECT MATERIAL ENDS HERE */


/* MAIN CONTACT FORM  STARTS HERE*/


/* CONTACT AREA STARTS HERE */

.footer-container {
    margin-top: 75px;
}


.contact-form {
    z-index: 2;
    position: relative;
    border: 1px solid #fff;
    background-color: #fff;
    bottom: 0px;
    right: 12px;
    padding: 30px 30px;
    /* -webkit-box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 3px 5px 20px 0px rgba(0, 0, 0, 0.25); */
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        0.2rem 0.2rem 0.5rem rgb(255, 255, 255);
}

.contact-form-header,
.contact-form-header p,
.contact-form-header h3 {
    font-size: 18px;
    letter-spacing: 2px;
    color: #010915;
    padding-bottom: 15px;
    text-shadow: none !important;
    text-align: center;
}

.contact-form-input input,
.contact-form-input textarea,
.contact-form-input select {
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid rgb(139, 115, 75, 0.1);
    border-radius: 0;
    font-size: 13px;
}

.contact-form-input.form-check {
    margin-left: 11px;
    display: flex;
    gap: 10px;
}

.contact-form-input.form-check input {
    border: 1px solid #b64238;
    font-size: 14px;
    height: 15px;
    width: 15px;
}

.contact-form-input label {
    font-size: 13px;
    margin-top: 3px;
}

.contact-form-input label a {
    color: #b64238;
    border-bottom: 1px solid transparent;
    transition: 350ms;
}

.contact-form-input label a:hover {
    color: #b64238;
    border-bottom: 1px solid #b64238;
}


.btn.contact-form-button {
    /* background-color: rgba(223, 223, 223, 1);*/
    background-color: #b64238;
    border: 1px solid #b64238;
    color: #fff;
    height: 40px;
    width: 25%;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 300;
    transition: 350ms;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.btn.contact-form-button:hover {
    border: 1px solid #b64238;
    background-color: transparent;
    color: #b64238;
}

@media (max-width: 768px) {
    .footer-container {
        margin-top: 50px;
    }

    .contact-form {
        top: 0px;
        bottom: 0;
        right: 0;
        border-radius: 0px;
        position: relative;
        box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
            -0.2rem 0.2rem 0.5rem rgb(255, 255, 255);
    }

    .contact-form-header,
    .contact-form-header p,
    .contact-form-header h3 {
        padding-bottom: 10px;
        font-size: 13px;
        text-align: center;
    }

    .btn.contact-form-button {
        font-size: 12px;
        width: 100%;
    }

    .contact-form-input input,
    .contact-form-input textarea,
    .contact-form-input select {
        margin-bottom: 7px;
        font-size: 11px;
    }

    .contact-form-input.form-check {
        margin-left: 5px;
    }

    .contact-form-input.form-check input {
        border: 1px solid #b64238;
        font-size: 11px;
    }

    .contact-form-input label {
        font-size: 12px;
        margin-top: 2px;
    }
}

/* MAIN CONTACT FORM ENDS HERE*/

/* FOUNDER AREA STARTS HERE*/

.founder-area {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.founder-section img {
    border-radius: 15px;
}

.founder-section h2 {
    margin-top: 5px;
    text-align: right;
    margin-right: 11%;
    font-size: 15px;
    font-weight: 500;

}

.founder-section h3 {
    text-align: right;
    margin-right: 11%;
    font-size: 13px;
    color: #b64238;
    font-weight: 500;
}

.row .founder-desc-section {
    margin-top: 30px;
}

.founder-desc-header {
    color: #b64238;
    font-size: 15px;
}

.founder-desc-text {
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    font-weight: 300;
}

.founder-desc-text span {
    color: #b64238;
    font-weight: 400;
}

.founder-edu-area img {
    margin-top: 35px;
    margin-bottom: 25px;
}

.founder-edu-area-text {
    text-align: justify;
    font-size: 14px;
    margin-top: 35px;
    font-weight: 300;
}

.founder-edu-area-text h2 {
    font-size: 15px;
    color: #b64238;
    font-weight: 400;
    margin-top: 25px;
}

.founder-edu-area-text h3 {
    font-size: 13px;
    font-weight: 300;
    margin-top: 10px;
}

.row.founder-cards-section {
    margin-top: 50px;
}

.founder-cards-area i {
    margin-top: 35px;
    font-size: 30px;
    color: #b64238;
}

.founder-cards-area h2 {
    font-size: 15px;
    margin-top: 15px;
    font-weight: 300;
}


@media (max-width:768px) {
    .founder-area {
        margin-top: 35px;
    }

    .row .founder-desc-section {
        margin-top: 5px;
    }

    .founder-section h2 {
        margin-top: 5px;
        margin-right: 11%;
        font-size: 12px;
    }

    .founder-section h3 {
        margin-right: 11%;
        font-size: 12px;
    }

    .founder-desc-text {
        font-size: 13px;
        line-height: 16px;
        margin-top: 15px;
    }


    .founder-edu-area-text {
        font-size: 13px;
    }

    .founder-edu-area-text h2 {
        font-size: 14px;
        margin-top: 20px;
    }

    .founder-edu-area-text h3 {
        font-size: 13px;
        margin-top: 5px;
    }

    .row.founder-cards-section {
        margin-top: 15px;
    }

    .founder-cards-area i {
        margin-top: 25px;
        font-size: 25px;
    }

    .founder-cards-area h2 {
        font-size: 14px;
        margin-top: 5px;
    }

    .founder-desc-header {
        margin-top: 15px;
    }
}


/* FOUNDER AREA ENDS HERE*/

/* SUCCESS AREA STARTS HERE*/

.success-slider {
    margin-top: 70px;
}

.row .material-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.carousel-inner,
#carouselSuccessSlider {
    border-radius: 15px;
}

.success-area-header {
    font-size: 16px;
    color: #b64238;
    margin-top: 35px;
}

.success-area-text {
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
    font-weight: 300;
}



@media(max-width:768px) {
    .success-area-header {
        font-size: 15px;
        color: #b64238;
    }

    .success-area-text {
        font-size: 13px;
        line-height: 16px;
    }
}


/* SUCCESS AREA ENDS HERE*/

/* PRESS AREA STARTS HERE*/

.press-section {
    margin-top: 50px;

}

.press-section .row {
    gap: 30px;
    justify-content: center;


}

.press-area {
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
    background-color: transparent;
    padding-top: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 35px;
    transform: scale(1);
    border-radius: 15px;
    height: 400px;
}

.press-area img {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


.press-header {
    font-size: 16px;
    letter-spacing: -1px;
    color: #b64238;
    text-align: left;
    padding: 10px;
}

.press-text {
    font-size: 14px;
    text-align: left;
    color: #010915;
    font-weight: 300;
    line-height: 15px;
    padding: 10px;
}


.press-go-icon {
    position: absolute;
    right: 0%;
    top: 0%;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 20px;
    padding: 5px 3px;
    color: #010915;
    border-top-right-radius: 15px;
    transition: 250ms;
}

.press-area:hover .press-go-icon {
    background-color: #010915;
    border: 1px solid #010915;
    color: #fff;
}

@media(max-width:768px) {
    .press-section .row {
        gap: 20px;
    }

    .press-area {
        padding-bottom: 20px;
        height: auto;
    }

    .press-section {
        margin-top: 20px;
    }

    .press-header {
        font-size: 15px;
    }

    .press-text {
        font-size: 13px;
        line-height: 15px;
    }

    .press-go-icon {
        font-size: 15px;
    }
}

/* PRESS AREA ENDS HERE*/


/* CONTACT AREA STARTS HERE*/

.reach-area {
    margin-top: 50px;
}

.reach-area .row {
    gap: 20px;
}

.reach-section {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
}

.reach-section i {
    font-size: 30px;
    color: #b64238;
    transition: 250ms;
}

.reach-section-header {
    font-size: 17px;
    color: #010915;
    margin-top: 15px;
}

.reach-section-text {
    font-size: 14px;
    color: #b64238;
    font-weight: 300;
    margin-top: 10px;
    transition: 250ms;
}


.reach-section:hover i,
.reach-section:hover .reach-section-text {
    color: #e4c951;
}

.map-area {
    margin-top: 50px;
}

.mapouter {
    position: relative;
    text-align: right;
    width: 100%;
    height: 400px;
}

.gmap_canvas {
    overflow: hidden;
    background: none;
    width: 100%;
    height: 400px;
}

.gmap_iframe {
    height: 400px;
}


@media(max-width:768px) {

    .reach-area {
        margin-top: 25px;
    }

    .reach-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .reach-section i {
        font-size: 20px;
    }

    .reach-section-header {
        font-size: 14px;
        margin-top: 10px;
    }

    .reach-section-text {
        font-size: 13px;
        margin-top: 5px;
    }

    .mapouter {
        height: 360px;
    }

    .gmap_canvas {
        height: 360px;
    }

    .gmap_iframe {
        height: 360px;
    }
}

/* CONTACT AREA ENDS HERE*/


/* BLOG MAIN PAGE STARTS HERE*/

.blog-section {
    margin-top: 50px;

}

.blog-section .row {
    gap: 15px;
    justify-content: center;


}

.blog-area {
    box-shadow: 0.2rem 0.3rem 0.6rem rgb(200, 208, 231),
        -0.2rem -0.2rem 0.5rem rgb(255, 255, 255);
    background-color: transparent;
    padding-top: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 35px;
    transform: scale(1);
    border-radius: 15px;
}

.blog-area img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


.blog-header {
    font-size: 16px;
    letter-spacing: -1px;
    color: #b64238;
    text-align: center;
    padding: 10px;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-text {
    font-size: 14px;
    text-align: left;
    color: #010915;
    font-weight: 300;
    line-height: 1.5;
    padding: 10px;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.blog-go-icon {
    position: absolute;
    right: 0%;
    top: 0%;
    border: 1px solid #fff;
    background-color: #fff;
    font-size: 20px;
    padding: 5px 3px;
    color: #010915;
    border-top-right-radius: 15px;
    transition: 250ms;
}

.blog-area:hover .blog-go-icon {
    background-color: #010915;
    border: 1px solid #010915;
    color: #fff;
}


@media(max-width:768px) {
    .blog-section .row {
        gap: 20px;
    }

    .blog-area {
        padding-bottom: 20px;
        height: auto;
    }

    .blog-section {
        margin-top: 20px;
    }

    .blog-header {
        font-size: 15px;
    }

    .blog-text {
        font-size: 13px;
        line-height: 15px;
    }

    .blog-go-icon {
        font-size: 15px;
    }
}

/* BLOG MAIN PAGE ENDS HERE*/

.opening-blog-header {
    display: flex;
    flex-direction: column;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 600;
}


.opening-blog-header-span {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #b64238;
}


.opening-blog-section {
    margin-top: 75px;
    font-weight: 400;
    display: flex;

}

.opening-blog-button {
    float: right;
    margin-top: 5px;
}


.opening-blog-text {
    text-align: justify;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
}

.blog-tag-area {
    display: flex;
    gap: 5px;
}

.blog-tag-text {
    font-size: 10px;
    border: 1px solid #b64238;
    padding: 5px 15px;
    padding-bottom: 5px !important;
    border-radius: 5px;
    background-color: #b64238;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-opening-desc-text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-opening-desc-area {
    margin-top: 10px;
}

.blog-opening-image-area img {
    border-radius: 15px;
}



.row .blog-desc-section {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}



.blog-desc-text {
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    font-weight: 400;
}

.blog-desc-text span {
    color: #b64238;
    font-weight: 500;
}

.blog-desc-seconder-header {
    font-size: 20px;
    line-height: 20px;
    margin-top: 20px;
    color: #b64238;
}

.blog-button {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.btn.blog-success-button {
    background-color: #b64238;
    border: 1px solid #b64238;
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 300;
    transition: 250ms;
    margin-top: 0px;
    letter-spacing: 1px;
    box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.15);
}

.btn.blog-success-button:hover {
    border: 1px solid #b64238;
    background-color: transparent;
    color: #b64238;
}

@media(max-width:1024px) {
    .opening-blog-section {
        margin-top: 25px;
    }
}

@media (max-width: 1020px) {
    .btn.blog-success-button {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 810px) {
    .blog-button {
        margin-top: 35px;
    }
}


@media (max-width: 810px) {
    .opening-blog-header {
        font-size: 25px;
        line-height: 30px;
    }

    .blog-opening-image-area img {
        margin-top: 35px;
    }

    .blog-desc-seconder-header {
        font-size: 16px;
        line-height: 18px;
        margin-top: 18px;
        color: #b64238;
    }

    .opening-blog-text {
        font-size: 13px;
        line-height: 16px;
        margin-top: 0px;
    }

}

/* BLOG MAIN PAGE ENDS HERE*/

/* STATIC AREA STARTS HERE */

.static-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    position: fixed;
    bottom: 0px;
    left: 10px;
    z-index: 1;
}



.static-wrapper {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 5px;
    padding: 0 !important;
}

.static-wrapper .icon {
    position: relative;
    background: #40D34F;
    color: #fff;
    border-radius: 50px;
    margin: 3px;
    padding: 15px;
    width: 45px;
    height: 45px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media(max-width:768px) {
    .static-wrapper .icon {
        width: 42px;
        height: 40px;
        padding: 12px;
        font-size: 28px;

    }
}

.static-wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 13px;
    font-weight: 300;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 2px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.static-wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #40D34F;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.static-wrapper .icon:hover .tooltip {
    top: -45px;
    /* left: -15px; */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.static-wrapper .icon:hover span,
.static-wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.static-wrapper .whatsapp-icon:hover,
.static-wrapper .whatsapp-icon:hover .tooltip,
.static-wrapper .whatsapp-icon:hover .tooltip::before {
    /* background: #1877F2; */
    color: #ffffff;
    background-color: #40D34F;
}

.static-wrapper .mail-icon:hover,
.static-wrapper .mail-icon:hover .tooltip,
.static-wrapper .mail-icon:hover .tooltip::before {
    /* background: #1877F2; */
    color: #ffffff;
    background-color: #40D34F;
}

.static-wrapper a {
    color: #fff;
}

.static-wrapper a:hover {
    color: #fff;
}


#backToTop {
    display: none;
    position: fixed;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    font-size: 25px;
    bottom: 20px;
    right: 15px;
    z-index: 1;
    border: 1px solid transparent;
    color: #fff;
    background-color: rgb(182, 66, 56, 1);
    cursor: pointer;
    text-align: center;
    align-self: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


#backToTop:hover {
    transform: translateY(-10%);

}

@media(max-width:1020px) {
    #backToTop {
        font-size: 20px;
        padding: 2px 12px;
    }
}

/* STATIC AREA ENDS HERE */


/* POPUP STARTS HERE */

.popup-modal button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    opacity: 1;
    padding: 7px;
    font-size: 15px;
    border-top-right-radius: 0px;
    cursor: pointer;
    transition: 350ms;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.35);
}


/* POPUP ENDS HERE */




video[poster] {
    background-size: cover;
    background-position: center;

}

.carousel-inner {
    overflow: hidden;

}

.carousel-item video {
    object-fit: cover;

}


@media (min-width: 768px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 25px;
    }
}

.thank-success-wrap {
    padding: 24px 0 72px;
}

.thank-success-card {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 28px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(140deg, #ffffff 0%, #f1fdf8 45%, #ecf8ff 100%);
    border: 1px solid rgba(43, 130, 100, 0.15);
    box-shadow: 0 24px 70px rgba(27, 76, 58, 0.18);
    animation: thankCardIntro 0.8s ease-out both;
}

.thank-success-glow {
    position: absolute;
    top: -220px;
    right: -60px;
    width: 300px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 209, 154, 0.3) 0%, rgba(26, 209, 154, 0) 70%);
    pointer-events: none;
}

.thank-success-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: thankIconFloat 4s ease-in-out infinite 1s;
}

.thank-success-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 25px rgba(32, 150, 100, 0.32));
}

.thank-success-circle {
    fill: none;
    stroke: #1ea56f;
    stroke-width: 4;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: thankCircleDraw 0.7s ease forwards 0.2s;
}

.thank-success-check {
    fill: none;
    stroke: #1ea56f;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: thankCheckDraw 0.45s ease forwards 0.85s;
}

.thank-success-ring {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    border: 2px solid rgba(30, 165, 111, 0.2);
    animation: thankRingPulse 1.8s ease-out infinite 1.1s;
}

.thank-success-kicker {
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
    color: #17855a;
    font-weight: 700;
}

.thank-success-title {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 2.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #123f30;
    animation: thankTextRise 0.55s ease-out both 0.45s;
}

.thank-success-text {
    margin: 0 auto 28px;
    max-width: 520px;
    color: #406559;
    font-size: 1rem;
    animation: thankTextRise 0.55s ease-out both 0.65s;
}

.thank-success-btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 34px;
    font-weight: 700;
    letter-spacing: 0.04rem;
    color: #ffffff;
    background: linear-gradient(90deg, #129467 0%, #1fa6e3 100%);
    box-shadow: 0 12px 28px rgba(22, 126, 171, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: thankTextRise 0.55s ease-out both 0.85s;
}

.thank-success-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(22, 126, 171, 0.45);
}

.thank-success-btn:focus-visible {
    outline: 3px solid rgba(31, 166, 227, 0.35);
    outline-offset: 2px;
}

.thank-success-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.thank-success-piece {
    position: absolute;
    top: -14%;
    width: 10px;
    height: 16px;
    border-radius: 3px;
    opacity: 0;
    animation: thankConfetti var(--duration, 3.3s) linear var(--delay, 0s) infinite;
}

.thank-success-card>* {
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .thank-success-wrap {
        padding-bottom: 50px;
    }

    .thank-success-card {
        padding: 42px 20px;
        border-radius: 24px;
    }

    .thank-success-icon {
        width: 105px;
        height: 105px;
    }
}