:root {
	--colorblue: #5B9ABB;
	--colororange: #FFB675;
	--colorgreen: #57BDA6;
	--colorgrey: #858585;
	--letter: #595A5C;
	--colorOrangeLogo: #f38420;
	--ligtherorange: rgba(243, 132, 32, .2);
	--lightgrey: #F9F9F9;
	--ligtherBlue: rgba(190,215,228,.7);/*Change name*/
	--mainsectionh: 100vh;
	--aboutush: 100vh;
	--missionh: 100vh;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
}

a {
	color: var(--letter) !important;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer !important;
}

a:hover, a:visited {
	text-decoration: none !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--letter) !important;
}

body {
	font-family: 'Roboto', sans-serif !important;
	overflow-x: hidden;
	display: flex;
	color: var(--letter) !important;
	box-sizing: border-box;
	height: auto;
}

/*Website content start*/

.mainbody {
	display: block;
	position: relative;
	width: 100%;
	transition: 1s;
	height: auto;
}


/*Phone Number*/
@media screen and (max-width: 700px){
    .phoneContainer{
        width: 100%!important;
        bottom: -50px;
        left: 0;
        right: 0;

    }
}





/*Navbar*/

nav {
	display: flex !important;
	justify-content: space-between;
	align-items: center !important;
	position: fixed;
	width: 100%;
	height: 18vh;
	background: #FFFFFF;
	z-index: 1001;
	transition: 0.5s ease-out;
}

.menudpd {
	display: none;
}

.dpmenudpd {
	transform: translate3d(-35%, 21px, 0px) !important;
	z-index: 10000001!important;
}

.dropdown-item {
	text-align: center !important;
}

.logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25%;
	height: 100%;
}

.logo a{
	display: flex;
	justify-content: center;
	align-items: center;
}

.logoimg {
	width: 60%;
	min-width: 160px;
}

.menubtns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 75%;
	transform: translateY(50%);
}

.loginbtn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
	height: 35px;
	background-color: #5B9ABB;
	border-radius: 0 0 0 10px;
}

.loginbtn > a, .loginbtn > a:hover, .loginbtn > a:visited {
	text-decoration: none !important;
	color: #FFF !important;
	margin-left: 5px !important;
	font-size: 20px;
}

.menubtns ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
	justify-content: space-around;
}

.menubtns li > a {
	font-size: 20px;
	color: #595A5C;
	padding: 20px 0px !important;
}

.menubtns li > a:hover {
	color: var(--colororange) !important;
	transition: 0.5s;
}

/*Main section start*/

.mainsection {
	background:url('../img/wooden-table-with-work-tools.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	position: relative;
	height: var(--mainsectionh);
	z-index: 10;
	/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(var(--mainsectionh) - 7.7vw), 58% 100%, 100% 100%, 100% 0%, 0% 0%);*/
}

.insbackground {
	background: url('../img/inspectionservices.webp');
	background-position: center 90%;
}

@media screen and (max-width:700px){
    .mainsection{
        background-position: 12% 0%;
        background-size: cover;
    }
}


/*Get a quote form*/

.getquoteform {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	position: absolute;
	width: 370px;
	height: auto;
	top: 50%;
	left: 10%;
	transform: translateY(-45%);
	padding: 20px 30px;
	background: rgba(255,255,255,.8);
	border-radius: 10px;
	box-shadow: inset 2px 2px 10px #bdbdbd,
	inset -2px -2px 10px #bdbdbd;                   
}

.getquoteform form {
	position: relative;
}

.getquoteform h2 {
	font-size: 22px;
	color: var(--colorOrangeLogo);
	line-height: 100%;
	text-align: center;
	font-weight: 500 !important;
	margin-bottom: 20px;
	/*text-shadow: 2px 2px 3px #222;*/
}

.getquoteform input:not([type="submit"]), .getquoteform textarea {
	width: 100%;
	border: none;
	padding-left: 5px;
	color: var(--letter);
	background: transparent;
	position: relative;
}

.line{
	height: auto;
	margin: 8px 0px;
	background:rgba(255,255,255,.2);   
}

.line::before{
	content:"";
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 0px;
	background: var(--colorOrangeLogo);
	transition: .3s    
}

.line:hover:before{
	content:"";
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 240px;
	background: var(--colorOrangeLogo);
	transition: .3s  
}

.getquoteform input:not([type="submit"])::placeholder, .getquoteform textarea::placeholder {
	padding: 0;
}

.getquoteform input:not([type="submit"]) {
	height: 25px;
}

.getquoteform textarea {
	height: 70px;
	max-height: 70px;
	min-height: 70px;
	resize: none;
}

.getquoteform input:not([type="submit"]):focus, .getquoteform textarea:focus {
	outline: none;   
}

.getaquote {
	width: 60%;
	align-self: center;
	position: relative;
	left: 50%;
	transform:  translateX(-50%);
	color: #FFF !important;
	border-color: var(--colorOrangeLogo) !important;
	background-color: var(--colorOrangeLogo) !important;
	transition: all ease-in-out .3s;
	/*box-shadow: 3px 0 0 0 var(--colorOrangeLogo), 3px 3px 0 0 var(--colorOrangeLogo), 0 3px 0 0 var(--colorOrangeLogo);*/
}

.getaquote:focus {
	outline: none !important;
	box-shadow: none !important;
	/*box-shadow: 3px 0 0 0 var(--colorOrangeLogo), 3px 3px 0 0 var(--colorOrangeLogo), 0 3px 0 0 var(--colorOrangeLogo) !important;*/
}

.getaquote:active, .getaquote:focus {
	outline: none !important;
	background-color: #FFF !important;
	color: var(--colorOrangeLogo) !important;
	border-color: var(--colorOrangeLogo) !important;
	transition: all ease-in-out .3s;
	/*box-shadow: 2px 0 0 0 var(--colorOrangeLogo), 2px 2px 0 0 var(--colorOrangeLogo), 0 2px 0 0 var(--colorOrangeLogo);*/
}

.maintitle {
	position: absolute;
	top: 50%;
	right: 20px;
}

.maintitle h1 {
	text-align: center;
	font-size: 60px !important;
	font-weight: 700;
	color: var(--letter);
}

.insTitle {
	color: var(--colorOrangeLogo) !important;
}

/* Titles for the sections */

.Titlesecs {
	position: absolute;
	top: calc(135vh * 0.18);
	left: 4%;
	display: flex;
	padding: 0;
	margin: 0;
}

.Titlesecs h1 {
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 80px;
	font-weight: 500;
	color: var(--letter);
}

/*About Us section*/

.aboutus {
	width: 100%;
	height: var(--aboutush);
	position: relative;
	top: -20%;
	background: #FFF;
	z-index: 9;
	/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(var(--aboutush) - 7.7vw), 58% 100%, 100% 100%, 100% 0%, 0% 0%);*/
	overflow: hidden;
}

.diagonal {
	position: absolute;
	background: var(--colorOrangeLogo);
	left: -65%;
	width: 100%;
	height: 200%;
	transform: rotate(-40deg);
}

.infoaboutus {
	position: absolute;
	bottom: 15%;
	left: 2%;
	font-size: 20px;
	color: #FFF;
}

.helmet {
	position: relative;
	width: 70px;
	margin-bottom: 30px;
}

.infoaboutus p:nth-child(2) {
	width: 320px;
}

.infoaboutus p:nth-child(3) {
	width: 400px;
}

.offer {
	position: absolute;
	right: 2%;
	top: 25%;
	min-width: 500px;
	width: 40%;
	height: 70%;
	max-width: 1000px;
	font-weight: 500;
	font-size: 20px;
}

.offer div:first-child {
	width: 100%;
	height: 25%;
	padding-top: 5%;
}

.offer hr {
	width: 95%;
	border-width: 5px;
	border-color: var(--letter);
	margin-bottom: 50px;
}

.offer h2 {
	font-weight: 700;
}

.offer-opts {
	height: 70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mySlides {
	display: none;
	height: 100%;
}


/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: absolute;
  margin: auto;
  height: 100vh;
  bottom: 0;
}

.s1 {
	background-image: url('../img/dryout.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s2 {
	background-image: url('../img/moldremediation.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s3 {
	background-image: url('../img/rooftarp.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s4 {
	background-image: url('../img/fireandsmoke.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s5 {
	background-image: url('../img/catastrophic.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s6 {
	background-image: url('../img/generalinsp.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s7 {
	background-image: url('../img/roofinsp.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}

.s8 {
	background-image: url('../img/leakdetection.webp') !important;
	background-size: cover;
	background-position: -5px;
	background-repeat: no-repeat;
}


.slideContent {
	display: block;
	/*background: rgba(255,255,255,.8);*/
	color: #FFF;
	position: absolute;
	top: 25vh;
	left: 20px;
	min-width: 400px;
	width: 30%;
	height: max-content;
	padding: 20px 20px 0px 30px;
	border-radius: 20px;
	font-size: 16px !important;
}

.slideContent ul li {
	font-size: 14px !important;
	text-align: justify;
	font-weight: 400;
	margin-bottom: 10px !important;
}

.slideContent ul ol li {
	font-size: 12px !important;
	margin-bottom: 0px !important;
}

.slideContent b {
	font-weight: 700;
}

.content1, .content2 {
	width: 50%;
	float: left;
	margin-bottom: 10px;
}

.content1 b, .content2 b, .content1 p, .content2 p {
	display: block;
	font-size: 12px;
	margin: 5px 0;
}

.content2 {
	float: right;
	padding-left: 10px;
}

.content1 ul, .content2 ul {
	padding-left: 20px;
}

.content1 ul li, .content2 ul li {
	text-align: left;
	font-size: 12px !important;
}

/* Next & previous buttons */
.prevbtn, .nextbtn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 40px;
  padding: 16px;
  margin-top: -22px;
  color: var(--colorOrangeLogo) !important;
  font-weight: bold;
  font-size: 46px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  left: calc(35% - 20px);
  transform: translateY(-50%);
}

/* Position the "next button" to the right */
.nextbtn {
  right: calc(35% - 20px);
  left: unset;
  border-radius: 3px 0 0 3px;
}

.prevbtn:hover, .nextbtn:hover {
	color: #FFF !important;
}

#tabTitle {
	position: absolute;
	top: 50%;
	left: calc(35% + 30px);
	width: 25%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	color: #FFF;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 10px !important;
  width: 10px !important;
  margin: 0 2px;
  background-color: var(--colorOrangeLogo) !important;
  border-radius: 50%;
  display: inline-block;
  transition: 0.6s ease;
  transition-property: background-color, transform;
}

.activedot {
  background-color: #FFF !important;
  transform: scale(1.8);
}

.tabName {
	cursor: pointer;
}

.activetab, .tabName:hover {
	position: relative;
	border-bottom: 3px var(--colorOrangeLogo) solid;
}

.offer-opts h2 {
	position: relative;
}

.offer-opts h2 span {
	display: none;
	position: absolute;
	background: var(--colorOrangeLogo);
	/*clip-path: polygon(100% 50%, 0 0, 0 100%);*/
	height: 20px;
	width: 20px;
	left: -30px;
	top: -.01%;
	transform: translateY(50%);
}

.requestServices, .requestServices:hover {
	position: absolute;
	top: 50%;
	right: 6%;
	transform: translateY(-50%);
	display: inline-block;
	padding: 15px 30px!important;
	font-size: 26px!important;
	color: #FFF !important;
	border-radius: 10px;
	background: var(--colorOrangeLogo);
}

.requestServices:hover {
	background: var(--letter);
}

.mission .getquoteform {
	display: none;
	left: unset;
	top: 50%;
	right: 7.5%;
	transform: translateY(-40%);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.dotsContainer {
	position: absolute !important;
	bottom: 10% !important;
	left: 50%;
	width: 30%;
	transform: translateX(-50%);
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}






/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

@media screen and (min-width: 1600px) {
	.infoaboutus {
		font-size: 28px;
		left: 3%;
	}

	.infoaboutus p:nth-child(2) {
		width: 400px;
	}
	
	.infoaboutus p:nth-child(3) {
		width: 480px;
	}

	.slideContent {
		top: 60%;
		left: 20px;
		transform: translateY(-50%);
		font-size: 18px !important;
	}

	.slideContent ul li {
		font-size: 20px !important;
		margin-bottom: 10px;
	}
	
	.slideContent ul ol li {
		font-size: 18px !important;
	}
	
	.slideContent b {
		font-weight: 700;
	}
}

.infoaboutus ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.infoaboutus li{
	color: var(--letter);
}

.infoaboutus li:nth-child(2n+1){
	font-weight: 600;
}

.infoaboutus li:nth-child(2n){
	font-weight: 300;
}

.imgdiv1 {
	position: absolute;
	justify-content: center;
	bottom: 0;
	left: 8%;
	display: flex;
	height: 60%;
    width: auto;
}

@media screen and (min-width: 701px){
	.imgdiv1 img:nth-child(2) {
		display: none;
	}

	.imgdiv1 img:nth-child(1) {
		display: block;
		height: 100%;
	}
}

/*Our mission section*/

.mission {
	width: 100%;
	height: var(--missionh);
	position: relative;
	top: -40%;
	background: var(--lightgrey);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	z-index: 8;
}

.infomission {
	position: absolute;
	top: calc(135vh * 0.32);
	left: 6%;
	width: 45%;
}

.infomission > p {
	color: var(--letter);
	font-size: 20px;
	text-align: justify;
	line-height: 130%;
	font-weight: 300 !important;
} 

.imgdiv2 {
	position: absolute;
	justify-content: center;
	bottom: -5%;
	right: 8%;
	display: flex;
	height: 70%;
}

.imgdiv2 img {
	height: 100%;
}

@media screen and (min-width: 1366px) {
	.infomission > p {
		font-size: 3.2vh;
	}
}

/*For sections and arrows dividers*/

.arrow {
	fill: var(--colorOrangeLogo);
	webkit-filter: drop-shadow(5px 5px 5px rgba(34,34,34,.7));
	filter: drop-shadow(0px 5px 5px rgba(34,34,34,.7));
}

.sec1 {
	width: 100%;
	top: calc(var(--mainsectionh) + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

.sec2 {
	width: 100%;
	top: calc(var(--mainsectionh) + var(--aboutush) + -20vh + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

.sec3 {
	width: 100%;
	top: calc(var(--mainsectionh) + var(--aboutush) + var(--missionh) + -40vh + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

.sec4 {
	width: 100%;
	top: calc(var(--mainsectionh) + var(--aboutush) + var(--missionh) + 
		var(--theteamh) + -60vh + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

.sec5 {
	width: 100%;
	top: calc(var(--mainsectionh) + var(--aboutush) + var(--missionh) + 
		var(--theteamh) + var(--projectsh) + -80vh + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

.sec6 {
	width: 100%;
	top: calc(var(--mainsectionh) + var(--aboutush) + var(--missionh) + 
		var(--theteamh) + var(--projectsh) + var(--testimonialsh) + -100vh + 0.3vh);
	transform: translateY(-100%);
	position: absolute;
	z-index: 1000;
}

svg {
	z-index: 1000;
}

.divider-container {
	display: none;	
}

.divider {
	display: none;	
}

.services-dropdown {
	width: 200px;
	display: none;
	position: absolute;
	top: 130%;
	background: rgba(0,0,0,0.4);
	transform: translateX(-10%);
	padding: 10px 0px;
}

.services-dropdown a {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: auto;
	padding: 10px 10px 5px 10px !important;
	color: #FFF !important;
}

.services-dropdown a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	width: 0;
	height: 5px;
	color: #FFF !important;
	transition: 0.3s;
	transition-property: width, left ;
}

.services-dropdown a:hover::after {
	width: 100%;
	left: 0;
	background: var(--colorOrangeLogo);
}

.dpdown:hover .services-dropdown {
	display: block;
}

.footer {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	top: -40vh;
	width: 100%;
	padding: 30px 0;
	background: var(--letter);
}

.footerItem1, .footerItem2 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 250px;
	height: 230px;
	color: #FFF !important;
	font-size: 14px;
}

.footerItem2 {
	width: 350px;
	text-align: justify;
	color: rgb(202, 202, 202);
	font-size: 12px;
}

.footerItem2 img{
    height: 200px;
    width: auto;

}

.footerItem1 p, .footerItem2 p {
	margin-bottom: 10px !important;
}

.footerItem2 p {
	padding-left: 20px;
	border-left: 3px var(--colorOrangeLogo) solid;
}

.footerItem1 a, .footerItem2 a {
	color: #FFF !important;
}

.footerItem1 a:hover, .footerItem2 a:hover {
	color: var(--colorOrangeLogo) !important;
}

@media screen and (max-width: 700px) {

	nav {
		flex-direction: column;
		height: auto !important;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 10px;
	}

	.logoimg {
		width: 160px !important;
	}

	.menudpd {
		display: block;
	}

	.menubtns {
		display: none;
	}

	.getquoteform {
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);                   
	}

	.Titlesecs {
		top: calc(135vh * 0.17);
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.Titlesecs h1 {
		font-size: 36px;
	}

	.aboutus {
		height: 145vh;
		z-index: 9;
		/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(145vh - 7.7vw), 58% 100%, 100% 100%, 100% 0%, 0% 0%);*/
	}

	.imgdiv1 {
		height: 32%;
		width: 100%;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.imgdiv1 img:nth-child(1) {
		display: none;
	}

	.imgdiv1 img:nth-child(2) {
		display: block;
		width: 100%;
	}

	.imgdiv2 {
		height: 40%;
		width: 100%;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.imgdiv2 img {
		width: 90%;
		height: auto;
	}

	.infoaboutus {
		position: absolute;
		top: calc(135vh * 0.21);
		right: 0;
		padding: 20px;
		width: 100%;
		font-size: 20px;
	}

	.infoaboutus li{
		color: var(--letter);
		line-height: 150%;
		text-align: justify;
	}

	.infoaboutus li:nth-child(2n+1){
		font-weight: 600;
		font-size: 16px;
	}

	.infoaboutus li:nth-child(2n){
		font-weight: 300;
		font-size: 14px;
	}

	.infomission {
		position: relative;
		top: calc(135vh * 0.21);
		left: 0;
		padding: 20px;
		width: 100%;
	}

	.infomission > p {
		font-size: 16px !important;
		line-height: 150%;
	}

	.arrow {
		display: none;
	}

	.divider-container {
		position: absolute;
		width: 100%;
		bottom: 0;
		display: block;
		filter: drop-shadow(0px -2px 2px rgba(34,34,34,.3));
	}

	.divider {
		height: calc(9.7vw);
		display: block;
		width: 100%;
		background-color: var(--colorOrangeLogo);
		position: absolute;
		bottom: -1px;
		/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(9.7vw - 7.7vw), 58% 100%, 100% 100%, 100% 85%, 58.5% 85%, 50% 0%, 41.5% 85%, 0% 85%);*/
	}

	.infoaboutus {
		position: relative;
		top: 10vh;
		left: unset;
		right: unset;
		width: 100%;
		color: var(--letter);
		padding: 0 20px !important;
		
	}

	.infoaboutus p {
		width: 100% !important;
	}

	.offer {
		position: relative;
		min-width: unset;
		margin: 0 auto;
		width: 100%;
		top: 10vh;
		left: unset;
		right: unset;
		padding: 0 20px !important;
	}

	.offer-opts {
		height: 10%;
		margin: 20px
	}

	.offer-opts h2 {
		font-size: 18px;
	}

	.responsive{
		padding-top: 70px!important;
	}

	.maintitle {
		position: relative;
		top: 25vh;
		left: unset;
		right: unset;
	}

	.maintitle h1 {
		position: relative;
		font-size: 30px !important;
		text-align: center;
		color: var(--colorOrangeLogo);
		background: rgba(255,255,255,.9);
	}

	.imgdiv1 {
		bottom: -20px
	}

	.footerItem1 {
		text-align: center;
		margin-bottom: 20px;
		height: max-content;
	}

	.footerItem2 {
		padding: 0 20px;
	}

	.prevbtn, .nextbtn {
		width: fit-content;
		right: 5px;
		top: 10%;
		z-index: 1000;
	}

	.prevbtn {
		left: 5px;
	}

	.mission {
		height: 150vh;
	}

	.slideshow-container {
		height: 130vh;
	}

	.slideContent {
		top: 20%;
		width: 90%;
		font-size: 16px !important;
		min-width: unset;
	}

	.dotsContainer {
		bottom: 5% !important;
	}

	#tabTitle {
		top: 10%;
		width: 90%;
		left: 50%;
		transform: translate(-50%, -50%);
		right: unset;
		font-size: 35px;
	}

	.requestServices {
		display: none;
	}

	.insbackground {
		background-position: center 90%;
	}

	.s1 {
		background-image: url('../img/responsive/dryout.webp') !important;
	}
	
	.s2 {
		background-image: url('../img/responsive/mold remediation.webp') !important;
	}
	
	.s3 {
		background-image: url('../img/responsive/roof tarp.webp') !important;
	}
	
	.s4 {
		background-image: url('../img/responsive/fire.webp') !important;
	}
	
	.s5 {
		background-image: url('../img/responsive/catastrophe.webp') !important;
	}
	
	.s6 {
		background-image: url('../img/responsive/general inspection.webp') !important;
	}
	
	.s7 {
		background-image: url('../img/responsive/roof inspection.webp') !important;
	}
	
	.s8 {
		background-image: url('../img/responsive/leak detection.webp') !important;
	}

}

@media screen and (max-width: 700px) and (min-height: 630px) {

	.imgdiv1 img:nth-child(2) {
		display: none;
	}

	.imgdiv1 img:nth-child(1) {
		display: block;
		height: 100%;
	}
}

/*For IPAD*/

@media screen and (min-width: 701px) and (max-width: 1200px) {

	nav {
		flex-direction: column;
		height: auto;
	}

	.logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 70%;
		height: 80%;
		padding: 10px;
	}

	.logoimg {
		width: 200px !important;
	}

	.menudpd {
		display: block;
	}

	.icon {
		display: block;
	}

	.menubtns {
		display: none;
	}

	.getquoteform {
		top: 60%;
		left: 50%;
		transform: translate(-50%, -50%);                   
	}

	.Titlesecs {
		top: calc(135vh * 0.17);
		left: 0;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.Titlesecs h1 {
		font-size: 36px;
	}

	.aboutus {
		height: 145vh;
		z-index: 9;
		/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(145vh - 7.7vw), 58% 100%, 100% 100%, 100% 0%, 0% 0%);*/
	}

	.imgdiv1 {
		height: 40%;
		width: 100%;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.imgdiv2 {
		height: 60%;
		width: 100%;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: flex-end;
	}

	.infoaboutus {
		position: absolute;
		top: calc(135vh * 0.21);
		right: 0;
		padding: 50px;
		width: 100%;
		font-size: 20px;
	}

	.infoaboutus li{
		color: var(--letter);
		line-height: 150%;
		text-align: justify;
	}

	.infoaboutus li:nth-child(2n+1){
		font-weight: 600;
		font-size: 20px;
	}

	.infoaboutus li:nth-child(2n){
		font-weight: 300;
		font-size: 18px;
	}

	.infomission {
		position: relative;
		top: calc(135vh * 0.21);
		left: 0;
		padding: 50px;
		width: 100%;
	}

	.infomission > p {
		font-size: 20px !important;
		line-height: 150%;
	}

	.contact {
		justify-content: center;
		height: 105vh;
	}

	.contactform {
		top: calc(135vh * 0.25);
		width: 90%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: center;
	}

	.arrow {
		display: none;
	}

	.divider-container {
		position: absolute;
		width: 100%;
		bottom: 0;
		display: block;
		filter: drop-shadow(0px -2px 2px rgba(34,34,34,.3));
	}

	.divider {
		height: calc(9.7vw);
		display: block;
		width: 100%;
		background-color: var(--colorOrangeLogo);
		position: absolute;
		bottom: -1px;
		/*clip-path: polygon(0% 100%, 42% 100%, 50% calc(9.7vw - 7.7vw), 58% 100%, 100% 100%, 100% 85%, 58.5% 85%, 50% 0%, 41.5% 85%, 0% 85%);*/
	}

}

@media screen and (min-width: 1800px) {
	.content-tabs {
		top: calc(135vh * 0.33);
	}
}

@media screen and (max-width: 400px) and (max-height: 650px) {
	.employee {
		height: 300px !important;
	}

	.content-tabs {
		top: calc(135vh * 0.25) !important;
	}

	@media screen and (max-height: 600px) {
		.employee {
			height: 300px !important;
		}

		.content-tabs {
			top: calc(135vh * 0.20) !important;
		}
	}
}
