@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

/***** General CSS *****/

html {
    overflow-x: hidden;
}

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 50px auto;
    width: 51%;
    text-align: center;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'evogria';
    src: url('../fonts/evogria.otf');
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.sec {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    background-color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 20px;
    background-color: #c4956a;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover::before {
    height: 100%;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 15px;
    width: 20px;
    background-color: #c4956a;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover::after {
    height: 100%;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #282828;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 9999;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}








.theme2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    background-color: #282828;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 20px;
    background-color: #c4956a;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover::before {
    height: 100%;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 15px;
    width: 20px;
    background-color: #c4956a;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover::after {
    height: 100%;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 9999;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}











.theme3 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
    font-size: 13px;
    line-height: 20px;
    color: #c4956a;
    text-transform: uppercase;
    font-weight: 600;
}

.theme3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #c4956a;
    width: 100%;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme3:hover::before  {
    width: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}


/* Buttons Css Ends */

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'evogria';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'evogria';
    font-size: 60px;
    line-height: 65px;
    color: #282828;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-family: 'evogria';
    font-size: 35px;
    line-height: 40px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h4 {
    font-family: 'evogria';
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'evogria';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'evogria';
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

p {
    color: #a6a6a6;
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */
header {
    padding: 0;
}

.topSec {
    background-color: #282828;
    padding: 10px 0;
}

.top-bar-left ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.top-bar-left ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
    transition: ease-in;
    transition-duration: 0.5s;
}

.top-bar-left ul li a:hover {
    color: #c4956a;
    transition: ease-out;
    transition-duration: 0.5s;
}

.top-bar-left ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(90%) saturate(991%) hue-rotate(303deg) brightness(80%) contrast(91%);
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.socials ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    color: #fff;
    font-size: 10px;
    border-radius: 100px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.socials ul li a i:hover {
    color: #000;
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menuSec-right-main {
    position: relative;
}

.menuSec-right-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #282828;
    z-index: -9;
}


/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.menu-box ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    text-decoration: none;
    color: #393939;
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 600;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: ease-in;
    transition-duration: 0.2s;
    transition-delay: 0.2s;
}

.menu-box ul li a:hover {
    color: #fff;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}

.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #282828;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: #282828;
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}


.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menu-box li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box ul ul ul {
    left: 100%;
    top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSec-right {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 15px 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menuSec-right-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #c4956a;
    border-radius: 100px;
    position: absolute;
    top: 30%;
    left: -10%;
    animation: boxShadowPulse 1.5s infinite ease-in-out;
}

@keyframes boxShadowPulse {
    0% {
        box-shadow: 0 0 5px 0 #c4956a;
    }
    50% {
        box-shadow: 0 0 20px 0 #92704f;
    }
    100% {
        box-shadow: 0 0 5px 0 #72573e;
    }
}

.menuSec-right-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15px;
    width: 15px;
}



.menuSec-right-txt h6 {
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 20px;
    color: #fff;
}

.menuSec-right-txt h5 {
    color: #fff;
    font-size: 21px;
    line-height: 25px;
    transition: ease-out;
    transition-duration: 0.5s;
}


.menuSec-right:hover .menuSec-right-txt h5 {
    color: #c4956a;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*header css start */

/*banner css start */

section.main_slider {
    position: relative;
}

section.main_slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35vw;
    background-color: #282828f2;
    z-index: 1;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.banner_text {
    width: 87%;
    position: relative;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.banner_text p {
    color: #fff;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {
    width: 100%;
    height: 100%;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.carousel-indicators [data-bs-target] {
    position: relative;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    /* border-top: 10px solid transparent; */
    /* border-bottom: 10px solid transparent; */
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-indicators .active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
    border: 1px solid #fff;
    border-radius: 100px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #fff;
}

.carousel-item {
    height: 100vh;
}

.carousel-control-prev, .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 50px;
    top: unset;
    bottom: unset;
    position: relative;
}

.carousel-control-next-icon {
    background-image: url('../images/banner-right-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}

.carousel-control-prev-icon {
    background-image: url('../images/banner-left-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 40px;
    width: 40px;
}

.banner-dots-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #c4956a;
    position: absolute;
    bottom: 0;
    left: 35.3%;
    z-index: 999;
    width: 19%;
    height: 70px;
    padding: 0 30px;
}

/*banner css Ends*/

/*About Us Sec Css Starts*/

section.about-sec {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 0 0 0 80px;
}

.about-txt-ex-main {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20px;
    width: 48%;
    margin: 10px 190px 10px auto;
}

.about-txt-ex {
    padding: 8px;
    background-color: #fff;
}

.about-txt-ex-main .about-txt {
    padding: 20px 20px 20px 70px;
    background-color: #282828;
    width: 100%;
}

.about-img img {
    height: 612px;
    width: 100%;
    object-fit: cover;
}

/*About Us Sec Css Ends*/

/*Services Sec Css Starts*/

section.services-sec {
    position: relative;
}

section.services-sec::before {
    content: '';
    position: absolute;
    top: 27%;
    left: 50%;
    height: 53%;
    border-right: 2px solid #0000002b;
}

.services_slider .slick-active {
    opacity: 1;
}

.services-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    gap: 30px;
    background-color: #fff;
}

.services-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.services-card-img {
    width: 100%;
}

.services-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    width: 100%;
    object-fit: cover;
}

/*Services Sec Css Ends*/

/*Portfolio Sec Css Starts*/

section.portfolio-sec {
    position: relative;
    background-image: url('../images/portfolio-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section.portfolio-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #282828e3;
}

.portfolio-txt {
    position: relative;
    z-index: 9;
}

.portfolio-txt * {
    color: #fff;
}

.portfolio-txt {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.portfolio-list ul {
    column-count: 2;
    gap: 60px;
}

.portfolio-list ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 0 0 20px 0;
}

.portfolio-img {
    width: 100%;
}

.portfolio-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 230px;
    width: 100%;
    object-fit: cover;
    object-position: 0 -80px;
}

/*Portfolio Sec Css Ends*/

/*Choose Sec Css Starts*/

.choose-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 40px;
}

.choose-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.choose-card-bottom .choose-txt {
    width: 55%;
}

.choose-txt h5 {
    letter-spacing: 2px;
}

.choose-img {
    width: 100%;
}

.choose-img img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    width: 100%;
}

.choose-img img.choose1 {
    height: 530px;
}

.choose-img img.choose2 {
    height: 345px;
}

/*Choose Sec Css Ends*/

/*Case Sec Css Starts*/

section.case-sec {
    background-color: #f5f5f5;
}

.case-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px 0;
}

.case_slider .draggable {
    padding: 0 150px !important;
}

.case_slider .slick-slide {
    opacity: 1;
}

.case_slider .slick-center .case-card-mian {
    width: 85%;
    margin: 0 auto;
}

.case-card-mian {
    position: relative;
    height: 515px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.case-heading-txt {
    width: 63%;
}

.case-heading-para {
    width: 43%;
}

.case_slider .slick-center .case-card-txt {
    display: flex;
}

.case-card-txt {
    background-color: #282828;
    display: none;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 30px;
    width: 40%;
    position: relative;
    z-index: 999;
}

.case-card-txt h4, .case-card-txt p {
    color: #fff;
}

.case_slider .slick-center + .slick-slide .case-card-img {
    width: 100%;
}

.case-card-img {
    width: 75%;
    margin: 0 0 0 auto;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
}

.case-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0 100%;
}

.case_slider .slick-prev, .case_slider .slick-next {
    z-index: 999;
    height: 35px;
    width: 35px;
}

.case_slider .slick-prev {
    left: 13%;
}

.case_slider .slick-next {
    right: 12%;
}

.case_slider .slick-prev:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/case-left-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.case_slider .slick-next:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/case-right-arrow.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

/*Case Sec Css Ends*/


/*Testimonial Start*/

.texti-box {
    padding: 26px;
    border-radius: 10px;
    position: relative;
    margin: 49px 0 20px 0;
    background-color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.texti-box:hover {
    background-color: #282828;
    transition: ease-out;
    transition-duration: 0.5s;
}

.texti-box:hover * {
    color: #fff !important;
}

.testi-slider .slick-current .texti-box {
    box-shadow: 0 0 20px 0 #00000012;
}

.texti-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -74px 0 0 0;
}

.texti-box ul li img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.texti-box ul li i {
    font-size: 16px;
    color: #f4a600;
    transition: ease-out;
    transition-duration: 0.5s;
}

.texti-box p {
    /* color: #595959; */
    line-height: 26px;
    width: 90%;
    margin: 20px 0 40px 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.texti-box h6 {
    font-size: 17px;
    font-family: 'Poppins';
    text-transform: uppercase;
    color: #374f59;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 10px;
    font-weight: 600;
}

.texti-box h6 span {
    text-transform: capitalize;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

/* .texti-box:before {
    content: '';
    position: absolute;
    background: #374f59;
    width: 110px;
    height: 100px;
    top: 0;
    right: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
} */

.texti-box ul li img.quote-icon {
    border-radius: 0;
    border: none;
    width: 70px;
    height: 60px;
    transition: ease-in;
    transition-duration: 0.5s;
}

/* .texti-box:hover img.quote-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(102%) contrast(102%);
    transition: ease-out;
    transition-duration: 0.5s;
} */

section.testi-sec {
    padding: 80px 0;
}

.testi-slider .slick-active {
    opacity: 1;
}
.testi-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}
.testi-slider .slick-slide {
    margin: 0px 10px;
    position: relative;
}

.testi-slider .slick-next:before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000 !important;
}

.testi-slider .slick-prev:before {
    content: '\f060';
    font-family: 'Font Awesome 6 Pro';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000 !important;
    opacity: 1 !important;
}

.testi-slider .slick-prev {
    left: -45px;
}

.testi-head h3 {
    color: #000;
    font-weight: 600;
}

.texti-user-start ul {
    justify-content: end;
    gap: 5px;
    margin: 0;
}

.texti-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 0 0;
    border-top: 1px solid #0000002b;
}

.texti-box:hover .texti-user {
    border-top: 1px solid #fff;
}

.texti-user-txt h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin: 0;
    transition: ease-out;
    transition-duration: 0.5s;
}

.testi-slider .slick-current img.quote-icon {
    display: flex;
}

img.quote-icon {
    /* display: none; */
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 60px;
    position: absolute;
    top: -8.3%;
    right: 9%;
}

.texti-user-txt p {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.testi-slider .slick-center img.quote-icon {
    top: 7%;
    right: 9%;
    opacity: 0.08;
}

/*Testimonial End*/

/* Footer sectrion css */

.footerSec {
  /* padding-top: 70px; */
  /* background: #282828; */
  position: relative;
}

.footerSec p {
  font-weight: 500;
  transition: 0.9s;
}

ul.social {
  display: flex;
  gap: 10px;
}

ul.social li a i {
  width: 35px;
  height: 35px;
  border-radius: 45px;
  color: #fff;
  background: #c4956a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.6s;
  border: 1px solid transparent;
  opacity: 1 !important;
}

ul.social li a i:hover {
  background: transparent;
  transform: rotate(360deg) scale(1.3);
  border: 1px solid #fff;
}

footer ul li a {
  color: #fff;
  opacity: 0.5;
  transition: 0.6s;
  font-weight: 400;
  font-size: 13px;
}

footer ul li a:focus {
    color: #fff;
    opacity: 1;
}

ul.social li a {
  color: #fff;
  opacity: 1;
  transition: 0.6s;
}

ul.social li a:hover {
  opacity: 1;
  color: #fff;
  color: #000;
}

/* .footerSec .row {
  position: relative;
  padding-top: 80px;
} */

.footer-btm {
    position: relative;
}

.footer-main .footer-btm .row {
  padding-top: 24px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.footer-main .footer-btm .row p {
  opacity: 49%;
  font-weight: 400;
  font-size: 13px;
}

.footer-main .footer-btm .row:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  background: #ffffff69;
  opacity: 0.2;
}

/* .footerSec .row:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0px auto;
  background: #ffffff69;
  opacity: 0.2;
} */

.news-letter ul li a {
  gap: 20px;
  line-height: 25px;
  margin: 8px 0;
  opacity: 0.5;
}

.news-letter ul li a:hover {
  transform: translate(3px, 0px);
}

footer ul li a:hover {
  opacity: 1;
  color: #fff !important;
}

ul.social li a i.fa.fa-twitter:before {
  width: 14px;
  height: 14px;
  background-image: url(../images/twitter-x.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  filter: brightness(0) invert(1);
}

ul.social li a:hover {
  text-decoration: unset !important;
}

footer .foot-products {
  position: relative;
  left: unset;
}

.footer-about p {
    color: #ffffff75;
}

.footer-logo {
    /* padding: 0 0 20px 0; */
    /* border-bottom: 1px solid #ffffff36; */
    margin: 0 0 20px 0;
    width: 100%;
}

.foot-useful-link {
    margin: 0 0 0 50px;
}

.foot-useful-link h5 {
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    /* border-bottom: 1px solid #ffffff36; */
    margin: 0 0 25px 0 !important;
    display: inline-flex;
}

.foot-products h5 {
    /* border-bottom: 1px solid #ffffff36; */
    margin: 0 0 25px 0 !important;
    display: inline-flex;
}

.foot-quick-links h5 {
    /* border-bottom: 1px solid #ffffff36; */
    margin: 0 0 25px 0 !important;
    display: inline-flex;
}

.news-letter h5 {
    /* border-bottom: 1px solid #ffffff36; */
    margin: 0 0 25px 0 !important;
    display: inline-flex;
}

.copy-txt p a {
    color: #fff;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.foot-useful-link ul, .foot-products ul, .foot-quick-links ul, .news-letter ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.footer-main {
    background-color: #282828;
    padding: 80px 0 0 0;
}

/* Footer section end */

.top-bar-left ul li a {
    font-family: 'evogria';
}

.menuSec-right-txt h6 {
    font-family: 'evogria';
}

.col-lg-4.col-12 h4 {
    margin-bottom: 20px;
}

.col-lg-8.col-12 h4 {
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px !important;
}

.contact-side-bar {
    padding-bottom: 10px !important;
}


/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.banner-dots-arrows {
    left: 35%;
}

/* Home css Ends */




}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {

    
/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.case-card-txt {
    width: 60%;
}

.banner-dots-arrows {
    left: 35%;
}

/* Home css Ends */


}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {


.heading {
    width: 56%;
}


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.menuSec-right-txt h5 {
    font-size: 17px;
    line-height: 20px;
}

.menuSec-right-icon {
    left: -12%;
}

.banner_text {
    width: 91%;
}

.banner-dots-arrows {
    left: 35%;
}

.about-txt-ex-main {
    width: 55%;
    margin: 10px 80px 10px auto;
}

.choose-card-bottom .choose-txt {
    width: 60%;
}

.case-card-txt {
    width: 70%;
}



/* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {

.heading {
    width: 56%;
}


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.menuSec-right-txt h5 {
    font-size: 17px;
    line-height: 20px;
}

.menuSec-right-icon {
    left: -12%;
}

.banner_text {
    width: 91%;
}

.banner-dots-arrows {
    left: 35%;
}

.about-txt-ex-main {
    width: 55%;
    margin: 10px 80px 10px auto;
}

.choose-card-bottom .choose-txt {
    width: 60%;
}

.case-card-txt {
    width: 70%;
}



/* Home css Ends */


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */






}

@media only screen and (min-width: 768px) and (max-width: 991px) {


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */




}

@media only screen and (min-width: 520px) and (max-width: 767px) {

/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */


}




/*Media Query End*/

