:root {
    --bs-mary-blue: #003399;
    --bs-macaroni: #ffb97c;
    --bs-mary-light-blue: #0149ab;
    --bs-dark-blue: #003399;
    --bs-light-blue: #BEE1E6;
    --bs-light-gray: #f3f3fd;
    --bs-dark-gray: #eaeaf2;
    --bs-white: #fff;
    --bs-black: #f60;
    --color-black-gray: #212529;
    --color-text: #363434;
    --color-white: #fff;
    --color-black: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.fs-50 {
    font-size: calc(36px + (50 - 36) * ((100vw - 300px) / (1920 - 300)))
}

.fs-48 {
    font-size: calc(30px + (48 - 30) * ((100vw - 300px) / (1920 - 300)))
}

.fs-36 {
    font-size: calc(26px + (36 - 26) * ((100vw - 300px) / (1920 - 300)))
}

.fs-30 {
    font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-26 {
    font-size: calc(22px + (26 - 22) * ((100vw - 300px) / (1920 - 300)))
}

.fs-24 {
    font-size: calc(21px + (24 - 21) * ((100vw - 300px) / (1920 - 300)))
}

.fs-22 {
    font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1920 - 300)))
}

.fs-18 {
    font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fs-16 {
    font-size: calc(16px + (16 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fs-20 {
    font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)))
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading h1,
.section-heading h2,
.section-heading h3,
.section-heading h4,
.section-heading h5,
.section-heading h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--color-black-gray)
}

.color-text {
    color: var(--bs-mary-blue);
}

a {
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif
}

p {
    font-family: 'PT Sans', sans-serif;
    color: var(--color-text)
}

img,
svg {
    max-width: 100%
}

.separator {
    width: 143px;
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    position: relative;
    z-index: 0
}

.text-center .separator {
    margin-left: auto;
    margin-right: auto
}

.text-right .separator {
    margin-left: auto;
    margin-right: 0
}

.separator:after,
.separator:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    margin: auto;
    background: var(--bs-black)
}

.separator:after {
    left: 0
}

.separator:before {
    right: 0
}

.separator>span {
    display: inline-flex;
    align-items: center;
    position: relative
}

.separator>span:after,
.separator>span:before {
    content: "";
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    background: var(--bs-mary-light-blue)
}

.separator>span:after {
    left: 5.5px
}

.separator>span:before {
    right: 5.5px
}

.separator span span {
    width: 11px;
    height: 11px;
    border: 2px solid var(--bs-mary-light-blue);
    display: inline-block
}

.transition_delay {
    transition: 0.5s all ease-in-out
}

/* Header Section 
============ Sticky Header =================*/
.site-header {
    box-sizing: border-box;
    z-index: 9;
    position: absolute;
    transition: 0.5s all ease-in-out;
    padding: 15px 0;
    width: 100%;
    top: 0
}

.site-header.sticky-fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;
    background: var(--bs-white);
    padding: 5px 0;
    box-shadow: 0px 5px 7px -2px rgba(0, 0, 0, 0.25)
}

.site-header.sticky-fixed .header-logo img {
    width: 250px
}

.sticky-fixed .header-login,
.sticky-fixed .menu-toggle {
    top: 14px
}

.btn.theme-button {
    background: var(--bs-mary-blue);
    border-radius: 32px;
    color: var(--color-white);
    transition: 0.5s all ease-in-out
}

.btn.theme-button:hover {
    background: var(--bs-black);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0px 0px 10px 4px rgb(219 219 219)
}

/* ============ Header =================*/
.header-logo {
    transform: translateX(-100rem);
    animation: slideIn 0.5s forwards
}

.header-logo img {
    width: 250px
}

.site-header ul li {
    list-style: none;
    transform: translateX(100rem);
    animation: slideIn 1.5s forwards
}

.nav-menu li:nth-child(1) {
    animation-delay: 0s
}

.nav-menu li:nth-child(2) {
    animation-delay: 0.3s
}

.nav-menu li:nth-child(3) {
    animation-delay: 0.5s
}

.nav-menu li:nth-child(4) {
    animation-delay: 0.8s
}

.site-header nav ul li a {
    position: relative;
    font-weight: 500;
    transition: 0.5s all ease-in-out;
    display: block
}

.header-login a {
    list-style: none;
    transform: translateX(100rem);
    animation: slideIn 1.5s forwards;
    animation-delay: 1.0s
}

/* ============ Mobile Header Version =================*/
.menu-toggle {
    position: absolute;
    right: 36px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    color: var(--bs-mary-blue);
    font-size: 21px;
    top: 20px
}

@keyframes slideIn {
    from {}

    to {
        transform: translateX(0)
    }
}

/*     Banner Section 
===========================*/
.banner-section {
    padding: 130px 0 170px;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(180deg, #F3FFFE 54.17%, rgba(255, 233, 249, 0.28) 100%)
}

.banner-bg-shape {
    position: absolute;
    bottom: 0
}

.banner-bg-shape::before {
    content: "";
    height: 700px;
    width: 700px;
    left: -200px;
    z-index: -1;
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(11, 135, 148, 0.28) 30%, rgba(11, 133, 145, 0.27) 5%, rgba(252, 71, 21, 0) 66%, rgba(255, 73, 23, 0) 96%);
    bottom: 0
}

.banner-section::after {
    height: 55px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: var(--bs-white);
    content: ""
}

.banner-content-wrap {
    position: relative;
    z-index: 1
}

.banner-content-wrap h1 {
    font-weight: 700
}

.banner-content-wrap p {
    position: relative;
    z-index: 1
}

.banner-contact ul {
    position: absolute;
    bottom: -5px;
    background: var(--bs-white);
    z-index: 1;
    box-shadow: 0px 3px 12px 0px rgba(200, 191, 191, 0.5)
}

.banner-contact li {
    list-style: none;
    display: inline-block
}

.banner-contact i {
    padding-right: 25px;
    color: var(--bs-mary-blue)
}

.half-round-shape {
    bottom: 50px;
    position: absolute;
    width: 473px;
    z-index: 0;
    margin-left: 17px;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate
}

.banner-contact .btn.theme-button {
    position: absolute;
    right: -59px;
    bottom: 17px;
    border-radius: 5px;
    padding: 15px 20px
}

.rectangle-shape1 {
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    position: absolute;
    bottom: 135px;
    left: 0%;
    display: inline-block
}

.rectangle-shape2 {
    width: 100px;
    height: 100px;
    background: var(--bs-macaroni);
    position: absolute;
    left: 6.6%;
    z-index: 1;
    display: inline-block;
    bottom: 90px
}

.rectangle-shape3 {
    background: var(--bs-mary-blue);
    position: absolute;
    left: 3%;
    display: inline-block;
    z-index: 0;
    width: 100px;
    height: 100px;
    bottom: 213px
}

.banner-image {
    top: 0;
    position: absolute;
    width: 100%;
    animation: Bounce-left-right 3000ms linear infinite alternate;
    height: 100%
}

.banner-image img {
    position: absolute
}

.big-img {
    margin: 0 auto;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate
}

.right-shape1 {
    right: 43px;
    bottom: -37px
}

.right-shape2 {
    right: -41px;
    top: 46%
}

.right-shape3 {
    top: 0;
    right: 23px
}

.right-shape4 {
    top: 50%;
    left: 0
}

.right-shape5 {
    top: 66%
}

.banner-services {
    animation: Bounce-up-down 2s linear infinite alternate;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%
}

.banner-service-wrap {
    padding: 2px 16px;
    backdrop-filter: blur(10px);
    position: absolute;
    z-index: 1;
    box-shadow: 0px 3px 12px 0px rgba(200, 191, 191, 0.5);
    text-align: center
}

.banner-service-blog1 {
    top: 19px
}

.banner-service-wrap.banner-service-blog2 {
    top: 27%;
    padding: 6px
}

.banner-service-wrap.banner-service-blog3 {
    bottom: 44%;
    left: 0;
    right: 0;
    margin: 0 auto;
    backdrop-filter: blur(4px)
}

.banner-service-wrap.banner-service-blog4 {
    bottom: 66px;
    text-align: right
}

.banner-service-wrap.banner-service-blog5 {
    bottom: 11px;
    text-align: right
}

.service-text1 {
    font-size: 21px;
    color: var(--color-black);
    padding-right: 16px;
    z-index: 1;
    position: relative
}

.banner-service-wrap img {
    width: 50px;
    z-index: 1;
    position: relative
}

/* Home Aboutus Section 
===========================*/
.home-aboutus {
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.aboutus-content {
    position: relative;
    background: var(--bs-light-gray)
}

.aboutus-content p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    text-align: justify
}

.vision-blog {
    padding: 125px 20px 20px;
    background: var(--bs-mary-light-blue)
}

.mission-blog {
    position: relative;
    width: 100%;
    padding: 125px 20px 20px;
    background: var(--bs-dark-blue)
}

.goal-blog {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 125px 20px 20px;
    background: var(--bs-mary-light-blue)
}

.about-type .sub-heading {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #d7d7d7;
}

.about-type p {
    color: #d7d7d7;
    font-family: 'Open Sans', sans-serif
}

.mission-blog .sub-heading {
    color: #d7d7d7;
}

.mission-blog p {
    color: #d7d7d7;
}

.about-type:hover {
    background: #fc933a
}

.about-type:hover .sub-heading,
.about-type:hover p {
    color: var(--color-black)
}

.circle-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    border-radius: 50%;
    animation: circleFill 5s infinite;
    background: var(--bs-dark-blue)
}

.circle1-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    border-radius: 50%;
    animation: circleFill 5s infinite;
    background: var(--bs-mary-light-blue)
}

.circle2-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    left: 60px;
    border-radius: 50%;
    animation: circleNull 5s infinite;
    background: #ffb97d
}

.circle3-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    border-radius: 50%;
    animation: circleFill 5s infinite;
    background: #ffb97d
}

.circle4-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 40px;
    left: 60px;
    border-radius: 50%;
    animation: circleNull 5s infinite;
    background: var(--bs-dark-blue)
}

@keyframes circleFill {

    0%,
    100% {
        transform: translateX(75%);
        animationTimingFunction: cubic-bezier(0.8, 0, 1, 1)
    }

    50% {
        transform: translateX(0);
        animationTimingFunction: cubic-bezier(0, 0, 0.2, 1)
    }
}

@keyframes circleNull {

    0%,
    100% {
        transform: translateX(-50%);
        animationTimingFunction: cubic-bezier(0.8, 0, 1, 1)
    }

    50% {
        transform: translateX(0);
        animationTimingFunction: cubic-bezier(0, 0, 0.2, 1)
    }
}

.aboutus-rectangle1 {
    width: 110px;
    height: 108px;
    background: var(--bs-light-gray);
    position: absolute;
    bottom: 0;
    right: -110px;
    display: block
}

.aboutus-rectangle2 {
    width: 110px;
    height: 114px;
    background: var(--bs-light-gray);
    position: absolute;
    bottom: 0;
    right: -110px;
    display: block
}

.aboutus-rectangle3 {
    width: 110px;
    height: 112px;
    background: var(--bs-light-gray);
    position: absolute;
    right: -111px;
    display: block;
    bottom: 0
}

.aboutus-rectangle4 {
    width: 110px;
    height: 114px;
    background: #0149ab;
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block
}

.aboutus-rectangle5 {
    width: 110px;
    height: 108px;
    background: var(--bs-macaroni);
    position: absolute;
    right: 0;
    display: block;
    z-index: -1
}

/* Partner Section 
===========================*/
.partner-section {
    padding-bottom: 60px
}

.partner-slideimg {
    margin: 0 auto
}

/*** 
    Service Section
==================================***/
.home-service-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

.service-bg-area {
    width: 116%;
    left: -10%;
    right: -10%;
    height: 450px;
    position: absolute;
    top: 36px;
    background: linear-gradient(180deg, #F0F8F8 54.17%, rgba(255, 233, 249, 0.28) 100%);
    transform: rotate(-2deg)
}

.service-inner {
    padding-top: 56px;
    position: relative
}

.blog-area {
    padding: 15px;
    text-align: center;
    background: var(--bs-white);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
    transition: 0.5s
}

.blog-area:hover {
    transform: translateY(-10px)
}

.service-sub-heading {
    font-size: 24px;
    padding: 19px 0;
    font-weight: 600;
    color: var(--bs-mary-blue);
    font-family: 'Poppins', sans-serif
}

.blog-area p {
    font-size: 17px;
    font-family: 'Open Sans', sans-serif
}

.service-shape1 img {
    position: absolute;
    top: -161px;
    left: -224px;
    animation: lab_zoomin 3s linear infinite
}

.service-shape2 img {
    position: absolute;
    right: -56px;
    bottom: -19px;
    z-index: -1;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate
}

.service-top-right img {
    right: 0;
    position: absolute;
    animation: ImgBounce 5s ease-in-out 0s infinite alternate
}

/*** 
    Why Choose Section
==================================***/
.why-choose-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.choose-row {
    margin: 0 auto !important;
    width: 95%
}

.choose-content {
    background: var(--bs-light-gray);
    height: 100%;
    padding: 30px
}

.choose-sub-heading {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 12px
}

.choose-content p {
    font-size: 19px;
    font-family: 'Open Sans', sans-serif
}

.choose-rectangle1,
.choose-rectangle2,
.choose-rectangle3,
.choose-rectangle4 {
    position: absolute
}

.choose-rectangle1 {
    top: 0;
    background: var(--bs-light-gray);
    margin-left: -305px
}

.choose-rectangle2 {
    top: 25%;
    background: var(--bs-dark-blue);
    margin-left: -159px
}

.choose-rectangle3 {
    right: 0;
    top: 0;
    background: var(--bs-dark-blue);
    margin-right: -147px
}

.choose-rectangle4 {
    right: 0;
    top: 50%;
    background: var(--bs-macaroni);
    margin-right: -147px
}

/*** 
    Benefits Section
==================================***/
.benefits-section {
    padding: 60px 0;
    background: var(--bs-light-blue);
    overflow: hidden
}

.benefits-row {
    width: 95%;
    margin: 0 auto
}

.benefits-img {
    position: absolute
}

.benefits-img img {
    border-radius: 10px
}

.benefits-block-1 {
    top: 16px;
    animation: Bounce-up-down 2s linear infinite alternate
}

.benefits-block-2 {
    left: -18px;
    bottom: 13px;
    animation: Bounce-left-right 3000ms linear infinite alternate
}

.benefits-block-4 {
    text-align: center;
    animation: Bounce-up-down 2500ms linear infinite alternate;
    z-index: -1;
    position: relative
}

.benefits-big-img {
    width: 450px;
    margin: 0 auto
}

.dott-shap {
    position: absolute;
    top: -2px;
    z-index: -1;
    animation: Bounce-up-down 2s linear infinite alternate
}

.single-box {
    position: relative
}

.single-box+.single-box {
    margin-top: 40px
}

.benefits-icon i {
    width: 75px;
    background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
    height: 75px;
    border-radius: 50%;
    font-size: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    top: 5px;
    background-size: 200% auto;
    transition: all 500ms ease
}

.single-box:hover .benefits-icon i {
    background-position: right center
}

.single-box .benefits-icon i {
    background-image: linear-gradient(90deg, var(--bs-mary-blue) 0%, #03a9db 51%, var(--bs-mary-blue) 100%)
}

.benefits-icon img {
    width: 51px
}

.benefits-sub-heading {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif
}

.info-content p {
    margin: 0;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif
}

/*** 
    Benefits Section
==================================***/
.conter-section {
    padding: 0 0 60px
}

.cout-items {
    transition: 0.5s all ease-in-out;
    text-align: center
}

.cout-items:hover {
    transform: scale(1.1)
}

.counter-img {
    display: flex;
    position: relative
}

.counter-img img {
    width: 60px;
    margin: 0 auto
}

.item:hover img {
    transform: rotate(359deg);
    transition: 2s
}

.counter-count {
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.count-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--bs-mary-blue);
    padding: 0;
    display: flex
}

.count-symbol {
    font-size: 30px;
    color: var(--bs-mary-blue);
    font-weight: 900
}

.counter-text {
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-black)
}

/*** 
    Home Contact Section
==================================***/
.home-contact {
    overflow: hidden
}

.contact-row {
    background: var(--bs-dark-gray)
}

.contact-detail {
    padding: 28px 0;
    position: relative;
    z-index: 1
}

.contat-title {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--color-black-gray)
}

.contact-blog {
    padding-top: 20px
}

.info-blog {
    display: flex;
    align-items: center
}

.contact-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--bs-dark-blue);
    color: var(--color-white);
    margin-right: 24px
}

.contact-details .info-title {
    font-family: 'Poppins', sans-serif;
    display: block;
    color: var(--color-black-gray);
    font-weight: 500
}

.contact-row a {
    color: var(--bs-dark-blue);
    word-break: break-all;
    transition: 0.5s all ease-in-out
}

.contact-row a:hover {
    color: var(--color-black-gray)
}

.contact-details .footer-address {
    color: var(--color-black);
    font-weight: 700
}

.bnr-img {
    position: relative;
    text-align: center;
    z-index: 1
}

.contact-row .contact-shape1 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-dark-blue);
    bottom: 0;
    left: -100px
}

.contact-row .contact-shape2 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: white;
    top: 100px;
    right: 100px
}

.contact-row .contact-shape3 {
    position: absolute;
    height: 100px;
    width: 200px;
    background: var(--bs-dark-blue);
    top: 100px;
    right: -100px
}

.contact-row .contact-shape4 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-white);
    top: 200px;
    right: -1px
}

.contact-row .contact-shape5 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-white);
    top: 200px;
    right: 198px
}

.contact-row .contact-shape6 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-white);
    top: 300px;
    right: 98px
}

.contact-row .contact-shape7 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-white);
    top: 400px;
    right: -1px
}

/* Contact Footer Bottom */
.contact-bottom {
    position: relative;
    height: 150px
}

.contact-bottom-shape1 {
    position: absolute;
    height: 100px;
    width: 200px;
    background: var(--bs-dark-gray);
    left: 100px
}

.contact-bottom-shape2 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-dark-gray);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto
}

.contact-bottom-shape3 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-dark-blue);
    top: 100px;
    left: 0;
    margin: 0 auto
}

.contact-bottom-shape4 {
    position: absolute;
    height: 100px;
    width: 100px;
    background: var(--bs-dark-blue);
    top: 0;
    right: 0
}

.contact-bottom-shape5 {
    position: absolute;
    height: 100px;
    width: 110px;
    background: var(--bs-dark-gray);
    right: 100px;
    top: 100px
}

.footer-social {
    position: relative;
    float: right;
    margin-right: 15%;
    padding-top: 35px;
    display: flex
}

.social-weidge {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--bs-mary-blue)
}

.footer-social li {
    display: inline-block
}

.footer-social a {
    background: var(--bs-dark-gray);
    color: var(--bs-mary-blue);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    transition: 0.5s all ease-in-out;
    box-shadow: 0px 4px 7px -1px rgba(0, 0, 0, 0.32)
}

.footer-social a:hover {
    background: var(--bs-dark-blue);
    color: var(--color-white);
    transform: translateY(-5px);
    border-radius: 5px
}

/*** 
    Home Contact Section
==================================***/
.footer-section {
    position: relative;
    width: 100%;
    margin-top: 100px;
    background: linear-gradient(180deg, var(--bs-white) 54.17%, rgba(255, 233, 249, 0.28) 100%)
}

.footer-logo img {
    width: 250px
}

.footer-links li {
    display: inline-block
}

.footer-links a {
    color: var(--color-text);
    font-weight: 600;
    transition: 0.5s all ease-in-out;
    text-transform: uppercase
}

.footer-links a:hover {
    color: var(--bs-dark-blue)
}

.copyright-area {
    padding: 15px 0
}

.copyright-text p {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif
}

.copyright-text p a {
    color: var(--color-black);
    transition: 0.5s all ease-in-out
}

.copyright-links a {
    font-size: 15px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-black);
    transition: 0.5s all ease-in-out
}

.copyright-links a:first-child {
    padding-right: 20px
}

.copyright-links a:hover {
    color: var(--bs-mary-blue)
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes ImgBounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

/* Bounce */
@keyframes lab_zoomin {
    0% {
        transform: translateY(-20px) translateX(0px)
    }

    50% {
        transform: translateY(0px) translateX(-20px)
    }

    100% {
        transform: translateY(-20px) translateX(0px)
    }
}

@keyframes Bounce-up-down {
    0% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes Bounce-left-right {
    0% {
        -webkit-transform: translateY(-20px) translateX(50px);
        -moz-transform: translateY(-20px) translateX(50px);
        -ms-transform: translateY(-20px) translateX(50px);
        transform: translateY(-20px) translateX(50px)
    }

    100% {
        -webkit-transform: translateY(-20px) translateX(0px);
        -moz-transform: translateY(-20px) translateX(0px);
        -ms-transform: translateY(-20px) translateX(0px);
        transform: translateY(-20px) translateX(0px)
    }
}