@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;
}

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;
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 50px auto !important;
    width: 58%;
    text-align: center;
}


.wrapper {
  align-items: center;
  background-image: linear-gradient(to right, #b1a3a6, #caaba1, #866173, #caaba1, #054f7d);
  background-size: 600%;
  background-position: 0 0;
  /* box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.5); */
  /* display: flex; */
  /* font-family: "Lato", Arial, sans-serif; */
  height: 100%;
  justify-content: center;
  /* Animation */
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-name: gradients;
}

@keyframes gradients {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 0;
  }
  50% {
    background-position: 90% 0;
  }
  60% {
    background-position: 60%;
  }
  75% {
    background-position: 40%;
  }
  100% {
    background-position: 0 0;
  }
}

.slicknav_menu {
    background: #4e2782;
}

.slicknav_nav a:hover {
    background: #000;
}

/***** 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: 'CutmarkBold';
    src: url('../fonts/Cutmark-Bold.ttf');
}

@font-face {
    font-family: 'CutmarkMedium';
    src: url('../fonts/Cutmark-Medium.ttf');
}

@font-face {
    font-family: 'CutmarkRegular';
    src: url('../fonts/Cutmark-Regular.ttf');
}


/***** 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 {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 55px;
    padding: 0 5px 0 20px;
    border: 2px solid #fff;
    border-radius: 1000px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    background-color: #fff;
    border: 2px solid #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 20px;
    font-family: 'CutmarkRegular';
    text-transform: uppercase;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
    color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    height: 93%;
    width: 93%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon::before {
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon::after {
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    object-fit: contain;
    padding: 10px;
    border-radius: 100px;
    position: relative;
    z-index: 9999;
    transition: ease-out;
    transition-duration: 0.5s;
}








.theme2 {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    height: 55px;
    padding: 0 5px 0 20px;
    background-color: #fff;
    border: 2px solid #4e2782;
    /* box-shadow: 0 0 20px 0px #0000002e; */
    border-radius: 1000px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover {
    background-color: #4e2782;
    border: 2px solid #fff;
    box-shadow: unset;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 20px;
    font-family: 'CutmarkRegular';
    text-transform: uppercase;
    color: #4e2782;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-icon {
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme2 span.theme2-icon::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    height: 93%;
    width: 93%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: #4e2782;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon::before {
    background-color: #4e2782;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon::after {
    background-color: #ffffff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2 span.theme2-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    object-fit: contain;
    padding: 10px;
    border-radius: 100px;
    position: relative;
    z-index: 9999;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(48%) saturate(2733%) hue-rotate(249deg) brightness(86%) contrast(97%);
}






/* 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: 'CutmarkMedium';
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-family: 'CutmarkRegular';
    font-size: 55px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-family: 'CutmarkRegular';
    font-size: 30px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'CutmarkRegular';
    font-size: 25px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'CutmarkRegular';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'CutmarkRegular';
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

p {
    color: #000;
    font-size: 14px;
    line-height: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    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: 20px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid #ffffff5e;
}
.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menuSec {
    padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.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: #fff;
    padding: 40px 20px;
    font-size: 16px;
    font-family: 'CutmarkRegular';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in;
    transition-duration: 0.5s;
}

.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 2px solid #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    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;
}

.menu-box ul li.active a::before {
    width: 100%;
}

/*header css start */

/*banner css start */

section.main_slider {
    position: relative;
}

.carousel-item {
    height: 115vh;
}

.main-banner-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.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 [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    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-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: linear-gradient(90deg, rgb(128 70 214 / 89%) 0%, rgb(81 40 134 / 84%)  100%);
}

.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: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.banner_text p {
    color: #fff;
    width: 69%;
}

.banner_img {
    padding: 40px;
    border-radius: 30px 0 0 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: -40px;
    height: 83%;
    width: 45%;
}

.banner_img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 840px;
    width: 962px;
    background-image: url('../images/ba.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0 -70px;
    border-radius: 20px 0 0 0;
    box-shadow: 0 0 20px 0 #00000024;
    position: relative;
    z-index: 999;
}

.banner_text h1 {
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ffffff6e;
    display: inline-flex;
    width: 91%;
}

.banner-bottom {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 43%;
    position: absolute;
    bottom: 4%;
    left: 0;
    right: 0;
    margin: 0 50% 0 auto;
    gap: 10px;
}

.banner-bottom-txt {
    width: 100%;
    text-align: center;
    position: relative;
}

.banner-bottom-txt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid #ffffff75;
    width: 40%;
}

.banner-bottom-txt::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    border-top: 1px solid #ffffff75;
    width: 40%;
}

.banner-arrows {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    bottom: 0;
    z-index: 999;
}

.carousel-control-prev, .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    border: 1px solid #fff;
    color: #fff;
    object-fit: contain;
    position: relative;
}

.carousel-control-next:focus, .carousel-control-prev:focus {
    background-color: #fff;
}

.carousel-control-next:focus, .carousel-control-prev:focus {
    background-color: #fff;
    scale: 1.1;
}

.carousel-control-next:focus .carousel-control-next-icon, .carousel-control-prev:focus .carousel-control-prev-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(33%) saturate(3199%) hue-rotate(245deg) brightness(96%) contrast(100%);
}

.carousel-control-next-icon {
    background-image: url('../images/banner-right.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9px;
    width: 15px;
    object-fit: contain;
}

.carousel-control-prev-icon {
    background-image: url('../images/banner-left.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9px;
    width: 15px;
    object-fit: contain;
}

.banner-bottom-txt h6 {
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
}

.banner-socials ul li a {
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-socials ul li a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-socials ul li a::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    height: 95%;
    width: 95%;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    background-color: #8249d4;
    z-index: 1;
}

.banner-socials ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    background-color: #ffffff70;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-socials ul li a:hover::after {
    background-color: #ffff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-socials ul li a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #ffffff70;
    border-radius: 100px;
    position: relative;
    z-index: 9999;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-socials ul li a:hover i {
    color: #fff;
}

/*banner css end*/

/*About Us Sec Css Starts*/

.about-tabs-main {
    display: flex;
    align-items: center;
    justify-content: start;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 535px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.about-tabs-btn ul.nav.nav-pills {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.about-tabs-btn {
    width: 20%;
}

.nav-pills .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    border-radius: 0;
    padding: 0;
    background-color: #4e2782;
    color: #Fff;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    font-family: 'CutmarkRegular';
}

.about-tabs-btn ul.nav.nav-pills li.nav-item {
    width: 100%;
}

.about-tabs-content {
    width: 80%;
}

.about-tabs-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 29px 0 29px 50px;
    border: 1px solid #00000021;
    border-left: unset;
}

.about-tabs-txt p {
    color: #000000a3;
    width: 88%;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #fff;
    color: #000;
    border: 1px solid #00000021;
}

.about-tabs-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 85px 20px;
    background-color: #4e2782;
    transition: ease-in;
    transition-duration: 0.5s;
}

.about-tabs-arrow a:hover {
    background-color: #000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.about-tabs-arrow a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10px;
    width: 25px;
}

/*About Us Sec Css Ends*/

/*Services Sec Css Starts*/

section.services-sec {
    position: relative;
    background-image: url('../images/services-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 581px;
    margin: 0 0 400px 0;
    background-attachment: fixed;
}

section.services-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(128 70 214 / 89%) 0%, rgb(81 40 134 / 84%) 100%);
}

.services_slider .draggable {
    padding: 0 200px 0 0 !important;
}

.services-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 100%;
    padding: 0 0 30px 0;
    margin: 0 0 50px 0 !important;
    border-bottom: 1px solid #ffffff54;
    position: relative;
    z-index: 9;
}

.services-heading p {
    width: 58%;
}

.services-heading * {
    color: #fff;
}

.services_slider .slick-active, .services_slider .slick-slide {
    opacity: 1;
}

.services-card-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    position: relative;
    height: 640px;
    border-radius: 10px;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-main:hover::before {
    height: 100%;
    background: linear-gradient(0deg, rgba(78,39,130,1) 30%, rgba(78,39,130,0) 100%);
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-main::Before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 300px;
    width: 100%;
    background: none;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-main:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-img {
    width: 100%;
}

.services-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-main:hover img {
    height: 620px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.services-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0 0 20px 0 !important;
    gap: 20px;
    position: absolute;
    bottom: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-main:hover .services-card-txt {
    padding: 0 20px 20px 20px !important;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-txt h5 {
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-txt p {
    transition: ease-in;
    transition-duration: 0.5s;
}

.services-card-main:hover .services-card-txt h5, .services-card-main:hover .services-card-txt p {
    color: #fff;
    transition: ease-in;
    transition-duration: 0.5s;
}

.services_slider .slick-next {
    right: 0;
}

.services_slider .slick-prev {
    left: unset;
    right: 4%;
}

.services_slider .slick-prev, .services_slider .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    border: 1px solid #fff;
    color: #fff;
    object-fit: contain;
    top: -15%;
    z-index: 999;
}

.services_slider .slick-next:before {
    content: '';
    background-image: url(../images/banner-right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9px;
    width: 15px;
    object-fit: contain;
}

.services_slider .slick-prev:before {
    content: '';
    background-image: url(../images/banner-left.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9px;
    width: 15px;
    object-fit: contain;
}

.services_slider .slick-prev:focus, .services_slider .slick-next:focus {
    background-color: #fff;
    scale: 1.1;
}

.services_slider .slick-next:focus:before, .services_slider .slick-prev:focus:before {
    filter: brightness(0) saturate(100%) invert(18%) sepia(33%) saturate(3199%) hue-rotate(245deg) brightness(96%) contrast(100%);
}

/*Services Sec Css Ends*/

/*Why Sec Css Starts*/

.why-img {
    position: relative;
}

.why-img::before {
    content: '';
    position: absolute;
    bottom: -61px;
    left: 0;
    height: 300px;
    width: 670px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #4e2782, #9b68df);
  /* Animation */
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    background-size: 600%;
}

.why-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 630px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1;
    position: relative;
}

.why-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 100px;
}

.why-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.why-txt-list ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    padding: 0 0 0 150px;
}

.why-txt-list ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
}

.why-txt-list ul li h6 {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    text-transform: uppercase;
}

.why-txt-list ul li h6::before {
    content: '';
    position: absolute;
    bottom: -5PX;
    left: 0;
    border-bottom: 1px solid #bfbfbf;
    width: 100%;
}

/*Why Sec Css Ends*/

/*Who Sec Css Starts*/

.who-ex {
    border-top: 1px solid #0000002e;
    padding: 50px 0 0 0;
}

.who-card-main {
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-main:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.who-card-txt {
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-main:hover .who-card-txt {
    background-color: #4e2782;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.who-card-main:hover .who-card-txt * {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.who-card-txt h6 {
    font-size: 15px;
    line-height: 20px;
    color: #4e2782;
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-txt h5, .who-card-txt p {
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 40px 20px;
    border: 1px solid #00000038;
    border-radius: 10px 10px 0 0;
}

.who-card-img {
    overflow: hidden;
    border-radius: 10px;
    margin: -10px 0 0 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 215px;
    width: 100%;
    object-fit: cover;
    transition: ease-in;
    transition-duration: 0.5s;
}

.who-card-main:hover .who-card-img img {
    scale: 1.3;
    transition: ease-out;
    transition-duration: 0.5s;
}

/*Who Sec Css Ends*/

/*Quote Sec Css Starts*/

section.quote-sec {
    position: relative;
    background-image: url('../images/quote-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

section.quote-sec:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #4e2782d9, #9f5ef7d4);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    background-size: 600%;
}

section.quote-sec:after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    height: 130%;
    width: 52%;
    background-image: url('../images/ba.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.quote-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    position: relative;
    z-index: 999;
}

.quote-txt * {
    color: #fff;
}

.quote-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 465px;
    width: 100%;
    object-fit: cover;
    object-position: 0 -410px;
    border-radius: 20px;
    position: relative;
    z-index: 999;
}

.quote-txt h2 {
    position: relative;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ffffff47;
    display: inline-flex;
}

/*Quote Sec Css Ends*/

/*Testimonial Sec Css Starts*/

.testimonial_slider .slick-slide {
    margin: 0px 10px;
}

.testimonial_slider .slick-active {
    opacity: 1;
}

.testimonial-card-main {
    padding: 30px;
    border-radius: 5px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.testimonial_slider .slick-current .testimonial-card-main  {
    background-color: #4e2782;
    width: 520px !important;
}

.testimonial_slider .slick-current .testimonial-card-main .testimonial-card-txt p {
    color: #fff;
}

.testimonial_slider .slick-active .testimonial-card-main {
    width: 90%;
    margin: 40px -60px 0 auto;
}

.testimonial-card-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.testimonial-card-star ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 5px;
}

.testimonial-card-star ul i {
    color: #fd8f00;
}

.testimonial-card-txt p {
    font-size: 13px;
    line-height: 25px;
}

.testimonial-card-user-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.testimonial-card-user-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 100px;
    object-fit: cover;
    object-position: 0 0;
}

.testimonial-card-user-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
}

.testimonial-card-user-txt h5 {
    font-size: 19px;
    line-height: 1;
    text-transform: uppercase;
}

.testimonial-card-user-txt h6 {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.testimonial_slider .slick-current .testimonial-card-user-txt h5, .testimonial_slider .slick-current .testimonial-card-user-txt h6 {
    color: #fff;
}

.testimonial-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background-color: #fff;
    padding: 15px;
    margin: -50px 0 0 0;
}

.testimonial-card-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

/*Testimonial Sec Css Ends*/


/* Blog Dec Starts */

section.blog-sec {
    position: relative;
}

.latest_blog_sec {
    padding: 80px 0;
}

.blog_card {
    margin: 30px 0;
}

.blog_image {
    position: relative;
    transition: ease-in-out;
    transition-duration: 0.5s;
}


.blog_image img {
    object-fit: cover;
    width: 100%;
    height: 444px;
}

.blog_text .admin ul {
    gap: 20px;
    display: flex;
    align-items: center;
}

.blog_text .admin ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_text .admin ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_text .admin ul li a i {
    color: #4e2782;
}

.blog_text .admin ul li a p {
    color: #2d2d2d;
    font-weight: 600;
    margin: 0;
}

.blog_text {
    position: absolute;
    background-color: white;
    width: 90%;
    /* height: 310px; */
    bottom: 0;
    padding: 40px 15px 20px 0;
    border-top-left-radius: 0;
    /* border-bottom-right-radius: 0; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.blog_text h4 {
    font-family: "Montserrat", serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.blog_image:hover .blog_text h4 {
    color: #4e2782;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.blog_slider .slick-slide , .blog_slider .slick-active {
    opacity: 1;
    outline: none;
}

/* Blog sec Ends */

/* Gallery Sec Starts */

.gallery-box img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 20px 0 !important;
}

.gallery-box img.g13 {
    object-position: 0 -50px;
}

/* Gallery Sec Ends */

/* Footer css Starts */

footer {
    padding: 80px 0 0 0;
    background-color: #161616;
}

.footer-txt-heading h5, .news-letter h5 {
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    margin: -20px 0 20px 0;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-links1 ul li a {
    color: #ffffffc9;
    font-size: 14px;
    line-height: 35px;
    font-weight: 300;
    font-family: "Montserrat", system-ui;
    transition: ease-in;
    transition-duration: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.footer-links1 ul li a:hover {
    color: #bebeff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-links-contact ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin: 0 0 45px 0;
}

.footer-links-contact ul li i {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    color: #fff;
}

.footer-links-contact ul li a {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.footer-links-contact ul li a:hover {
    color: #bebeff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.2s;
}

.footer-rights p a:hover {
    color: #bebeff;
    transition: ease-in;
    transition-duration: 0.2s;
}

.news_in {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background-color: #fff;
    padding: 0 0 0 10px;
    /* border-radius: 5px; */
    margin: 0 0 21px 0;
}

.news_in input {
    width: 100%;
    background-color: #0000;
    border: none;
    padding: 10px 10px 10px 0;
    font-size: 18px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
}

.news_in input::placeholder {
    font-size: 18px;
    line-height: 35px;
    color: #000;
    font-weight: 500;
}

.news_in i {
    font-weight: 400;
    color: #3d3d9c;
    font-size: 18px;
}

.footer-txt p {
    color: #fff;
    margin: 40px 0;
}

.bottombar {
    padding: 20px 0;
}

.footer-rights p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    text-align: center;
}

.bottombar {
    margin: 40px 0 0 0;
    border-top: 1px solid #ffffff38;
}

.news-letter button.theme2 {
    width: 100%;
}

.news-letter button.theme2 span.btn-icon {
    width: 30%;
}

.news-letter button.theme2 span.btn-txt {
    width: 100%;
}

.footer-rights-img {
    display: flex;
    align-items: center;
    justify-content: end;
}

.footer-txt1 {
    padding: 0 0 0 30px;
}

.footer-useful-links ul {
    column-count: 2;
}

.footer-txt {
    border-right: 1px solid #ffffff38;
    height: 100%;
}

.footer-txt2 {
    border-left: 1px solid #ffffff38;
    height: 110%;
}

.header-socials-links a {
    display: inline-flex;
    position: relative;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-socials-links a:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-socials-links a::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    height: 95%;
    width: 95%;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    background-color: #161616;
    z-index: 1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-socials-links a:hover::before {
    background-color: #4e2782;
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-socials-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    background-color: #ffffff70;
    transition: ease-in;
    transition-duration: 0.5s;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-socials-links a:hover::after {
    background-color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.header-socials-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #ffffff70;
    border-radius: 100px;
    position: relative;
    z-index: 9999;
    transition: ease-in;
    transition-duration: 0.5s;
}

.header-socials-links a:hover i {
    color: #fff;
}

/* Footer css Ends */

/*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 */

/* 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 */

/* Home css Ends */


}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.menu-box ul {
    gap: 20px;
}

.menu-box ul li a {
    padding: 40px 10px;
}

.banner_img {
    width: 50%;
}

.why-txt {
    gap: 10px;
}

.why-img::before {
    width: 600px;
}

section.quote-sec:after {
    top: 0;
    height: 100%;
}

.testimonial_slider .slick-current .testimonial-card-main {
    width: 100% !important;
}

.testimonial_slider .slick-active .testimonial-card-main {
    width: 100%;
    margin: 40px 0 0 0;
}

/* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

.menu-box ul li a {
    padding: 40px 10px;
}

.banner_img {
    width: 50%;
}

.why-txt {
    gap: 10px;
}

.why-img::before {
    width: 600px;
}

section.quote-sec:after {
    top: 0;
    height: 100%;
}

.testimonial_slider .slick-current .testimonial-card-main {
    width: 100% !important;
}

.testimonial_slider .slick-active .testimonial-card-main {
    width: 100%;
    margin: 40px 0 0 0;
}

/* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
   
.footer-txt p {
    margin: 15px 0;
}

.blog_text {
 
    padding: 20px 15px 10px 0;
   
}
.sec {
    padding: 30px 0;
}
section.vc_section.gallery-sec .row {
    justify-content: center;
}
.heading {
  
    margin: 0 auto 0px auto !important;
    width: 100%;
   
}
.theme2 span.theme2-txt {

    font-size: 12px;
   
}
    .testimonial_slider .slick-current .testimonial-card-main {
        width: 350px !important;
    }
.theme2 span.theme2-icon img {

    height: 35px;
    width: 35px;
  
}
.theme2 {

    height: 45px;
 
 
}
.banner_img img {
  
    object-position: 0 0px;
  
}
.banner_img {
        padding: 10px;
        border-radius: 30px 0 0 0;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        right: 0;
        height: 70%;
        width: 40%;
    }

.banner_text h1 {
    padding: 0 0 10px 0 !important;

    width: 100% !important;
    font-size: 50px !important;
}
header {
    padding: 0px 0 0 0;
    
}
.banner_text {

    gap: 10px;
}
.theme1 {

    height: 45px !important;
    padding: 0 5px 0 18px !important;
   ;
}
.textwidget.custom-html-widget span.theme1-txt {
    font-size: 10px !important;
}
.textwidget.custom-html-widget .theme1 span.theme1-icon img {

    height: 30px;
    width: 30px;
    
}
    .menu-box ul li a {
        padding: 40px 5px;
        font-size: 14px;
    }
  .carousel-item {
        height: 500px;
    }
    .about-txt h2 {
    margin-bottom: 20px !important;
}
   section.vc_section.about-sec.sec .vc_empty_space {
    height: auto !important;
}
.who-card-txt {
        height: 230px !important;
    }
    html .inner-ser .services-card-main {
        height: 480px !important;
        margin-bottom: 30px !important;
    }
    
    section.vc_section.services-sec.sec.inner-ser .row {
    justify-content: center;
}

.about-txt-main {
    margin-top: 20px;
}


.about-txt {

    gap: 10px;
}
.banner-bottom {
 
    width: 46%;
   
}

.about-tabs-arrow a {

    padding: 60px 20px;
   
}
.about-tabs-main {
    margin-top: 20px;
}
    .nav-pills .nav-link {
        width: 100%;
        height: 65px;
        font-size: 16px;
    }
.about-tabs-txt {
        padding: 12px 0 12px 12px !important;
        height: 130px !important;
    }
.services-heading {

    padding: 0 0 20px 0 !important;
    
}
.services-card-main:hover .services-card-txt {
    padding: 0 10px 10px 10px !important;
   
}
.services_slider .slick-prev {
        right: 5%;
    }
.services-card-btn {
    margin-top: 10px;
}
.services-card-main {
        height: 480px;
    }
.services-card-img img {
        height: 240px;
    }
.services-heading {
     margin: 0 0 30px 0 !important;
    gap: 0px;
    
}
.why-txt-list ul li h6 {
    font-size: 14px;
  
}
.why-txt-list ul li {
 
    gap: 15px;
}
.services-card-txt {

    padding: 0 0 20px 0 !important;
    gap: 0px;
}
section.vc_section.services-sec.sec .slick-slide {
    margin: 0px 10px;
}
    .why-img::before {
        bottom: -20px;
        width: 390px;
    }
section.services-sec {
   
    height: auto;
    margin: 0 0 00px 0;

}
.why-img img {

    height: 440px;
  
}
.why-txt {

    margin-top: 30px;
}
     .quote-img img {
        height: 430px;
        object-position: 0 -270px;
    }
.why-txt-main {

    gap: 30px;
}
.why-txt {

    gap: 10px;
}
.who-card-txt {
    height: 330px;
}
.why-txt-list ul {

    padding: 0 0 0 0px;
}
section.vc_section.who-sec.sec .vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}
.who-card-txt {
 
    padding: 10px 10px;
  
}
.testimonial-card-main {
    padding: 20px !important;
    height: 300px !important;
  
}
.testimonial-card-user-img img {

    height: 50px;
    width: 50px;
   
}
.testimonial-card-user-txt h6 {
    font-size: 10px;
    
}
.testimonial-card-user-txt h5 {
    font-size: 14px;
   
}


.blog_card {
    margin: 20px 0;
}

.gallery-box img {
        height: 250px;
        margin: 0 0 15px 0 !important;
    }
h2 {
  
    font-size: 40px;
    line-height: 50px;
  
}
    .blog_image img {
        height: 320px;
    }


.blog_text .admin ul li a {
    gap: 5px;
}
    .footer-links1 ul li a {
        font-size: 11px;
        line-height: 30px;
        gap: 14px;
    }
.blog_text h4 {
  
    font-size: 16px;
    line-height: 25px;
    
}

.bottombar {
    padding: 15px 0;
}
    .footer-txt {
        height: 100%;
    }
.footer-txt-heading h5, .news-letter h5 {
   
    font-size: 18px;
    line-height: 50px;
    margin: 0px 0 0px 0;
  
}
p {
    
    font-size: 12px !important;
    line-height: 20px !important;
  
}
.wpb_single_image img {
  
    width: 80%;
}

footer {
    padding: 50px 0 0 0;
    
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {



.footer-txt p {
    margin: 15px 0;
}
.footer-txt2 {
    border-left: inherit;
 
}
.blog_text {
 
    padding: 20px 15px 10px 0;
   
}
.sec {
    padding: 30px 0;
}
section.vc_section.gallery-sec .row {
    justify-content: center;
}
.heading {
  
    margin: 0 auto 0px auto !important;
    width: 100%;
   
}
.theme2 span.theme2-txt {

    font-size: 12px;
   
}
.testimonial_slider .slick-current .testimonial-card-main {
        width: 500px !important;
    }
.theme2 span.theme2-icon img {

    height: 35px;
    width: 35px;
  
}
.theme2 {

    height: 45px;
 
 
}
.banner_img img {
  
    object-position: 0 0px;
  
}
.banner_img {
        padding: 10px;
        border-radius: 30px 0 0 0;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        right: 0;
        height: 70%;
        width: 40%;
    }

.banner_text h1 {
    padding: 0 0 10px 0 !important;

    width: 100% !important;
    font-size: 50px !important;
}
header {
    padding: 0px 0 0 0;
    
}
.banner_text {

    gap: 10px;
}
.theme1 {

    height: 45px !important;
    padding: 0 5px 0 18px !important;
   ;
}
.textwidget.custom-html-widget span.theme1-txt {
    font-size: 10px !important;
}
.textwidget.custom-html-widget .theme1 span.theme1-icon img {

    height: 30px;
    width: 30px;
    
}
.menu-box ul li a {
   
    padding: 40px 0px;
    font-size: 12px;
    
}
  .carousel-item {
        height: 500px;
    }
    .about-txt h2 {
    margin-bottom: 20px !important;
}
   section.vc_section.about-sec.sec .vc_empty_space {
    height: auto !important;
}
.who-card-txt {
        height: 275px !important;
    }
    html .inner-ser .services-card-main {
        height: 480px !important;
        margin-bottom: 30px !important;
    }
    
    section.vc_section.services-sec.sec.inner-ser .row {
    justify-content: center;
}

.about-txt-main {
    margin-top: 20px;
}


.about-txt {

    gap: 10px;
}
.banner-bottom {
 
    width: 46%;
   
}

.about-tabs-arrow a {

    padding: 60px 20px;
   
}
.about-tabs-main {
    margin-top: 20px;
}
    .nav-pills .nav-link {
        width: 100%;
        height: 65px;
        font-size: 16px;
    }
.about-tabs-txt {
        padding: 12px 0 12px 12px !important;
        height: 130px !important;
    }
.services-heading {

    padding: 0 0 20px 0 !important;
    
}
.services-card-main:hover .services-card-txt {
    padding: 0 10px 10px 10px !important;
   
}
.services_slider .slick-prev {

    right: 8%;
}
.services-card-btn {
    margin-top: 10px;
}
.services-card-main {
  
    height: 440px;
    
}
.services-card-img img {
        height: 240px;
    }
.services-heading {
     margin: 0 0 30px 0 !important;
    gap: 0px;
    
}
.why-txt-list ul li h6 {
    font-size: 14px;
  
}
.why-txt-list ul li {
 
    gap: 15px;
}
.services-card-txt {

    padding: 0 0 20px 0 !important;
    gap: 0px;
}
section.vc_section.services-sec.sec .slick-slide {
    margin: 0px 10px;
}
    .why-img::before {
        bottom: -20px;
        width: 390px;
    }
section.services-sec {
   
    height: auto;
    margin: 0 0 00px 0;

}
.why-img img {

    height: 440px;
  
}
.why-txt {

    margin-top: 30px;
}
    .quote-img img {
        height: 380px;
        object-position: 0 -270px;
    }
.why-txt-main {

    gap: 30px;
}
.why-txt {

    gap: 10px;
}
.who-card-txt {
    height: 330px;
}
.why-txt-list ul {

    padding: 0 0 0 0px;
}
section.vc_section.who-sec.sec .vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}
.who-card-txt {
 
    padding: 10px 10px;
  
}
.testimonial-card-main {
    padding: 20px !important;
    height: 300px !important;
  
}
.testimonial-card-user-img img {

    height: 50px;
    width: 50px;
   
}
.testimonial-card-user-txt h6 {
    font-size: 10px;
    
}
.testimonial-card-user-txt h5 {
    font-size: 14px;
   
}


.blog_card {
    margin: 20px 0;
}

.gallery-box img {
        height: 250px;
        margin: 0 0 15px 0 !important;
    }
h2 {
  
    font-size: 40px;
    line-height: 50px;
  
}
    .blog_image img {
        height: 320px;
    }


.blog_text .admin ul li a {
    gap: 5px;
}
    .footer-links1 ul li a {
        font-size: 11px;
        line-height: 30px;
        gap: 14px;
    }
.blog_text h4 {
  
    font-size: 16px;
    line-height: 25px;
    
}
section#custom_html-6 {
    border-right: 1px solid #ffffff38;
}
.bottombar {
    padding: 15px 0;
}
.footer-txt {
    height: 100%;
    padding-right: 30px;
}
.footer-txt-heading h5, .news-letter h5 {
   
    font-size: 18px;
    line-height: 50px;
    margin: 0px 0 0px 0;
  
}
p {
    
    font-size: 12px !important;
    line-height: 20px !important;
  
}
.footer-txt1 {
    padding: 0 0 0 0px;
}
footer {
    padding: 50px 0 0 0;
    
}





}

@media only screen and (min-width: 768px) and (max-width: 991px) {


.footer-txt p {
    margin: 15px 0;
}
.footer-txt2 {
    border-left: inherit;
 
}
.blog_text {
 
    padding: 20px 15px 10px 0;
   
}
.sec {
    padding: 30px 0;
}
section.vc_section.gallery-sec .row {
    justify-content: center;
}
.heading {
  
    margin: 0 auto 0px auto !important;
    width: 100%;
   
}
.theme2 span.theme2-txt {

    font-size: 12px;
   
}
.testimonial_slider .slick-current .testimonial-card-main {
;
    width: 400px !important;
}
.theme2 span.theme2-icon img {

    height: 35px;
    width: 35px;
  
}
.theme2 {

    height: 45px;
 
 
}
.banner_img img {
  
    object-position: 0 0px;
  
}
    .banner_img {
        padding: 10px;
        border-radius: 30px 0 0 0;
        overflow: hidden;
        position: absolute;
        bottom: 0;
        right: 0;
        height: 45%;
        width: 35%;
    }

.banner_text h1 {
    padding: 0 0 10px 0 !important;

    width: 100% !important;
    font-size: 50px !important;
}
header {
    padding: 0px 0 0 0;
    
}
.banner_text {

    gap: 10px;
}
.theme1 {

    height: 45px !important;
    padding: 0 5px 0 18px !important;
   ;
}
.textwidget.custom-html-widget span.theme1-txt {
    font-size: 10px !important;
}
.textwidget.custom-html-widget .theme1 span.theme1-icon img {

    height: 30px;
    width: 30px;
    
}
.menu-box ul li a {
   
    padding: 40px 0px;
    font-size: 12px;
    
}
     .carousel-item {
        height: 450px;
    }
    .about-txt h2 {
    margin-bottom: 20px !important;
}
   section.vc_section.about-sec.sec .vc_empty_space {
    height: auto !important;
}
    .who-card-txt {
    height: 325px !important;
}
    html .inner-ser .services-card-main {
    height: 420px !important;
    margin-bottom: 30px !important;
}

.about-txt-main {
    margin-top: 20px;
}


.about-txt {

    gap: 10px;
}
.banner-bottom {
 
    width: 46%;
   
}

.about-tabs-arrow a {

    padding: 60px 20px;
   
}
.about-tabs-main {
    margin-top: 20px;
}
    .nav-pills .nav-link {
        width: 100%;
        height: 65px;
        font-size: 16px;
    }
.about-tabs-txt {
        padding: 12px 0 12px 12px !important;
        height: 130px !important;
    }
.services-heading {

    padding: 0 0 20px 0 !important;
    
}
.services-card-main:hover .services-card-txt {
    padding: 0 10px 10px 10px !important;
   
}
.services_slider .slick-prev {

    right: 8%;
}
.services-card-btn {
    margin-top: 10px;
}
.services-card-main {
  
    height: 440px;
    
}
.services-card-img img {

    height: 180px;
  
}
.services-heading {
     margin: 0 0 30px 0 !important;
    gap: 0px;
    
}
.services-card-txt {

    padding: 0 0 20px 0 !important;
    gap: 0px;
}
section.vc_section.services-sec.sec .slick-slide {
    margin: 0px 10px;
}
.why-img::before {
  
    bottom: -20px;
   
}
section.services-sec {
   
    height: auto;
    margin: 0 0 00px 0;

}
.why-img img {

    height: 440px;
  
}
.why-txt {

    margin-top: 30px;
}
.quote-img img {

    height: 335px;
    object-position: 0 -120px;
 
}
.why-txt-main {

    gap: 30px;
}
.why-txt {

    gap: 10px;
}
.who-card-txt {
    height: 330px;
}
.why-txt-list ul {

    padding: 0 0 0 0px;
}
section.vc_section.who-sec.sec .vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}
.who-card-txt {
 
    padding: 10px 10px;
  
}
.testimonial-card-main {
    padding: 20px !important;
    height: 300px !important;
  
}
.testimonial-card-user-img img {

    height: 50px;
    width: 50px;
   
}
.testimonial-card-user-txt h6 {
    font-size: 10px;
    
}
.testimonial-card-user-txt h5 {
    font-size: 14px;
   
}


.blog_card {
    margin: 20px 0;
}
section.vc_section.gallery-sec .col-xl-4.col-lg-4.col-md-12.col-sm-12.col-12 {
    width: 50%;
}
.gallery-box img {

    height: 180px;
  
    margin: 0 0 15px 0 !important;
}
h2 {
  
    font-size: 40px;
    line-height: 50px;
  
}
.blog_image img {
  
    height: 300px;
}


.blog_text .admin ul li a {
    gap: 5px;
}
.footer-links1 ul li a {
   
    font-size: 12px;
    line-height: 30px;
  
    gap: 15px;
}
.blog_text h4 {
  
    font-size: 16px;
    line-height: 25px;
    
}
section#custom_html-6 {
    border-right: 1px solid #ffffff38;
}
.bottombar {
    padding: 15px 0;
}
.footer-txt {
    height: 100%;
    padding-right: 30px;
}
.footer-txt-heading h5, .news-letter h5 {
   
    font-size: 18px;
    line-height: 50px;
    margin: 0px 0 0px 0;
  
}
p {
    
    font-size: 12px !important;
    line-height: 20px !important;
  
}
.footer-txt1 {
    padding: 0 0 0 0px;
}
footer {
    padding: 50px 0 0 0;
    
}




}

@media only screen and (min-width: 520px) and (max-width: 767px) {

.sec {
    padding: 20px 0;
}

.heading {
    gap: 20px;
    margin: 0 auto 20px auto;
    width: 90%;
}


h1 {
    font-size: 30px;
    line-height: 35px;
}

h2 {
        font-size: 25px;
        line-height: 30px;
        width: 100%;
    }

    p {
        font-size: 11px !important;
        line-height: 20px !important;
    }
    .testimonial-card-user-img img {
        height: 40px;
        width: 40px;
        margin: 0 auto;
        margin-bottom: 10px !important;
    }
    .testimonial-card-user-txt h6 {
    width: 100%;
    text-align: center;
}
    .testimonial-card-user-txt {
  
    display: block;
}
.quote-txt h2 {
 
    display: inline-flex
;
    width: 100%;
    display: block;
}
    .testimonial-card-box {
 
    align-items: start;
    justify-content: center;
    gap: 10px;
}

.testimonial-card-user-txt h5 {
        font-size: 12px;
    }
 .testimonial-card-user-txt h6 {
        font-size: 10px;
        margin-top: 5px;
    }



.theme1 {
    height: 40px;
    padding: 0 5px 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 12px;
}

.theme1 span.theme1-icon img {
    height: 30px;
    width: 30px;
    padding: 5px;
}

.who-card-img img {

    height: 255px;
  
}


.theme2 {
    height: 40px;
    padding: 0 5px 0 10px;
}

.theme2 span.theme2-txt {
    font-size: 12px;
}

.theme2 span.theme2-icon img {
    height: 30px;
    width: 30px;
    padding: 5px;
}



header {
    position: relative;
    background-color: #4e2782;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

    .header-btn {
        justify-content: center;
        margin: 10px 0 20px;
    }

  .carousel-item {
        height: 570px;
    }

.banner_img {
    position: relative;
    bottom: unset;
    right: unset;
    height: 300px;
    width: 100%;
    padding: 0;
}
.banner_img {
    margin-top: 20px;
}

.about-tabs-txt {
    padding: 15px 15px 15px 15px !important;
    height: auto !important;
    text-align: center !important;
}

section.about-sec.sec {
    text-align: center;
    padding-top: 30px;
}
.about-txt h2 {
    width: 100%;
}
.about-btn {
    width: 100%;
}
.banner_text {
 
    gap: 5px !important;
}
.banner_text h1 {
    padding: 0 0 10px 0;

    width: 100% !important;
   
}
.banner_img:before {
    display: none;
}

.banner-bottom {
    width: 95%;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-bottom-txt::before, .banner-bottom-txt::after {
    width: 20%;
}

.banner_text {
    margin: 0 0 30px 0;
}

.banner_img img {
    border-radius: 10px;
}

.banner_text h1, .banner_text p {
    width: 100%;
}



.about-img img {
        height: 350px;
    }

.about-txt {
    gap: 10px;
    margin: 20px 0 0 0;
}

.about-tabs-content {
    width: 100%;
}

.about-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 20px 0 0 0;
}

.about-tabs-btn {
    width: 100%;
}

.about-tabs-btn ul.nav.nav-pills {
    flex-direction: row;
    display: flex;
}

.nav-pills .nav-link {
        height: 50px;
        font-size: 18px;
    }

.about-tabs-txt {
    padding: 10px;
    border: 1px solid #00000021;
}

.about-tabs-arrow {
    width: 100%;
}

.about-tabs-arrow a {
    padding: 20px 0;
}

.services-heading {
  
    gap: 10px;
    
}
.about-tabs-txt p {
    width: 100%;
}



section.services-sec {
        height: auto;
    }

.services-heading p {
    width: 100%;
}
section.services-sec {
        height: auto;
        margin-bottom: 10px !important;
    }
    
    section.inner-banner .banner_text {
    margin: 0 !important;
}
.about-txt h5 {
    width: 100%;
}
  

.contact-info .about-txt {
 
    text-align: center;
}
.services-card-main:hover .services-card-txt {
    padding: 20px 20px 20px 20px !important;
   
}
.contact-info .about-txt {
    gap: 5px;
    margin: 10px 0 0px;
}
.wpb_single_image .vc_figure {
  
    width: 100%;
    text-align: center;
}
.contact-info .about-txt {
    gap: 5px;
}
.wpb_single_image img {
  
    width: 40%;
}
.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
    width: 100%;
    font-size: 12px;
}
.about-txt {
    margin-bottom: 20px !important;
}

.about-txt-main .vc_empty_space {
    height: auto !important;
}
section.vc_section.about-sec.sec .vc_empty_space {
    height: auto !important;
}
.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
     
        width: 100% !important;
    }
    .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 150px !important;
    font-size: 12px !important;
}
.services-card-main:hover img {
    height: 470px;
 
}
.about-txt {
    margin-bottom: 30px !important;
}
    .inner-ser .services-card-main {
        height: 430px !important;
        margin-bottom: 20px !important;
    }
    .about-txt p {
    width: 100%;
}
section.vc_section.services-sec.sec.inner-ser {
    padding-top: 30px;
}

section.inner-banner {

    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
    .services-card-txt h5 {
        width: 100%;
        color: #fff;
    }
.services-card-txt p {

    color: #fff;
    line-height: 15px !important;
}
.services-card-btn {
    text-align: center;
    width: 100%;
}


.services-card-txt {
        gap: 5px;
        text-align: center;
        background: #0000008f;
        padding: 10px 5px !important;
    }
.services_slider .draggable {
    padding: 0 0 0 0 !important;
}

.services-heading h2 {
    width: 100%;
}

.services_slider .slick-slide {
    margin: 0px 5px;
}

    .services-heading {
        padding: 0 0 10px 0;
        margin: 0 0 20px 0 !important;
        text-align: center;
    }

.services_slider .slick-prev, .services_slider .slick-next {
        top: -13%;
    }

.services_slider .slick-prev {
    left: unset;
    right: 10%;
}

/* Services Sec Css Ends */

/* Why Sec Css Starts */

.why-img img {
        height: 200px;
    }
    header {
    padding: 0px 0 0 0 !important;
 
}

    .why-txt {
        gap: 5px;
        margin: 30px 0 0 0;
        text-align: center;
    }
    .why-txt-main p {
    width: 100%;
}

.why-btn {
    width: 100%;
}

.why-img::before {
    bottom: -10px;
    height: 150px;
    width: 285px;
}

.why-txt-main {
    gap: 20px;
}

.why-txt-list ul {
    padding: 0;
}

    .why-txt-list ul li {
        gap: 20px;
        display: block;
        text-align: center;
    }

.why-txt-list ul li h6 {
        font-size: 12px !important;
    }



.who-ex {
    padding: 20px 0 0 0;
}

    .who-card-main {
        margin: 10px 20px;
    }
    .who-card-txt {
    height: 292px;
    text-align: center;
}
.who-card-txt {
    height: auto !important;
}
.who-card-txt h6 {
    width: 100%;
}
.who-card-txt h5 {
    width: 100%;
}

    .who-card-txt {
        padding: 15px;
    }
.quote-btn {
    width: 100%;
    text-align: center;
}
.quote-img-main {
    margin-top: 20px;
}
.quote-img img {
    width: 100%;
    height: 360px;
    object-position: inherit;
}
/* Who Sec Css Ends */

/* quote Sec Css Starts */

    .quote-txt {
        gap: 10px;
        margin: 0 0 20px 0;
        text-align: center;
        width: 100%;
    }

.quote-img img {
        height: 480px;
    }

section.quote-sec:after {
    display: none;
}



.testimonial_slider .slick-current .testimonial-card-main {
    width: 100% !important;
    margin: 20px 0 0 0;
}

.testimonial-card-main {
    height: 100%;
    padding: 20px;
}
section.vc_section.testimonial-sec.sec {
    padding-top: 50px !important;
}
.testimonial-heading.heading {
    margin-bottom: 0 !important;
}
.testimonial-card-icon {

    margin: 0 auto !important;
    margin-top: -40px !important;
}
.testimonial-card-star ul li a {
    font-size: 12px;
}
.testimonial-card-user-main {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .testimonial-card-user-main {
        gap: 10px;
        display: block;
    }

.testimonial_slider .slick-active .testimonial-card-main {
    width: 100%;
    margin: 40px 0 0 0;
}



.blog_slider .slick-slide {
    margin: 0px 10px;
}

.blog_text {
        width: 100%;
        padding: 10px 10px 10px 0;
        text-align: center;
    }
    .admin {
    width: 100%;
}



footer {
    padding: 40px 0 0 0;
}

.footer-txt p {
        margin: 15px 0 10px;
    }

.footer-txt1 {
        padding: 10px 0;
    }

.footer-txt-heading h5, .news-letter h5 {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0;
}

.footer-links1 ul li a {
    font-size: 12px;
    line-height: 20px;
}

.footer-txt {
    border-right: unset;
}

.footer-txt2 {
    border-left: unset;
    height: 100%;
}

.bottombar {
        margin: 10px 0 0 0;
    }

    .footer-rights p {
        font-size: 10px;
        line-height: 20px;
    }
    .vc_column_container>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.blog_image img {
    height: 315px;
}
.blog_text h4 {

    font-size: 16px;
    line-height: 25px;
    
}
.blog-heading {
    text-align: center;
}
.blog_card {
    margin: 15px 0;
}
    .gallery-box img {
        height: 280px;
        margin: 0 0 15px 0 !important;
    }

.testimonial-card-star {
    width: 100%;
}
.testimonial-card-star ul {

    justify-content: center;
    gap: 2px;
}
.testimonial-card-main {
    
    text-align: center !important;
    padding: 10px !important;
}
section.vc_section.gallery-sec .vc_empty_space {
    height: auto !important;
}
.heading {
    margin: 0 auto 22px auto !important;
    width: 100% !important;
   
}
section.vc_section.gallery-sec {
    padding-top: 20px;
}


}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    
    
    
    

.sec {
    padding: 20px 0;
}

.heading {
    gap: 20px;
    margin: 0 auto 20px auto;
    width: 90%;
}


h1 {
    font-size: 30px;
    line-height: 35px;
}

h2 {
        font-size: 25px;
        line-height: 30px;
    }

    p {
        font-size: 11px !important;
        line-height: 20px !important;
    }
    .testimonial-card-user-img img {

    height: 55px;
    width: 55px;
   
}
    .testimonial-card-box {
 
    align-items: start;
    justify-content: center;
    gap: 10px;
}
.testimonial-card-user-txt h5 {
    font-size: 15px;
  
}



.theme1 {
    height: 40px;
    padding: 0 5px 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 12px;
}

.theme1 span.theme1-icon img {
    height: 30px;
    width: 30px;
    padding: 5px;
}



.theme2 {
    height: 40px;
    padding: 0 5px 0 10px;
}

.theme2 span.theme2-txt {
    font-size: 12px;
}

.theme2 span.theme2-icon img {
    height: 30px;
    width: 30px;
    padding: 5px;
}



header {
    position: relative;
    background-color: #4e2782;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

    .header-btn {
        justify-content: center;
        margin: 10px 0 20px;
    }

       .carousel-item {
        height: 500px;
    }

    .banner_img {
        position: relative;
        bottom: unset;
        right: unset;
        height: 250px;
        width: 100%;
        padding: 0;
    }
.banner_img {
    margin-top: 20px;
}

.about-tabs-txt {
    padding: 15px 15px 15px 15px !important;
    height: auto !important;
    text-align: center !important;
}

section.about-sec.sec {
    text-align: center;
    padding-top: 30px;
}
.about-txt h2 {
    width: 100%;
}
.about-btn {
    width: 100%;
}
.banner_text {
 
    gap: 5px !important;
}
.banner_text h1 {
    padding: 0 0 10px 0;

    width: 100% !important;
   
}
.banner_img:before {
    display: none;
}

.banner-bottom {
    width: 95%;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner-bottom-txt::before, .banner-bottom-txt::after {
    width: 20%;
}

.banner_text {
    margin: 0 0 30px 0;
}

.banner_img img {
    border-radius: 10px;
}

.banner_text h1, .banner_text p {
    width: 100%;
}



    .about-img img {
        height: 300px;
    }

.about-txt {
    gap: 10px;
    margin: 20px 0 0 0;
}

.about-tabs-content {
    width: 100%;
}

.about-tabs-main {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    margin: 20px 0 0 0;
}

.about-tabs-btn {
    width: 100%;
}

.about-tabs-btn ul.nav.nav-pills {
    flex-direction: row;
    display: flex;
}

.nav-pills .nav-link {
        height: 50px;
        font-size: 18px;
    }

.about-tabs-txt {
    padding: 10px;
    border: 1px solid #00000021;
}

.about-tabs-arrow {
    width: 100%;
}

.about-tabs-arrow a {
    padding: 20px 0;
}

.services-heading {
  
    gap: 10px;
    
}
.about-tabs-txt p {
    width: 100%;
}



section.services-sec {
        height: auto;
    }

.services-heading p {
    width: 100%;
}
section.services-sec {
        height: auto;
        margin-bottom: 10px !important;
    }
    
    section.inner-banner .banner_text {
    margin: 0 !important;
}
.about-txt h5 {
    width: 100%;
}

    .services-card-main {
  
    height: 445px;
    
}

.contact-info .about-txt {
 
    text-align: center;
}
.contact-info .about-txt {
    gap: 5px;
    margin: 10px 0 0px;
}
.quote-txt h2 {
    width: 100%;
}
.quote-txt h2 {
    width: 100% !important;
    display: block !important;
}
.wpb_single_image .vc_figure {
  
    width: 100%;
    text-align: center;
}
.contact-info .about-txt {
    gap: 5px;
}
.wpb_single_image img {
  
    width: 40%;
}
.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
    width: 100%;
    font-size: 12px;
}
.about-txt {
    margin-bottom: 20px !important;
}

.about-txt-main .vc_empty_space {
    height: auto !important;
}
section.vc_section.about-sec.sec .vc_empty_space {
    height: auto !important;
}
.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
     
        width: 100% !important;
    }
    .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 150px !important;
    font-size: 12px !important;
}
.services-card-main:hover img {
    height: 470px;
 
}
.about-txt {
    margin-bottom: 30px !important;
}
html .inner-ser .services-card-main {
    height: 465px !important;
    margin-bottom: 20px !important;
}
section.vc_section.services-sec.sec.inner-ser {
    padding-top: 30px;
}

section.inner-banner {

    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
    .services-card-txt h5 {
        width: 100%;
        color: #fff;
    }
.services-card-txt p {

    color: #fff;
    line-height: 15px !important;
}
.services-card-btn {
    text-align: center;
    width: 100%;
}


.services-card-txt {
        gap: 5px;
        text-align: center;
        background: #0000008f;
        padding: 10px 5px !important;
    }
.services_slider .draggable {
    padding: 0 0 0 0 !important;
}

.services-heading h2 {
    width: 100%;
}

.services_slider .slick-slide {
    margin: 0px 5px;
}

    .services-heading {
        padding: 0 0 10px 0;
        margin: 0 0 20px 0 !important;
        text-align: center;
    }

.services_slider .slick-prev, .services_slider .slick-next {
    top: -20%;
}

.services_slider .slick-prev {
    left: unset;
    right: 10%;
}

/* Services Sec Css Ends */

/* Why Sec Css Starts */

.why-img img {
        height: 200px;
    }
    header {
    padding: 0px 0 0 0 !important;
 
}

    .why-txt {
        gap: 5px;
        margin: 30px 0 0 0;
        text-align: center;
    }
    .why-txt-main p {
    width: 100%;
}

.why-btn {
    width: 100%;
}

.why-img::before {
    bottom: -10px;
    height: 150px;
    width: 285px;
}

.why-txt-main {
    gap: 20px;
}

.why-txt-list ul {
    padding: 0;
}

    .why-txt-list ul li {
        gap: 20px;
        display: block;
        text-align: center;
    }

.why-txt-list ul li h6 {
        font-size: 12px !important;
    }



.who-ex {
    padding: 20px 0 0 0;
}

    .who-card-main {
        margin: 10px 20px;
    }
    .who-card-txt {
    height: 292px;
    text-align: center;
}
.who-card-txt {
    height: auto !important;
}
.who-card-txt h6 {
    width: 100%;
}
.who-card-txt h5 {
    width: 100%;
}

    .who-card-txt {
        padding: 15px;
    }
.quote-btn {
    width: 100%;
    text-align: center;
}
.quote-img-main {
    margin-top: 20px;
}
.quote-img img {
    width: 100%;
    height: 360px;
    object-position: inherit;
}
/* Who Sec Css Ends */

/* quote Sec Css Starts */

    .quote-txt {
        gap: 10px;
        margin: 0 0 20px 0;
        text-align: center;
        width: 100%;
    }

.quote-img img {
    height: 200px;
}

section.quote-sec:after {
    display: none;
}



.testimonial_slider .slick-current .testimonial-card-main {
    width: 100% !important;
    margin: 20px 0 0 0;
}

.testimonial-card-main {
    height: 100%;
    padding: 20px;
}
section.vc_section.testimonial-sec.sec {
    padding-top: 50px !important;
}
.testimonial-heading.heading {
    margin-bottom: 0 !important;
}
.testimonial-card-icon {

    margin: 0 auto !important;
    margin-top: -40px !important;
}
.testimonial-card-star ul li a {
    font-size: 12px;
}
.testimonial-card-user-main {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

.testimonial-card-user-main {
    gap: 10px;
}

.testimonial_slider .slick-active .testimonial-card-main {
    width: 100%;
    margin: 40px 0 0 0;
}



.blog_slider .slick-slide {
    margin: 0px 10px;
}

.blog_text {
        width: 100%;
        padding: 10px 10px 10px 0;
        text-align: center;
    }
    .admin {
    width: 100%;
}



footer {
    padding: 40px 0 0 0;
}

.footer-txt p {
        margin: 15px 0 10px;
    }

.footer-txt1 {
        padding: 10px 0;
    }

.footer-txt-heading h5, .news-letter h5 {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0;
}

.footer-links1 ul li a {
    font-size: 12px;
    line-height: 20px;
}

.footer-txt {
    border-right: unset;
}

.footer-txt2 {
    border-left: unset;
    height: 100%;
}

.bottombar {
        margin: 10px 0 0 0;
    }

    .footer-rights p {
        font-size: 10px;
        line-height: 20px;
    }
    .vc_column_container>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.blog_image img {
    height: 315px;
}
.blog_text h4 {

    font-size: 16px;
    line-height: 25px;
    
}
.blog-heading {
    text-align: center;
}
.blog_card {
    margin: 15px 0;
}
.gallery-box img {
    height: 200px;
    margin: 0 0 15px 0 !important;
}
.testimonial-card-star {
    width: 100%;
}
.testimonial-card-star ul {

    justify-content: center;
    gap: 2px;
}
.testimonial-card-main {
    
    text-align: center !important;
    padding: 10px !important;
}
section.vc_section.gallery-sec .vc_empty_space {
    height: auto !important;
}
.heading {
    margin: 0 auto 22px auto !important;
    width: 100% !important;
   
}
section.vc_section.gallery-sec {
    padding-top: 20px;
}

.blog_text .admin ul {
 
    justify-content: center;
}
.services-card-main:hover .services-card-txt {
    padding: 10px 20px 20px 20px !important;
  
}
.about-txt p {
    width: 100% !important;
}



    
    
    
    
    
    
    
    
    
    
    
    


}


/*Media Query End*/