/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar {
    width: 5px;
    background-color: #add3432f;
}

html::-webkit-scrollbar-thumb {
    background-color: #ADD343;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #000;
    scroll-padding-top: 160px;
}

a,
a:hover,
a:focus {
    color: #ADD343;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background: #8BC34A;
    transition: ease-in-out .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #8BC34A;
    border: 4px solid #8BC34A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.right {
    padding: 30px;
    text-align: left;
    background: #093048;
    .title,label{
        color: #fff;
    }
    label{
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 4px;
    }
    .form-control{
        padding: 13px 15px;
    }
   .primary-btn{
    border: 0;
    &:hover{
        background-color: #fff;
        color: #8BC34A;
    }
   }
}

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 50px 0;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}

p {
    color: #292929;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 161.111%;
}

.title {
    color: #1D1D1D;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 65%;
    position: relative;
    margin-bottom: 30px;
}

.title-sm {
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 115.789% */
}

.section-title {
    color: #1F1F1F;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    span{
        color: #ADD343;
    }
}
.card-title{
    color: #0F2532;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 14px;
}
.small-line {
    width: 38px;
    height: 2px;
    background: #ADD343;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 10px;
}
.bg-light-blue{
    background-color: #F6FCFF;
}

.primary-btn {
    color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: normal;
    padding: 13.5px 18px;
    border-radius: 6px;
background: #ADD343;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: #115278;
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}

.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

.primary-btn:after {
    transition-delay: .3s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #ffffff;
    border-color: #115278;
}

.primary-btn:focus {
    color: #fff;
}


.secondary-btn {
    background: #ffffff00;
    border-color: #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #192B53;
    border-color: #192B53;

    &::after,
    &::before {
        background-color: transparent;
    }
}


.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 13px 28px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
    font-family: "Poppins", sans-serif;
}

.form-control:focus {
    border-color: #ADD343;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #192B53;
    color: #ffffff;
}

.form-group {
    margin-bottom: 4px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
    
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}
.mobile{
    display: none;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
.action-bar {
    background: #ADD343;
    padding-block: 8px;
    text-align: center;
    overflow: hidden;
    p{
        margin: 0;
        color: #FFF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
    }
    a{
        color: #115278;
    }
}

.topbar a span {
    color: #030303;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
transition: all .5s;
}
.topbar a:hover span{
color: #ADD343;
}
.topbar{
    position: relative;
    a{
        display: flex;
        align-items: center;
        gap: 4px;
        padding-block: 10px;
    }
    &:after{
        content: '';
        height: 1px;
        width: 24%;
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: #E4E4E4;
    }
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: end;
}

.call-email {
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
    padding-left: 10px;
    border-bottom: 1px solid #E4E4E4;
    &::before{
        content: '';
        width: 1px;
        height: 51px;
        position: absolute;
        background: #E4E4E4;
        transform: rotate(325deg);
        left: -15px;
        bottom: -5px;
    }
    span{
        color: #E8E8E8;
    }
}

.header-area {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;

}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area.sticky {
    background: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-menu {
    display: flex;
    align-items: center;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;
.primary-btn{
    padding: 13px 19px;
}
}
.logo {
    position: absolute;
    bottom: 3px;
}
.main-menu {
    margin-left: auto;
}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 10px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 26px 6px;
    display: inline-block;
    color: #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}


#menu>.main-menu>ul>li>:hover a::before,
#menu .main-menu ul li.current-menu-item a::before {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 7px;
    width: 16px;
    height: 1px;
    background: #ADD343;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a{
    color: #ADD343;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::after {
    top: -2px;
    right: 0px;
    margin-left: 6px;
    margin-right: 2px;
    transition: all .4s;
    content: "";
    position: relative;
    z-index: 11;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::after,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::after {
    border-top-color: #ADD343;
    border-left-color: #ADD343;
}

/* #menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-316deg);
    top: 36px;
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}
#menu .main-menu ul ul li a{
    display: block;
}
#menu ul ul li:hover {}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #ADD343;
    a{
        color: #fff;
    }
}

#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }

    .logo {}

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        display: block !important;

    }
    #menu .main-menu ul li a.current-menu-item::before {
        bottom: 15px;
    }
    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }

    #menu ul ul li:hover {
        background: #ADD343 !important
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a::after,
    #menu>ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a::after,
    #menu ul ul>li.has-sub>a:after,
    #menu>.main-menu>ul>li.has-sub>a::after {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
}

.fixed-btn {
    position: fixed;
    top: 55%;
    right: 10px;
    z-index: 8;
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enq-btn {
    position: fixed;
    top: 20%;
    right: 9px;
    height: 45px;
    font-weight: 400;
    text-align: center;
    z-index: 9;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    overflow: clip;
    display: flex;
    border-radius: 6px;
    background: #ADD343;
}
.enq-btn::after, .enq-btn::before {
    content: '';
    content: '';
    position: absolute;
    z-index: -1;
    background: #115278;
    inset: 0;
    scale: 1 0;
    transition: scale 450ms;
    transform-origin: top;
}
.enq-btn:hover::after, .enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}

.enq-btn a {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 44px;
    color: #fff;
    padding: 0 23px;
    font-weight: 500;
}
.fc {
    width: 43px;
    height: 43px;
    background-color: #ADD343;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.fc:hover,
.fw:hover {
    transform: scale(1.2);
}

/************************************* Home Page **************************************/

.banner {
    position: relative;
    background: linear-gradient(0deg, #0F232F 0%, #115278 100%);
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 26px;
        background-color: #fff;
        z-index: -1;
    }
    h5{
        color: #FFF;
        font-size: 21px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        margin-bottom: 11px;
    }
    h1 {
        color: #FFF;
        font-size: 56px;
        font-style: normal;
        font-weight: 600;
        line-height: 62px;
        margin-bottom: 10px;
    }

    p {
        color: #FFF;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 26px;
        margin-bottom: 30px;
    }
   .tc{
    color: #FFF;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    bottom: 10px;
   }
   .icon-list{
    right: 50%;
    .list{
        position: relative;
        padding-left: 66px;
        height: 60px;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        position: relative;
        &:hover{
            span{
                background-color: #ADD343;
                &::after{
                    border: 2px dashed #ffffff;
                    animation: rotate 12s linear infinite;
                    inset: 4px;
                }
                img{
                    filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(7487%) hue-rotate(77deg) brightness(110%) contrast(100%);
                    transform: rotateY(180deg);
                }
            }
        }
        &::after{
            content: '';
                inset: 0;
                height: 1px;
                background-color: #1C3A4D;
                width: 100%;
                position: absolute;
                transform: translateY(-10px) translateX(37px);
        }
        span{
            width: 60px;
            height: 60px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: all .5s;
            &::after{
                content: '';
                position: absolute;
                inset: 2px;
                border-radius: 50%;
                border: 1px dashed #102A39;
            }
        }
        p{
            color: #FFF;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 22px;
            margin: 0;
        }
    }
   }
   .slick-dots{
    padding-left: 16%;
    bottom: 120px;
    text-align: left;
   }
}
@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.slick-dots{
    li{
        width: 9px;
        height: 9px;
        background-color: #f3672100;
        outline: 1px solid #fff;
        outline-offset: 4px;
        border-radius: 50%;
        margin: 0 10px;
        transition: all .5s;
        button{
            opacity: 0;
        }
    }
    li.slick-active,li:hover{
        background-color: #ADD343;
    }
}

.banner-item{
    position: relative;
    margin-bottom: 25px;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        .row{
            width: 100%;
        }
    }
}
.banner-content {
    width: 80%;
}
.btn-group {
    display: flex;
    gap: 10px;
}
.icon-list {
    position: absolute;
    bottom: 40px;
}
.banner-img {
   position: relative;
   bottom: -47px;
    left: 50%;
    margin-top: -47px;
}

/********** Brand ********/
.brand{
    padding-bottom: 36px;
    h2{
        margin-bottom: 16px;
        color: #121212;
        font-size: 19px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
}
.brand-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #E9E9E9;
    img:hover{
        transform: scale(1.1);
    }
}

/********* Services ************/
.service-item{
    border-radius: 14px;
    border: 1px solid #115278;
    background: #FFF;
    padding: 14px;
    height: 100%;
    position: relative;
    padding-bottom: 77px;
    transition: all .5s;
    &:hover{
        background: #115278;
        border-color: #115278;
        .card-title,p{
            color: #fff;
        }
        .icon-box{
            img{
                transform: rotateY(180deg);
            }
        }
    }
    .primary-btn{
        position: absolute;
        bottom: 20px;
        left: 23px;
        &:hover{
            color: #ADD343;
            &::after,&::before{
                background-color: #ffffff;
            }
        }
    }
}
.card-title,p{
    transition: all .5s;
}
.icon-box{
    width: 90px;
    height: 90px;
    background-color: #F5FBFF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/********** Key USPS ********/
.our-key{
    background-image: url(../img/our-key-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 112px 0;
    position: relative;
    z-index: 1;
    &:after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(17, 82, 120, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%);
        z-index: -1;
    }
    .section-title,p{
        color: #fff;
    }
    .card-title{
        margin-bottom: 8px;
    }
}
.key-item{
    position: relative;
    padding-left: 98px;
    &:hover{
        .icon-box{
            background-color: #ADD343;
            box-shadow: 0 0 0 3.18px rgba(173, 211, 67, 0.221);
            img{
                transform: rotateY(180deg);
                filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(7487%) hue-rotate(77deg) brightness(110%) contrast(100%);
            }
        }
    }
    .icon-box{
        width: 76px;
        height: 76px;
        background-color: #FFF;
        box-shadow: 0 0 0 3.18px rgba(255, 255, 255, 0.200);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 0;
    }
}
/* **** About *** */
.about-us {
    position: relative;
    .about-vector{
        position: absolute;
        right: 0;
        bottom: 0;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
        animation: up-down 12s ease-in-out infinite;
    }
}
@keyframes up-down {
    0% {
      transform: translateY(0); /* Initial position */
    }
    50% {
      transform: translateY(-20px); /* Move up */
    }
    100% {
      transform: translateY(0); /* Return to initial position */
    }
  }
.about-img img {
    width: 100%;
    border-radius: 13px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.about-content{
    position: relative;
    &:after{
        width: 75px;
        height: 75px;
        content: '';
        position: absolute;
        right: -50px;
        top: -10px;
        border-left: 3px solid #D9D9D9;
        border-top: 3px solid #D9D9D9;
        transform: rotate(90deg);
    }
}

/* Mision Vision */
.mission-vission{
text-align: center;
.mission-box,.vission-box{
    padding: 40px 70px 65px 70px;
}
.section-title{
    margin-bottom: 22px;
}
.section-title,p{
    color: #fff;
}
.small-line{
    background-color: #fff;
    margin-bottom: 14px;
}
img{
    margin-bottom: 13px;
}
}
.mission-box{
    background: #95B638;
    height: 100%;
}
.vission-box{
    background: #115278;
    height: 100%;
}
.mission-box,.vission-box{
    &:hover{
        img{
            animation: updown .5s;
        }
    }
}
@keyframes updown {
    0% {
      transform: translateY(0); 
    }
    50% {
      transform: translateY(-10px) scale(1.2);
    }
    100% {
      transform: translateY(0) scale(1);
    }
    
}
/* ****** Founder ********** */
.founder-box{
    border-radius: 14px;
background: #EEF5F9;
padding: 70px 52% 70px 37px;
position: relative;
h3{
    color: #115278;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 42px;
}
}
.founder-img{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    .back{
        position: absolute;
        z-index: -1;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -40%);
    }
    .name{
        position: absolute;
        left: -120px;
        bottom: 15px;
        transform: rotate(5deg);
    }
}
.name{
    color: #115278;
    font-family: "Moon Dance", cursive;
font-size: 34px;
font-style: normal;
font-weight: 400;
line-height: 42px; /* 123.529% */
}
/* ***** Testimonial ***** */
.testimonials{
    background-image: url(../img/testi-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    .slick-dots{
        bottom: -59px;
        li{
            background-color: #f3672100;
            outline: 1px solid #115278;
            button{
                opacity: 0;
            }
        }
        li.slick-active,li:hover{
            background-color: #115278;
        }
    }
}
.testi-head {
    padding: 0px;
    padding-bottom: 5px;
}
.testi-box{
    border-radius: 14px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    padding: 10px;
    transition: all .5s;
    &:hover{
        background: #ADD343;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}
.testi-box .flex h5 {
    color: #000;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 29px;
}

.testi-box .flex p {
    color: #000;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 18px;
margin: 0;
}

.testi-box .flex {
    position: relative;
    padding-left: 75px;
    padding-right: 55px;
    min-height: 70px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 6px;
}

.user-img {
    width: 57.404px;
    height: 57.404px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: 0;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
}
.slick-arrow{
    width: 49px;
    height: 49px;
    background-color: #FFF;
    filter: drop-shadow(0px 6px 7px rgba(0, 0, 0, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius:  50%;
    -webkit-border-radius:  50%;
    -moz-border-radius:  50%;
    -ms-border-radius:  50%;
    -o-border-radius:  50%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.slick-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid #171717;
    border-left: 1px solid #171717;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #192B53;
    filter: drop-shadow(0px 6px 7px rgba(25, 43, 82, 0.185));
    -webkit-filter: drop-shadow(0px 6px 7px hsl(221, 54%, 21%));
}

.slick-arrow:hover::before,
.slick-arrow:focus::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

.certifications-box{
box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
transition: all .5s;
&:hover{
    box-shadow: 0px 4px 18px 0px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}
img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}

/******************************/
footer {
    background: #183140;
    width: 100%;
    padding-top: 50px;
.form-control{
    border-radius: 4px;
border: 1px solid #708998;
color: #C6C6C6;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 22px;
background-color: transparent;
padding: 7px 8px;
&::placeholder{
    color: #C6C6C6;
}
}
	select option{
		color: #000;
	}
.primary-btn{
    width: 100%;
}
}

.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: #D1D1D1;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}

.footer-title {
    font-size: 22px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    position: relative;
    margin-bottom: 18px;
}

  
.footer-title:after {
    content: '';
    width: 40px;
    height: 2px;
    background: #ADD343;
    display: inherit;
    margin-top: -8px;
}
footer ul li a,
footer p a {
    color: #D1D1D1;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 38px;
position: relative;
}
/* footer ul li a::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 11px;
} */
footer ul li a{
    display: block;
}
footer ul li a:hover{
    color: #ADD343;
    transform: translateX(5px);
    &::before{
        border-top: 1px solid #ADD343;
        border-left: 1px solid #ADD343;
    }
}

.footer-social a:hover {
    background-color: #ADD343;
    border-color: #ADD343;
    transform: scale(1.1);
}
.copyright-section{
    background: #313E59;
}
.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.copyright a {
    color: #FF8A36;
    text-decoration: underline;
}
.copyright p{
    margin: 0;
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.footer-contact p span{
    position: absolute;
    left: 0px;
    top: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.footer-social{
    display: flex;
    gap: 10px;
    a{
        width: 58.931px;
        height: 58.931px;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
}
}
/*************************************
    Inner Page
*************************************/
.inner-banner{
    position: relative;
    .inner-banner-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
    h1{
        color: #FFF;
        font-size: 46px;
        font-style: normal;
        font-weight: 600;
        line-height: 62px;
    }
    p{
        color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 26px;
    }
}
.form-box{
border-radius: 20px 14px 14px 20px;
background: #FFF;
box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
}
.contact-info {
    border-radius: 0px 14px 14px 0px;
    background: #115278;
    height: 100%;
    padding: 30px;
    .section-title,p,a,h3{
        color: #fff;
    }
    .section-title{
        margin-bottom: 22px;
    }
}
.form-box{
    form{
        padding: 30px;
    }
    .section-title{
        font-size: 33px;
        font-style: normal;
        font-weight: 600;
        line-height: 62px;
    }
    label{
        color: #292929;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .form-control{
        border-radius: 4px;
        border: 1px solid #D9D9D9;
        padding: 10px 13px;
        color: #000000;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        &::placeholder{
            color: #9C9C9C;
        }
        &:focus{
            border: 1px solid #ADD343;
        }
    }
    .primary-btn{
        border: 0;
    }
}
.contact-info{
    position: relative;
    .line{
        background: #ADD343;
        width: 45%;
        height: 2px;
        position: absolute;
        left: 21%;
        bottom: 56px;
    }
}
.info-box {
    position: relative;
    padding-left: 56px;
    margin-bottom: 24px;
    h3{
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
    p,a{
        color: #E9E9E9;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    a:hover{
        color: #ADD343;
    }
    img{
        position: absolute;
        left: 0;
    }
}
.map{
    iframe{
        width: 100%;
        border: 0;
        height: 593px;
    }
}
/* Service */
.services-list{
    .service-item{
        cursor: pointer;
        padding: 0px;
        border: 0;
        .head {
            border-radius: 14px;
            border: 1px solid #115278;
            background: #FFF;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all .5s;
            &:hover{
                background: #EBF8FF;
            }
            .card-title{
                width: 70%;
                margin-bottom: 0;
                line-height: 110%;
            }
            .icon-box{
                margin-bottom: 0;
            }
        }
        p{
        font-size: 22px;
        line-height: 127.273%;
        }

        .body-content{
            display: none;
            ul{
				margin-bottom: 14px;
                padding-left: 20px;
                li{
                    color: #292929;
                    font-size: 22px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 35px;
                    list-style-type: disc;
                }
            }
        }
        .title-sm{
            color: #292929;
            margin-bottom: 3px;
        }
        &:hover{
            background-color: #fff;
            .card-title {
                color: #0F2532;
            }
            p{
                color: #292929;
            }
        }
    }
}
.popup.viewService{
    .popup__content{
        width: 34%;
    }
    .service-item{
        margin: 30px 30px;
        .head{
            margin-bottom: 18px;
            background: #EBF8FF;
            text-align: left;
        }
    }
    .body-content{
        display: block;
        text-align: left;
    }
}
.blog-list{
position: relative;
border-radius: 14px;
background: #FFF;
box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.15);
.blog-img{
    border-radius: 14px 14px 57px 0px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 3s;
    }
}
h3{
    color: #0F2532;
font-size: 19px;
font-style: normal;
font-weight: 600;
line-height: 115.789%;
margin-bottom: 8px;
}
p{
color: #5E5E5E;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 131.25%;
a{
    color: #115278;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
&:hover{
    color: #ADD343;
}
}
}

.blog-content {
    padding: 10px;
}
&:hover{
    h3{
        color: #ADD343;
    }
    .blog-img{
        img{
            transform: scale(1.2);
        }
    }
    .tags{
        background-color: #add343;
        color: #fff;
    }
}
}
.date{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #CBCBCB;
    padding-top: 6px;
    margin-bottom: 7px;
    p{
        color: #8C8C8C;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px;
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 0;
    }
}
.tags{
    border-radius: 3px;
    background: #FFF;
    display: inline-block;
    color: #ADD343;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
    position: absolute;
    top: 14px;
    right: 10px;
    padding: 3px 11px;
    transition: all .5s;

}
.wp-pagenavi {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #9C9C9C;
    font-size: 20px;
    font-family: 'Work Sans Medium';
    font-weight: 500;
}

.wp-pagenavi a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

.wp-pagenavi a.active {
    color: #95C12B;
}

.wp-pagenavi a:hover:not(.active){
    background-color: #ddd;
}
.wp-pagenavi span.current {
    border-color: #8BC34A;
    background: #8BC34A;
    color: #fff;
}
.wp-pagenavi a:hover{
	border-color: #BFBFBF;
    background: #8BC34A;
    color: #000;
}
.left-arrow,.right-arrow {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
    color: #ADD343;
  }
  .left-arrow::after,
  .left-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2px;
    height: 14px;
    top: 2px;
    left: 0;
  }
  .left-arrow::after {
    border-left: 2px solid;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    left: 6px;
    top: 4px;
  }

  .right-arrow::after,
  .right-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 2px;
    height: 14px;
    top: 2px;
    right: 0;
  }
  .right-arrow::after {
    border-right: 2px solid;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    right: 6px;
    top: 4px;
  }
.blog-details{
    .section-title{
        line-height: 112.821%;
        margin-bottom: 5px;
    }
    .date{
        border: 0;
        justify-content: start;
        gap: 10px;
    }
    .blog-img{
        border-radius: 14px 14px 74px 0px;
        margin-block: 20px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .card-title{
        color: #000;
    }
    
}
.content-box {
    border-bottom: 1px solid #BFBFBF;
    padding-bottom: 15px;
    ul{
        padding-left: 20px;
        margin-bottom: 20px;
        li{
            color: #292929;
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 30px;
            list-style-type: disc;
        }
        ::marker{
            color: #ADD343;
        }
    }
}
.sidebar-service {
    background: #F6F6F6;
    padding: 10px;
    margin-bottom: 24px;
    h3{
        color: #000;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
    }
}
.recent-post-list img {
    object-fit: cover;
    width: 81px;
    height: 52px;
}
.sidebar-service .recent-post-list{
    padding: 0;
    margin: 0;
    li{
        list-style-type: none;
    }
}
.recent-post-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.205);
    padding-bottom: 10px;
    &:last-child{
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}
.recent-post-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    align-items: center;

    &:hover {
        h4 {
            color: #ADD343;
        }
    }

    h4 {
        color: #0F2532;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
    }
  
}
.category{
    display: flex;
    gap: 10px 12px;
    flex-wrap: wrap;
    li{
        display: inline-block;
    }
    a{
        border-radius: 4px;
border: 1px solid #000;
color: #000;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 22px;
padding: 7px 8px;
display: block;
&:hover{
    background: #ADD343;
    color: #fff;
    border-color: #add343;
}
    }
}
.contact-box{
    text-align: center;
    background: #115278;
    padding: 16px;
    h3{
        color: #fff;
    }
    .form-control{
        border-radius: 4px;
        border: 1px solid #FFF;
        background-color: transparent;
        color: #FFF;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        padding: 6px 11px;
        height: 41px;
       
        &::placeholder{
            color: #fff;
        }
        
    }
    textarea.form-control{
        height: auto;
    }
    select{
        option{
            color: #000000;
        }
    }
    .primary-btn{
        width: 100%;
        border: 0;
    }
}
.related-articles{
    padding-top: 0;
    .title{
        color: #000;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 22px;
margin-bottom: 10px;
    }
}
/*******************************
  Responsive
********************************/

@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
    #menu {
        gap: 30px;
    }
    .banner {
        .slick-dots {
            padding-left: 8%;
            bottom: 110px;
            text-align: left;
        }
    }
   
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    
    
    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }
    .banner-content {
        width: 90%;
    }
    .popup .popup__content {
        width: 70%;
    }
    .about-us {
        .about-vector {
            width: 20%;
        }
    }
    .testimonials {
        .slick-dots {
            bottom: -45px;
        }
    }
    p {
        font-size: 16px;
        line-height: 1.667;
    }
    
    .section-title {
        font-size: 35px;
        line-height: 46px;
    }
   
    .sec-gap {
        padding: 40px 0;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 30px;
    }
    .popup.viewService {
        .popup__content {
            width: 47.5%;
        }
        .card-title {
            font-size: 18px;
            line-height: 20px;
            margin-bottom: 6px;
        }
        .services-list {
            & .service-item {
                p {
                    font-size: 19px;
                    line-height: 116.273%;
                }
                & .body-content {
                    & ul {
                        li {
                            font-size: 19px;
                            line-height: 27px;
                        }
                    }
                }
            }
        }
    }
	.services-list {
    & .service-item {
        p {
            font-size: 18px;
            line-height: 110.273%;
        }
    }
}
	.services-list {
    & .service-item {
        & .body-content {
            ul {
                padding-left: 20px;
                margin-bottom: 10px;
            }
        }
    }
}
	.services-list {
    & .service-item {
        & .body-content {
            & ul {
                li {
                    font-size: 18px;
                    line-height: 25px;
                }
            }
        }
    }
}
	.popup.viewService {
    & .service-item {
        .head {
            margin-bottom: 11px;
            padding: 10px;
        }
    }
}
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {

    #menu>.main-menu>ul>li {
        padding-inline: 10px;
    }
}

@media (max-width: 991.98px) {
    .action-bar {
        p {
            font-size: 13px;
        }
    }
    #menu {
        justify-content: start;
    }
    header {
        height: auto;
    }
    .logo {
        width: auto;
        padding-block: 0px;
        padding-top: 4px;
        position: relative;
        img{
            height: 100px;
            width: auto;
            margin-top: -34px;
        }
    }
    .topbar a {
        padding-block: 5px;
    }
    .hamburger {
        background: #ffffff;
        border-radius: 4px;
        top: 15px;
        right: 0;
    }
    .hamburger:before,.hamburger.menu-opened:before{
        background: #ADD343;
    }
    .hamburger:after {
        border-top: 2px solid #ADD343;
        border-bottom: 2px solid #ADD343;
    }
    .hamburger.menu-opened:after{
        background: #ADD343;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 136px;
        background-color: #115179;
    }

    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #dddddd3d;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }

    header .flex-box {
        margin-top: 0px;
        position: absolute;
        right: 290px;
    }

    #menu>.main-menu>ul>li:hover, #menu .main-menu ul li.current-menu-item:hover, #menu .main-menu ul li.current-menu-item, #menu .main-menu ul li.has-sub.current-menu-item:hover {
        background: #ffffff00 !important;
    }
    #menu .main-menu ul li.current-menu-item a::after {
        bottom: 16px;
    }
    
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
   
    .section-title {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 36px;
    }
   
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
   
    .footer-social {
        a {
            width: 48.931px;
            height: 48.931px;
            padding: 13px;
        }
    }
    .banner-item {
        .container {
            position: relative;
            padding-top: 60px;
        }
    }
    .banner-content {
        width: 70%;
    }
    .banner {
        .icon-list {
            right: 48%;
            bottom: -31%;
        }
        .tc {
            bottom: -80px;
        }
    }
    .banner-img {
        position: relative;
        bottom: -29px;
        left: 40%;
        margin-top: -57px;
        width: 60%;
    }
    .brand-logo {
        justify-content: center;
        border-bottom: 1px solid #E9E9E9;
        flex-wrap: wrap;
        padding-bottom: 15px;
    }
    .founder-img {
        
    }
    .founder-box {
        h3 {
            font-size: 28px;
        }
    }
    .contact-info {
        .line {
            left: 16%;
            bottom: 15px;
        }
    }
    .popup.viewService {
        .popup__content {
            width: 72.5%;
        }
    }
    .services-list {
        & .service-item {
            & .head {
                .card-title {
                    width: 60%;
                }
            }
        }
    }
}

@media (max-width: 575.98px) {
    
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }

    .form-group {
        margin-bottom: 1px;
    }

    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    #menu {
        justify-content: start;
    }
    header .flex-box {
        display: none;
    }
    .logo {
        width: auto;
        padding-block: 0px;
        img{
            height: 48px;
            width: auto;
            margin: 0;
            margin-top: 3px;
            margin-bottom: -3px;
        }
    }
    .action-bar {
        padding-block: 2px;
        p {
            font-size: 12px;
        }
    }

    header {
        height: auto;
    }

    .hamburger {
        top: 7px;
        width: 43px;
        height: 36px;
    }

    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }

    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }

    #menu .submenu-button {
        height: 51px;
        width: 70px;
        background: rgb(255 255 255 / 3%);
    }

    .section-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 0;
    }
    p {
        font-size: 14px;
    }
    .sec-gap,
    .sec-pad {
        padding: 30px 0;
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    footer {
        padding-top: 30px;
    }
    .copyright {
        padding: 10px 0;
        padding-bottom: 10px;
        justify-content: center;
        gap: 0px 0px;
        margin-top: 20px;
    }
   
    .copyright p {
        margin-bottom: 5px;
    }

    .flex-box {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
        background: #ffffff05;
        padding-block: 10px;
    }


    #menu .main-menu {
        top: 84px;
        flex-direction: column;
        padding-right: 0;
        z-index: 9;
        overflow: auto;
        padding-bottom: 25%;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 16px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    #menu .submenu-button:after {
        top: 22px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(0deg);
        top: 22px;
    }

    #menu ul ul li a {
        padding-left: 15px;
    }

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .menu-white .hamburger.menu-opened:after {
        background-color: #000;
    }

    #menu .main-menu ul li.current-menu-item a::after {
        display: none;
    }

    
    .btn-group {
        display: flex;
        gap: 10px;
    }

   
    .slick-arrow {
        width: 35px;
        height: 35px;
    }
    .slick-arrow::before {
        content: '';
        width: 9px;
        height: 9px;
    }
    .card-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .icon-box {
        margin-bottom: 12px;
    }
    .mb-30 {
        margin-bottom: 10px;
    }
    .our-key {
        padding: 30px 0;
    }
    .key-item {
        padding-left: 75px;
        .icon-box {
            width: 64px;
            height: 64px;
            padding: 14px;
        }
        .title-sm {
            font-size: 15px;
            line-height: 22px;
        }
    }
    .mission-vission {
        .mission-box, .vission-box {
            padding: 20px 40px 20px 30px;
        }
    }
    .founder-box {
        border-radius: 14px;
        background: #EEF5F9;
        padding: 20px 8% 70px 20px;
        position: relative;
    }
    .founder-img {
        position: relative;
        margin-bottom: -71px;
        .back {
            width: 67%;
        }
        .name {
            position: absolute;
            left: 0;
            bottom: 13px;
            transform: rotate(5deg);
            background: #add343;
            padding: 4px 4px;
            border-radius: 4px;
        }
    }
    .footer-menu {
        & li {
            a {
                font-size: 15px;
                display: block;
            }
        }
    }
   
    .copyright {
        p, a {
            font-size: 14px;
            margin: 0;
        }
    }
    .popup .popup__content {
        width: 95%;
    }
    .left{
        img{
            height: 100px;
            width: auto;
        }
    }
    .call-email {
        display: none;
    }
    .banner-item {
        .container {
            position: relative;
            padding-top: 30px;
        }
    }
    .banner-content {
        width: 88%;
    }
    .banner {
        h5 {
            font-size: 16px;
            line-height: 16px;
            margin-bottom: 6px;
        }
        h1 {
            font-size: 34px;
            line-height: 38px;
            margin-bottom: 5px;
        }
        p {
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 15px;
        }
        .icon-list {
            right: 16%;
            bottom: -38%;
        }
        .banner-img {
            position: relative;
            bottom: -15px;
            left: 40%;
            margin-top: 50px;
            width: 60%;
        }
        & .icon-list {
            & .list {
                padding-left: 51px;
            height: 48px;
            margin-bottom: 14px;
                span {
                    width: 45px;
                    height: 45px;
                    padding: 10px;
                }
                p {
                    font-size: 14px;
                    line-height: 19px;
                }
            }
        }
    }
    .enq-btn {
        right: 4px;
        height: 35px;
    }
    .enq-btn a {
        font-size: 14px;
        line-height: 34px;
        padding: 0 15px;
    }
    .fixed-btn {
        top: 55%;
        right: 5px;
        width: 35px;
        gap: 10px;
    }
    .fc {
        width: 35px;
        height: 35px;
        padding: 10px;
    }
    .brand-logo{
        img{
            width: 25%;
            height: auto;
            object-fit: contain;
        }
    }
    .inner-banner {
        position: relative;
        height: 140px;
        h1 {
            font-size: 28px;
            line-height: 38px;
        }
        p {
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 10px;
        }
    }
    .form-box {
        form {
            padding: 15px;
        }
        .section-title {
            font-size: 22px;
            line-height: 36px;
            margin-bottom: 8px;
        }
        .form-control {
            font-size: 14px;
        }
    }
    .contact-info {
        padding: 15px;
    }
    .info-box {
        padding-left: 50px;
        margin-bottom: 18px;
        h3 {
            font-size: 16px;
            line-height: 22px;
        }
        p, a {
            font-size: 14px;
            line-height: 22px;
        }
    }
    .popup.viewService{
        display: none;
    }
    .services-list {
        & .service-item {
            .head{
                padding: 10px;
                .icon-box {
                    width: 70px;
                    height: 70px;
                    padding: 14px;
                }
            }
            .body-content{
                display: block;
                max-height: 0;
                opacity: 0;
                transition: all .5s;
            }
            &:hover,&:focus{
                .body-content{
                    max-height: 900px;
                    opacity: 1;
                    padding: 10px;
                }
            }
            p {
                font-size: 14px;
                line-height: 127.273%;
                margin-bottom: 6px;
            }
            & .body-content {
                .card-title {
                    font-size: 17px;
                }
                & ul {
                    margin-bottom: 10px;
                    li {
                        font-size: 14px;
                        line-height: 22px;
                    }
                }
            }
            .title-sm {
                font-size: 14px;
                line-height: 16px;
            }
        }
    }
    .blog-list {
        h3 {
            font-size: 18px;
        }
    }
    .content-box {
        & ul {
            li {
                font-size: 14px;
                line-height: 20px;
                margin-bottom: 8px;
            }
        }
    }
    .recent-post-list li a {
        h4 {
            font-size: 14px;
            line-height: 22px;
        }
    }
    .sidebar-service {
        h3 {
            font-size: 18px;
        }
    }
    .category {
        gap: 5px 5px;
        a {
            font-size: 14px;
            padding: 6px 8px;
        }
    }
}