
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body{
	overflow-x: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
html {
  scroll-behavior: smooth;
  
}
.main-wrappaer-4 {
    padding: 40px 0 80px 0;
    position: relative;
}
.link-hr
{
	color:#555555;
	font-family: "Outfit", sans-serif;
	    font-size: 18px;
	    transition: 0.5s all;
}
.link-hr:hover
{
	color:#fdb515;
}
.see-hr
{
    font-family: "Outfit", sans-serif;
    color: #555;
    font-size: 15px;
    float: right;
}
.see-hr:hover
{
	color:#fdb515;
}

#contact-div
{
	scroll-padding-top: 200px;
}

.fade-up {
  opacity: 0;
  transform: translateY(10px);
}

.header .menu > .menu-item > a.active {
    color:  #fdb515;
}
/*header*/
.header{
	position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 24px 0;
  background: #111111;
}
.header-main{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 0 0px;
	}
.header .logo{
	padding: 0;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .menu
{
	margin-left:20px;
}
.header .nav-menu{
	padding: 0 0 0 26px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-right: 10px;
	position: relative;
}
.header .menu > .menu-item > a{
display: block;
    padding: 0 10px;
    font-size: 18px;
    color: #555555;
    font-weight: normal;
    line-height: 49px;
    font-weight: 350;
    font-family: "Outfit", sans-serif;
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #fdb515;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 2px;
	width: 24px;
	background-color: #fff;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: transparent;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}
.logo img
{
	    width: 156px;
    height: 22px;
}
.banner-div
{
    height: 787px;
    object-fit: cover;
    object-position: 50% 50%;
    background-image: url(../images/1.jpg);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;

}
.banner-div img
{
width: 526px;
    height: 83px;
    position: relative;
    right: -540px;
    top: 239px;
  
 }


/* .testimonial .owl-buttons .owl-next:before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background-image: url('../images/right-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


 .testimonial .owl-buttons .owl-prev:before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background-image: url('../images/left-arrow.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
*/
 .title-abt {
    font-family: "Outfit", sans-serif;
    font-size: 56px;
    color: #333;
    font-weight: bold;
    line-height: normal;
}
.title-div-abt {
    padding: 0 160px 0 260px;
}
 .sec-1-about
 {
 	padding: 120px 0 40px 0;
 }
 .sec-2-about
 {
 	padding: 40px 160px 40px 180px;
 }
 .ic-img
 {
    position: absolute;
    left: -85px;
    width: 440px;
    top: 85px;
    z-index: -1;
 }
.sec-div-4 .owl-prev
 {
 	    position: absolute;
    top: 250px;
   	left: 80px;
 }
 .sec-div-4 .owl-next
 {
 	    position: absolute;
    top: 250px;
   	right: 80px;
 }
 .sec-div-4 .owl-next img
 {
width: 25px;
 filter:drop-shadow(0px 1px 0.15px #B2B2B2);
 }
.sec-div-4 .owl-prev img
{
 width: 25px;
 filter:drop-shadow(0px 1px 0.15px #B2B2B2);
}
 .testimonial .owl-next
 {
 	filter:drop-shadow(0px 1px 0.15px #B2B2B2);
 }
 .sec-div-4 .owl-dots
{
    position: absolute;
    bottom: 43px;
    width: 100%;
    display: flex;
    justify-content: center;
}

 .sec-div-4 .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid rgba(255,255,255,1);
    border-radius: 50%;
    margin:0 2px;
}
 .sec-div-4 .owl-carousel button.owl-dot.active
 {
background-color: #fff;
 border: 2px solid rgba(255,255,255,1);
 }
/**/
.testimonia .owl-prev
 {
 	    position: absolute;
    top: 250px;
   	left: 80px;
 }
 .testimonia .owl-next
 {
 	    position: absolute;
    top: 250px;
   	right: 80px;
 }
 .testimonia .owl-next img
 {
width: 25px;
 filter:drop-shadow(0px 1px 0.15px #B2B2B2);
 }
.testimonia .owl-prev img
{
 width: 25px;
 filter:drop-shadow(0px 1px 0.15px #B2B2B2);
}

 .banner-div h2
 {
 	    font-size: 44px;
 	    line-height: 1.1em;
 	    font-family: "Outfit", sans-serif;
 	    color:#111;
 	    margin-top: 15px;
 	    font-weight: 600;
 	       position: relative;
     right: -560px;
    top: 239px;
 }
  .banner-div-div
 {
 	 
 }
.sec-1-div
{
	padding:83px 0 0px 0;
}
.title
{
font-family: "Outfit", sans-serif;
    font-size: 53px;
    color: #111;
    font-weight: bold;
    line-height: normal;
}
.title-div
{
	    padding: 0 100px 0 240px;
}
.pha-info
{
color: #111111;
font-family: "Outfit", sans-serif;
font-size: 18px;
font-weight: 350;
}
.pha-1
{
	    padding-right: 138px;
    margin-top: 42px;
}
/**/
.testimonial .description:before{
  content: "\f10d";
font-family: "FontAwesome";
font-weight: 900;
position: absolute;
top: 19px;
left: 0;
color: #dbdada;
font-size: 45px;
}

.testimonial
{
	padding: 0 30px;
    margin: 45px 0 45px 0;
}
.testimonial .title{
    font-size: 18px;
    font-weight: bold;
    color: #363636;
    text-transform: capitalize;
    margin: 1em 0 0 0;
}
.img-test
{
	width: 100%;
	height: 671px;
}
.img-test img
{
width: 100%;
height: 100%;
}
.testimonial .owl-next img
 {
width: 25px;
 filter:drop-shadow(0px 1px 0.15px #B2B2B2);
 }
.testimonial .owl-prev img {
    width: 25px;
    filter: drop-shadow(0px 1px 0.15px #B2B2B2);
    position: absolute;
    left: 30px;
}
.testimonial .owl-next img {
    width: 25px;
    filter: drop-shadow(0px 1px 0.15px #B2B2B2);
    position: absolute;
    right: 10px;
}

.testimonial .owl-prev
 {
 	    position: absolute;
    top: 250px;
   	left: 80px;
 }
 .testimonial .owl-next
 {
 	    position: absolute;
    top: 250px;
   	right: 80px;
 }
.testimonial .post{
    display: block;
    font-size: 15px;
    color: #363636;
}
.testimonial .owl-buttons{
    width: 100%;
    height: 40px;
}
.testimonial .owl-prev,
.owl-next{
 /*left: -120px;*/
    transition: all 0.4s ease-in-out 0s;
}
.testimonial .owl-prev{
 /*   position: absolute;*/
     position: absolute;
     left: -46px;
    top:300px;
    /*transition: all 0.4s ease-in-out 0s;*/
}
.testimonial .owl-next{
	    position: absolute;
    left: auto;
    right: -26px;
     top:300px;
}
.owl-theme .owl-controls .owl-buttons div
{
	background: #6bdaee;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    opacity: 1;
}
.owl-buttons .owl-prev:before,
.owl-buttons .owl-next:before{
    content: "\f104";
    font-family: "FontAwesome";
    font-weight: 350;
    font-size: 60px;
    font-weight: 200;
    color: #4a0522;
    line-height: 20px;
    opacity: 0.8;
}
.owl-buttons .owl-next:before{
    content: "\f105";
}
.owl-buttons .owl-prev:hover:before,
.owl-buttons .owl-next:hover:before{
    opacity: 1;
}
.owl-theme .owl-controls .owl-buttons div{
    background: transparent;
}
.owl-theme .owl-controls{
    margin-top: 40px;
}
.owl-theme .owl-controls .owl-page span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 4px solid #ccc;
   /* background: url("../images/img-1.jpg") no-repeat;
    background-size: cover;*/
    transition: all 0.3s ease-in-out 0s;
}
/*.owl-theme .owl-controls .owl-page:nth-child(2) span{
    background: url("../images/img-2.jpg") no-repeat;
    background-size: cover;
}
.owl-theme .owl-controls .owl-page:nth-child(3) span{
    background: url("../images/img-3.jpg") no-repeat;
    background-size: cover;
}*/
.owl-theme .owl-controls.clickable .owl-page:hover span{
    opacity: 0.5;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page.active:hover span{
    border-color: #4a0522;
    opacity: 1;
}
@media only screen and (max-width: 479px){
    .owl-buttons{ bottom: 30%; }
}
.title-t1
{
	    color: #fdb515;
    font-size: 33px;
    letter-spacing: 0.05em;
    line-height: normal;
    text-align: center;
    font-weight: 580;
    font-family: "Outfit", sans-serif;
}
.ser-box
{
	margin-top: 50px;
}
.subtitle-t1
{
	    color: #333333;
    text-align: center;
    line-height: 1.3em;
    text-align: center;
    font-size: 36px;
    padding: 0 304px;
    font-weight: 580;
    margin: 16px 0;
    font-family: "Outfit", sans-serif;
}
.ser-box img
{
	display: block;
	width: 125px;
	margin: 0 auto 40px auto;
}
.ser-box
{
	margin: 50px 20px 0 40px;
}
.serv-outer-box
{
	padding: 0 50px;
}
.ser-info
{
	    color: #333333;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 350;
}
.sec-div-2
{
	margin-bottom: 7em;
}
.ser-title
{
color: #333333;
    font-size: 38px;
    line-height: normal;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}
.left-sec-3_01
{
	margin: 0px 0 0 0;
	padding:0 100px 0 140px;
}
.left-sec-3
{
	margin: 148px 0 0 0;
	padding:0 0px 0 148px;
}
.ser-info-1_2
{
	color: #333333;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 350;
}
.left-sec-31
{
	padding: 0 10px 0 20px;
}
.list-ser
{
      font-size: 18px;
    font-family: "Outfit", sans-serif;
    color: #333333;
    letter-spacing: 0em;
    list-style-type: disc;
    margin-left: 25px;
    margin-top: 14px;
    font-weight: 350;
    margin-right: 24px;
}
.list-ser li
{
margin-bottom: 0px;
}
.spcn-btn
{
	margin-left:60px;
}
.sec-div-5
{
	padding:120px 0;
}
.sec-div-6
{
	padding: 40px 0;
	background-color: #333333;
}
.info-cnt-1
{
	    text-align: center;
    font-size: 18px;
       font-family: "Outfit", sans-serif;
       color: #fff;
       font-weight: 350;
       margin: 0;
}
.link-cnt
{
	 font-size: 18px;
       font-family: "Outfit", sans-serif;
           color: #fdb515;
}
.add-line
{
	    font-size: 16px;
    text-align: center;
        font-family: "Outfit", sans-serif;
        color: #fff;
        margin: 0px 0 22px 0;
            font-weight: 350;
}
.add-line-1
{
	 font-size: 16px;
    text-align: center;
        font-family: "Outfit", sans-serif;
        color: #fff;
            font-weight: 500;
}

.link-cnt-mail
{
	    text-align: center;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    color: #fdb515;
    font-weight: 350;
    line-height: 1.8em;
    margin: 22px 0 22px 0;
}
.addr-div
{
	margin-top: 60px;
}
.cn-t1
{
	color: #fdb515;
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	font-weight: 540;
	margin-bottom: 20px;
	    letter-spacing: 0.1em;
    line-height: normal;

}
.sec-div-5-div
{
	padding: 0 28px;
}
.cnt-t1
{
	display: flex;
    justify-content: center;
    /* align-items: flex-end; */
    flex-direction: column;
}
.sub-btn
{
	background-color: #fdb515;
    border: solid #fdb515;
    border-radius: 100px;
    width: 140px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    text-align: center;
    color:#fff;
    margin-bottom: 30px;
    cursor: pointer !important;
}
.sub-btn:hover
{
background-color: #555555;
border:solid #555555;
}
.form-label
{
	    color: #333333;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 350;
}
.right-cont
{
	    margin-left: 130px;
	    position: relative;
}
.form-control
{
border-top: none;
border-radius: 0;
border-right:0;
border-left:0;
border-bottom: 1px solid #545555;
height: 45px;
color: #000;
margin-bottom: 40px;
background-color: transparent;
}
.addr-div
{
	    margin-top: 60px;
    margin-right: 220px;
}
.ad1
{
	color: #555;
	font-family: "Outfit", sans-serif;
	font-size: 18px;
	font-weight: 350;
	margin: 0 0 6px 0;
}
.txt-cnt
{
	text-align: center;
}
.cnt-h1-1
{
	    line-height: normal;
    font-size: 20px;
    font-weight: 530;
    font-family: "Outfit", sans-serif;
    color: #333333;
    letter-spacing: 0em;
}
.cnt-h1
{
	    line-height: 1.3em;
    font-size: 36px;
    font-weight: 530;
    margin-bottom: 36px;
    font-family: "Outfit", sans-serif;
    color: #333333;
    letter-spacing: 0em;
}
.cas-box {
    margin: 80px 0;
    padding:0 124px 0 150px;
}
.clickbtn
{
	color:#111111;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
	font-family: "Outfit", sans-serif;
}
.main-wrpaaer-2
{
	margin:120px 0 100px 0;
}
.comm-box
{
	    padding: 28px 14px 28px 14px;
    border: 1px solid rgba(213, 213, 213, 0.75);
    height: 405px;
        margin: 0 20px 46px 0px;
}
.inside-text-box-1
{
background-color: #fff;
    padding: 60px 26px;
    margin: 0 128px;
}
.sec-div-4 .qut-test 
{
margin-bottom: 2em;
display: inline-block;
margin-left:auto;
margin-right:auto;
}
.right-cont .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #fdb515;
    border-bottom: 2px solid #fdb515;
    outline: 0;
    transition: 0.5s all;
    box-shadow: none;
}
.inside-text-box
{

  
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}
.infotest
{
	    font-size: 20px;
	    color:#555;
	    font-weight: 350;
	    text-align: center;
	    margin-bottom: 40px;
	    font-family: "Outfit", sans-serif;
}
.comm-box
{
	transition: 0.3s all;
	cursor: pointer;
}
.comm-box:hover .comm-box-title
{
color:#fdb515;
	transition: 0.3s all;
}
.comm-box:hover .comm-box-pha
{
color:#fdb515;
	transition: 0.5s all;
}
.cm-txt
{
	color: #555555;
	font-size: 14px;
	    font-family: "Outfit", sans-serif;
}
.infotest-t1
{
	  font-size: 16px;
	    color:#555;
	    font-weight:550;
	    text-align: center;
	    margin: 0;
	    font-family: "Outfit", sans-serif;
}
.in-comm-box
{
    height: 90%;
}
.in-comm-box-1
{
	border-top:1px solid rgba(213, 213, 213, 0.75);
	padding:16px 0;
}
.infotest-t2
{
	  font-size: 15px;
	    color:#555;
	    font-weight:350;
	    text-align: center;
	    font-family: "Outfit", sans-serif;
}
.comm-box-title
{
	    font-size: 22px;
	     font-family: "Outfit", sans-serif;
	     color: #555555;
	     margin-bottom: 30px;
}
.div-sec-1
{
	margin-top:4em;
}
.comm-box-pha
{
	    color: #555;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 350;
}
.H3vOVf {
    color: #555555;
     font-family: "Outfit", sans-serif;
     font-weight: 500;
    line-height: 1.4;
    overflow-wrap: break-word;
    -webkit-text-decoration:none;
    text-decoration: none;
    word-break: break-word;
}
.update
{
	    font-size: 14px;
    line-height: 1.5;
     color: #555555;
     font-family: "Outfit", sans-serif;
}
.post-wrpaeer
{
	padding: 0 100px;
}
.post-wrpaeer-box
{
	margin:40px 0 30px 0;
	padding: 80px 80px 50px 80px;
	border: 1px solid rgba(213, 213, 213, 0.75);
}
.inside-text-box
{
	background-color: #fff;
	padding:120px 100px;
}
.hed-c1
{
	 font-family: "Outfit", sans-serif;
	 color: #555;
	 font-size: 18px;
	 margin: 0 0 30px 0;
}
.hed-c2
{
	 font-family: "Outfit", sans-serif;
	 color: #555;
	 font-size: 15px;
	  float: right;
}
.txt-t1
{

	line-height: 1.3em;
    font-size: 36px;
    font-weight: 530;
    margin-bottom: 36px;
        font-family: "Outfit", sans-serif;
            color: #333333;
    letter-spacing: 0em;
}
.main-wrappaer-3
{
	padding: 128px 0 100px 0;
    position: relative;
}
.comm-box-pha-1 {
    color: #555;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 350;
}
.list-case-1
{
	   color: #555;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 350;
    list-style-type: disc;
    margin-left:14px;
}
.list-case-1 li
{
margin-top:10px ;
}
.mar-div-30px
{
	margin-bottom: 30px;
}
.list-case-2
{
	   color: #555;
    font-family: "Outfit", sans-serif;
    font-size: 17px;
    font-weight: 350;
    list-style-type: decimal;
    margin-left:14px;
}
.cm-txt-1 {
    color: #555555;
    font-size: 15px;
    font-family: "Outfit", sans-serif;
        margin: 23px 0 0 0;
}
.list-case-2 li
{
margin-top:10px ;
}
.cas-hed
{
	font-weight: 600;
	line-height: 35px;
	font-size: 28px;
	color:#555555;
}
.case-btm
{
	border-top:1px solid rgba(213, 213, 213, 0.75);
	margin-top:20px;
}

/*cmm*/
.comm-box_1 {
       padding: 28px 14px 28px 14px;
    border: 1px solid rgba(213, 213, 213, 0.75);
    height: 310px;
    margin: 0 0px 20px 0px;
}
.comm-box-title_1 {
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    color: #555555;
    margin-bottom: 30px;
}
.in-comm-box_1 {
    height: 88%;
}
.in-comm-box-1_2
{
	    border-top: 1px solid rgba(213, 213, 213, 0.75);
    padding: 16px 0;
}
.comm-box-pha_1 {
    color: #555;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 350;
}
.heart {
  width: 20px;
  height: 20px;
  background: url('../images/like--v1.png') no-repeat top;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.2s;
  float: right;
}

.heart:hover {
  transform: scale(1.1);
}

.heart.filled {
  background: url('../images/like--v1__1.png') no-repeat top;
  background-size: contain;
}

/* Initial hidden state */
/* Make sure no padding/margin is affecting layout */
#expert-section,
.image-parallax-wrapper,
.parallax-img {
  margin: 0;
  padding: 0;
}

.image-parallax-wrapper {
  position: relative;
  overflow: hidden;
  height: 100vh; /* full screen height for strong parallax */
}

.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 150%; /* stretch image slightly larger */
  transform: translate3d(0, 0, 0);
  will-change: transform;
  object-fit: contain;
}
/*Media */


@media only screen and (max-width: 820px) {
	.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 0px;
}
  
.post-wrpaeer {
    padding: 0 10px;
}
.post-wrpaeer-box {
    margin: 40px 0 30px 0;
    padding: 20px 20px;
    border: 1px solid rgba(213, 213, 213, 0.75);
}
.main-wrpaaer-2 {
    margin: 80px 0 40px 0;
}
.cas-box {
    margin: 20px 0;
    padding: 10px;
}
.sec-2-about {
    padding: 20px 60px 40px 60px;
}
.sec-1-about {
    padding: 80px 0 40px 0;
}
.banner-div img {
    width: 70%;
    height: auto;
    position: relative;
    right: 0;
    top: 239px;
    margin-left: auto;
    display: block;
}
.title-div {
    padding: 0 20px;
}
.subtitle-t1 {
    color: #333333;
    text-align: center;
    line-height: 1.3em;
    text-align: center;
    font-size: 36px;
    padding: 0 20px;
    font-weight: 580;
    margin: 16px 0;
    font-family: "Outfit", sans-serif;
}
.left-sec-3_01 {
    margin: 0px 0 0 0;
    padding: 0 10px;
}
.image-parallax-wrapper {
    position: relative;
    overflow: hidden;
    height: 55vh;
}
.inside-text-box {
    background-color: #fff;
    padding: 80px 10px;
}
.inside-text-box {
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    height: 700px;
}
.left-sec-3 {
    margin: 0;
    padding: 0 20px;
}
.ser-box {
    margin: 50px 0px 0 0px;
}
.banner-div h2 {
    font-size: 44px;
    line-height: 1.1em;
    font-family: "Outfit", sans-serif;
    color: #111;
    margin-top: 15px;
    font-weight: 600;
    position: relative;
    right: 0;
    top: 239px;
    text-align: right;
}
.testimonial {
    padding: 0 30px;
    margin: 10px 0 10px 0;
}
.img-test {
    width: 100%;
    height: 500px;
}
.right-cont {
    margin-left: 0;
    position: relative;
}
.addr-div {
    margin-top: 0;
    margin-right: 14px;
}
.title-div-abt {
    padding: 0 60px;
}
.pha-1 {
    padding-right: 0;
    margin-top: 42px;
}
.cnt-t1 {
    display: flex;
    justify-content: flex-start;
    /* align-items: flex-end; */
    flex-direction: column;
}

}

@media only screen and (max-width: 600px) {

	.title-div {
    padding: 0 10px;
}
.pha-1 {
    padding-right: 0;
    margin-top: 42px;
}
.banner-div img {
        width: 84%;
        height: auto;
        position: relative;
        right: 0;
        top: 141px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-left: auto;
    }
.banner-div h2 {
        font-size: 40px;
        line-height: 1.1em;
        font-family: "Outfit", sans-serif;
        color: #111;
        margin-top: 15px;
        font-weight: 600;
        position: relative;
        right: 0;
        top: 152px;
        /* text-align: inherit; */
        text-align: right;
    }
.img-test {
    width: 100%;
    height: 400px;
}
.img-test img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial .owl-next {
    position: absolute;
    left: auto;
    right: -26px;
    top: 180px;
}
.testimonial {
    padding: 0 20px;
    margin: 45px 0 45px 0;
}
.testimonial .owl-prev {
    /* position: absolute; */
    position: absolute;
    left: -46px;
    top: 180px;
    /* transition: all 0.4s 
ease-in-out 0s; */
}
.addr-div {
    margin-top: 40px;
    margin-right: 0;
}
  .right-cont {
    margin-left: 0;
    position: relative;
    margin-top: 2em;
}
.subtitle-t1 {
    color: #333333;
    text-align: center;
    line-height: 1.3em;
    text-align: center;
    font-size: 36px;
    padding: 0;
    font-weight: 580;
    margin: 16px 0;
    font-family: "Outfit", sans-serif;
}
.ser-box {
    margin: 50px 0px 0 0px;
}
.ser-box {
    margin: 40px 0px 0 0px;
}
.left-sec-3 {
    margin: 0;
    padding: 0 0px 0 10px;
}
.left-sec-3_01 {
    margin: 0px 0 2em 0;
    padding: 0 10px;
}
.serv-outer-box {
    padding: 0 14px;
}
.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 88%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    object-fit: contain;
}
.sec-div-4 .owl-next img {
    width: 20px;
    filter: drop-shadow(0px 1px 0.15px #B2B2B2);
}
.sec-div-4 .owl-next {
    position: absolute;
    top: 250px;
    right: 7px;
}
.sec-div-4 .owl-prev img {
    width: 20px;
    filter: drop-shadow(0px 1px 0.15px #B2B2B2);
}
.sec-div-4 .owl-prev {
    position: absolute;
    top: 250px;
    left: 7px;
}
.sec-div-4 .owl-prev img {
    width: 20px;
    filter: drop-shadow(0px 1px 0.15px #B2B2B2);
}
.inside-text-box {
  background-color: #fff;
        padding: 60px 20px;
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 0px;
}
.sec-div-5 {
    padding: 80px 0;
}
.spcn-btn {
    margin-left: 0;
    margin-top: 20px;
    display: block;
}
.inside-text-box {
background-size: cover;
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        height: 650px;
}
.inside-text-box-1 {
    background-color: #fff;
    padding: 20px 10px;
    margin: 0 10px;
}
.image-parallax-wrapper {
    position: relative;
    overflow: hidden;
    height: 550px;
}
.title-div-abt {
    padding: 0 10px;
}
.sec-1-about {
    padding: 80px 0 40px 0;
}
.sec-2-about {
    padding: 30px 10px 0 10px;
}
.main-wrpaaer-2 {
    margin: 80px 0 40px 0;
}
.cas-box {
    margin: 40px 0;
    padding: 0 10px;
}
.post-wrpaeer-box {
    margin: 30px 0 30px 0;
    padding: 20px 10px;
    border: 1px solid rgba(213, 213, 213, 0.75);
}
.post-wrpaeer {
    padding: 0 10px;
}
}






