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

/* font-family: "Lato", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
    /* text-align: justify !important; */
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: #000;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.5px;
    background-color: #fff;
}

:root {
    scroll-behavior: inherit;
    --theme-primary-color: #0d3172;
    --theme-green: #4F9E29;
    /* --theme-orange: #ffae00; */
    --theme-orange: #ED8524;
    --white: #fff;
    --black: #000;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}



h1,
.h1-title {
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
}

h2,
.h2-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
}

h3,
.h3-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
}

h4,
.h4-title {
    font-size: 20px;
    line-height: 1.2;

}

h5,
.h5-title {
    font-size: 18px;
    line-height: 1.2;

}




a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--theme-orange);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

a:hover {
    color: var(--theme-green);
}

img {
    max-width: 100%;
}

.sub-heading {
    color: var(--theme-orange);
    font-size: 24px;
    text-transform: uppercase;
}

.cmn-gap {
    padding: 70px 0;
}

.cmn-btn {
    padding: 10px 20px;
    background-color: var(--theme-primary-color);
    display: inline-block;
    color: var(--white) !important;
    font-size: 15px;
    text-transform: capitalize;
    min-width: 150px;
    text-align: center;
}

.cmn-btn:hover {
    background-color: var(--black);
}

.cmn-head h2 {
    text-transform: uppercase;
    color: var(--theme-primary-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.cmn-head {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.cmn-head p {
    padding-bottom: 20px;
    position: relative;
}

.cmn-head p::before {
    content: '';
    background: var(--theme-orange);
    height: 2px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    height: 42px;
    padding: 0 16px;
    outline: none !important;
    background-color: #f5f5f5;
    border: 1px solid #E8E8E8;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 130px;
    outline: none !important;
    background-color: #f5f5f5;
    border: 1px solid #E8E8E8;
    resize: none;
}

select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 11px;
    background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 42px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;

    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}







/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}



/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: var(--theme-orange);
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 76px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: var(--theme-green);
}

#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}




/* navbar*/

.main-head {
    background-color: transparent;
    position: relative;
    width: 100%;
    padding: 8px 0;
    z-index: 999;
    background-color: #212121;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width:992px) {
    .navbar-brand {
        margin-bottom: -80px;
    }
}

.navbar-brand img {
    width: 130px;
}

.navbar-brand span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-orange);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 28px;
    margin-top: 5px;
}

.navbar-brand:hover span {
    color: var(--theme-green);
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

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

.nav-menu-right .user-icon,
.nav-menu-right .social-icon {
    display: flex;
    align-items: center;
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 0;
}

.nav-menu-right .user-icon {
    margin-left: 30px;
}

.nav-menu-right .social-icon li:not(:last-child) {
    margin-right: 12px;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: var(--theme-orange);
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: 500;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--theme-orange);
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: var(--theme-orange);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

.navbar-nav>li.menu-item-has-children {
    margin-right: 30px;
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    /* border: 1px solid rgba(0, 0, 0, 0.15); */
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: max-content;
    min-width: 180px;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.sub-menu>li>a {
    color: var(--theme-orange);
    display: block;
    width: 100%;
    padding: 10px 25px 10px 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: var(--theme-orange);
    color: #fff;
}



.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/




/* Banner start  */


.banner-slide {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 0;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent); */
    z-index: 2;
}

.banner-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    z-index: 3;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.banner-cont h1,
.banner-cont .h1-title {
    color: var(--white);
}

.banner-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-slider .slick-track,
.cmn-slider .slick-track {
    display: flex !important;
}

.banner-slider .slick-slide,
.cmn-slider .slick-slide {
    height: inherit !important;
}



.banner-slider .slick-dots {
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    padding-inline-start: 0;
    z-index: 9;
}

.banner-slider .slick-dots li {
    height: 16px;
    width: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slider .slick-dots li.slick-active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--theme-orange);
}


.banner-slider .slick-dots li:not(:last-child) {
    margin-right: 20px;
}

.banner-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    font-size: 0;
    padding: 0;
    border: 0;
    opacity: 0.9;
}

.banner-slider .slick-dots li.slick-active button {
    background-color: var(--theme-orange);
}

.banner-slider .slick-dots li.slick-active button {
    opacity: 1;
}

/* Banner end */


/* Feature start */
.feature-row {
    --bs-gutter-y: 30px;
}

@media(min-width:1280px) {
    .feature-row {
        --bs-gutter-x: 50px;
    }
}

.feature-content:not(:last-child) {
    margin-bottom: 40px;
}

.feature-content:nth-child(even) .feature-row {
    flex-direction: row-reverse;
}

/* Feature end */

/* Testimonials start */
.testimonial-sec {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
}

.testimonial-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(images/overlay.png);
}

.testi-slider {
    position: relative;
    z-index: 3;
}

.testi-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    width: 36px;
    height: 48px;
    z-index: 9;
    border: none !important;
}

.testi-slider .slick-prev {
    background: url(images/left.png) center/32px no-repeat #000;
    left: -20px;
}

.testi-slider .slick-next {
    background: url(images/right.png) center/32px no-repeat #000;
    right: -20px;
}

.testi-slider-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.test-slide {
    position: relative;
    margin: 2em auto 0;
    background: rgba(253, 253, 253, 0.21);
    padding: 3em 5em 2em;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}


.test-slide h2 {
    color: var(--theme-orange);
    line-height: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-name {
    font-size: 1.1em;
    color: var(--theme-orange);
}

.client-image {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    width: 80px;
    height: 80px;
}

/* Testimonials end */


/* services start */

.services-row {
    --bs-gutter-y: 35px;
}

.service-inner-row {
    --bs-gutter-y: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.service-icon i {
    color: var(--theme-orange);
    font-size: 2em;
}

.service-card:hover i {
    color: var(--white);
}

.service-icon {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
    background: var(--theme-orange);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 70px;
    height: 70px;
    text-align: center;
    padding: 1.4em 0;
    margin: 0 auto;
}


.service-icon::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 100%;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


.service-card:hover .service-icon::before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}


.service-card h3 {
    color: #000;
    font-size: 20px;
    margin: 0.5em 0 0 0;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
}


.service-image {
    height: 100%;
}

.service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* services end */


/* Under service start */

.under-ser-sec {
    display: flex;
    flex-wrap: wrap;
}

.under-ser-image,
.under-ser-text {
    width: 50%;
}


.under-ser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.under-ser-text {
    background: var(--theme-orange);
    padding: 4%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.under-ser-text h2 {
    color: var(--theme-primary-color);
    text-transform: capitalize;
}

/* Under service end */

/* Newsletter start */
.newsletter-area form {
    display: flex;
    width: 100%;
    justify-content: center;
}

.newsletter-area input[type="email"] {
    width: 86%;
    padding: .8em;
    font-size: 1em;
    color: #999;
    outline: none;
    border: 1px solid #999;
    border-right: none;
    background: none;
    -webkit-appearance: none;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    height: 50px;
    font-size: 14px;
}

.newsletter-area input[type="submit"] {
    color: #999;
    font-size: 1em;
    outline: none;
    padding: .8em 1.7em;
    border: 1px solid #999;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-appearance: none;
    background: none;
    flex-shrink: 0;
    font-size: 14px;
    height: 50px;
}

.newsletter-area form:hover input[type="email"] {
    border-color: #ffae00;
}

.newsletter-area form:hover input[type="submit"] {
    border-color: #ffae00;
    background: #ffae00;
    color: #fff;
}

/* Newsletter end */

/* footer start */
.main-footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-row {
    --bs-gutter-y: 30px;
}

.main-footer a {
    color: var(--white);
}

.main-footer a:hover {
    color: var(--theme-orange);
}

.footer-logo a {
    width: 100px;
    margin-bottom: 16px;
}

@media(min-width:1280px) {
    .footer-logo {
        max-width: 80%;
    }
}

.footer-title {
    font-size: 20px;
    color: var(--theme-orange);
    margin-bottom: 16px;
}

.footer-links {
    padding-inline-start: 0;
    list-style: none;
}

.footer-links li:not(:last-child) {
    margin-bottom: 8px;
}

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

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--white);
    text-align: center;
}

/* footer end */

.yearofexp {
    min-height: 450px;
    position: relative;
    margin-top: 70px;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.yearofexp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.yearofexp img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.yearofexp h2 {
    position: relative;
    z-index: 3;
    text-align: center;
    font-size: 70px;
    color: var(--white);
    text-transform: uppercase;
}

.yearofexp h2 span {
    color: var(--theme-orange);
}

.counter-row {
    align-items: center;
    justify-content: center;
    --bs-gutter-y: 24px;
}

.counter-wrap {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 45px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 3px 8px #fafafa;
}

.counter-inner .counter {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: var(--theme-orange);
}

.counter-inner {
    line-height: 1.1;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

/* Innner page start */

.inner-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.inner-banner img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.inner-banner-cont {
    z-index: 3;
    position: relative;
}

.inner-banner-cont h1 {
    text-align: center;
    color: var(--white);
    z-index: 3;
}


.product-row-wrap {
    padding: 40px 0;
    border-top: 1px solid var(--black);
}

.product-row-wrap:nth-child(even) .product-row {
    flex-direction: row-reverse;
}

.product-row {
    --bs-gutter-y: 24px;
}

.image-row {
    --bs-gutter-y: 24px;
}

.pro-img-area {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
}

.image-row-2 {
    margin-top: 4px;
}

.image-row-2 .pro-img-area {
    padding-bottom: 62.5%;
}

.pro-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mission-row {
    --bs-gutter-y: 24px;
}

.mission-card {
    padding: 40px;
    border: 2px solid var(--theme-orange);
}

.mission-card h2 {
    color: var(--theme-orange);
}

.diff-sec {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


.diff-area-cont {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    line-height: 1.3;
    font-weight: 300;
    font-size: 15px;
    z-index: 3;
    position: relative;
}

.diff-area-cont h2 {
    text-transform: uppercase;
    color: var(--theme-orange);
}

.diff-area-cont .cmn-btn {
    background-color: var(--theme-orange);
}

.our-team-row {
    --bs-gutter-y: 24px;
}

.our-team-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.our-team-img img {
    width: 100%;
}

.our-team-cont {
    padding: 20px;
    text-align: center;
}

.our-team-cont h3 {
    font-size: 20px;
    color: var(--theme-orange);
    margin-bottom: 10px;
}

.our-team-cont p {
    margin-bottom: 10px;
}

.our-team-cont ul {
    padding-inline-start: 0;
    list-style: none;
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 0;
}

/* gallery */

.gall-select-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.gall-select-area select {
    border: 1px solid var(--theme-orange);
    min-width: 250px;
}

.gallery-select {
    border-bottom: 1px solid var(--theme-orange);
    padding-bottom: 20px;
}

.gallery-row {
    --bs-gutter-y: 24px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 66.666%;
    border-radius: 10px;
}

.gallery-card::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(0deg, var(--theme-primary-color), transparent);
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.gallery-card:hover::before {
    height: 100%;
}


.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.gallery-card:hover img {
    transform: scale(1.2);
}


/* Contact */
.form-outer-row {
    --bs-gutter-y: 40px;
}

.form-row {
    --bs-gutter-y: 20px;
}

@media(min-width:1280px) {
    .form-outer-row {
        --bs-gutter-x: 60px;
    }
}

.form-col label {
    font-size: 1.2em;
    color: #212121;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-col input {
    font-size: 15px;
}

.form-col input[type="submit"] {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    font-size: 16px;
    max-width: 250px;
}

.form-col input[type="submit"]:hover {
    background-color: var(--theme-orange);
}

.map-area iframe {
    width: 100%;
    height: 400px;
}

.address-list {
    list-style: none;
    padding-inline-start: 0;
    margin-top: 20px;
}

.address-list li i {
    margin-right: 8px;
}

.address-list li:not(:last-child) {
    margin-bottom: 8px;
}

/* Home slider */

/* .upcmg-sec .swiper-slide {
    padding: 30px 0;
} */

.upcmg-card {
    text-align: center;
    padding: 10px;
    border: 2px solid var(--theme-orange);
    isolation: isolate;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

.upcmg-card:hover .upcmg-card-img img {
    transform: scale(1.2);
}

.upcmg-card:hover {
    background-color: var(--theme-orange);
}

.upcmg-card:hover .upcmg-card-text {
    color: var(--white);
}

.upcmg-card:hover .upcmg-card-text h3 {
    color: var(--white);
}

.upcmg-card-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 110%;
    margin-bottom: 20px;
}

.upcmg-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.upcmg-card-text h3 {
    margin-bottom: 8px;
    line-height: 1;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.upcmg-card-text {
    transition: all 0.3s ease-in-out;
}


/* New 6-10-24 */
.why-us .why-us-item {
    transition: all ease-in-out 0.5s;
    overflow: hidden;
    position: relative;
    transform: translateY(0px);
    padding: 30px;
}

.why-us .why-us-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: all ease-in-out 0.5s;
    background: #64A803 !important;
    cursor: pointer;
}

.why-us .why-us-item .why-us-content {
    z-index: 1;
    position: relative;
}

.why-us .why-us-item:hover::before {
    height: 100%;
    transition: all ease-in-out 0.5s;
}

.why-us-icon {
    margin-bottom: 30px;
    color: var(--theme-orange);
}

.why-us .why-us-item .why-us-icon [class^="flaticon-"]::before,
.why-us .why-us-item .why-us-icon i {
    font-size: 58px;
}

.why-us .why-us-item:hover i,
.why-us .why-us-item:hover a,
.why-us .why-us-item:hover p,
.why-us .why-us-item:hover h4 {
    color: #fff !important;
    transition: all ease-in-out 0.5s;
}


.slide-text {
    /* padding: 30px; */
    background-color: var(--theme-orange);
    text-align: center;
    border-radius: 8px;
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 175px;
    text-align: center;
}

.category-item {
    position: relative;
    background-color: #FACD8E !important;
}

.category-item i {
    font-size: 36px;
}

.category-item img {
    width: auto !important;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    transition: all ease-in-out 0.5s;
    background: #64A803 !important;
    cursor: pointer;
}

.category-item .trending-topic-content {
    position: relative;
    z-index: 1;
}

.category-item:hover::before {
    width: 100%;
    transition: all ease-in-out 0.5s;
}

.trending-topic-counter::before {
    content: '';
    background: #f1f1f1;
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;
}

.trending-topic-counter .trending-topic-counter-inner {
    width: 65%;
    margin: 0 auto;
    padding: 40px 40px 100px;
}

.trending-topic-counter .trending-topic-counter-inner .section-title::before {
    display: none;
}

.trending-topic-counter .trending-topic-counter-inner .section-title h2 {
    font-weight: 700;
}

.trending-topic-counter .trending-topic-counter-inner .counter-item {
    padding: 20px !important;
    border: 1px solid #f1f1f1a6;
}

.side-slider .slick-list {
    margin: -12px;
}

.side-slider .slick-slide {
    padding: 12px;
}


.trend-full {
    box-shadow: 0 0 15px #cccccc37;
    background-color: #fff;
    border-radius: 10px;
}

.trending {
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.trending .trend-item,
.trending .trend-item1,
.trending .trend-item2 {
    position: relative;
    transition: all ease-in-out 0.5s;
    overflow: hidden;
}

.trending .trend-item::before,
.trending .trend-item1::before,
.trending .trend-item2::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    background: #64A803;
    height: 4px;
    transition: all ease-in-out 0.5s;
    z-index: 2;
}

.trending .trend-item .trend-meta,
.trending .trend-item1 .trend-meta,
.trending .trend-item2 .trend-meta {
    position: absolute;
    top: -28px;
    right: 20px;
}

.trending .trend-item .trend-image,
.trending .trend-item1 .trend-image,
.trending .trend-item2 .trend-image {
    position: relative;
}

.trending .trend-item .trend-image img,
.trending .trend-item1 .trend-image img,
.trending .trend-item2 .trend-image img {
    transition: all ease-in-out 0.5s;
    width: 100%;
}

.trending .trend-item .trend-image .trend-content,
.trending .trend-item1 .trend-image .trend-content,
.trending .trend-item2 .trend-image .trend-content {
    z-index: 1;
}

.trending .trend-item .trend-image,
.trending .trend-item .trend-image1,
.trending .trend-item1 .trend-image,
.trending .trend-item1 .trend-image1,
.trending .trend-item2 .trend-image,
.trending .trend-item2 .trend-image1 {
    transition: all ease-in-out 0.5s;
    overflow: hidden;
}

.trending .trend-item .trend-content1,
.trending .trend-item1 .trend-content1,
.trending .trend-item2 .trend-content1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.trending .trend-item:hover,
.trending .trend-item1:hover,
.trending .trend-item2:hover {
    transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover::before,
.trending .trend-item1:hover::before,
.trending .trend-item2:hover::before {
    transition: all ease-in-out 0.5s;
    width: 100%;
}

.trending .trend-item:hover .trend-image img,
.trending .trend-item1:hover .trend-image img,
.trending .trend-item2:hover .trend-image img {
    transform: scale(1.1);
    transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover .color-overlay,
.trending .trend-item1:hover .color-overlay,
.trending .trend-item2:hover .color-overlay {
    height: 100%;
    transition: all ease-in-out 0.5s;
}

.trending .trend-item:hover .color-overlay,
.trending .trend-item1:hover .color-overlay,
.trending .trend-item2:hover .color-overlay {
    height: 100%;
    transition: all ease-in-out 0.5s;
}

.trending .trend-item1::before {
    display: none;
}

.trending .trend-item2 {
    position: relative;
    transition: all ease-in-out 0.5s;
    height: 100%;
    overflow: hidden;
}

.trending .trend-item2>a {

    display: block;
}

.trending .trend-item2::before {
    display: none;
}

.trending .trend-image1 {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}

.trending .trend-image1>a {
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
    display: inline-block;
    transition: all ease-in-out 0.5s;
}

.color-overlay {
    top: inherit;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #000000);
    height: 50%;
    opacity: 0.6;
}

.price-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.price-btn .cmn-btn {
    padding: 8px 14px;
    min-width: 120px;
}


.partner-item img {
    max-width: 220px;
}

.video-iframe iframe {
    width: 100%;
    height: 315px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

.fancy-pop-up {
    height: 315px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.fancy-pop-up::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.fancy-pop-up img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.fancy-pop-up .play-btn {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transform-origin: center;
}

.fancy-pop-up .play-btn:hover {
    transform: scale(1.1) translate(-50%, -50%);
}


/* .slick-track,
.slick-list {
-webkit-perspective: 2000 !important;
-webkit-backface-visibility: hidden !important;
} */


.myUpcmgVideo .upcmg-card-img {
    padding-bottom: 0;
}

.myUpcmgVideo .fancy-pop-up {
    border-radius: 0;
}


.tripdetails-area h2 {
    margin-bottom: 12px;
}

.big-img-area img {
    width: 100%;
}

.tip-details-hightlight {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.accr-item {
    background-color: var(--white);
    border: 1px solid var(--theme-orange);
    border-radius: 10px;
}

.accr-item:not(:last-child) {
    margin-bottom: 10px;
}



.accr-con {
    display: none;
    padding-bottom: 16px;
    padding-top: 16px;
    padding-right: 50px;
    padding-left: 28px;
    font-weight: 300;
    font-size: 18px;
}

.accr-hd,
.accr-head {
    padding: 24px 50px 24px 28px;
    font-weight: 500;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    line-height: 1;
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
}

.accr-hd::before,
.accr-head::before {
    content: '';
    width: 14px;
    height: 2px;
    background-color: #152228;
    display: inline-block;
    position: absolute;
    right: 24px;
}

.accr-hd::after,
.accr-head::after {
    content: '';
    width: 14px;
    height: 2px;
    background-color: #152228;
    display: inline-block;
    position: absolute;
    right: 24px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.accr-item.open .accr-hd {
    background-color: var(--theme-orange);
    border-radius: 8px 8px 0 0;
}

.accr-item.open .accr-hd::after,
.accr-item-wrap.open .accr-head::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.trip-img {
    height: 250px;
    margin-bottom: 16px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.trip-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.trip-select-col select,
.trip-select-col input[type="submit"] {
    border: 1px solid var(--theme-orange);
    width: 100%;
    height: 50px;
    border-radius: 6px;
}

.trip-select-col input[type="submit"] {
    font-size: 18px;
    font-weight: 700;
}

/* ========== responsive css =========== */


@media(min-width:1280px) {
    .container {
        max-width: 1220px;
    }

    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media(min-width:1440px) {
    .container {
        max-width: 1380px;
    }
}

@media(min-width:1600px) {
    .container {
        max-width: 1440px;
    }
}

@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: block;
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;

    }

    .sub-menu>li.menu-item-has-children .clickD {
        right: 2px;
        -webkit-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg);
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}



@media(max-width:1199px) {
    .navbar-brand span {
        font-size: 20px;
    }

    .accr-hd,
    .accr-head {
        font-size: 20px;
        padding: 20px 50px 20px 28px;
    }
}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 22px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 11px;
        right: 3px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
        margin-right: 0;
    }

    .navbar-nav>li.current-menu-item>a:after {
        display: none;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/

    .banner-slide {
        min-height: 100dvh;
    }

}


@media (max-width: 991px) {

    body {
        line-height: 1.4;

    }


    .service-card h3 {
        font-size: 18px;
    }

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        order: 3;
    }

    .nav-menu-right {
        margin-left: auto;
    }

    .nav-menu-right .user-icon {
        margin-left: 16px;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: var(--theme-orange);
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 10px;
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }


    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
        padding-top: 50px;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {

        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden;
    }

    /* push nav end */


    .mission-card {
        padding: 20px;
    }

    .video-iframe iframe,
    .fancy-pop-up {
        height: 200px;
    }

    .accr-con {
        font-size: 16px;
    }

}

@media (max-width: 767px) {

    .navbar-brand img {
        width: 70px;
    }

    .navbar-brand span {
        font-size: 15px;
    }

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    .under-ser-sec {
        flex-direction: column;
    }

    .under-ser-image,
    .under-ser-text {
        width: 100%;
    }

    .feature-content-text,
    .under-ser-text {
        text-align: center;
    }

    .under-ser-text {
        align-items: center;
    }

    .test-slide {
        padding: 20px 35px;
    }

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

    .testi-slider .slick-next {
        right: 0;
    }

    .testi-slider .slick-prev {
        left: 0;
    }

    .yearofexp h2 {
        font-size: 50px;
    }

    .trending .trend-item2>a {
        min-height: 230px;
    }

    .price-btn {
        justify-content: center;
    }

    .accr-hd,
    .accr-head {
        font-size: 18px;
    }
}

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

@media (max-width: 479px) {

    .service-card h3 {
        font-size: 16px;
    }
    h1,
    .h1-title {
        font-size: 35px;
    }

    h2,
    .h2-title {
        font-weight: 700;
        font-size: 28px;
        line-height: 1;
    }

    .yearofexp h2 {
        font-size: 45px;
    }

    .accr-hd,
    .accr-head {
        font-size: 17px;
        padding: 20px 30px 20px 28px;
    }

    .accr-hd::before,
    .accr-head::before,
    .accr-hd::after,
    .accr-head::after {
        right: 10px;
    }

}

@media (max-width: 359px) {
    .navbar-brand span {
        font-size: 10px;
    }

    .navbar-brand img {
        width: 60px;
    }
}


@media(min-width:300px) {

    .feature-content-text,
    .under-ser-text {
        text-align: justify;
    }
}