/*
Theme Name: FSC
Theme URI: https://example.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A custom standalone WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hcr
*/
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

a {
    text-decoration: none;
    transition: .5s;
}

@media (max-width: 767px) {
    .container {
        padding-inline: 30px;
    }
}

body {
    font-family: "Poppins", sans-serif;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

ol,
ul {
    padding-left: 0 !important;
}

body {
    font-family: "Poppins", Tahoma, Geneva, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #8d9297;
}

h1 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    color: #182333;
}

h2 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    color: #182333;
}

h3 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    color: #182333;
}

h4 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #182333;
}

h5 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #182333;
}

h6 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #182333;
}

dl {
    margin: 0 0 1.75em
}

dt {
    font-weight: 700
}

dd {
    margin: 0 0 1.75em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 15px
}

address {
    font-style: italic;
    margin: 0 0 24px
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 14px;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

cite,
dfn,
em {
    font-style: italic
}

pre {
    background: #f5f5f5;
    color: #666;
    font-family: monospace;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word
}

.border-bottom-button a {
    display: inline-block;
    line-height: 1;
    background-color: #818a91;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    padding: 17px 23px 17px;
    border: 2px solid;
    background-color: transparent;
    border-radius: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-color: #fff !important;
    color: #fff;
}

.border-bottom-button a:hover {
    background-color: #fff;
    color: #182333;
}

footer .gallery-item {
    display: inline-block;
    max-width: 33.33%;
    padding: 0 1.1400652% 2.2801304%;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin-bottom: 0;
}

footer .gallery {
    margin: 0 -1.1666667% 1.75em;
    display: flex;
    flex-wrap: wrap;
}

footer .gallery-item img {
    max-width: 100%;
}

.button-sec {
    background-color: #0b4422;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, .5);
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 40px;
    text-decoration: none;
}


.parallelogram {
    transform: skew(-20deg);
    text-transform: uppercase;
}

.skew-fix {
    display: inline-block;
    transform: skew(20deg);
    color: #fff
}


/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    /* background-color: rgba(255, 255, 255, 0.15); */
    background: #351113;
}

.page-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header.is-sticky {
    position: fixed;
    width: 100%;
    /* backdrop-filter: blur(10px); */
    animation: slideDown 0.35s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
}



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

    to {
        transform: translateY(0);
    }
}

/* navbar start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top-header {
    background: linear-gradient(90deg, rgba(253, 161, 43, 1) 30%, rgba(253, 161, 43, 1) 30%, rgba(24, 35, 51, 1) 30%, rgba(24, 35, 51, 1) 100%);
}

.top-contact {
    position: relative;
    margin-bottom: 0 !important;
    height: 100%;
    padding: 12px;
    padding-left: 0;
}

.top-contact:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0b4422;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 0;
}

.top-contact li {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1;
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #fff;
    gap: 10px;
    flex-wrap: wrap;
}

.top-contact li .fa-phone {
    transform: rotate(280deg);
}

.top-contact:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 53px 25px 0px 0px;
    border-color: #0b4422 transparent transparent transparent;
    position: absolute;
    right: -25px;
    top: 0;
}

.top_nav-b a,
.top-contact_b {
    color: #fff;
    font-size: 14px;
}

.top-contact_b {
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
}

.top-contact_b:after {
    content: "";
    height: 22px;
    width: 1px;
    background-color: rgba(255, 255, 255, .2);
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -11px;
}

.social-links-wrapper .social-icons li {
    position: relative;
    min-width: auto;
    padding: 0;
    margin: 0 9px;
}

.top-contact_b i {
    margin-right: 5px;
}

.social-links-wrapper .social-icons li a:hover,
.top-contact_b li a:hover {
    color: #0b4422;
}

.search-overlay .site-searchform input[type=search]:focus-visible {
    outline: 2px solid #0b4422;
}

header.border-bottom {
    background: #040c18;
}

.search-overlay {
    /* position: absolute;
    top: 100%;
    right: -20px;
    width: 400px;
    background: #fff;
    border-top: 3px solid #0b4422;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    z-index: 2; */
    background: #fff;
    border-top: 3px solid #0b4422;
    opacity: 0;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    z-index: 2;
    transform: translateX(0%) !important;
    position: absolute;
    right: 0;
    width: calc(100vw - 100px) !important;
}

.search-overlay.st-show {
    opacity: 1;
    /* -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); */
}

.bottom_nav_section .navbar-collapse .nav-item a {
    color: #ffffff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding-inline: 16px;
    font-size: 14px;
}

.bottom_nav_section .navbar-collapse .nav-item a:hover,
.bottom_nav_section .navbar-collapse .nav-item a:focus {
    color: #0b4422;
}

.header-icons .header-icon a:hover,
.header-icons .header-icon a:focus {
    background-color: #0b4422;
}

.header-icons .header-icon a:hover i,
.header-icons .header-icon a:focus i {
    color: #fff;
}

.header-icons {
    position: relative;
    padding-left: 29px;
}

.header-icons:before {
    display: block;
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    left: 10px;
    top: 50%;
    margin-top: -17px;
    background-color: rgba(255, 255, 255, .2);
}

.header-icons .header-icon {
    margin-left: 7px;
}

.header-icons .header-icon a {
    position: relative;
    border: none;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    height: 31px;
    width: 31px;
    line-height: 31px;
    background-color: #f8f9fa;
    padding-left: 2px;
    font-size: 12px !important;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    margin-block: 0;
}

.header-icons .header-icon a i {
    color: rgba(24, 35, 51, 1);
}

.search-overlay .w-search-form-h {
    display: table;
    height: 100%;
    width: 100%;
}



.search-overlay .w-search-form-h {
    display: table;
    height: 100%;
    width: 100%
}

.search-overlay .w-search-form-row {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    position: relative;
    padding: 20px
}

.search-overlay .w-search-form-row:before {
    border-bottom-color: #0b4422
}

.search-overlay .w-search-form-row:before {
    position: absolute;
    right: 27px;
    top: -8px;
    width: 47px;
    height: 47px;
    text-align: center;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #0b4422;
    content: " "
}

.header-overlay .search-overlay .w-search-form-row:before,
.header-style-classic-highlight .search-overlay .w-search-form-row:before {
    position: absolute;
    right: 7px
}

.search-overlay .search-outer {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    clear: both;
    min-height: 350px;
    border: 2px solid rgba(255, 255, 255, .62);
    width: 1000px;
    text-align: center;
    -webkit-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
    display: inline-block;
    padding: 100px 20px
}

.search-overlay.st-show .search-outer {
    transform: translateY(-50%)
}

.search-overlay .site-searchform input[type=search] {
    font-size: 14px;
    text-align: left;
    height: 50px;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    box-shadow: none !important;
    background-color: #f8f9fa;
    color: #333;
    width: 85%;
    line-height: 50px;
    float: left;
    padding-left: 15px;
}

.bottom_nav_section .navbar-collapse .nav-item a.active {
    color: #0b4422;
    ;
}

.site-searchform button {
    background: #0b4422;
    color: #000;
    top: 0;
    width: 40px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    display: block;
    outline: none;
    padding: 0;
    font-size: 12px
}

.search-overlay .site-searchform button {
    font-size: 21px;
    width: 15%;
    border: 0;
    border-radius: 0;
    height: 50px;
    text-align: center;
    display: block;
    line-height: 50px;
    color: #fff;
    float: left
}



.close-box i {
    top: 60px;
    color: #ababab;
    opacity: 0;
    font-size: 35px;
    position: fixed;
    cursor: pointer;
    right: 30px;
    -webkit-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    transition: all .6s ease 0s
}

.close-box i.showicon {
    opacity: 1;
    top: 30px
}

.search-overlay .site-searchform input[type=search]:-webkit-input-placeholder {
    color: rgba(0, 0, 0, .5)
}

.search-overlay .site-searchform input[type=search]::-moz-placeholder {
    color: rgba(0, 0, 0, .5)
}

.search-overlay .site-searchform input[type=search]::-moz-placeholder {
    color: rgba(0, 0, 0, .5)
}

.search-overlay .site-searchform input[type=search]::-ms-input-placeholder {
    color: rgba(0, 0, 0, .5)
}

/* navbar end
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* footer start
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
    /* background-image: url(./images/footer-bottom.jpg); */
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #050d1a;
}


.footer-top {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    background-color: #050d1a;
}

.footer-top h5 {
    font-family: 'Butler_Medium';
    font-weight: 700;
    font-size: 30px;
    color: #c4fccc;
    margin-bottom: 30px;
}

.footer-top li,
.footer-top p {
    color: rgba(255, 255, 255, .6);
    font-family: "Poppins", Tahoma, Geneva, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
}

.footer_logo p {
    margin-top: 20px;
    margin-bottom: 0;
}

.footer_logo {
    margin-bottom: 40px;
}

.footer_logo img {
    max-width: 100%;
}

.footer-top li span:first-child {
    color: #bdb8b2
}

.footer-top .list li {
    padding-left: 20px;
    position: relative;
    width: 50%;
}

.footer-top .list li::before {
    width: 9px;
    height: 14px;
    position: absolute;
    content: "\f101";
    font: normal normal normal 14px / 1 FontAwesome;
    left: 0px;
    top: 6px;
    color: #fff;
}

.footer-top li a {
    color: #fff;
}

.footer-top li a:hover {
    color: #c4fccc;
}

.footer-top .location li {
    padding-left: 0;
}

.footer-top .location li span {
    display: inline-block;
    width: auto;
}

.footer-top .location li a i {
    min-width: 35px;
    color: #c4fccc;
}

.social_icon {
    padding-left: 0;
    display: inline-block;
    width: 80%;
    margin-top: 10px;
}

.social_icon li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 12px;
    float: left;
}

.social_icon li a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: #c4fccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social_icon li a:hover {
    background: #FFF;
}

.social_icon li a i {
    color: #FFF;
    font-size: 27px;
}

.social_icon li a:hover i {
    color: #351113;
}

.footer-top .newsletter input {
    border: 0;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    background: #fdf7f0;
}

.footer-top .newsletter .btn {
    display: inline-block;
    background: #c4fccc;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #fff;
    border: 1px solid #c4fccc;
    border-radius: 0;
    padding-block: 16px;
    white-space: nowrap;
}

.footer-top .newsletter .btn:hover {
    background: #351113;
    border: 1px solid #ffffff;
}

.footer-top .newsletter input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #351113;
}

.footer-top .newsletter input::-moz-placeholder {
    /* Firefox 19+ */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #351113;
}

.footer-top .newsletter input:-ms-input-placeholder {
    /* IE 10+ */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #351113;
}

.footer-top .newsletter input:-moz-placeholder {
    /* Firefox 18- */
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #351113;
}

.footer-bottom {
    background-color: #050d1a;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    padding-bottom: 19px;
    font-size: 14px
}

.footer-bottom p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;

}

footer .social-icons a {
    color: rgba(248, 252, 255, .6);
}

.footer-top-col.newsletter h2 {
    text-align: left;
    font-size: 25px;
    line-height: 35px;
    color: #0b4422 !important;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.footer-top .row {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-cta-inner {
    padding: 40px 20px;
    z-index: 10;
    position: relative;
    top: -73px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(41, 61, 88, .06);
    -moz-box-shadow: 0px 0px 25px 0px rgba(41, 61, 88, .06);
    box-shadow: 0px 0px 25px 0px rgba(41, 61, 88, .06);
    margin-right: 0;
    background-color: #fff;
    margin-left: 0;
}

@media (max-width: 1280px) {
    .social_icon {
        width: 100%;
    }

    .footer-top .newsletter .btn {
        padding-block: 10px;
    }

    /* .footer-top {
        padding-bottom: 40px;
    } */

    .footer-bottom {
        padding-block: 15px;
    }

    .footer-top .newsletter .btn {
        font-size: 16px;
    }

    .social_icon li a i {
        font-size: 20px;
    }

    .social_icon li a {
        width: 40px;
        height: 40px;
    }

    .footer-top h5 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .footer-top .newsletter input::-webkit-input-placeholder,
    .footer-top .newsletter input::-moz-placeholder,
    .footer-top .newsletter input:-ms-input-placeholder,
    .footer-top .newsletter input:-moz-placeholder {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .footer-top h5 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-top li,
    .footer-top p,
    .footer-bottom p {
        font-size: 16px;
    }
}

.footer-top .widget-title {
    border-left-color: #0b4422;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 25px;
    display: inline-block;
    font-size: 20px;
    position: relative;
    padding-left: 14px;
}

.footer-top .widget-title:after {
    display: block;
    height: 80%;
    margin-top: 3px;
    margin-bottom: 0;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1px;
    top: 0;
    width: 3px;
    background-color: #0b4422;
}

.footer-top .custom-html-widget {
    color: rgba(255, 255, 255, .6);
}

ul.pricelist-block {
    padding: 0;
    font-size: 14px;
    margin-top: 0;
}

footer ul.pricelist-block li:first-child {
    padding-top: 0;
}

footer ul.pricelist-block li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

footer ul.pricelist-block li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

ul.pricelist-block li {
    font-size: 15px;
    line-height: 23px;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    padding: 12px 0;
}

footer ul.pricelist-block li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
}

ul.pricelist-block li .service-price {
    float: right;
}

ul.pricelist-block li .service-price strong {
    color: #0b4422;
}

/* footer end
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* top to bottom start
–––––––––––––––––––––––––––––––––––––––––––––––––– */

button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #0b4422;
    height: 0px;
    width: 0px;
    overflow: hidden;
    color: #fff;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    vertical-align: middle;
    border-bottom: solid 10px #fff;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #0b4422;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #0b4422;
    color: #fff;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}





/* button.back-to-top.show:hover,
button.back-to-top:hover::after {
    background: #182333;
} */

/* top to bottom start
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.quicklink-box .lefticon-box {
    font-size: 50px;
    padding-top: 0;
}


.quicklink-box .lefticon-box,
.quicklink-box .righttext-box {
    display: table-cell
}

.quicklink-box .lefticon-box {
    vertical-align: top
}

.quicklink-box .lefticon-box {
    font-size: 50px;
    padding-top: 0
}

.quicklink-box .righttext-box {
    padding-left: 10px
}

.quicklink-box .righttext-box h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0
}

.quicklink-box .righttext-box p {
    font-size: 14px;
    margin-bottom: 0
}

.quicklink-box .lefticon-box i {
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    color: #0b4422 !important;
}

.newsletter-form input[type=email] {
    font-family: inherit;
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #242424;
    padding: 9px 15px;
    font-weight: 400;
    background-color: #fff;
    text-transform: inherit;
    border: 1px solid #dedede;
    font-size: 15px;
    outline: none;
    line-height: inherit;
    background-color: #f8f9fa;
    padding: 12px 15px;
    border: none;
    padding-right: 115px;
    height: 51px;
    border: 1px solid transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.newsletter-form input[type=submit] {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 35px 12px;
    border: 2px solid transparent;
    border-radius: 0;
    color: #fff;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    background-color: #0b4422;
    right: 0;
    border: 1px solid transparent;
    padding: 11px 26px 10px;
    height: 51px;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
}

.newsletter-form p {
    margin: 0;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input[type=submit]:hover {
    background-color: #182333;
}

/*get-qoute-sec*/
.get-qoute-sec {
    background-image: url(./images/tm-rowbgfive.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 150px;

}

.get-qoute-sec-inner {
    margin-top: -100px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    -moz-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    background-color: #fff;
}

.get-qoute-sec-inner .wpb_wrapper {
    padding-inline: 50px;
}

.vc_column-inner {
    padding-top: 50px !important;
    padding-right: 40px !important;
    padding-bottom: 80px !important;
    padding-left: 40px !important;
}

.get-qoute-sec .h4-custom-heading {
    margin-bottom: 2px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #8d9297;
}

.get-qoute-sec .h2-custom-heading {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: #182333;
    margin-bottom: 25px;
}

form .form-control,
form .form-select {
    font-family: inherit;
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #242424;
    padding: 9px 15px;
    font-weight: 400;
    background-color: #fff;
    text-transform: inherit;
    border: 1px solid #dedede;
    font-size: 15px;
    outline: none;
    line-height: inherit;
    border: 1px solid #f8f9fa;
    background-color: #f8f9fa;
    width: 100%;
    font-size: 13px;
    resize: none;
}

form .btn[type="submit"] {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 35px 12px;
    border: 2px solid transparent;
    border-radius: 0;
    color: #fff;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none !important;
    -webkit-font-smoothing: antialiased;
    padding: 10px 40px;
    margin-top: 5px;
    width: 100%;
    background-color: #0b4422;
    text-transform: uppercase;
}

form .btn[type="submit"]:hover,
form .btn[type="submit"]:focus {
    color: #fff;
    background-color: #182333;
}

.blankboard {
    position: relative
}

.blankboard img {
    width: 100%;
    height: 100%;
}

.blankboard img {
    position: relative;
    z-index: 2;
}

.blankboard .inner-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 1;
}

.blankboard .inner-image img {
    object-fit: cover;
}

.content-header {
    padding-left: 29px;
    position: relative;
}

.content-header::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #0b4422;
    left: 0;
    width: 6px;
    top: 0;
    height: 95%;
}

.element-subheading {
    margin-bottom: 2px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #8d9297;
}

.element-content-heading,
h2 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: #182333;
    margin-bottom: 17px;
}


.partner-sec-inner {
    padding: 96px 0px 138px 0px;
}

.partner-sec-inner .right-sec {
    padding: 0 0px 0px 76px;
}

.element-content-desctxt p,
p {
    padding-top: 2px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #8d9297;
}


.partner_area {}

.partner_area ul {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -10px;
}

.partner_area li {
    width: 25%;
    padding: 10px;
}

.partner_area li a {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
}

.partner_area li img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: all ease-in-out 0.6s;
}

.partner_area li a:hover img {
    filter: none;
}

/*video-sec*/
.video-sec {
    background-image: url(./images/row-bg-four.jpg?id=3533);
    opacity: .94;
    /* padding-top: 135px !important;
    padding-bottom: 167px !important; */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.vc_icon_element-inner {
    z-index: 1;
    width: 65px !important;
    height: 65px !important;
    background-color: #0b4422;
    border-radius: 50%;
    max-width: 100% !important;
    line-height: 2.15em !important;
    text-align: center;
    display: inline-block;
    border: 2px solid transparent;
    box-sizing: content-box;
    position: relative;
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc_icon_element-inner:before {
    z-index: 2;
    width: 94px;
    background-color: #0b4422;
    height: 94px;
    opacity: .21;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #0b4422;
}

.vc_icon_element-inner:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #0b4422;
    z-index: 1;
    width: 105px;
    height: 105px;
    opacity: .09;
}

.vc_icon_element-inner i {
    font-size: 30px !important;
    color: #FFF;
    padding-left: 7px;
}

.video-sec button,
.vc_icon_element-link {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    box-sizing: content-box;
    border: none;
    z-index: 11;
    border-radius: 50%;
    background: transparent;
}

.vc_icon_element-link:hover {
    background: transparent;
}

.vc_icon_element-inner:hover:before,
.vc_icon_element-inner:hover:after {
    -webkit-animation: prittyphoto 1.05s infinite;
    -moz-animation: prittyphoto 1.05s infinite;
    -ms-animation: prittyphoto 1.05s infinite;
    -o-animation: prittyphoto 1.05s infinite;
    animation: prittyphoto 1.05s infinite;
}

@-webkit-keyframes prittyphoto {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes prittyphoto {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: .3
    }

    40% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1.5);
        opacity: 0
    }
}

.vc_icon_element {
    display: flex;
    justify-content: center;
}

.video-sec h2 {
    text-align: center;
    font-size: 18px;
    line-height: 52px;
    margin-bottom: 0px !important;
    padding-top: 6px !important;
    color: rgba(255, 255, 255, 1) !important;
}

.video-sec h3 {
    text-align: center;
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
}

.modal.fade.zoom:not(.show) .modal-dialog {
    transform: scale(0.8);
}

.videoembed {
    width: 100%;
}

/*blue_sec_two*/
/**banner sec*/
.blue_sec_two {
    background: #040C18;
    background: linear-gradient(90deg, rgba(4, 12, 24, 1) 60%, rgba(4, 12, 24, 1) 60%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    margin-top: 0;
}

.blue_sec_two .back_img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.blue_sec_two .front_text {
    position: relative;
    z-index: 9;

}

.blue_sec_two .equal_space {
    padding-block: 120px;
}

.blue_sec_two .front_text_inner {
    max-width: 50%;
    padding-right: 30px;
}

.blue_sec_two .back_img .right_banner {
    top: -60px;
    position: relative;
    height: 100%;
}

.blue_sec_two .back_img .right_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue_sec_two .back_img .left_banner {
    padding-right: 0;
    position: relative;
}

.blue_sec_two .front_text_inner .element-subheading,
.blue_sec_two .front_text_inner .element-content-heading {
    color: rgba(255, 255, 255, 1) !important;
}

.blue_sec_two .front_text_inner .element-content-desctxt p {
    color: #FFFFFFBF;
}

.blue_sec_two .front_text_inner .box-sec {
    background-color: #FFFFFF08;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    border-color: #0b4422;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 16px;
    margin-bottom: 0px;
    padding: 15px 0px 25px 23px;
}

.blue_sec_two .front_text_inner .box-sec h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 300;
}

.blue_sec_two .front_text_inner .box-sec h3 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
    color: rgba(255, 255, 255, 1) !important;
}

.blue_sec_two .front_text_inner .box-sec-e h3 {
    margin-bottom: 0;
}

.blue_sec_two .front_text_inner .box-sec-e {
    margin-bottom: 43px;
}

#timer {
    display: inline-flex;
    background-color: #FFFFFF08;
    padding: 20px;
}

#timer span {
    font-size: 40px;
    color: #ffffff;
    font-weight: 300;
    line-height: normal;
}

#timer span:first-child {
    margin-left: 0;
}

#timer .sec {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, .85);
    font-family: "Poppins", Tahoma, Geneva, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    text-transform: uppercase;
    margin-right: 30px;
    align-items: center;
}

@media (max-width:1366px) {
    .blue_sec_two .equal_space {
        padding-block: 100px;
    }
}

@media (max-width:1280px) {
    .blue_sec_two .front_text_inner {
        padding-right: 20px;
    }

    .blue_sec_two .equal_space {
        padding-block: 80px;
    }
}

@media (max-width:992px) {
    .blue_sec_two .blue_sec_two .front_text {
        padding-block: 60px;
    }

    .blue_sec_two .equal_space {
        padding-block: 60px;
    }
}

@media (max-width:767px) {
    .blue_sec_two .back_img .left_banner {
        width: 0;
    }

    .blue_sec_two .back_img .right_banner {
        width: 100%;
        height: 100%;
    }


}



.parallelogram:active,
.parallelogram:hover,
.parallelogram:focus {
    outline: 0 !important;
    outline-offset: 0;
    background: #182333;
}

.parallelogram::before,
.parallelogram::after {
    position: absolute;
    content: "";
}

.parallelogram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.parallelogram {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.parallelogram span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s;
}

/*--- btn-1 ---*/
.parallelogram::before {
    background-color: #0b4422;
    transition: 0.3s ease-out;
}

.parallelogram span {
    color: rgb(255, 255, 255);
    transition: 0.2s 0.1s;
}

.parallelogram span:hover {
    transition: 0.2s 0.1s;
}


/* 3.hover-filled-slide-left */
.parallelogram::before {
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.parallelogram:hover::before {
    width: 0%;
}

.two-box-sec ul {
    display: flex;
    justify-content: space-between;
}

.two-box-sec ul li {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 20px 0px;
    padding: 15px;
    width: 48%;
    border-radius: 20px;
    position: relative;
    background: #fff;
}

.two-box-sec ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #182333;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    bottom: -10px;
    border-radius: 20px;
    z-index: -1;
}

.two-box-sec ul li:last-child::before {
    background: #0b4422;
}

.two-box-sec ol li:last-child::before {
    background: #182333;
}


.fratenity_left_inner {
    padding-right: 63px;
}

.fratenity_right_inner {
    padding-left: 63px;
}

.two-box-sec ul li h2 {
    background: #182333;
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    padding: 10px;
    line-height: normal;
}

.two-box-sec {
    margin-top: 50px;
}

.two-box-sec ul li:last-child h2 {
    background: #0b4422;
}

.two-box-sec ul li h2 span {
    font-weight: 300;
}

.two-box-sec ul li p {
    color: #182333;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
}

.two-box-sec ol {
    padding-left: 20px;
}

.two-box-sec ol li {
    box-shadow: none;
    width: 100%;
    padding: 0;
}

.two-box-sec ol li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #182333;
    position: absolute;
    left: -16px;
    right: 0;
    top: 9px;
    bottom: inherit;
    border-radius: 20px;
    z-index: 1;
}

.diverder-inner .row {
    margin-inline: 0;
}

.diverder-inner-left {
    background: #182333;
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 16px;
}

.diverder-inner-right {
    background: #0b4422;
    position: relative;
    top: 10px;
    z-index: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 16px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.diveder_sec li {
    margin-block: 10px;
}

.diverder-inner-left::before {
    content: "";
    position: absolute;
    right: -25px;
    left: 13px;
    top: 0;
    bottom: 0;
    background: #182333;
    transform: skew(-20deg);
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.diverder-inner .bottom-right {
    margin-top: 20px;
    color: #182333;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.diverder-inner-right::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 13px;
    top: 0;
    bottom: 0;
    background: #0b4422;
    transform: skew(-20deg);
    z-index: -1;

}


/**banner sec*/
.videoembed {
    width: 100%;
    height: 100%;
}

.banner_wrapper .carousel-item {
    background: #040c18;
    position: relative;
}

.banner_wrapper .back_img {
    position: relative;


}

.banner_wrapper .front_text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;

}

.banner_wrapper .equal_space {
    padding-block: 120px;
    background: rgb(4 12 24 / 50%);
}

.banner_wrapper .front_text_inner {
    max-width: 70%;
}


.banner_wrapper .back_img .right_banner {
    padding-left: 0;
}

.banner_wrapper .back_img .right_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_wrapper .back_img .left_banner {
    padding-right: 0;
    position: relative;
}

.banner_wrapper .front_text_inner h3 {
    z-index: 5;
    font-family: Poppins;
    height: auto;
    width: auto;
    color: rgb(242, 244, 248);
    text-decoration: none;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: inherit;
    line-height: 20px;
    letter-spacing: 3px;
    font-weight: 200;
    font-size: 18px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

.banner_wrapper .front_text_inner h1 {
    z-index: 6;
    font-family: Poppins;
    height: auto;
    width: auto;
    color: rgb(242, 244, 248);
    text-decoration: none;

    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: inherit;
    line-height: 70px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 75px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

.banner_wrapper .front_text_inner h1 span {
    color: #0b4422 !important;
}

.banner_wrapper .front_text_inner ul {
    display: flex;
    margin-block: 40px;
}

.banner_wrapper .front_text_inner ul li {
    z-index: 8;
    font-family: Poppins;
    height: auto;
    width: auto;
    color: rgb(242, 244, 248);
    text-decoration: none;
    white-space: nowrap;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: inherit;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 22px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
    padding-inline: 20px;
}

.banner_wrapper .front_text_inner ul li::before {
    content: "";
    position: absolute;
    z-index: 9;
    background-color: rgb(253, 161, 43);
    color: rgb(255, 255, 255);
    width: 10px;
    height: 10px;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    overflow: hidden;
    border-radius: 100px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    left: 0;
    top: 10px;
    visibility: visible;
}

@media (max-width:1366px) {
    .banner_wrapper .equal_space {
        padding-block: 100px;
    }
}

@media (max-width:1280px) {
    .banner_wrapper .front_text_inner {
        padding-right: 20px;
    }

    .banner_wrapper .equal_space {
        padding-block: 80px;
    }
}

@media (max-width:992px) {
    .banner_wrapper .front_text {
        padding-block: 60px;
    }

    .banner_wrapper .equal_space {
        padding-block: 60px;
    }
}

@media (max-width:767px) {
    .banner_wrapper .back_img .left_banner {
        width: 0;
    }

    .banner_wrapper .back_img .right_banner {
        width: 100%;
        height: 100%;
    }

    .container,
    .container-sm {
        max-width: 100%;
    }
}

.about-sec .main-sec {
    position: relative;
}

.about-sec .sec1 img {
    max-width: 70%;
    min-height: 600px;
    object-fit: cover;
}

.about-sec .sec2 {
    position: absolute;
    right: 15px;
    top: 20px;
}

.equal_space-padding {
    padding-block: 100px;
}

.about-sec .space_area {
    padding-left: 30px;
    padding-top: 30px;
}

.about-sec .space_area .vc_general {
    font-size: 13px;
    font-weight: 600;
    color: #0b4422;
}

.about-sec .ontime-sec {

    border-top: 1px solid #ebebeb;
    display: block;
    position: relative;
    top: 1px;
    margin-top: 23px;
    width: 100%;
    padding-top: 30px;
}

.ontime-sec h2 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    color: #182333;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.ontime-sec ul {
    display: flex;
}

.ontime-sec li {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 10px;
    width: 100%;
    position: relative;
}

.ontime-sec li img {
    max-width: 30px;
}

.ontime-sec li .row {
    display: flex;
    align-items: center;
}

.ontime-sec li .row .col-3 {
    width: auto;
}

.ontime-sec li:after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #f1f1f1;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    top: 50%;
    -khtml-transform: translateX(0%) translateY(-50%);
    -moz-transform: translateX(0%) translateY(-50%);
    -ms-transform: translateX(0%) translateY(-50%);
    -o-transform: translateX(0%) translateY(-50%);
    transform: translateX(0%) translateY(-50%);
}

.ontime-sec li:last-child::after {
    display: none;
}

.about-sec .sec2 h2 {
    background: url(./images/highlight-text-bg.jpg) no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: center left;
    text-align: left;
    font-size: 95px;
    line-height: 95px;
    font-family: 'Poppins', Arial, Helvetica;
    font-weight: 600;
}

.about-sec .sec2 h4 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #182333;
    margin-bottom: 0px !important;
    text-align: center;
    font-size: 26px;
    line-height: 32px;
}

.about-sec .sec3 img {
    max-width: 100%;
}

.about-sec .sec3 {
    position: absolute;
    bottom: 13%;
    left: 15%;
    border: 10px solid #fff;
}

.popular-event {
    background: #040C18;
}

.popular-event.equal_space-padding {
    padding-bottom: 0;
}

.common-sec h3 {
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-family: 'Poppins', Arial, Helvetica;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.common-sec h2 {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    font-family: 'Poppins', Arial, Helvetica;
    display: inline-block;
    width: 100%;
}

.regular-event {
    position: relative;

    background-image: url(./images/row-bg-five.jpg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding-bottom: 200px;
}

.regular-event ul {
    display: flex;
    margin-inline: -15px;
    padding-top: 50px;
    /*  padding-bottom: 130px !important; */
}

.regular-event ul li {
    width: 33.33%;
    padding-inline: 15px;
}

.regular-event ul li .card {
    width: 100%;
    border-radius: 0;
    padding: 24px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 20px 0px;
    height: 100%;
}

.regular-event ul li .card .card-img {
    min-height: 274px;
}

.regular-event ul li .card .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.regular-event:after {
    content: "";
    width: 100%;
    height: 372px;
    background-color: #040c18;
    right: 0;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}

.regular-event .container {
    position: relative;
    z-index: 2;
}

.regular-event ul li .card .card-title {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #040c18
}

.regular-event .card-body {
    text-align: center;
}

.regular-event ul li .card .card-sub-title {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #040c18
}

.regular-event ul li .card .card-text {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #8d9297;
}

.regular-event .button-sec {
    box-shadow: none
}

.regular-event .common-sec h3,
.regular-event .common-sec h2 {
    color: #040c18;
}

.regular-event ul.event-sec {
    padding-bottom: 0 !important;
    padding-top: 50px;
}

.regular-event ul.event-sec li a img {
    max-width: 100%;
    width: 100%;
}

.regular-event .blue_sec {
    padding: 60px;
    background: #040c18;
    position: relative;
    bottom: -80px;
}

.regular-event .blue_sec p {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.happy_client {
    padding-block: 200px;
    text-align: center;
    padding-bottom: 80px;
}

.happy_client .element-content-heading {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    padding-left: 29px;
    font-size: 36px;
    display: inline-block;
    border-left: 6px solid #0b4422;
    line-height: 46px;
    color: #182333;
}

.happy_client .item {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.happy_client .slide-img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 20px 0px;
    margin-block: 50px;
}

.happy_client .slide-img img {
    max-width: 100%
}

.happy_client .slide-text {
    margin-inline: 50px;
    margin-bottom: 50px;
    background: #fff;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
}

.happy_client .slide-text p {
    margin-top: 0;
    margin-bottom: 0;
    color: #040c18;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
}

.happy_client .slide-text::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #040c18;
    left: -10px;
    top: -10px;
    z-index: -1;
}

.happy_client .slide-text::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #040c18;
    right: -10px;
    bottom: -10px;
    z-index: -1;
}

.owl-carousel .owl-dots button.owl-dot.active,
.owl-carousel .owl-dots button.owl-dot:hover {
    background-color: #0b4422;
    border: 1px solid #0b4422;
}

.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-carousel .owl-dots button.owl-dot {
    border: 1px solid #040c18;
    background: #040c18;
    border-radius: 50%;
    height: 13px;
    width: 13px;
    position: relative;
}

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

@media (max-width:1365px) {
    .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 13px;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 65px;
        line-height: 60px;
    }

    .banner_wrapper .front_text_inner h3 {
        font-size: 16px;
    }

    .banner_wrapper .front_text_inner ul li {
        font-size: 20px;
    }

    .parallelogram span {
        font-size: 12px;
    }
}

@media (max-width:1200px) {
    .bottom_nav_section .logo-img {
        max-width: 200px;
    }

    .bottom_nav_section .logo-img img {
        max-width: 100%;
    }

    .bottom_nav_section .navbar-collapse .nav-item a {
        padding-inline: 12px;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 55px;
        line-height: 50px;
    }

    .banner_wrapper .front_text_inner ul {

        margin-block: 25px;
    }

    .banner_wrapper .front_text_inner ul li {
        font-size: 18px;
    }

    .banner_wrapper .front_text_inner h3 {
        font-size: 14px;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .button-sec {
        padding: 8px 30px
    }
}

@media (max-width: 991px) {
    .banner_wrapper .back_img .right_banner {
        padding-left: 0;
        margin-top: -30px;
    }
}

@media (max-width: 767px) {

    .top-header .top_nav-a,
    .top-header .top_nav-b {
        width: 100%;
    }

    /* .top-contact:after {
        right: -154px;
    } */
    .top-contact:after {
        left: 0;
    }

    .top-header .container {
        padding-inline: 0;
    }

    .top-contact:before {
        display: none;
    }

    .top-contact li {
        justify-content: center;
    }

    /* .page-header {
        overflow: hidden;
    } */

    .top-header .top_nav-b .d-flex {
        justify-content: center !important;
    }

    .top-contact,
    .top-header .top_nav-b {
        padding: 5px;
    }
}

.bar1,
.bar2,
.bar3 {
    width: 24px;
    height: 2px;
    background-color: #0b4422;
    margin: 3px 0;
    transition: 0.4s;
    display: inline-block;
}

.change .bar1 {
    transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -8px) rotate(45deg);
}

@media (max-width:991px) {

    .nav_top .search .donete_btn .btn,
    .nav_top .tel_num {
        font-size: 12px;
    }

    .nav_top .search .login-btn .btn {
        font-size: 13px;
    }

    .nav_top .search {
        gap: 5px;
    }

    .navbar-light .navbar-toggler {
        z-index: 100;
        top: 0px;
    }


    .navbar-expand-lg .navbar-collapse {
        padding-block: 0;

    }

    .navbar-expand-lg .navbar-collapse {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 50px;
        text-align: center;
        display: block;
        display: block;
        bottom: 0;
        height: 100vh;
    }

    .navbar-expand-lg .navbar-collapse.open {
        width: 50%;
        display: block;
    }

    .navbar-expand-lg .navbar-collapse .navbar-nav {
        padding-inline: 30px;
        text-align: left;
    }

    .navbar-expand-lg .navbar-collapse .navbar-nav {

        opacity: 0;
        transition: all 1s ease-out;
    }

    .navbar-expand-lg .navbar-collapse.open .navbar-nav {
        opacity: 1;
        transition-property: opacity, display;
        transition: all 1s ease-out;
        transition-duration: 0.6s;
    }

    .navbar-expand-lg .navbar-collapse.open .navbar-nav:after {
        position: fixed;
        width: 100%;
        height: 100vh;
        content: "";
        top: 0;
        left: 0;
        opacity: 0.5;
        background: black;
        cursor: pointer;
        z-index: -1;
    }

    .navbar-light .navbar-toggler.change {
        border: 2px solid #ffffff;
    }

    .navbar-light .navbar-toggler.change .bar1,
    .navbar-light .navbar-toggler.change .bar2,
    .navbar-light .navbar-toggler.change .bar3 {
        background-color: #ffffff;
    }

    .cart_icon {
        display: flex;
        order: 2;
        position: absolute;
        right: 55px;
    }

    header.border-bottom .container {
        position: relative;
    }

    .navbar-light .navbar-toggler {
        color: #0b4422;
        border-color: #0b4422;
        display: flex;
        flex-direction: column;
        border: 1px solid #0b4422;
        box-shadow: none;
        display: flex;
        order: 2;
        position: absolute;
        right: 90px;
        top: 50%;
        margin-top: -18px;
    }

    .header-icons {
        display: flex;
        order: 3;
    }

    .logo-img {
        display: flex;
        order: 1;
    }

    .page-header nav .container-fluid {
        display: flex;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .banner_wrapper .front_text_inner ul li::before {
        width: 8px;
        height: 8px;
    }

    .banner_wrapper .front_text_inner {
        max-width: 100%;
    }

    .banner_wrapper .front_text_inner ul li {
        font-size: 16px;
    }

    .banner_wrapper .front_text_inner h3 {
        letter-spacing: 2px;
    }

    .parallelogram span {
        letter-spacing: 1px;
    }

    .banner_wrapper {
        position: relative;
    }

    .banner_wrapper:before {
        content: "";
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0;
        background: #040C18;
        z-index: 9;
    }

    .search-overlay {
        width: 300px;
    }

    .search-overlay .site-searchform button {
        font-size: 18px;
    }

    .search-overlay .site-searchform button {
        line-height: 40px;
        height: 40px;
    }

    .search-overlay .site-searchform input[type=search] {
        height: 40px;
        line-height: normal;
    }
}

@media (max-width: 767px) {

    .nav_top .tel_num {
        margin-block: 10px;
    }

    .nav_top .search .donete_btn {
        position: absolute;
        top: 6px;
        right: 30px;
    }


    .search-field {
        height: 30px;
    }

    .nav_top .search {
        padding-block: 5px;
        border-top: 1px solid #ffffff38;
        margin-top: 5px;
    }

    .cart_icon {
        margin-right: 50px;
    }

    .nav_top .search .has-search {
        width: calc(100% - 135px);
        right: 100%;
    }

    .nav_top .search .has-search .form-control {
        width: 100%;
    }

    .nav_top .search .donete_btn .btn,
    .nav_top .tel_num {
        padding-inline: 5px;
    }

    .nav_top .tel_num {
        margin-block: 10px;
        padding-top: 5px;
        margin-bottom: 6px;
    }

    .nav_top .search {
        padding-inline: 0;
    }

    .nav_top .row {
        margin-inline: 0;
    }

    .nav_top .search {
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-collapse.open {
        width: 50%;
        display: block;
    }

    .nav_top .container-fluid {
        padding-inline: 0;
    }

    .nav_top .search,
    .nav_top .tel_num {
        padding-inline: 30px;
    }

    .header-icons {
        position: relative;
        padding-left: 18px;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .banner_wrapper .front_text_inner ul {
        flex-wrap: wrap;
    }

    .banner_wrapper .front_text_inner h3 {
        letter-spacing: 1px;
    }

    .button-sec {
        padding: 6px 20px;
    }
}

@media (max-width: 520px) {

    .nav_top .search .donete_btn .btn,
    .nav_top .tel_num {
        font-size: 11px;
    }


    .navbar-expand-lg .navbar-collapse.open {
        width: 75%;
        display: block;
    }

    .banner_wrapper .front_text_inner h1 {
        font-size: 26px;
        line-height: 26px;
    }

    .banner_wrapper .front_text_inner h3 {
        letter-spacing: .5px;
    }

    .banner_wrapper .front_text_inner ul {
        margin-block: 20px;
    }

    .banner_wrapper .front_text_inner ul li {
        font-size: 14px;
        line-height: normal;
    }

    .bottom_nav_section .logo-img {
        max-width: 150px;
    }
}

@media (max-width: 1365px) {

    .element-content-heading,
    .common-sec h2,
    h2,
    .happy_client .element-content-heading,
    #timer span {
        font-size: 30px;
        line-height: 40px;
    }

    .video-sec h3 {
        font-size: 50px;
        line-height: 55px;
    }

    .element-content-desctxt p {
        line-height: normal;
    }

    .element-subheading {
        font-size: 13px;
    }

    .about-sec .sec2 {
        right: 0;
    }

    .about-sec .sec2 h2 {
        font-size: 90px;
        line-height: 90px;
    }

    .about-sec .sec2 h4 {
        font-size: 23px;
        line-height: 26px;
    }

    .ontime-sec h2 {
        font-size: 16px;
        line-height: normal;
    }

    .ontime-sec li .row .col-3 {
        width: 40px;
        padding: 0;
        padding-left: 10px;
    }

    .ontime-sec li .row .col-9 {
        width: calc(100% - 40px);
    }

    .ontime-sec li img {
        max-width: 100%;
    }

    .blue_sec_two .front_text_inner .box-sec h2 {
        font-size: 26px;
        line-height: normal;
    }

    .diverder-inner-left,
    .diverder-inner-right,
    .diverder-inner .bottom-right,
    .video-sec h2 {
        font-size: 16px;
    }

    .diverder-inner-right,
    .diverder-inner-left {
        padding: 14px
    }

    .footer-top-col.newsletter h2 {
        font-size: 24px;
        line-height: normal;
    }

    .footer-top .widget-title {
        font-size: 18px;
    }

    .border-bottom-button a {
        padding: 15px 20px 15px;
        font-size: 13px;
    }

    .footer-top .list li {
        padding-left: 15px;
    }
}

@media (max-width: 1280px) {
    .equal_space-padding {
        padding-block: 80px;
    }

    .happy_client {
        padding-block: 150px;
        text-align: center;
        padding-bottom: 70px;
    }
}

@media (max-width: 1200px) {

    .element-content-heading,
    .common-sec h2,
    .happy_client .element-content-heading,
    h2,
    #timer span,
    .blue_sec_two .front_text_inner .box-sec h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .video-sec h3 {
        font-size: 40px;
        line-height: 45px;
    }

    .ontime-sec li .row .col-3 {
        width: 100%;
    }

    .ontime-sec li .row .col-3 {
        width: 100%;
        padding-inline: 12px;
        text-align: center;
    }

    .ontime-sec li .row .col-9 {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .ontime-sec h2 {
        font-size: 14px;
        line-height: normal;
    }

    .diverder-inner-right,
    .diverder-inner-left {
        padding: 12px
    }

    .two-box-sec {
        margin-top: 40px;
    }

    .two-box-sec ul {
        flex-wrap: wrap;
    }

    .two-box-sec ul li {
        margin-bottom: 30px;
        width: 100%;
    }

    .two-box-sec ol li {
        margin-bottom: 0;
    }

    .fratenity_right_inner {
        padding-left: 30px;
    }

    .fratenity_left_inner {
        padding-right: 30px;
    }

    .partner_area li a {
        padding: 10px;
    }

    .partner_area li {
        width: 33.33%;
        padding: 10px;
    }

    .partner-sec-inner .right-sec {
        padding: 0 0px 0px 40px;
    }

    .quicklink-box .righttext-box h2 {
        font-size: 22px;
    }

    .border-bottom-button a {
        padding: 12px 14px 12px;
        font-size: 13px;
    }

    .footer-top li,
    .footer-top p {
        line-height: normal;
    }

    .footer-top-col.newsletter h2 {
        font-size: 20px;
        line-height: normal;
    }

    .footer-top .widget-title {
        font-size: 16px;
    }

    .footer-top .list li::before {
        top: 3px;
    }

    .partner_area li img {
        filter: none;
    }

    .partner-sec-inner {
        padding-top: 60px;
    }

    .vc_icon_element-inner {
        z-index: 1;
        width: 50px !important;
        height: 50px !important;
    }

    .vc_icon_element-inner:before {
        width: 80px;
        height: 80px;
    }

    .vc_icon_element-inner:after {
        width: 95px;
        height: 95px;
    }

    .vc_icon_element-inner i {
        font-size: 28px !important;
    }

    .video-sec h2 {
        margin-block: 40px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 991px) {

    .element-content-heading,
    .common-sec h2,
    .happy_client .element-content-heading,
    h2,
    #timer span,
    .blue_sec_two .front_text_inner .box-sec h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .video-sec h3 {
        font-size: 30px;
        line-height: 40px;
    }

    .about-sec .space_area {
        padding-left: 0;
    }

    .about-sec .sec2 h2 {
        font-size: 80px;
        line-height: 80px;
    }

    .about-sec .sec2 h4 {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

    .ontime-sec ul {
        display: flex;
        flex-wrap: wrap;
    }

    .ontime-sec li {
        margin-bottom: 15px;
        padding-inline: 0;
    }

    .ontime-sec li .row .col-3 {
        width: 40px;
        padding-inline: 0;
        text-align: center;
    }

    .ontime-sec li .row .col-9 {
        width: calc(100% - 40px);
        margin-top: 0;
        text-align: left;
    }

    .ontime-sec li .row {
        margin-inline: 0;
    }

    .ontime-sec li:after {
        display: none;
    }

    .about-sec .sec1 img {
        min-height: 500px;
    }

    .equal_space-padding {
        padding-block: 60px;
    }

    .regular-event ul li {
        width: 50%;
        padding-inline: 15px;
        margin-bottom: 30px;
    }

    .regular-event ul {
        display: flex;
        margin-inline: -15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .regular-event .blue_sec p {
        font-size: 16px;
    }

    .regular-event .blue_sec {
        padding: 40px;
        bottom: -70px;
    }

    .owl-carousel .owl-dots button.owl-dot {
        height: 10px;
        width: 10px;
    }

    .happy_client .slide-text {
        margin-inline: 20px;
    }

    .blue_sec_two .back_img .left_banner {
        width: 60%;
    }

    .blue_sec_two .back_img .right_banner {
        width: 40%;
    }

    .blue_sec_two {
        background: linear-gradient(90deg, rgba(4, 12, 24, 1) 70%, rgba(4, 12, 24, 1) 70%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 1) 100%);
    }

    .blue_sec_two .front_text_inner {
        max-width: 60%;
    }

    #timer .sec {
        font-size: 12px;
        margin-right: 20px;
    }

    .blue_sec_two .front_text_inner .box-sec h3,
    .video-sec h2 {
        font-size: 14px;
    }

    .diverder-inner-left,
    .diverder-inner-right,
    .diverder-inner .bottom-right {
        font-size: 14px;
    }

    .diverder-inner-right,
    .diverder-inner-left {
        padding: 10px
    }

    .fratenity_right_inner {
        padding-left: 12px;
    }

    .fratenity_left_inner {
        padding-right: 12px;
    }

    .diverder-inner-right,
    .diverder-inner-left {
        transform: skew(-20deg);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        max-width: 95%;
        margin: 0 auto;
    }

    .diverder-inner-right span,
    .diverder-inner-left span {
        transform: skew(20deg);
        display: inline-block;
    }

    .diverder-inner-left::before,
    .diverder-inner-right::before {
        display: none;
    }

    .get-qoute-sec-inner iframe {
        min-height: 500px;
    }

    .partner-sec-inner .right-sec {
        padding: 0 0px 0px 24px;
    }

    .partner_area li {
        padding: 5px;
    }

    .quicklink-box .righttext-box h2 {
        font-size: 20px;
    }

    .quicklink-box {
        margin-bottom: 20px;
    }

    .footer-top-col {
        margin-bottom: 20px;
    }

    .footer-top-col {
        margin-bottom: 50px;
    }

    footer .gallery {
        margin-bottom: 0;
    }

    .footer-bottom-col {
        margin-bottom: 35px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding-top: 50px;
    }

    .footer-top li,
    .footer-top p,
    .footer-bottom p,
    ul.pricelist-block li {
        font-size: 14px;
    }

    .footer-top {
        padding-top: 0;
    }

    body:has(.navbar-toggler.change[aria-expanded="true"]) .page_body {
        position: fixed;
        z-index: 1;
    }


}

@media (max-width: 767px) {
    .about-sec .sec3 {
        right: 0;
    }

    .about-sec .sec2 {
        right: 10px;
    }

    .about-sec .sec3 img {
        width: 100%;
    }

    .about-sec .sec1 img {
        width: calc(100% - 120px);
        max-width: 100%;
        min-height: 700px;
    }

    .element-content-heading,
    .common-sec h2,
    .happy_client .element-content-heading,
    h2,
    #timer span,
    .blue_sec_two .front_text_inner .box-sec h2 {
        font-size: 22px;
        line-height: 24px;
    }

    .video-sec h3 {
        font-size: 26px;
        line-height: 35px;
    }

    .regular-event ul li {
        width: 100%;
    }

    .regular-event ul li .card .card-img {
        min-height: auto;
    }

    .blue_sec_two .back_img .left_banner {
        width: 100%;
    }

    .blue_sec_two .back_img .right_banner {
        width: 100%;
    }

    .blue_sec_two .back_img {
        position: relative;
    }

    .blue_sec_two .back_img .right_banner {
        top: 0;
    }

    .blue_sec_two {
        background: transparent;
        margin-top: 0;
    }

    .blue_sec_two .front_text_inner {
        max-width: 100%;
    }

    .blue_sec_two .equal_space {
        margin: initial;
        padding-block: 60px;
        max-width: 90%;
        background: #040C18;
        margin: 0 auto;
        margin-top: -80px;
    }

    .blue_sec_two .front_text_inner {
        padding-right: 0;
    }

    .partner-sec-inner .right-sec {
        padding: 30px 0px 0px 0;
    }

    .blue_sec_two .front_text_inner .box-sec {
        padding-right: 25px;
    }


    .top-contact,
    .top-header .top_nav-b {
        padding-inline: 30px;
    }

    .top-header {
        background-color: #182333;
        background: linear-gradient(90deg, rgba(24, 35, 51, 1) 30%, rgba(24, 35, 51, 1) 30%, rgba(24, 35, 51, 1) 30%, rgba(24, 35, 51, 1) 100%);
    }

    .partner-sec-inner {
        padding-top: 40px;
    }

    .get-qoute-sec-inner .wpb_wrapper {
        padding-inline: 30px;
    }

    .equal_space-padding {
        padding-block: 40px;
    }

    .vc_icon_element-inner {
        z-index: 1;
        width: 40px !important;
        height: 40px !important;
    }

    .vc_icon_element-inner:before {
        width: 65px;
        height: 65px;
    }

    .vc_icon_element-inner:after {
        width: 80px;
        height: 80px;
    }

    .vc_icon_element-inner i {
        font-size: 20px !important;
    }

    #timer .sec {
        font-size: 12px;
        margin-right: 15px;
    }

    .blue_sec_two .front_text_inner .box-sec h3,
    .video-sec h2 {
        font-size: 12px;
    }

    .regular-event .blue_sec p {
        font-size: 14px;
    }
}

@media (max-width: 620px) {
    .about-sec .sec1 img {
        min-height: 600px;
    }

    .video-sec h3 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .about-sec .sec1 img {
        min-height: 520px;
    }

    .partner_area li {
        width: 50%;
    }

    .footer-top-col {
        margin-bottom: 40px;
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding-bottom: 0 !important;
        padding-top: 35px;
    }

    .footer-bottom p {
        text-align: center;
    }

    .social-links-wrapper .social-icons {
        justify-content: center !important;
        margin-top: 15px;
    }

    button.back-to-top.show {
        bottom: 80px;
        height: 40px;
        width: 40px;
    }

    button.back-to-top::before,
    button.back-to-top::after {
        margin: 16px auto 0;
    }

    .navbar-expand-lg .navbar-collapse.open {
        width: 100%;
    }

    .navbar-light .navbar-toggler.change[aria-expanded="true"] {
        top: 70px;
        right: 30px;
        position: fixed;
        z-index: 999;
    }

    .video-sec h3 {
        font-size: 24px;
        line-height: 28px;
    }

    .footer_logo {
        text-align: center;
    }

    .footer-top-col:first-child {
        padding-top: 0;
    }

    .newsletter-form input[type=submit] {
        position: relative;

        width: 100%;
    }

    #timer .sec {
        font-size: 11px;
        margin-right: 10px;
    }

    .element-content-heading,
    .common-sec h2,
    .happy_client .element-content-heading,
    #timer span,
    .blue_sec_two .front_text_inner .box-sec h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 420px) {
    .about-sec .sec1 img {
        min-height: 460px;
    }
}

.banner_wrapper .equal_space {
    padding-block: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .banner_wrapper:before {
        opacity: 0.6;
    }
}

@media (max-width: 767px) {
    .banner_wrapper .front_text {
        position: relative;
        padding-block: 50px !important;
    }

    .banner_wrapper:before {
        display: none;
    }
}

/*contact*/
.inner_banner_sec {
    position: relative;
    max-height: 650px;
    overflow: hidden;
}

.inner_banner_sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: rgb(4 12 24 / 50%);
    z-index: 9;
}

.inner_banner_sec_main {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.inner_banner_sec_main .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_banner_sec h1 {
    display: inline-block;
    margin-bottom: 0;
    color: #fff;
    font-size: 70px;
    text-transform: uppercase;
    border-left: 10px solid #0b4422;
    padding-left: 25px;
}

.breadcrumb-inner {
    padding-top: 30px;
    padding-bottom: 50px;
}

.breadcrumb li {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #040c18;
    font-size: 14px;
}

.breadcrumb li a {
    color: #040c18;
}

.breadcrumb li.breadcrumb-item.active {
    color: #0b4422;
    font-weight: bold;
}

.form_sect-last li {
    display: flex;
    margin-bottom: 10px;
}

.form_sect-last li .download-sec a {
    background: #0b4422;
    border: 0;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.form_sect-last li .download-sec a i {
    font-size: 25px;
}

.form_sect-last .para-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .cform_sect-left h2 {
    font-family: 'Butler_Medium';
    font-size: 35px;
    padding-bottom: 25px;
    font-weight: 700;
    color: #351113;
}

.form_sect-last h2 {
    font-family: 'Butler_Medium';
    font-size: 35px;
    padding-bottom: 40px;
    font-weight: 700;
    color: #351113;
} */

.form_sect-last .para-left h3 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #182333;
    margin-bottom: 5px;
}

.form_sect-last .para-left p {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #8d9297;
}

.form_sect-last .para-left p a {
    color: #0b4422;
}

.form_sect-last {
    padding-block: 20px;
    border-bottom: 1px solid #c0c0c0;
}

.cont_sbout_sec .social-links-wrapper h2 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #182333;
}

.cont_sbout_sec .social-links-wrapper .social-icons li a {
    background: #0b4422;
    border: 0;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 0;
    margin-right: 15px;
}

.cont_sbout_sec .social-links-wrapper {
    padding-top: 20px;
}

.cont_sbout_sec .social-links-wrapper .social-icons li {
    margin: 0;
}

.cont_sbout_sec .social-links-wrapper .social-icons li a i {
    font-size: 24px;
    color: #fff;
}

.cont_sbout_sec .social-links-wrapper .social-icons li a:hover,
.cont_sbout_sec .social-links-wrapper .social-icons li a:focus,
.form_sect-last li .download-sec a:focus,
.form_sect-last li .download-sec a:hover {
    background: #040c18;
}

/*
.form_sect-last .para-left p a:hover {
    color: #351113;
} */


/*about*/

/*common banner start*/
.common-banner {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.common-banner img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.common-banner .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.common-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #040c18;
    opacity: .5;
    z-index: 1;
}

.common-banner h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 0;
    border-left: 6px solid #0b4422;
    padding-left: 20px;
}

.cont_sbout_sec_right {
    position: relative;
    z-index: 1;
}

.cont_sbout_sec_right-inner {
    border-style: solid;
    border-width: 7px 0px 0px 0px;
    border-color: #0b4422;
    box-shadow: 0px 0px 25px 0px rgba(205.5, 205.5, 205.5, 0.36);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    /* margin: 0px 025px 15px 0px; */
    --e-column-margin-right: 025px;
    --e-column-margin-left: 0px;
    padding: 040px 050px 50px 050px;
    border-radius: 10px 10px 10px 10px;
    position: relative;
    background: #fff;
}

.cont_sbout_sec_right-inner::before {
    content: "";
    width: 100%;
    height: 30px;
    background: #000;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    border-radius: 10px;
    z-index: -1;
}

@media (max-width: 1365px) {
    .common-banner h1 {
        font-size: 50px;
    }
}

@media (max-width: 1280px) {
    .common-banner h1 {
        font-size: 40px;
        border-left: 5px solid #0b4422;
        padding-left: 15px;
    }

    .form_sect-last .para-left h3,
    .cont_sbout_sec .social-links-wrapper h2 {
        font-size: 20px;
    }

    .cont_sbout_sec_right-inner {
        padding: 30px;
    }

    .form_sect-last li .download-sec a,
    .cont_sbout_sec .social-links-wrapper .social-icons li a {
        width: 45px;
        height: 45px;
    }

    .form_sect-last li .download-sec a i,
    .cont_sbout_sec .social-links-wrapper .social-icons li a i {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .common-banner h1 {
        font-size: 30px;
        border-left: 4px solid #0b4422;
        padding-left: 10px;
    }

    .form_sect-last .para-left h3,
    .cont_sbout_sec .social-links-wrapper h2 {
        font-size: 18px;
    }

    .form_sect-last li .download-sec a,
    .cont_sbout_sec .social-links-wrapper .social-icons li a {
        width: 40px;
        height: 40px;
    }

    .form_sect-last li .download-sec a i,
    .cont_sbout_sec .social-links-wrapper .social-icons li a i {
        font-size: 18px;
    }

    .form_sect-last .para-left p {
        font-size: 14px;
    }

}

@media (max-width: 768px) {

    .common-banner img {
        min-height: 250px;
    }

    .form_sect-last li {
        display: flex;
        margin-bottom: 0;
    }

    .cont_sbout_sec_right {
        margin-top: 40px;
    }
}

.breadcrumb-main {
    padding-block: 40px;
}

.breadcrumb-main .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-main .breadcrumb-item a,
.breadcrumb-main .breadcrumb-item a i {
    color: #182333;
    font-weight: 700;
}

.breadcrumb-main .breadcrumb-item.active {
    color: #0b4422;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 700;
    padding-inline: 16px;
    font-size: 15px;
}

.about-inner-sec .sec1 img {
    max-width: 100%;
    width: 100%;
}

.about-inner-sec .sec2 {
    padding-left: 100px;
    margin-top: -100px;
}

.about-inner-sec .sec1 {
    width: calc(100% - 100px);
}

.about-inner-sec .sec2 img {
    border: 10px solid #fff;
    max-width: 100%;
    width: 100%;
}

.about-inner-sec {
    padding-top: 0;
}

@media (max-width: 767px) {
    .about-inner-sec .space_area {
        padding-top: 30px;
    }

    .breadcrumb-main {
        padding-block: 30px;
    }
}

.our-journey {
    position: relative;
    background-image: url(./images/row-bg-five.jpg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.our-journey .content-header {
    padding-left: 0;
}

.our-journey .content-header::before {
    display: none;
}

.our-journey .element-content-desctxt p b {
    color: #182333;
}

.our-journey .element-content-desctxt p {
    color: #182333;
}

.our-journey .our-journey-inner-left {
    padding-right: 63px;
    position: relative;
}

.our-journey .our-journey-inner-right {
    text-align: right;
    padding-left: 63px;
}

.our-journey .our-journey-inner-right img {
    border-radius: 15px;
    max-width: 100%
}

.our-journey .our-journey-inner-left::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    right: 0;
    border-right: 5px dashed #0b4422;
    top: 0;
    bottom: 0;
}

.our-journey li:nth-child(even) .our-journey-inner {
    display: flex;
    flex-direction: row-reverse;
}

.our-journey li:nth-child(even) .our-journey-inner-left {
    padding-left: 63px;
    padding-right: 12px;
}

.our-journey li:nth-child(even) .our-journey-inner-right {
    text-align: left;
    padding-left: 12px;
    padding-right: 63px;
}

.our-journey li:nth-child(even) .our-journey-inner-left::before {
    left: -5px;
    right: inherit;
}

.our-journey li .our-journey-inner-left,
.our-journey li .our-journey-inner-right {
    padding-block: 30px;
}

.our-journey li:first-child .our-journey-inner-left::before {
    height: 50%;
    top: 50%;
}

.our-journey li:last-child .our-journey-inner-left::before {
    height: 50%;
    bottom: 50%;
}

.our-journey li:last-child {
    padding-bottom: 70px;
}

.our-journey .our-journey-inner-left::after {
    content: "";
    width: 20px;
    height: 20px;
    background: #040c18;
    right: -8px;
    top: 50%;
    position: absolute;
    border-radius: 50px;
}

.our-journey li:nth-child(even) .our-journey-inner-left::after {
    left: -12px;
    right: inherit;
}

.our-journey .common-sec h2 {
    color: #040c18;
}

.our-journey .element-content-heading {
    font-size: 30px;
    line-height: normal;
}

.our-journey li:last-child .our-journey-inner-left,
.our-journey li:last-child .our-journey-inner-right {
    padding-bottom: 0;
}

.history_sec .left_banner {
    background-color: #040c18 !important;
    width: 58.33333333%;
    height: 100%;
}

.history_sec .right_banner {
    background-color: #182333 !important;
    width: 41.66666667%;
    height: 100%;
    margin-top: -100px;
    position: relative;
}

.history_sec .right_banner::before {
    content: "";
    position: absolute;
    width: 100px;
    left: -99px;
    height: 100%;
    background-color: #182333 !important;
}

.history_sec {
    position: relative;
    margin-bottom: -100px;
    z-index: 9;
}

.history_sec .b-po {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    padding: 0;
    top: 0;
}

.history_sec .container {
    position: relative;
    z-index: 9;
}

.right_banner-inner {
    color: #FFF;
    padding-bottom: 200px;
}

.right_banner-inner h2,
.right_banner-inner p {
    color: #FFF;
}

.right_banner-inner .parallelogram:active,
.right_banner-inner .parallelogram:hover,
.right_banner-inner .parallelogram:focus {
    background: #ffffff;
}

.right_banner-inner .parallelogram:active span,
.right_banner-inner .parallelogram:hover span,
.right_banner-inner .parallelogram:focus span {
    color: #040c18
}

.left_banner-inner .sec-1 img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
}

.left_banner-inner .sec-2 img {
    max-width: 100%;
}

.left_banner-inner .sec-2 {
    margin-left: -100px;
    margin-bottom: -20px;
}

.left_banner-inner {
    padding-right: 100px;
    align-items: center;
}

.middle-inner {
    align-items: flex-end;
}

.profession-event {
    background-color: #0b4422;
    padding-bottom: 0;

}

.profession-event .container {
    position: relative;
    z-index: 9;
}

.profession-event .owl-carousel {
    bottom: -150px;
    margin-top: -150px;
}

.profession-event .owl-carousel .owl-dots {
    margin-top: 30px;
}

.profession-event .owl-carousel .card-main {
    padding-inline: 20px;
    padding-bottom: 20px;

}

.profession-event .owl-carousel .card-main .card {
    border: 15px solid #fff;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 0;
}

.profession-event .owl-carousel .card-main .card .card-body {
    min-width: 100px;
    padding-bottom: 0;
    text-align: center;
}

.profession-event .common-sec.equal_space-padding {
    padding-bottom: 40px;
}

.profession-team {
    position: relative;
    background-image: url(./images/tui.jpg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.profession-team .common-sec {
    padding-bottom: 0;
}

.profession-team .latest-sec {
    padding-block: 80px;
    padding-top: 50px;
}

.profession-team .common-sec h3 {
    color: #182333;
}

.profession-team .common-sec h2 {
    margin-bottom: 0;
    color: #182333;
}

.latest-sec ul {
    display: flex;
    margin-inline: -10px;
    margin-top: 30px;
}

.latest-sec ul li {
    width: 25%;
    padding-inline: 10px;
    min-height: 380px;
}

.latest-sec ul li .box-col-wrapper {
    height: 100%;
}

.latest-sec ul li .themetechmount-box {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.latest-sec ul li .themetechmount-box .themetechmount-post-item {
    height: 100%;
}

.latest-sec ul li .themetechmount-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-sec ul li .themetechmount-portfolio-box-view-overlay .themetechmount-post-item {
    z-index: 9;
}

.latest-sec ul li .themetechmount-post-item .themetechmount-item-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.latest-sec ul li :hover .themetechmount-overlay {
    opacity: 1;
    bottom: 0;
}

.latest-sec ul li .themetechmount-overlay .themetechmount-box-content-inner {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 5%;
    top: 5%;
    border: 1px solid rgba(255, 255, 255, .28);
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
}

.latest-sec ul li .themetechmount-overlay {
    position: absolute;
    bottom: -30%;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 35, 51, .83);
}

.latest-sec ul li .themetechmount-overlay .themetechmount-box-content-inner h2 {
    color: #fff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
}

.latest-sec ul li .themetechmount-overlay .themetechmount-box-content-inner p {
    color: #fff;
}

.latest-sec ul li .parallelogram {
    max-width: 200px;
    margin: 0 auto;
}

.opning-time h2 {
    color: #182333;
}

.opning-time p {
    text-align: center;
    max-width: 615px;
    margin: 0 auto;
}

.time_p_sec .diverder-inner-close {
    background: #0b4422;
    position: relative;
    top: 10px;
    z-index: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 16px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.time_p_sec .diverder-inner-close::before {
    content: "";
    position: absolute;
    left: -12px;
    right: 13px;
    top: 0;
    bottom: 0;
    background: #0b4422;
    transform: skew(-20deg);
    z-index: -1;
}

.time_p_sec .diverder-inner-right::before,
.time_p_sec .diverder-inner-right {
    background: #182333
}

.time_p_sec .diverder-inner-left,
.time_p_sec .diverder-inner-left::before {
    background: #040c18;
}

.time_p_sec .diveder_sec li {
    margin-block: 0;
    margin-bottom: 30px;
}

.opning-time.equal_space-padding {
    padding-bottom: 50px;
}

.time_p_sec .diveder_sec li:first-child .diverder-inner-close,
.time_p_sec .diveder_sec li:first-child .diverder-inner-close::before {
    background-color: #f8f9fa;
}

.time_p_sec .diveder_sec li:first-child .diverder-inner-right::before,
.time_p_sec .diveder_sec li:first-child .diverder-inner-right {
    background-color: #edeeee;
}

.time_p_sec .diveder_sec li:first-child .diverder-inner-left,
.time_p_sec .diveder_sec li:first-child .diverder-inner-left::before {
    background: #e4e4e4;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.time_p_sec .diveder_sec li:first-child .diverder-inner-close span,
.time_p_sec .diveder_sec li:first-child .diverder-inner-right span,
.time_p_sec .diveder_sec li:first-child .diverder-inner-left span {
    color: #040c18;
    font-weight: bold;
}

.accordian_sec h3 {
    font-family: 'Butler_Medium';
    font-weight: 700;
    font-size: 35px;
    text-align: center;
    margin-bottom: 0;
    margin: 0 auto;
}


.accordian_sec .accordion-button {
    padding-right: 60px;
    position: relative;
    color: #040c18;
    background-color: #f8f9fa;
    box-shadow: none;
    font-size: 20px;
    font-weight: bold;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    outline: none;
}

/* .accordian_sec .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #351113;
    box-shadow: none;
} */
.accordian_sec .accordion-button::before {
    content: "";
    height: calc(50% + 10px);
    background: #000;
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    border-radius: 0;
    z-index: -1;
}

.accordian_sec .accordion-button:hover:before,
.accordian_sec .accordion-button:focus:before {
    z-index: -1;
}

.accordian_sec .accordion-body {
    padding: 20px;
    background: #fff;
    color: #040c18;
    font-size: 16px;

}

.accordian_sec .accordion-body a,
.accordian_sec .accordion-body code {
    color: #c4fccc;
    font-weight: 700;
}

.accordian_sec .accordion-item {
    background-color: transparent;
    border: 0;
    margin-bottom: 24px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordian_sec .accordion-button:focus {
    outline: none;
}

.accordian_sec .accordion-button::after {
    background: url(./images/plus.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    height: 100%;
    background-position: center !important;
    width: 30px;
    /* height: 30px; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
}

.accordian_sec .accordion-button:not(.collapsed)::after {
    background: url(./images/minus.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.accordion-button:hover,
.accordion-button:focus {
    z-index: inherit;
}

.after_t_sec.opning-time.equal_space-padding {
    padding-top: 50px;
}

.con_foot_top {
    background-image: url(./images/contact-h.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 170px;
    padding-bottom: 50px;
}

.con_foot_top-inner {
    top: -100px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    -moz-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    background-color: #fff;
}

.con_foot_top-inner iframe {
    margin-bottom: -10px;
}

@media (max-width: 1280px) {

    .accordian_sec .accordion-button {
        font-size: 20px;
    }

    .accordian_sec .accordion-body {
        font-size: 18px
    }

}

@media (max-width: 991px) {
    .accordian_sec h3 {
        font-size: 30px;
    }

    .accordian_sec .accordion-button {
        font-size: 18px;
    }

    .accordian_sec .accordion-body {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .accordian_sec h3 {
        font-size: 24px;
    }
}





@media (max-width: 1365px) {
    .our-journey .element-content-heading {
        font-size: 26px;
    }

    .latest-sec ul li .themetechmount-overlay .themetechmount-box-content-inner h2 {
        font-size: 18px;
    }

    .profession-team .latest-sec {
        padding-block: 60px;
        padding-top: 30px;
    }

    .time_p_sec .diverder-inner-close {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .profession-team .common-sec.equal_space-padding {
        padding-top: 100px;
    }

    .profession-event .owl-carousel .card-main {
        padding-inline: 5px;
    }

    .profession-event .owl-carousel .card-main .card .card-title {
        font-size: 16px;
    }

    .profession-event .owl-carousel .card-main .card .card-text {
        font-size: 16px;
    }

    .latest-sec ul li {
        width: 50%;
    }

    .latest-sec ul {
        flex-wrap: wrap;
    }

    .latest-sec ul li {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .our-journey .element-content-heading {
        font-size: 20px;
    }

    .our-journey .our-journey-inner-left,
    .our-journey li:nth-child(even) .our-journey-inner-right {
        padding-right: 30px;
    }

    .our-journey .our-journey-inner-right,
    .our-journey li:nth-child(even) .our-journey-inner-left {
        padding-left: 30px;
    }


    .history_sec .right_banner::before {
        width: 60px;
        left: -59px;
    }

    .history_sec .right_banner {
        margin-top: -60px;
    }

    .right_banner-inner {

        padding-bottom: 120px;
    }

    .latest-sec ul li .themetechmount-overlay .themetechmount-box-content-inner h2 {
        font-size: 16px;
    }

    .latest-sec ul li .element-content-desctxt p {
        font-size: 14px;
        line-height: normal;
    }

    .after_t_sec.opning-time.equal_space-padding {
        padding-top: 30px;
    }

    .our-journey li:last-child {
        padding-bottom: 20px;
    }
}

@media (max-width: 991px) {

    .element-content-desctxt p,
    p,
    .accordian_sec .accordion-body {
        font-size: 14px;
    }

    .our-journey .element-content-heading {
        font-size: 16px;
    }

    .profession-team .common-sec.equal_space-padding {
        padding-top: 130px;
    }

    .time_p_sec .diverder-inner-close {
        transform: skew(-20deg);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        max-width: 95%;
        margin: 0 auto;
        margin-top: 10px;
        padding: 10px;
    }

    .time_p_sec .diverder-inner-close::before {
        display: none;
    }

    .time_p_sec .diverder-inner-close span {
        transform: skew(20deg);
        display: inline-block;
    }

    .time_p_sec .diveder_sec li {
        margin-block: 0;
        margin-bottom: 50px;
    }

    .after_t_sec.opning-time.equal_space-padding {
        padding-top: 20px;
    }

    .time_p_sec .diveder_sec li:first-child .diverder-inner-left,
    .time_p_sec .diveder_sec li:first-child .diverder-inner-left::before {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .profession-event .common-sec.equal_space-padding {
        padding-bottom: 20px;
        padding-top: 70px;
    }

    .time_p_sec .diverder-inner-close {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .our-journey .our-journey-inner-left::before,
    .our-journey .our-journey-inner-left::after {
        display: none;
    }

    .our-journey .our-journey-inner-left,
    .our-journey li:nth-child(even) .our-journey-inner-right {
        padding-right: 12px;
    }

    .our-journey .our-journey-inner-right,
    .our-journey li:nth-child(even) .our-journey-inner-left {
        padding-left: 12px;
    }

    .our-journey .our-journey-inner-right {
        text-align: center;
    }

    .our-journey li:nth-child(even) .our-journey-inner-right {
        text-align: center;
        padding-bottom: 0;
    }

    .our-journey li .our-journey-inner {
        flex-direction: column-reverse;
    }

    .our-journey li:nth-child(even) .our-journey-inner {
        flex-direction: column-reverse;
    }

    .our-journey .our-journey-inner-right {
        padding-bottom: 0 !important;
        padding-top: 10px !important;
    }

    .history_sec .container {
        flex-wrap: wrap;
        padding-inline: 0;
        justify-content: center;
    }

    .history_sec .left_banner,
    .history_sec .right_banner {
        width: 100%;
    }

    .history_sec .b-po {
        display: none;
    }

    .back_img {
        background: #040c18;

    }

    .left_banner-inner {
        padding-right: 0;
        align-items: center;
        padding-inline: 30px;
        width: 100%;
        padding-bottom: 60px;
        justify-content: center;
    }

    .right_banner-inner {
        padding-bottom: 0;
        background: #182333;
        padding: 60px 30px;
    }

    .history_sec {
        margin-bottom: 0;
    }

    .profession-team .common-sec.equal_space-padding {
        padding-top: 150px;
    }

    .opning-time.equal_space-padding {
        padding-bottom: 40px;
        padding-top: 70px;
    }

    .after_t_sec.opning-time.equal_space-padding {
        padding-top: 10px;
    }

    .regular-event .blue_sec {
        bottom: 0;
    }

    .regular-event {
        padding-bottom: 70px;
    }

    .video-sec h2 {
        margin-bottom: 0 !important;
        margin-top: 10px !important;
    }

    .video-sec h3 br {
        display: none;
    }

    .vc_column-inner {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .get-qoute-sec {
        padding-bottom: 120px;
    }

    .left_banner-inner {
        padding-top: 60px;
    }

    .profession-event .common-sec.equal_space-padding {
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .accordian_sec .accordion-button {
        font-size: 16px;
    }

    .accordian_sec .accordion-button::before {
        top: -8px;
        left: -8px;
        right: -8px;
    }

    .accordian_sec .accordion-button::after {
        width: 25px;
    }

    .form_sect-last .para-left h3,
    .cont_sbout_sec .social-links-wrapper h2 {
        font-size: 16px;
    }
}

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

@media (max-width: 575px) {
    .latest-sec ul li {
        width: 100%;
        min-height: auto;
    }

    .profession-event .owl-carousel .owl-dots {
        margin-top: 0;
    }

    .profession-event .owl-carousel {
        bottom: -115px;
        margin-top: -120px;
    }

    .profession-team .common-sec.equal_space-padding {
        padding-top: 130px;
    }

    .cont_sbout_sec .social-links-wrapper h2 {
        text-align: center;
    }

    .social-links-wrapper .social-icons {
        margin-top: 0;
    }
}

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

/*28-6-2025*/
.page_header-different {
    top: -130px;
    background: transparent;
}

.page_header-different header.border-bottom {
    background: transparent;
    border: 0 !important;
}

.page_header-different.page-header.is-sticky {
    background: #040C18;
    top: 0;
    padding-block: 13px;
}

.page_header-different .bottom_nav_section .navbar-collapse .nav-item a {
    font-size: 26px;
}

@media (min-width: 992px) {
    .page_header-different .navbar-expand-lg .navbar-nav {
        justify-content: space-evenly;
        width: 100%;
    }
}

.new-home-banner .front_text_inner .hero-section {
    color: white;
}

.new-home-banner .front_text_inner .overlay {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.new-home-banner .front_text_inner .content .subtitle {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.new-home-banner .front_text_inner .content .title {
    font-size: 8rem;
    font-weight: bold;
}


.new-home-banner .front_text_inner .buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.new-home-banner .front_text_inner .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.new-home-banner .front_text_inner .btn:hover {
    background: white;
    color: #000;
}

.new-home-banner .logo-img {

    margin-bottom: 30px;
}

.new-home-banner .logo-img img {
    max-width: 100%;
    max-width: 400px;
}

.new-home-banner.banner_wrapper .front_text_inner {
    max-width: 70%;
    margin: 0 auto;
}

.new-home-banner .front_text_inner .content .established {
    color: #ffffff;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    padding-inline: 0;
    position: relative;
    margin-bottom: 30px;
    font-size: 30px;
}

.new-home-banner .front_text_inner .content .established:before {
    content: "";
    position: absolute;
    left: 0;
    width: 35%;
    top: 50%;
    height: 2px;
    background: #fff;
}

.new-home-banner .front_text_inner .content .established:after {
    content: "";
    position: absolute;
    right: 0;
    width: 35%;
    top: 50%;
    height: 2px;
    background: #fff;
}

.new-home-banner.banner_wrapper .equal_space {
    align-items: flex-start;
}

.bottom_nav_section .navbar-collapse .nav-item a.active {
    color: #0b4422;
}

@media (max-width: 1860px) {
    .new-home-banner .logo-img img {
        max-width: 400px;
        object-fit: cover;
        max-height: 300px;
    }
}

@media (max-width: 1500px) {
    .page_header-different .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 24px;
    }

    .new-home-banner .front_text_inner .btn {
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    .page_header-different .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 17px;
    }

    .new-home-banner .front_text_inner .btn {
        font-size: 18px;
    }

    .new-home-banner .front_text_inner .content .established {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .new-home-banner.banner_wrapper:before {
        display: none;
    }

    .new-home-banner .logo-img {
        justify-content: center;
    }

    .new-home-banner.banner_wrapper .equal_space {
        align-items: center;
    }

    .page_header-different .navbar-light .navbar-toggler {
        position: fixed;
        top: 40px;
        color: #ffffff;
        border-color: #ffffff;
        border: 1px solid #ffffff;
        right: 25px;
    }

    .page_header-different .bar1,
    .page_header-different .bar2,
    .page_header-different .bar3 {
        background-color: #fff;
    }

    .new-home-banner.banner_wrapper .right_banner .videoembed {
        height: 100vh !important;
        min-height: 675px;
    }

    .new-home-banner.banner_wrapper .back_img .right_banner {
        margin-top: 0;
    }

    .page_header-different.page-header.is-sticky {
        background: #00000080;
        top: 0;
        padding-block: 13px;
        min-height: 77px;
    }
}

@media (max-width: 767px) {
    .new-home-banner.banner_wrapper .front_text {
        position: absolute;
        padding-block: 0 !important;
    }

    .new-home-banner .front_text_inner .content .established {
        font-size: 18px;
    }

    .new-home-banner .front_text_inner .btn {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .page_header-different .navbar-light .navbar-toggler.change[aria-expanded="true"] {
        top: 40px;
        right: 25px;
        position: fixed;
        z-index: 999;
    }
}


.page-header.is-sticky nav .navbar-brand img,
.page-header nav .navbar-brand img {
    max-width: 300px;
    position: relative;
    top: 0;
}

.page_header-different .logo-img,
.page_header-different .header-icons {
    display: none;
}

.page_header-different.page-header.is-sticky .logo-img,
.page_header-different.page-header.is-sticky .header-icons {
    display: block;
}

.page-header.is-sticky .bottom_nav_section .navbar-collapse .nav-item a {
    font-size: 20px;
}

.page-header.page-header.is-sticky {
    padding-right: 30px;
}

.page_header-common {
    background: #040C18;
}

.page_header-common .bottom_nav_section .navbar-collapse .nav-item a {
    font-size: 20px;
}

.page_header-common {
    padding-right: 30px;
}

.page_header-common header.border-bottom {
    border-bottom: 0 !important;
}

.page-header.is-sticky {
    padding-block: 0 !important;
}

@media (min-width: 992px) {
    .page_header-common .navbar-expand-lg .navbar-nav {
        justify-content: space-evenly;
        width: 100%;
    }
}

@media (max-width: 1500px) {

    .page-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        max-width: 250px;
    }

    .page-header.is-sticky .bottom_nav_section .navbar-collapse .nav-item a,
    .page_header-common .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 16px;
    }
}

@media (max-width: 1365px) {

    .page-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        max-width: 200px;
    }

    .page-header.is-sticky .bottom_nav_section .navbar-collapse .nav-item a,
    .page_header-common .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 14px;
    }
}

@media (max-width: 1275px) {

    .page-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        max-width: 150px;
    }

    .page-header.is-sticky .bottom_nav_section .navbar-collapse .nav-item a,
    .page_header-common .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 12px;
    }

    .ppage-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        top: -5px;
    }

    .page_header-different.page-header.is-sticky,
    .page-header.is-sticky {
        padding-block: 13px;
    }
}

@media (max-width:991px) {

    .page-header.page-header.is-sticky .header-icons,
    .page_header-common .header-icons {
        right: 100px;
    }

    .header-icons:before {
        right: -30px;
        left: inherit;
    }

    .page-header.page-header.is-sticky,
    .page_header-common {
        background: #040c18;
    }

    .page_header-common.is-sticky nav .navbar-brand img {
        top: 0
    }

    .page_header-common.is-sticky nav .navbar-brand img {
        top: 0
    }

    .page_header-common .navbar-light .navbar-toggler {
        position: fixed;
        top: 30px;
        color: #ffffff;
        border-color: #ffffff;
        border: 1px solid #ffffff;
        right: 25px;
    }

    .page_header-common.is-sticky .navbar-light .navbar-toggler {
        top: 32px;
    }

    .page_header-common .bar1,
    .page_header-common .bar2,
    .page_header-common .bar3 {
        background-color: #fff;
    }

    .page-header.page-header.is-sticky,
    .page_header-common {
        min-height: 65px;
    }

    .search-overlay {
        width: calc(100vw - 170px) !important;
    }

    .page-header.page-header.is-sticky.page_header-different .border-bottom {
        padding-top: 7px;
    }

    .page_header-different.is-sticky .navbar-light .navbar-toggler {
        top: 34px;
    }
}

@media (max-width: 768px) {
    .page-header.page-header.is-sticky.page_header-different .border-bottom {
        padding-top: 0;
    }

    .page_header-different.page-header.is-sticky {
        min-height: 65px;
    }

    .page_header-different.is-sticky .navbar-light .navbar-toggler {
        top: 32px;
    }

    .ppage-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        top: 5px;
    }



    .page_header-common .header-icons {
        top: 3px
    }

    .page-header.page-header.is-sticky .header-icons,
    .page_header-common .header-icons {
        top: 2px;
    }

    .ppage-header nav .navbar-brand img,
    .page-header.is-sticky nav .navbar-brand img {
        top: 1px;
    }

    .page_header-different.is-sticky .header-icons {
        top: 8px !important;
    }
}

.bottom_nav_section .navbar-collapse .nav-item a.active {
    color: #c4fccc;
}

@media (max-width: 991px) {

    .page-header.is-sticky .bottom_nav_section .navbar-collapse .nav-item a,
    .page_header-common .bottom_nav_section .navbar-collapse .nav-item a {
        font-size: 17px;
    }
}

ul.pricelist-block li .service-price strong {
    color: #c4fccc;
    ;
}

.footer-top-col.newsletter h2 {
    color: #c4fccc !important;
}

.footer-top .widget-title:after {
    background-color: #c4fccc;
}

.blue_sec_two .front_text_inner .box-sec {
    border-color: #c4fccc;
}

.blue_sec_two .content-header::before {
    background-color: #c4fccc;
}

.footer_logo img {
    max-width: 90%;
}


/*customizer*/
ol,
ul {
    padding-left: 0;
}

#mega-menu-wrap-primary #mega-menu-primary {
    width: 100%;
    justify-content: space-evenly;
    display: flex;
}

#mega-menu-wrap-primary {
    width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    color: #c4fccc;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    text-transform: uppercase;
}

.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    font-size: 20px !important;

}

ul.pricelist-block li .service-price strong {
    color: #c4fccc;
    ;
}

.footer-top-col.newsletter h2 {
    color: #c4fccc !important;
}

.footer-top .widget-title:after {
    background-color: #c4fccc;
}

.blue_sec_two .front_text_inner .box-sec {
    border-color: #c4fccc;
}

.blue_sec_two .content-header::before {
    background-color: #c4fccc;
}

.footer_logo img {
    max-width: 90%;
}

.diveder_sec li {
    text-align: left;
}

.quicklink-box .righttext-box {
    vertical-align: middle;
}

.cta-widget-area {
    display: flex;
    align-items: center;
}

.cta-widget-area .newsletter {
    width: 100%
}

.newsletter-form input[type=submit] {
    top: 2px !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus {
    color: #c4fccc;
}

.footer-top-col .list ul {
    padding-left: 0;
    width: 100%;
    column-count: 2;
}

.footer-top-col .list ul li {
    width: 100%;
}

.footer-top-col .list ul li a {
    text-decoration: none
}

.footer-top-col .list ul li a:hover {
    color: #c4fccc;
}

.border-bottom-button a {
    text-decoration: none;
}

.footer-bottom p a {
    color: #c4fccc;
    text-decoration: none
}

.footer-bottom p a:hover,
.footer-bottom p a:focus {
    text-decoration: underline
}

header.border-bottom {
    border-bottom: 0 !important
}

.form_sect-last ul,
.social-links-wrapper ul {
    padding-left: 0 !important
}

.cont_sbout_sec .social-links-wrapper .social-icons li a {
    text-decoration: none
}

.accordian_sec .accordion-button {
    color: #040c18 !important;
    background-color: #f8f9fa !important;
    box-shadow: none !important;
}

.accordion-button:hover,
.accordion-button:focus {
    z-index: inherit !important;
}

.breadcrumb-main span a i {
    color: #182333;
    font-weight: 700;
}

.breadcrumb_last {
    color: #0b4422;
    font-weight: bold;
}

.common-banner img {
    width: 100%
}

.innerpage_section {
    padding-bottom: 100px;
}

.wp-block-heading {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: #182333;
    margin-bottom: 17px;
    text-align: left;
    padding-left: 29px;
    position: relative;
}

.wp-block-heading::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #0b4422;
    left: 0;
    width: 6px;
    top: 0;
    height: 95%;
}

.wp-block-buttons .parallelogram .wp-block-button__link {
    padding: 10px 40px !important;
}

.parallelogram .wp-block-button__link {
    z-index: 9;
    position: relative;
    transform: skew(20deg);
    background-color: transparent;
}

.parallelogram .wp-block-button__link:hover,
.parallelogram .wp-block-button__link:focus {
    color: #fff;
}

.wp-block-buttons .parallelogram {
    background-color: #040c18;
}

.wp-block-buttons>.wp-block-button {
    padding: 0 !important;
}

.latest-sec ul {
    padding-left: 0
}

.profession-event .owl-carousel .owl-stage {
    display: flex;
}

.profession-event .owl-carousel.owl-drag .owl-item {
    height: auto;
}

.profession-event .owl-carousel .item,
.profession-event .owl-carousel .card-main,
.profession-event .owl-carousel .card-main .card {
    height: 100%;
}

.page-header.page-header.is-sticky {
    background: #040c18;
}

@media (max-width: 1500px) {


    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 16px !important;
    }
}

@media (max-width: 1365px) {


    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 14px !important;
    }
}

@media (max-width: 1275px) {

    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 12px !important;
    }
}

@media (max-width: 1500px) {
    .page_header-different #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        font-size: 18px !important;
    }
}

@media (max-width: 1280px) {
    .page_header-different #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        font-size: 16px !important;
    }
}

.regular-event {
    padding-bottom: 0
}

.regular-event ul {
    padding-left: 0
}

.get-qoute-sec {
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .get-qoute-sec {
        padding-bottom: 40px;
    }
}

.get-qoute-sec-inner {
    top: -100px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    -moz-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    background-color: #fff;
}

@media (max-width: 1199px) {
    .about-sec .space_area {
        padding-left: 0;
        padding-top: 0;
    }

    .about-sec .ontime-sec {
        padding-top: 0;
    }
}

.footer-top li a {
    text-decoration: none;
}

@media (max-width: 1199px) {
    .footer-top-col {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-sec .space_area {
        padding-top: 30px;
    }

    .about-sec .sec3 {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .container {
        padding-inline: 30px;
    }
}

/*new css*/
ol,
ul {
    padding-left: 0;
}

#mega-menu-wrap-primary #mega-menu-primary {
    width: 100%;
    justify-content: space-evenly;
    display: flex;
}

#mega-menu-wrap-primary {
    width: 100%;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    color: #c4fccc;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    text-transform: uppercase;
}

.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    font-size: 20px !important;

}

ul.pricelist-block li .service-price strong {
    color: #c4fccc;
    ;
}

.footer-top-col.newsletter h2 {
    color: #c4fccc !important;
}

.footer-top .widget-title:after {
    background-color: #c4fccc;
}

.blue_sec_two .front_text_inner .box-sec {
    border-color: #c4fccc;
}

.blue_sec_two .content-header::before {
    background-color: #c4fccc;
}

.footer_logo img {
    max-width: 90%;
}

.diveder_sec li {
    text-align: left;
}

.quicklink-box .righttext-box {
    vertical-align: middle;
}

.cta-widget-area {
    display: flex;
    align-items: center;
}

.cta-widget-area .newsletter {
    width: 100%
}

.newsletter-form input[type=submit] {
    top: 2px !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:focus {
    color: #c4fccc;
}

.footer-top-col .list ul {
    padding-left: 0;
    width: 100%;
    column-count: 2;
}

.footer-top-col .list ul li {
    width: 100%;
}

.footer-top-col .list ul li a {
    text-decoration: none
}

.footer-top-col .list ul li a:hover {
    color: #c4fccc;
}

.border-bottom-button a {
    text-decoration: none;
}

.footer-bottom p a {
    color: #c4fccc;
    text-decoration: none
}

.footer-bottom p a:hover,
.footer-bottom p a:focus {
    text-decoration: underline
}

header.border-bottom {
    border-bottom: 0 !important
}

.form_sect-last ul,
.social-links-wrapper ul {
    padding-left: 0 !important
}

.cont_sbout_sec .social-links-wrapper .social-icons li a {
    text-decoration: none
}

.accordian_sec .accordion-button {
    color: #040c18;
    background-color: #f8f9fa;
    box-shadow: none;
}

.accordion-button:hover,
.accordion-button:focus {
    z-index: inherit !important;
}

.breadcrumb-main span a i {
    color: #182333;
    font-weight: 700;
}

.breadcrumb_last {
    color: #0b4422;
    font-weight: bold;
}

.common-banner img {
    width: 100%
}

.innerpage_section {
    padding-bottom: 100px;
}

.wp-block-heading {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 46px;
    color: #182333;
    margin-bottom: 17px;
    text-align: left;
    padding-left: 29px;
    position: relative;
}

.wp-block-heading::before {
    display: block;
    content: "";
    position: absolute;
    background-color: #0b4422;
    left: 0;
    width: 6px;
    top: 0;
    height: 95%;
}

.wp-block-buttons .parallelogram .wp-block-button__link {
    padding: 10px 40px !important;
}

.parallelogram .wp-block-button__link {
    z-index: 9;
    position: relative;
    transform: skew(20deg);
    background-color: transparent;
}

.parallelogram .wp-block-button__link:hover,
.parallelogram .wp-block-button__link:focus {
    color: #fff;
}

.wp-block-buttons .parallelogram {
    background-color: #040c18;
}

.wp-block-buttons>.wp-block-button {
    padding: 0 !important;
}

.latest-sec ul {
    padding-left: 0
}

.profession-event .owl-carousel .owl-stage {
    display: flex;
}

.profession-event .owl-carousel.owl-drag .owl-item {
    height: auto;
}

.profession-event .owl-carousel .item,
.profession-event .owl-carousel .card-main,
.profession-event .owl-carousel .card-main .card {
    height: 100%;
}

.page-header.page-header.is-sticky {
    background: #040c18;
}

@media (max-width: 1500px) {


    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 16px !important;
    }
}

@media (max-width: 1365px) {


    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 14px !important;
    }
}

@media (max-width: 1275px) {

    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 12px !important;
    }
}

@media (max-width: 1500px) {
    .page_header-different #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        font-size: 18px !important;
    }
}

@media (max-width: 1280px) {
    .page_header-different #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        font-size: 16px !important;
    }
}

.regular-event {
    padding-bottom: 0
}

.regular-event ul {
    padding-left: 0
}

.get-qoute-sec {
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .get-qoute-sec {
        padding-bottom: 40px;
    }
}

.get-qoute-sec-inner {
    top: -100px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    -moz-box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    box-shadow: 0 0 25px 0 rgba(41, 61, 88, .06);
    background-color: #fff;
}

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

@media (max-width: 1199px) {
    .about-sec .space_area {
        padding-left: 0;
        padding-top: 0;
    }

    .about-sec .ontime-sec {
        padding-top: 0;
    }
}

.footer-top li a {
    text-decoration: none;
}

@media (max-width: 1199px) {
    .footer-top-col {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .about-sec .space_area {
        padding-top: 30px;
    }

    .about-sec .sec3 {
        border-right: 0;
    }

    .cont_sbout_sec_right {
        margin-top: 30px
    }

}

@media (max-width: 767px) {
    .container {
        padding-inline: 30px;
    }
}

@media (max-width: 1365px) {
    .wp-block-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .wp-block-button__link {
        font-size: 12px
    }
}

@media (max-width: 1200px) {
    .wp-block-heading {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 991px) {
    .wp-block-heading {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .wp-block-heading {
        font-size: 22px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .wp-block-heading {
        font-size: 20px;
        line-height: 24px;
    }
}

.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
.page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
    line-height: normal;
    text-align: center;
    display: flex;
    align-items: center;
}

@media (max-width: 1275px) {

    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 11px !important;
    }
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    display: block;
    background: #040c18 !important;
    ;
    color: #fff !important;
    ;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
    color: #c2f9ca;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
    background: #fff !important;
    font-weight: normal;
    text-decoration: none;
    color: #040c18 !important;
}

@media (max-width: 991px) {

    #mega-menu-wrap-primary {
        position: fixed;
        top: 10px;
        color: #ffffff;
        border-color: #ffffff;
        border: 1px solid #ffffff;
        right: 25px;
        width: auto;
        background: transparent;
    }

    #mega-menu-wrap-primary .mega-menu-toggle {
        background: transparent;
    }

    .header-icons {
        right: 130px;
    }
}

@media only screen and (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }
}

.fratenity_club-inner {
    padding-bottom: 60px !important
}

.wp-block-buttons {
    justify-content: flex-start !important;
}

.wp-block-buttons .wp-block-button__link {
    width: 100%;
    border: 2px solid #0b4422;
    background-color: #0b4422;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.wp-block-buttons .wp-block-button__link:hover,
.wp-block-buttons .wp-block-button__link:focus {
    border: 2px solid #000000;
    color: #fff;
    background-color: #000000;
}

.wp-block-heading strong {
    font-weight: 600;
}


#mega-menu-wrap-primary:has(.mega-menu-open) #mega-menu-primary[data-effect-mobile^="slide_right"]+button.mega-close {
    display: none !important;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
    z-index: 9 !important;
}

#mega-menu-wrap-primary:has(.mega-menu-open) #mega-menu-primary[data-effect-mobile^="slide_right"]+button.mega-close {
    display: none !important;
}

#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
    z-index: 9 !important;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child,
#mega-menu-wrap-primary {
    z-index: 99;
}

.footer-cta-inner {
    margin-inline: 0 !important;
}

.regular-event ul {
    margin-bottom: 0;
    padding-bottom: 150px;
}

@media (max-width: 991px) {

    .page_header-different #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,
    .page_header-different.page-header.is-sticky #mega-menu-wrap-primary #mega-menu-primary>li>a.mega-menu-link {
        font-size: 13px !important;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:after {
        z-index: 9 !important;
    }

    .popular-event .common-sec h3 {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .fratenity_right_inner .diveder_sec ul {
        padding-left: 0 !important
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-inline: 30px !important;
    }

    .get-qoute-sec-inner {
        top: -50px !important;
    }

    .regular-event ul {
        padding-bottom: 100px;
    }
}

.fratenity_club {
    padding-top: 0 !important;
}

.diverder-inner .bottom-right ul {
    padding-left: 0 !important;
}

.diverder-inner .bottom-right ul li {
    text-align: center;
}

.time_p_sec .diveder_sec ul,
.fratenity_right_inner .diveder_sec ul {
    padding-left: 0 !important;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: center !important;
    padding-top: 10px !important;
    color: #0b4422 !important;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

body .eo-fullcalendar-reset .fc-view-container th {
    background: #0b4422 !important;
    padding-block: 15px !important;
    color: #fff;
}

.fc-toolbar h2 {
    color: #0b4422;
    font-weight: bold;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
}

.fc-state-default {
    margin-left: 0;
    color: #ffffff !important;
    font-weight: bold;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif !important;
    background: #0b4422 !important;
    text-shadow: none !important;
    ;
    border-color: #0b4422 !important;
}

.fc-state-active,
.fc-state-disabled,
.fc-state-down,
.fc-state-hover {
    color: #ffffff !important;
}

body .fc-content {
    background: #0b4422 !important;
    border: 1px solid #0b4422 !important;
}

@media (max-width: 991px) {

    .search-overlay.st-show {
        width: 100vw !important;
        transform: translateX(142px) !important;
        margin-top: 14px;
    }

    .search-overlay .w-search-form-row:before {
        right: 148px
    }
}

@media (max-width: 768px) {
    .search-overlay.st-show {
        width: 100vw !important;
        transform: translateX(160px) !important;

    }

    .search-overlay .w-search-form-row:before {
        right: 165px
    }
}
.footer-rows-inner {
	display: none;
}