body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit';
}
img {
	max-width: 100%;
	height: 0 auto;
}
a {
	text-decoration: none !important;
}
a:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
}
a:focus, a:hover {
	text-decoration: none !important;
}

/* Fonts Outfit Family */

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.eot');
    src: url('../fonts/Outfit-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Outfit-Regular.woff2') format('woff2'),
         url('../fonts/Outfit-Regular.woff') format('woff'),
         url('../fonts/Outfit-Regular.ttf') format('truetype'),
         url('../fonts/Outfit-Regular.svg#Outfit-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.eot');
    src: url('../fonts/Outfit-Medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Outfit-Medium.woff2') format('woff2'),
         url('../fonts/Outfit-Medium.woff') format('woff'),
         url('../fonts/Outfit-Medium.ttf') format('truetype'),
         url('../fonts/Outfit-Medium.svg#Outfit-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Bold.eot');
    src: url('../fonts/Outfit-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Outfit-Bold.woff2') format('woff2'),
         url('../fonts/Outfit-Bold.woff') format('woff'),
         url('../fonts/Outfit-Bold.ttf') format('truetype'),
         url('../fonts/Outfit-Bold.svg#Outfit-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
.header-sec{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
}
.header-top{
   overflow: hidden;
   -moz-transition: all 0.5s ease 0s;
   -webkit-transition: all 0.5s ease 0s;
   transition: all 0.5s ease 0s;
   height: 48px;
   padding: 5px 0;
   background-color: #556970;
}
.darkHeader .header-top {
    height: 0;
    padding: 0;
}
.header-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 8px;
}
.header-top-left span{
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: "Outfit";
}
.header-top-left span img{
    margin-right: 5px;
}
.header-top-right span{
    display: inline-block;
    font-size: 15px;
    color: #fefefe;
    font-weight: normal;
    margin-right: 10px;
}
.header-top-right span img{
    margin-right: 5px;
}
.header-top-right span:last-child{
    margin-right: 0;
}
.header-top-right span a{
    display: inline-block;
    font-size: 15px;
    color: #fefefe;
    font-weight: normal;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-top-right a:hover{
    color: #aba944;
}
.header-line{
    display: inline-block;
    margin: 0 3px;
    font-weight: normal;
}
.header-social a{
    margin-right: 4px;
}
.header-social a:last-child{
    margin-right: 0;
}
.header-bottom{
    padding: 15px 0;
}
.darkHeader {
    background-color: #fff;
    top: 0;
    z-index: 999;
    animation: smoothScroll 1s;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.header-logo img {
    width: 313px;
    height: auto;
    transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
}
.header-menu ul {
    margin: 0;
    padding: 0;
}
.header-menu ul li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
	margin-right: 20px;
}
.header-menu ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #556970;
    font-weight: 500;
    text-transform: uppercase;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-menu ul li a:hover {
    color: #aba944;
}
.header-menu{
    display: inline-block;
    vertical-align: middle;
}
.header-menu ul .header-btn1{
    margin-right: 10px;
}
.header-menu ul .header-btn1 a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    background-color: #aba944;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-menu ul .header-btn2{
    margin-right: 0;
}
.header-menu ul .header-btn2 a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    background-color: #556970;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header-menu ul .header-btn1 a:hover, .header-menu ul .header-btn2 a:hover {
    background-color: #000;
    color: #fff;
}
.banner-sec{
    position: relative;
    margin-top: 48px;
}
.ms-slide::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background-image: -moz-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}
.ms-slide-info{
    position: absolute !important;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translatey(-50%);
    z-index: 99;
}
.banner-welcome-txt{
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #556970;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    background: url("../images/banner-icon-img.png") no-repeat left center;
    background-size: auto;
    padding: 15px 0 15px 35px;
    border-bottom: 6px double #556970;
}
.banner-welcome-txt strong{
    color: #aba944;
}
.banner-head{
    font-size: 40px;
    text-transform: uppercase;
    color: #606060;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 12px;
}
.banner-head strong{
    color: #aba944;
}
.banner-txt{
    font-size: 16px;
    font-weight: normal;
    color: #252525;
    margin-bottom: 20px;
}
.banner-btn a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    background-color: #556970;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.banner-btn a:last-child{
    margin-left: 10px;
    background-color: #aba944;
}
.banner-btn a:hover{
    background-color: #000;
}
.about-box{
    margin-top: -150px;
    position: relative;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    background: url("../images/round-icon-img.png") #556970 no-repeat top 15px right;
    background-size: 100px;
}
.about-box-head{
    font-size: 26px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.about-box-txt{
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 10px;
}
.about-box-btn a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
    padding: 10px 80px;
    border-radius: 10px;
    background-color: #aba944;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.common-around{
    display: inline-block;
    border-radius: 30px;
    filter: drop-shadow(0px 1px 3.5px rgba(0,0,0,0.35));
    background-color: #ffffff;
    padding: 8px 30px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.about-head{
    font-size: 40px;
    line-height: 1.2;
    color: #2b2b2b;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.about-txt{
    font-size: 16px;
    font-weight: normal;
    color: #2b2b2b;
}
.services-sec{
    padding-top: 60px;
    padding-bottom: 60px;
}
.common-wrap{
    text-align: center;
}
.services-head{
    font-size: 40px;
    line-height: 1.2;
    color: #606060;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.services-head strong{
    color: #aba944;
}
.services-part{
    position: relative;
    border-radius: 10px;
    filter: drop-shadow(0px 1px 9px rgba(0,0,0,0.23));
    background-color: #ffffff;
    padding: 20px 15px;
	min-height: 100%;
}
.services-bg01::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img01.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg02::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img02.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg03::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img03.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg04::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img04.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg05::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img05.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg06::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-bg-img06.jpg") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
    opacity: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-bg01:hover::before, .services-bg02:hover::before, .services-bg03:hover::before, .services-bg04:hover::before, .services-bg05:hover::before, .services-bg06:hover::before{
    opacity: 1;
}
.services-part::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url("../images/srv-pattan-bg-img.png") no-repeat top center;
    background-size: cover;
    border-radius: 10px;
}
.services-part-wrap{
    position: relative;
    z-index: 1;
}
.services-part-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #556970;
}
.services-part:hover .services-part-icon{
    background-color: #aba944;
}
.services-part-title{
    font-size: 20px;
    line-height: 1.2;
    color: #aba944;
    font-weight: bold;
    text-transform: capitalize;
    padding: 15px 0;
}
.services-part:hover .services-part-title{
    color: #fff;
}
.services-part-txt{
    font-size: 16px;
    font-weight: normal;
    color: #556970;
    margin-bottom: 20px;
}
.services-part:hover .services-part-txt{
    color: #fff;
}
.srv-part-btn a{
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: #556970;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-part:hover .srv-part-btn a{
    color: #aba944;
    background-color: #fff;
}
.services-botton-btn{
    margin-top: 50px;
    text-align: center;
}
.services-botton-btn a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    background-color: #556970;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.services-botton-btn a:hover{
    background-color: #aba944;
}
.mission-vision-sec{
    padding-top: 80px;
    padding-bottom: 80px;
    background: url("../images/mission-bg-img.jpg") no-repeat top center;
    background-size: cover;
}
.mission-vision-part{
    border-radius: 10px;
    filter: drop-shadow(0px 7px 6.5px rgba(0,0,0,0.23));
    background-color: #ffffff;
    text-align: center;
}
.mission-vision-part img{
    border-radius: 10px;
    width: 100%;
}
.mission-wrap{
    padding: 0 20px 30px;
}
.mission-vision-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    filter: drop-shadow(0px 7px 6.5px rgba(0,0,0,0.23));
    background-color: #ffffff;
    margin-top: -50px;
}
.mission-vision-icon img{
    width: auto;
}
.our-mission-title{
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1a1b16;
    font-weight: bold;
    padding: 20px 0 10px;
}
.our-mission-txt{
    font-size: 16px;
    font-weight: normal;
    color: #1a1b16;
}
.choose-sec{
    padding-top: 80px;
    padding-bottom: 80px;
}
.choose-head{
    font-size: 40px;
    line-height: 1.2;
    color: #606060;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.choose-head strong{
    color: #aba944;
}
.choose-list ul{
    padding: 0;
    margin: 0;
}
.choose-list ul li{
    list-style: none;
    border-bottom: 1px solid #5569707c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px 10px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.choose-list ul li:hover{
    background-color: #556970;
    border-radius: 8px;
}
.choose-list ul li:last-child{
	border-bottom: 0;
    margin-bottom: 0;
}
.choose-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    border-radius: 28px;
    background-color: #556970;
    margin-right: 10px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.choose-list ul li:hover .choose-icon{
    background-color: #aba944;
}
.choose-list ul li:hover{
    background-color: #556970;
}
.choose-content-title{
    font-size: 20px;
    line-height: 1.2;
    color: #3f3f3f;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.choose-list ul li:hover .choose-content-title{
    color: #ffff;
}
.choose-content-txt{
    font-size: 16px;
    font-weight: normal;
    color: #3f3f3f;
}
.choose-list ul li:hover .choose-content-txt{
    color: #ffff;
}
.what-we-sec{
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #556970;
}
.what-we-sec .container-fluid{
    padding-left: 9%;
}
.what-we-head{
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.owl-carousel .owl-stage {
    padding-left: 0 !important;
}
.what-we-part{
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-height: 100%;
}
.what-we-part img{
    border-radius: 10px 10px 0 0;
    filter: drop-shadow(0px 6px 3px rgba(0,0,0,0.22));
}
.what-we-content{
    padding: 15px 10px 20px;
}
.what-we-content-title{
    font-size: 18px;
    line-height: 1.2;
    color: #3e3e3e;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.what-we-content-txt{
    font-size: 16px;
    font-weight: normal;
    color: #3e3e3e;
}
.image-box{
    position: relative;
}
.image-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    background: url("../images/what-we-pattan-img02.png") no-repeat top right;
    background-size: auto;
    z-index: 1;
}
.image-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    background: url("../images/what-we-pattan-img01.png") no-repeat bottom left;
    background-size: auto;
}
.what-we-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-color: #aba944;
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: normal;
    font-family: "Domine";
}
.what-no{
    text-align: end;
    margin-top: -25px;
    position: relative;
    z-index: 1;
    padding-right: 10px;
}
#service_slide .owl-stage {
     display: flex;
     padding-bottom: 0;
}
#service_slide .owl-item {
     min-height: 100%;
     display: flex;
     flex-wrap: wrap;
     margin-bottom: 30px !important;
}
#service_slide .item {
    flex: 0 0 auto;
    max-width: 100%;
}
.owl-nav{
    text-align: center;
}
.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background: url("../images/srv-arrow-img.png") #fff no-repeat center;
    transition: all 0.5s ease 0s;
	border-radius: 50%;
    margin: 0 5px;
}
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: url("../images/srv-arrow-img.png") #fff no-repeat center;
    transition: all 0.5s ease 0s;
	border-radius: 50%;
    transform: scalex(-1);
    margin: 0 5px;
}
.owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span {
    display: none;
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover{
    background-color: #aba944;
}
.info-sec{
    padding-top: 80px;
    padding-bottom: 80px;
    background: url("../images/info-bg-img.png") no-repeat top center;
    background-size: cover;
}
.info-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.info-head{
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
    text-transform: capitalize;
}
.info-btn a{
    display: inline-block;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 500;
    color: #556970;
    padding: 12px 30px;
    border-radius: 10px;
    background-color: #fff;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.info-btn a img{
    margin-right: 5px;
}
.info-btn a:hover{
    color: #000;
}
.news-sec{
    padding-top: 80px;
    padding-bottom: 40px;
}
.news-head {
    font-size: 40px;
    line-height: 1.2;
    color: #606060;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}
.news-head strong{
    color: #aba944;
}
.blog_outer {
    background: #f2f2f2;
    margin: 60px 0 0;
    padding: 40px 0 20px;
}
.abt_titl {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    font-family: 'Playfair Display';
    color: #3f1f57;
    margin-bottom: 20px;
}
.blog_block_inner {
    background: #fff;
    filter: drop-shadow(0px 3px 8px rgba(0,0,0,0.22));
    min-height: 100%;
	border-radius: 10px;
}
.blog_block_image img{
	border-radius: 10px 10px 0 0;
	width: 100%;
}
.blog_block_bottom {
    padding: 10px 25px;
}
.blog_block_date {
    margin-top: 10px;
    font-size: 14px;
    color: #556970;
}
.blog_block_heading a {
    font-size: 20px;
    margin: 10px 0;
    display: block;
    font-weight: 600;
    color: #606060;
    line-height: 1.3;
}
.blog_block_text {
    margin-bottom: 10px;
    color: #4b4b4b;
}
.blog_block_btn {
    background: #aba944;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 15px;
	border-radius: 4px;
	-moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.blog_block_btn:hover{
	background: #556970;
}
.testimonial-sec{
    padding-top: 80px;
    padding-bottom: 80px;
    background: url("../images/map-img.png") no-repeat top center;
    background-size: cover;
}
.testimonial-head{
    font-size: 35px;
    line-height: 1.2;
    color: #3f3f3f;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.sp-testimonial-free-section .testimonial-pagination .swiper-pagination-bullet{
	filter: drop-shadow(0px 6px 4px rgba(0,0,0,0.21)) !important;
	width: 20px !important;
	height: 20px !important;
}
.sp-testimonial-free-section .sp-testimonial-client-image, .sp-testimonial-client-designation{
	text-align: left !important;
}
.sp-testimonial-free{
	padding: 20px 20px !important;
	margin: 15px 10px !important;
	filter: drop-shadow(0px 4px 3.5px rgba(0,0,0,0.15)) !important;
	background: url("../images/quote-img.png") #ffffff no-repeat !important;
    background-size: 40px !important;
    background-position: bottom 30px right 30px !important;
	border-radius: 10px !important;
}
.testimonial-right .sp-testimonial-free-section.swiper-initialized{
	margin-right: 0 !important;
	margin-left: 0 !important;
}
.sp-testimonial-free-section .sp-testimonial-client-testimonial p{
	font-size: 16px !important;
	color: #3e3e3e !important;
	font-weight: normal !important;
	text-align: left !important;
	margin-bottom: 10px !important;
	padding: 0 !important;
	font-style: italic !important;
}
.sp-testimonial-client-testimonial{
	margin-bottom: 10px !important;
}
.sp-testimonial-client-rating{
	display: flex !important;
}
.sp-testimonial-client-name{
	font-size: 18px !important;
	color: #3e3e3e !important;
	font-weight: bold !important;
	font-family: "Helvetica" !important;
	text-align: left !important;
	margin-bottom: 15px !important;
}
footer{
    padding-top: 60px;
    background-color: #394346;
}
.footer-ndis{
    padding: 20px 0;
    width: 150px;
}
.footer-txt{
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}
.footer-title{
    font-size: 23px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.footer-list ul {
    margin: 0;
    padding: 0;
}
.footer-list ul li{
    list-style: none;
    padding-bottom: 5px;
    color: #fff;
}
.footer-list-last ul li{
    padding-bottom: 15px;
}
.footer-list ul li img{
    margin-right: 10px;
}
.footer-list ul li a{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;   
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.footer-list ul li span{
    display: inline-block;
    font-size: 16px;
    color: #363636;
    font-weight: 500;
}
 .footer-list-last ul li a{
     text-transform: none;   
 }
.footer-list ul li:last-child{
    padding-bottom: 0;
}
.footer-list ul li a:hover{
    color: #aba944;
    padding-left: 4px;
}
.footer-list-last ul li a{
    text-transform: none;
}
.footer-list-last ul li span{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
}
.footer-social{
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 30px;
}
.footer-social a{
    margin-left: 5px;
}
.footer-flag{
    margin-top: 40px;
    border-top: 1px solid #ffffffa4;
    border-bottom: 1px solid #ffffffa4;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-flag img{
    margin-right: 30px;
    width: 180px;
}
.flag-txt{
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
}
.copy-right-txt{
    font-size: 15px;
    color: #ffffff;
    font-weight: normal;
    text-align: center;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}
.copy-right-txt a{
    color: #ffffff;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.copy-right-txt a:hover{
    color: #aba944;
}
#back2Top.show {
    opacity: 1;
    right: 15px;
}
#back2Top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 25px;
    z-index: 999;
    padding-top: 5px;
    cursor: pointer;
    position: fixed;
    bottom: 54px;
    right: -30px;
    color: #fff;
    background-color: #aba944;
    text-align: center;
    opacity: 0;
    transition: ease 0.2s all 0s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.page .entry-header, .blog_page_header {
    background: url("../images/banner-img01.jpg") no-repeat top center !important;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 200px 0 !important;
    margin: 48px 0 50px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.page .entry-header:before, .blog_page_header:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background-image: -moz-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(255 255 255 / 90%) 0%, rgba(0, 0, 0, 0) 100%);
}
.page .entry-title, .blog_page_title {
    text-align: center !important;
    color: #556970 !important;
    width: 100% !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    position: relative !important;
    z-index: 99 !important;
    margin-bottom: 5px !important;
}
.breadcrumb-container {
    width: 100%;
    color: #aba944;
    position: relative;
    font-size: 15px;
}
.breadcrumb-container a {
    color: #aba944;
}
.sticky-whatsapp-btn {
    width: 40px;
    position: fixed;
    right: 10px;
    top: 440px;
    border-radius: 50%;
    z-index: 9999;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite; 
	animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}
  @keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #EDEDED;
    -moz-box-shadow: 0 0 0 0 #EDEDED;
    box-shadow: 0 0 0 0 #EDEDED;
  }
  70% {
      -webkit-box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
      -moz-box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
      box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
      -moz-box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
      box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
  }
}
.inner_content {
    padding: 20px 0;
}
.inner_page_img img{
    width: 100%;
}
.inner_titl {
    color: #606060;
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}
.inner_titl strong {
    color: #aba944;
}
.inner_titl:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #556970;
}
.inner_txt {
    color: #2b2b2b;
    font-size: 16px;
    font-weight: normal;
    margin-top: 20px;
}
.inner_list_txt{
    margin-top: 20px;
}
.inner_list_txt ul {
   padding: 0;
   margin: 0
}
.inner_list_txt ul li {
    background: url("../images/list-img.png");
    background-position: top 4px left;
    padding-left: 28px;
    background-repeat: no-repeat;
    background-size: 18px;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: normal;
    list-style: none;
    padding-bottom: 6px;
}
.inner_bottm_sec {
    background: #f1f1f1;
    padding: 30px 20px;
    text-align: center;
}
.inner_bottm_sec .inner_titl:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #aba944;
}
.core-img img{
    margin-bottom: 20px;
}
.core-box {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    min-height: 100%; 
}
.ref_form_box {
	padding: 35px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #606060;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
	color: #aba944;
	font-weight: bold;
}
.ref_form_box_label {
	color: #666;
	margin-top: 15px;
    margin-bottom: 5px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box_input select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	border-radius: 2px;
	color: #555;
	padding: 10px 30px 10px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
        outline: 0;
}
.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box .contact_btn input {
	font-weight: 600;
	background: #556970 !important;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 10px;
	padding: 13px 40px 12px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.ref_form_box .contact_btn input:hover{
	background: #aba944 !important;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #555;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.half_check .wpcf7-list-item {
	width: 45%;
}
.wpcf7-list-item label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wpcf7-list-item-label {
	position: relative;
	padding-left: 22px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	top: 1px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
	background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
	background-color: #aba944;
	border-color: #aba944;
}
.wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
	display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.contact_page_heading {
    color: #606060;
    font-size: 26px;
    text-transform: capitalize;
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
}
.contact_page_heading:before {
    position: absolute;
    content: "";
    bottom: 7px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #556970;
}
.contact_page_heading strong {
    color: #aba944;
}
.contact_page_info {
    position: relative;
    color: #000;
    margin-top: 25px;
    padding-left: 60px;
}
.contact-img {
    position: absolute;
    top: 3px;
    left: 0;
    background: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
}
.contact-text {
    color: #666;
    font-size: 16px;
}
.contact_page_info strong {
    color: #000 ;
    font-weight: 500;
    font-size: 18px;
}
.contact_page_info a {
    color: #666;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: normal;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.contact_page_info a:hover{
    color: #aba944;
}

.contact_right {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding: 25px 20px;
    border-radius: 5px;
}
.get-sec .frm_fld input {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
}
.get-sec .frm_fld input::placeholder{
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
}
.get-sec .frm_fld select {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
	
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
    appearance: none;
    background: url("../images/dropdown.png") #fff no-repeat center right 10px;
    background-size: auto;
}
.get-sec .frm_fld textarea {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
    border-radius: 4px;
    /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
    height: 120px;
}
.get-sec .frm_fld textarea::placeholder{
    font-size: 16px;
    font-weight: normal;
    color: #666 ;
}
.get-sec .send_btn input {
    margin-top: 30px !important;
    text-transform: uppercase !important;
    background: #556970 !important;
    color: #fff !important;
    padding: 14px 30px !important;
    font-weight: 500 !important;
	border-radius: 10px !important;
    font-size: 17px !important;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.get-sec .send_btn input:hover {
    background-color: #aba944 !important;
}
.get-sec .contact-deatails .frm_fld p, .get-sec .contact-deatails .send_btn p{
    margin-bottom: 0;
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color: #aba944 !important;
}
.get-sec .frm_fld select {
    width: 100%;
    margin-top: 18px;
    border: none;
    outline: 0;
 /* background-color: #ededed; */
    border: 1px solid #ccc !important;
    padding: 12px 10px;
    border-radius: 6px;
    appearance: none;
    background: url("../images/dropdown.png") no-repeat center right 10px;
    font-size: 16px;
    font-weight: normal;
    color: #666;
}
.get-sec .frm_fld .cv-title{
    font-size: 18px;
    font-weight: bold;
}
.complaints-head:before {
    left: 50%;
    transform: translatex(-50%);
}
.inner-btn a{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    background-color: #aba944;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.inner-btn a:hover{
    background-color: #556970
}
.titl_separate:after {
    left: 50%;
    transform: translateX(-50%);
}
.core-box .inner_titl {
    font-size: 23px;
}
.post .entry-summary, .post .entry-content {
    color: #666;
}
.more-link {
    background: #aba944;
    display: block;
    color: #fff !important;
    text-transform: capitalize;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0 10px 18px;
    width: 200px;
    margin-top: 30px;
    border-radius: 10px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.more-link:hover {
    background: #000;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    padding: 8px 0 9px;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}
.footer_btn1 {
    background: #aba944;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important; 
    text-transform: capitalize;
}
.footer_btn2 {
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    padding-top: 9px;
}
.footer_btn3 {
    background: #000;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important; 
    text-transform: capitalize;
}
.thankyou-btn a {
    text-decoration: none !important;
    color: #fff;
    background: #aba944;
    text-align: center;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    transition: ease 0.5s all 0s;
}
.thankyou-btn a:hover{
    background-color: #000;
}
.error_page {
    padding: 40px 0 80px;
}



/*================Responsive==============*/

@media only screen and (min-width : 300px) and (max-width : 1023px){
	.header-top, .header-menu, .services-head br{
		display: none;
	}
	.header-logo img{
		width: 216px;
		height: auto;
	}
	.header-bottom{
		padding: 20px 0;
		background-color: #fff;
	}
	.rmp-menu-title-image {
		width: 80%;
		height: 100%;
	}
	.banner-sec {
		margin-top: 75px;
	}
	.banner-head {
        font-size: 28px !important;
    }
	.services-head, .choose-head, .about-head, .what-we-head, .info-head, .news-head, .testimonial-head{
		font-size: 28px;
	}
	.banner-btn a{
		font-size: 15px;
		padding: 12px 25px;
	}
	.info-btn a{
		font-size: 20px;
	}
	.rmp-submenu .rmp-menu-item-link {
		height: auto !important;
		line-height: 1.2 !important;
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	.services-sec{
		padding: 60px 0 40px;
	}
	.mission-vision-sec, .choose-sec, .what-we-sec, .news-sec, .testimonial-sec, .info-sec{
		padding: 40px 0;
	}
	footer{
		padding-top: 40px;
	}
	.our-mission-title {
		font-size: 22px;
	}
	.ms-slide::before, .page .entry-header:before, .blog_page_header:before{
		width: 100%;
	}
	.page .entry-header, .blog_page_header {
        padding: 150px 0 !important;
        margin: 75px 0 50px !important;
    }
}

@media only screen and (min-width : 300px) and (max-width : 991px){
	.about-box{
		margin-top: 40px;
	}
	.ms-view, .ms-slide {
		min-height: 450px !important;
	}
	.ms-slide-bgcont img {
		object-fit: cover;
	}
	.about-box{
		max-width: 100%;
	}
	.what-we-sec .container-fluid {
		padding-left: 0;
	}
	.owl-carousel .owl-stage {
		padding-left: 50px !important;
	}
	.info-wrap{
		justify-content: center;
		flex-wrap: wrap;
	}
	.info-head{
		margin-bottom: 30px;
		text-align: center;
	}
	.footer-flag{
		justify-content: center;
        flex-wrap: wrap;
	}
	.footer-flag img{
        margin-right: 0;
	}
	.flag-txt{
		margin-top: 10px;
		text-align: center;
	}
	.copy-right-txt{
		padding-bottom: 60px;
	}
}

@media only screen and (max-width : 320px) {
	.banner-wrap .container{
		width: auto;
	}
   .inner_page_img img {
        margin-bottom: 30px;
    }
    .contact_right {
        margin-top: 30px;
    }
}

@media only screen and (min-width : 321px) and (max-width : 480px) {
	.banner-wrap .container{
		width: auto;
	}
   .inner_page_img img {
        margin-bottom: 30px;
    }
    .contact_right {
        margin-top: 30px;
    }
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.banner-wrap .container{
		width: auto;
	}
	.inner_page_img img {
        margin-bottom: 30px;
    }
	.contact_right {
        margin-top: 30px;
    }
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-top-left span, .header-top-right span a, .header-top-right span{
		 font-size: 13px;
	}	
	.header-menu ul li{
		  margin-right: 0;
	}
	.header-menu ul .header-btn1 a{
		padding: 12px 25px;
	}
	.banner-head {
        font-size: 28px;
	}
	.banner-welcome-txt{
		margin-bottom: 15px;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : portrait) {
	.header-top-left span, .header-top-right span a, .header-top-right span{
		 font-size: 13px;
	}	
	.header-menu ul li{
		  margin-right: 0;
	}
	.header-menu ul .header-btn1 a{
		padding: 12px 25px;
	}
	.banner-head {
        font-size: 28px;
	}
	.banner-welcome-txt{
		margin-bottom: 15px;
	}
}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : landscape) {
	.header-top-left span, .header-top-right span a, .header-top-right span{
		 font-size: 13px;
	}	
	.header-menu ul li{
		  margin-right: 0;
	}
	.header-menu ul .header-btn1 a{
		padding: 12px 25px;
	}
	.banner-head {
        font-size: 28px;
	}
	.banner-welcome-txt{
		margin-bottom: 15px;
	}
}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .header-top-left span, .header-top-right span a, .header-top-right span{
		 font-size: 13px;
	}	
	.header-menu ul li{
		  margin-right: 0;
	}
	.header-menu ul .header-btn1 a{
		padding: 12px 25px;
	}
	.banner-head {
        font-size: 28px;
	}
	.banner-welcome-txt{
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 1424px) {
	.what-we-sec .container-fluid {
		padding: 0 5% !important;
	}
	.owl-carousel .owl-stage{
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}

@media screen and (min-width: 1624px) {
	.what-we-sec .container-fluid {
		padding: 0 10% !important;
	}
	.owl-carousel .owl-stage{
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}

@media screen and (min-width: 1920px) {
	.what-we-sec .container-fluid {
		padding: 0 17% !important;
	}
	.owl-carousel .owl-stage{
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}

@media screen and (min-width: 2048px) {
	.what-we-sec .container-fluid {
		padding: 0 19% !important;
	}
	.owl-carousel .owl-stage{
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}

@media screen and (min-width: 2550px) {
	.what-we-sec .container-fluid {
		padding: 0 24% !important;
	}
	.owl-carousel .owl-stage{
		padding-left: 50px !important;
		padding-right: 50px !important;
	}
}