/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: #ffce00;
    --gutter-x: 30px;

    /*  */
    --header-height: 0;
    /*  */
    --white: #fff;
    --off-white: #f6f6f6;
    --black: #101010;
    --yellow: #ffce00;
    --yellow-dark: #c1a11a;
    --dark-red: #ab0000;
    --sm: 16px;
    --sm2: 18px;
    --sm3: 22px;
    --lg: 36px;
    --lg1: 38px;
    --lg2: 40px;
    --xs: 14px;
    /*
    --xl: 48px;
    --lg2: 32px;
    --md: 22px;
    --md2: 20px;
    --xxs: 12px; */
    /* padding */
    --sectionPadding: 100px;
}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: "Poppins", sans-serif;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    letter-spacing: normal;
    overflow-x: hidden !important;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.col-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
}
.col-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
}
.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 25px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu-left {
}
.menu-left span {
    line-height: 1;
    font-size: var(--sm3);
    font-weight: bold;
    color: var(--black);
    text-transform: uppercase;
}
.menu-left a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu ul {
    margin: 0;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-size: var(--sm);
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
}
.menu-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
/* ===================Banner==================== */

.home-banner {
    position: relative;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
}

.home-banner:after {
    position: absolute;
    content: "";
    background-color: rgba(16, 16, 16, 0.7);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.home-banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.home-banner-text * {
  color: #fff !important;
}

.down-section {
    position: absolute;
    bottom: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
}
.content-2-area {
    position: relative;
}
.content-2-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 420px;
    left: 0;
    top: 0;
    background-color: var(--off-white);
}
.content-2 {
    position: relative;
}
.content-2 .slider-text {
    padding: 20px;
    background-color: var(--off-white);
}
.content-2 .slider-arrow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.slider-arrow-right {
    margin-top: 10px;
    width: 42px;
    margin-left: auto;
}
/* =================================Contact======================= */

.contact {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black) !important;
    width: 110px;
    height: 42px;
    padding: 10px 17px;
    background-color: var(--yellow);
    border: 2px solid transparent;
}
.contact:hover {
    border: 2px solid var(--yellow);
    background: var(--white);
}
.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;

    list-style: none;
    background-color: #ddd;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.header-area {
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 35px;
}
.yellow-bttn {
    color: var(--black) !important;
    background-color: var(--yellow) !important;
}
.content-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.content-2-area {
    padding: 150px 0;
}
.content-2 .slider-card {
    max-width: 33.33%;
}

/* =================================Contact ARea=================== */
.contact-area {
    padding: 150px 0;
}
.contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.contact-card {
    padding: 0 8px;

    margin-bottom: 35px;
}
.contact-card-inner {
    padding: 57px 40px 56px;
    background-color: var(--off-white);
    height: 100%;
    box-shadow: 0 0 5px 0px #fff;
}
.contact-card i {
    font-size: 47px;
    margin-bottom: 25px;
}
.contact-card h4 {
    color: #000;
    position: relative;
    padding-bottom: 20px;
    padding-bottom: 20px;
}
.contact-card h4:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--yellow);
    bottom: 0;
}
.contact-card p,
.contact-card a,
.contact-card address {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
    font-style: normal;
    margin: 0;
    display: block;
}
.contact-card p,
.contact-card a {
    margin-top: 10px;
}

.contact-card address {
}
/* ===========================Footer Area==================== */
.footer-area {
    background: #000;
    padding: 50px 0;
    position: relative;
}
.footer-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 91px;
    top: -90px;
    left: 0;

    background-position: center center;
    background-size: cover;
}
.footer-logo {
    margin-bottom: 30px;
}
.footer-logo a {
    font-size: var(--sm3);
    font-weight: bold;
    color: var(--yellow);
    text-decoration: none;
    display: block;

    text-transform: uppercase;
}
.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer-menu {
}
.footer-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin: 0;
}
.footer-menu ul li {
    list-style: none;
    margin: 0 !important;
}
.footer-menu ul li a {
    text-decoration: none;
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--white);
}
.footer-btm-area {
    background: var(--yellow);
    padding: 12px 0;
}
.footer-btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}
.footer-btm p {
    color: var(--black);
    margin: 0;
}
.footer-btm ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px;
    margin: 0;
}
.footer-btm ul li {
    list-style: none;
    margin: 0 !important;
}

.footer-btm ul li a {
    text-decoration: none;
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--black);
}
.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
}
.social-icon i {
    color: var(--white);
    font-size: var(--sm3);
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--yellow);
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
        -ms-transform: translateY(13px) rotate(45deg);
            transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
        -ms-transform: translateY(-13px) rotate(-45deg);
            transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: #000;
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 8px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--black);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.bg-gray {
    background: var(--off-white);
}
/*===========================================================
CSS
===========================================================*/

.banner-area {
    background-image: url(../img/banner.png);
    width: 100%;
    background-size: cover;
    background-position: center center;
    min-height: 680px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
}
.banner-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 86px;
    top: 0;
    z-index: 2;

    background-position: center center;
    background-size: cover;
}

.banner-area > .container {
  position: relative;
}

.banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 100px;
}
.home-banner .banner-inner {
    padding: 0;
}
.banner-text {
    max-width: 700px;
    width: 100%;
}
.banner-text p {
    color: var(--white);
    margin: 0;
}

.content-area {
    padding: 150px 0;
}
.content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.content-img {
    max-width: 511px;
    width: 100%;
}
.content-text {
    max-width: 605px;
    padding-left: 30px;
    width: 100%;
}
.row-reverse .content-text {
    padding-left: 0;
    padding-right: 30px;
}
.content-text p {
    color: var(--black);
}
.content-text a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
/* ==============================content-slider-area================ */
.content-slider-area {
    position: relative;
    padding-top: 150px;
}
.content-slider-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
    background-color: var(--yellow);
}
.content-slider {
    position: relative;
}
.slider-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 50px;
}
.slick-down-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
.slider-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slider-img img {
    width: 100%;
}
.slider {
    margin: 0 -10px;
}
.slider-card-inner {
    padding: 0 10px;
}
.slider-text {
    padding: 20px 30px 35px 30px;
    border: solid 1px var(--white);
    background-color: var(--white);
}
.slider-text a {
    font-size: var(--sm3);
    font-weight: 600;
    line-height: 1.36;
    color: #1a2830;
    text-decoration: none;
}
.slider-text p {
    margin: 0;
    margin-top: 10px;
}
.service-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 135px 0;
}
.service-text h3 {
    max-width: 43%;
}
.service-text div {
    width: 57%;
}
/* ============================questions-area===================== */
.questions-area {
    background-color: var(--yellow);
    padding: 100px 0;
    position: relative;
}
.questions-area:before {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    height: 255px;
    background-image: url(../img/question.bg.png);
    background-size: cover;
    background-position: center center;
}
.questions-inner {
    text-align: center;
    position: relative;
}
.questions-inner h3 {
    font-weight: 700;
}
.questions-inner p {
    font-size: var(--sm2);
    font-weight: 600;
    line-height: 1.44;
    color: var(--black);
    text-transform: uppercase;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.bttn {
    font-size: var(--sm);
    font-weight: bold;
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--black);
    text-decoration: none;
    display: inline-block;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
                transform: rotate(-90deg);
        margin-top: -4px;
    }
}

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

    .banner-area:before {
      top: -1px;
    }

    #main {
        padding-top: 0;
    }

    #menu {
      padding: 100px 0 !important;
    }

    #menu .menu-section-list>li:last-child {
      text-align: left !important;
    }

    #menu ul {
      display: block !important;
      position: relative !important;
      top: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
    }

    #menu ul a {
      color: var(--black);
    }

    .header-area {
        display: none;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background: var(--white);
        -webkit-box-shadow: 0px 1px 3px #eee;
                box-shadow: 0px 1px 3px #eee;
        padding: 25px 15px;
    }

    .home-banner-text {
      text-align: left;
    }
}

/*===========================================================
Containers
============================================================*/

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}
@media (max-width: 1199px) {
    :root {
        --sm: 16px;
        --sm2: 18px;
        --sm3: 20px;
        --lg: 32px;
        --lg1: 30px;
        --lg2: 38px;
        --xs: 14px;
    }
    .content-2 .slider-text {
        padding: 15px 10px;
    }
    .slider-card-inner {
        padding: 0 5px;
    }
    .slider,
    .content-2 {
        margin: 0 -5px;
    }
    .content-area {
        padding: 100px 0;
    }
}
@media (max-width: 991px) {
    :root {
        --sm: 16px;
        --sm2: 18px;
        --sm3: 20px;
        --lg: 32px;
        --lg2: 38px;
        --xs: 14px;
    }
    .menu-section-list .bttn {
        text-align: center;
        padding: 15px 0;
    }
    .mobile-logo a {
        font-size: 20px;
        font-weight: bold;
        color: var(--black);
        text-decoration: none;
    }
    .contact-card-inner {
        padding: 25px 20px;
    }
    .content-slider-area {
        position: relative;
        padding-top: 100px;
    }
    .slider-arrows img {
        width: 45px;
    }
    .content-2 .slider-card {
        max-width: 50%;
    }
    .content-2 .slider-card:last-child {
        margin-top: 25px;
    }
    .content-2-area,
    .service-text,
    .contact-area {
        padding: 100px 0;
    }
    .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 25px 0;
    }
    .footer-menu ul {
        gap: 20px;
    }
    .contact-card i {
        font-size: 38px;
        margin-bottom: 25px;
    }

    .content-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .content-img {
        max-width: 100%;
        width: 100%;
    }
    .content-img img {
        width: 100%;
    }
    .content-text {
        padding: 0;
        padding-top: 30px;
    }
    .banner-inner {
        margin: 120px 0;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px 0;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .down-section {
      bottom: 40px;
    }
}
@media (max-width: 767px) {
    :root {
        --sm: 16px;
        --sm2: 17px;
        --sm3: 18px;
        --lg: 28px;
        --lg2: 35px;
        --xs: 14px;
    }
    .content-text a img {
        width: 42px;
    }
    .content-area {
        padding: 80px 0;
    }
    .content-2 .slider-card {
        max-width: 100%;
    }
    .content-2 .slider-card:last-child {
        margin-top: 0;
    }
    .content-2 .slider-text {
        padding: 20px;
    }
    .slider-card-inner {
        padding: 0;
    }
    .slider,
    .content-2 {
        margin: 0;
    }
    .content-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 25px 0;
    }
    .service-text h3,
    .service-text div {
        width: 100%;
        max-width: 100%;
    }
    .content-2-area,
    .service-text,
    .contact-area {
        padding: 80px 0;
    }
    .contact-card {
        width: 100%;
        padding: 0;
    }
    .contact-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 25px 0;
    }
    .service-text {
        gap: 40px 0;
    }
    .footer-menu ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .slider-title {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .banner-area {
        min-height: 580px;
    }
}
@media (max-width: 575px) {
    :root {
        --sm: 16px;
        --sm2: 16px;
        --sm3: 17px;
        --lg: 25px;
        --lg2: 30px;
        --xs: 14px;
    }
    .footer-btm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 5px 0;
    }
    .service-text {
        gap: 20px 0;
    }
    .content-2-area,
    .service-text,
    .contact-area {
        padding: 60px 0;
    }
    .slider-title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px 0;
        text-align: center;
    }
    .footer-btm-area {
        padding: 22px 0;
    }
}
@media (max-width: 575px) {
}
