*{
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin-right: 2%;
	margin-left: 2%;
}

.roundedimg {
	border-radius: 10px;
}

a {
	text-decoration: none;
}

nav{
    background-color: #dddd;
	position: fixed;
	width: 96%;
	z-index: 999;
	height: 65px;
	line-height: 65px;
	top: 0;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
nav .wrapper{
  padding: 0px 30px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .logo a img {
    padding-top: 0;
}

.wrapper .nav-links{
  display: inline-flex;
}

.nav-links li{
  list-style: none;
}

.nav-links li a{
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 15px;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover{
  border-bottom: 1px solid red;
  color: red;
}

.nav-links .mobile-item{
  display: none;
}

.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 65px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  /*padding: 0 30px;*/
  /*top: 85px;*/
  color: black;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: white;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .navrow{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .navrow img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .navrow header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .navrow .mega-links{
  margin-left: -40px;
}

.content .navrow:nth-child(1),
.content .navrow:nth-child(2){
	border-left: 0px;
}

.navrow .mega-links li{
  padding: 0 20px;
}
.navrow .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: black;
  font-size: 15px;
  font-weight: 500;
  display: block;
  border-bottom: none;
}
.navrow .mega-links li a:hover{
  color: red;
  border-bottom: none;
}

.navrow .mega-links li a::active {
  color: red;
  border-bottom: none;
}

.wrapper .btn{
  color: black;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.cancel-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
	nav {
		width: 100vw;
	}
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    /* max-width: 350px; */
    top: 0;
    left: -100%;
    background: #ddd;
    display: block;
    padding-left: 10px;
	padding-right: 10px;
	padding-top: 50px;
    line-height: 30px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 5px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
 /* #close-btn:checked ~ .navbtn.menu-btn{
    display: block;
  }*/
  .nav-links li{
    /*margin: 15px 10px;*/
	border-radius: 0;
  }
  .nav-links li a{
    /* padding: 10px 0; */
    display: block;
    font-size: 15px;
    color: black;
  }
  .nav-links li a:hover {
	border-bottom: none;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box,
  #showMegaa:checked ~ .mega-box 
  {
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: black;
    font-size: 15px;
    font-weight: 500;
    padding-left: 15px;
	/* padding-bottom: 5px; */
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }

  .prod {
	padding-bottom: 15px;
  }

  .sol {
	padding-bottom: 10px;
  }
  .nav-links .mobile-item {
	font-weight: 700;
  }
  .nav-links .mobile-item:hover{
    color: red;
	border-bottom: none;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 14px;
  }
  .mega-box{
    position: static;
    top: 65px;
    width: 100%;
    left: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .navrow{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .navrow:nth-child(1),
  .mega-box .content .navrow:nth-child(2){
    border-top: 0px;
  }
  .content .navrow .mega-links{
    border-left: 0px;
    padding-left: 0;
  }
  .navrow .mega-links li a {
    margin: 0;
    font-size: 14px;
	font-weight: 500;
    float: left;
  }
  .content .navrow header{
    font-size: 19px;
  }
}

nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}


p {
	color:#555;
}

#top-row {
	padding-top: 150px;
	background-color: #dddd;
}

.row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
	font-size: 18px;
}

/*----------------SLIDESHOW----------------*/

.mySlides {display: none;}
img {vertical-align: middle;}

.slideshow-container {
  position: relative;
  margin: 0;
  padding-top: 65px;
  padding-bottom: 0;
  transition: 1s;
  left: 0;
}

/* Fading animation */
.fade {
	animation-name: fade ease-in-out;
	animation-duration: 1.5s;
	animation-delay: 2s;
}
  
@keyframes fade {
	/* from {opacity: .4}  */
	/* to {opacity: 1} */
	100% {left: 0;}
}

.top-text {
  position: absolute;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  color: #f2f2f2;
  top: 40%;
  left: 10%;
  right: 3%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
  }

  /* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }

.dot {
  height: 10px;
  width: 10px;
  margin-right: 8px;
  margin-left: 8px;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.6s ease;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -250%);
  /* display: none; */
}

.active {
  background-color: red;
}

@media (max-width: 800px){
	.slideshow-container {
		max-height: 900px;
	}
	.top-text  {
		font-size: 14px;
		top: 30%;
	}

	.slideshow-container .btn {
		font-size: 13px;
		padding: 8px 12px;
	}

	.dot {
		height: 10px;
		width: 10px;
	}
}

.col-2 {
	flex-basis: 50%;
	min-width: 300px;
	padding: 0 30px;
}

.col-2 img {
	max-width: 100%;
	padding: 50px 20px;
}

.col-2 h1 {
	font-size: 50px;
	line-height: 60px;
	margin: 25px 0;
	text-align: left;
}

#col-2-mdq {
	padding-top: 0;
}

@media (max-width: 400px) {
	#col-2-mdq {
		padding-top: 60px;
	}
}

.row .btn {
	display: inline-block;
	background-color: red;
	color: #fff;
	padding: 8px 30px;
	margin: 30px 0;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.5s;
	text-decoration: none;
}

.row .blogbtn {
	display: inline-block;
	background-color: red;
	color: #fff;
	padding: 6px 7px;
	font-size: 14px;
	margin: 10px 0;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.5s;
	text-decoration: none;
}

.row .btn:hover, .row .blogbtn:hover {
	background-color: white;
	color: red;
	border: 2px solid red;
}

/*-------------POP UP FORM MODAL----------------*/

.modal {
  display: none;
  position: fixed; 
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  /*border: 1px solid #888;*/
  width: 100%;
  /* flex-basis: 50%; */
}

.modal-content h1 {
	text-align: center;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#myBtn {
	cursor: pointer;
}

.form-container {
	background-color: white;
	padding: 10px 50px;
	color: #555;
}

.form-container input[type=text], .form-container input[type=email], .form-container input[type=number], select {
  width: 99%;
  padding: 15px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  resize: vertical;
  /* margin: 0; */
}

/* .form-container input[type=text]::placeholder {
	color: red;
} */

.required::after {
    content:"*";
    color: red;
}

.form-container #subject {
	width: 99%;
}

.form-container #form-message {
	color: green;
	font-size: 14px;
}

textarea::placeholder {
	font-family: 'Open-Sans', sans-serif;
	font-size: 13px;
}

.form-container textarea {
  width: 99%;
  /* padding: 12px; */
  border: 1px solid #ccc;
  box-sizing: border-box;
  resize: vertical;
  height: 170px;
}

.form-container button[type=submit] {
    display: inline-block;
	background-color: red;
	color: #fff;
	padding: 8px 30px;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.5s;
	text-decoration: none;
	cursor: pointer;
	font-size: 15px;
}

.form-container button[type=submit]:hover {
  background-color: white;
  border: 2px solid red;
  color: red;
}

.form-container input[type=text]:focus, .form-container input[type=email]:focus, .form-container input[type=number]:focus, textarea:focus {
	outline: none;
}

@media (max-width: 800px){
	.modal-content {
		width: 100%;
	}
	.form-container {
	  /*background-color: white;*/
	  padding: 0;
  }
	.form-container input[type=text], .form-container input[type=email], .form-container input[type=number], select {
		width: 100%;
	}

	.form-container textarea {
		width: 100%;
	}
}


/*-------------END OF FORM POP UP---------------*/

/* ------------COOKIE POLICY POP UP MODAL------ */

.cookiemodal {
	/* display: block; */
	position: fixed; 
	z-index: 1;
	right: 30px;
	bottom: 20px;
	width: 350px; 
	height: 214px;
	overflow: auto;
	border-radius: 10px;
	border: 1px solid red;
	/* background-color: rgb(0,0,0); */
	/* background-color: rgba(0,0,0,0.4); */
}

.cookiemodal .cookietitle {
	display: flex;
	justify-content: space-between;
}

.cookie-title-inner {
	display: flex;
}

.cookiemodal .cookietitle img {
	border-radius: 50%;
	margin-right: 10px;
	width: 30px;
	height: 30px;
}

.cookiemodal .cookietitle h1 {
	font-size: 18px;
}

.cookiemodal a {
	color: red;
}

.cookiebtn {
	display: inline-block;
	background-color: red;
	color: #fff;
	padding: 8px 30px;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.5s;
	text-decoration: none;
	cursor: pointer;
	font-size: 15px;
}

.cookiebtn:hover {
	background-color: white;
  	border: 2px solid red;
  	color: red;
}
  
.cookiemodal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	/*border: 1px solid #888;*/
	width: 100%;
	/* flex-basis: 50%; */
}

.cookiemodal-content p {
	font-size: 14px;
	padding-bottom: 10px;
	color: #000;
}

@media (max-width: 800px){
	.cookiemodal {
		right: 5px;
	}
}

/* ----------------END OF COOKIE POLICY POP UP------------------------ */

.menu-icon {
	width: 28px;
	margin-left: 20px;
	display: none;
}

.title {
  text-align: center;
  position: relative;
  line-height: 60px;
  margin: 0 auto 40px;
  /*text-transform: none;*/
  text-align: center;
  font-size: 30px;
}

.title::after {
	content: "";
	background: red;
	width: 80px;
	height: 3px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

span {
	color: red;
}

.body-container {
	margin: auto;
}

#row-bdy {
	border: 1px solid grey;
}

.col-body {
	flex-basis: 50%;
	min-width: 300px;
	padding: 30px 0;
}

.col-body h2 {
	padding-top: 0;
	top: 0;
	text-align: center;
	padding-bottom: 30px;
	font-size: 27px;
}

.col-body h3 {
	top: 0;
	color: red;
	padding-left: 50px;
	padding-bottom: 30px;
	font-size: 25px;
}

.col-body h3:hover {
	color: black;
}

.col-body p {
	text-align: left;
	padding: 0 50px;
	font-size: 16px;
	padding-bottom: 70px;
	color: black;
}

.col-body img {
	width: 100%;
}

#body-container-h2 {
	text-align: center;
	font-size: 30px;
}

@media (max-width: 800px){
	.title {
		margin: 0;
	}
	.col-body {
		padding: 10px 5px;
	}
	.col-body h3 {
		padding: 0;
		font-size: 20px;
	}

	.col-body p {
		padding: 0;
	}
}


.col-4 {
	flex-basis: 25%;
	padding: 20px;
	min-width: 200px;
	margin-bottom: 50px;
}

.col-4 img {
	width: 100%;
	transition: transform 0.8s;
}

.col-4 img:hover {
	transform: scale(1.02);
}

h4 {
	color: red;
	font-weight: normal;
}

.col-4 p {
	font-size: 14px;
	padding-bottom: 0;
}


@media (max-width: 800px){
	.col-4 {
		padding: 0;
		margin-bottom: 0;
	}
}

@media (max-width: 600px){
	.col-4 {
		padding: 20px;
		margin-bottom: 0;
		flex-basis: 80%;
	}
}

.col-5 {
	flex-basis: 30%;
	min-width: 200px;
	margin-bottom: 50px;
	text-align: center;
}

.col-5 img {
	width: 100%;
	padding: 20px 30px;
}

.col-5 p {
	text-align: left;
	padding: 20px 30px;
	color: black;
}

.col-5:hover {
	box-shadow: 5px 10px 8px #888888;
}

@media (max-width: 800px){
	.col-5 img{
		padding: 0;
	}

	.col-5 p {
		padding: 0;
	}
}
/*---------------FOOTER--------------------*/

.footer {
	background: #000;
	color: #8a8a8a;
	font-size: 14px;
	padding: 60px 0 20px;
}

.container-footer {
	margin: auto;
	padding-right: 25px;
	padding-left: 25px;
}

.footer p {
	color: #8a8a8a;
}

.footer h3 {
	color: #fff;
	margin-bottom: 20px;
}

.footer-col-3 {
	flex-basis: 20%;
	text-align: left;
	height: 520px;
	min-width: 250px;
	margin-bottom: 20px;
} 

@media (max-width: 600px){
	.footer-col-3 {
		height: auto;
		flex-basis: 100%;
	}
}

.footer-col-3 hr {
	padding: 0;
}

#scbtns {
	padding: 0 8px;
	font-size: 20px;
	color: white;
}

#scbtns:hover {
	color: grey;
}

#contact-icons {
	font-size: 14px;
	color: white;
}

.footer-col-3 h3 a {
	font-size: 18px;
	color: white;
}

.footer-col-3 ul {
	list-style-type: none;
	padding: 0;
}

.footer-col-3 ul p {
	font-size: 14px;
	color: #555;
}

.footer-col-3 ul a {
	color: inherit;
}

.footer-col-3 li {
	padding: 5px 0;
}

.footer-col-3 ul li a {
	color: #555;
	font-size: 14px;
}

.footer-col-3 li a:hover {
	color: white;
}

.footer hr {
	border: none;
	background: #b5b5b5;
	height: 1px;
	margin: 20px 0;
}

.copyright {
	text-align: center;
}

/*-----------BODY MEDIA QUERY----------*/

@media (max-width: 600px){
	.navbar {
		width: 100%;
	}
	body {
		margin: 0;
	}

	.col-2 {
		padding: 0;
	}

	.col-2 h1{
		font-size: 30px;
		line-height: normal;
	}

	.col-2 img {
		padding: 0;
	}
}

/*---------------------CONTACT PAGE------------------------*/

.contact-container {
	color: black;
	padding-top: 85px;
}

.contact-container h2 {
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
}

#contact-containertxt {
	text-align: center;
}

.col-contact {
	flex-basis: 50%;
	min-width: 300px;
	padding: 0 30px;
}

.cont-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-around;
}

.colcont-sm {
	flex-basis: 50%;
	min-width: 300px;
}

.colcont-sm2 {
	flex-basis: 100%;
	min-width: 300px;
}

input[type=text], input[type=email], input[type=number], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 6px;
  resize: vertical;
}

textarea {
  width: 95%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 6px;
  resize: vertical;
  height: 300px;
}

input[type=submit] {
    display: inline-block;
	background-color: red;
	color: #fff;
	padding: 8px 30px;
	border-radius: 30px;
	border: 2px solid transparent;
	transition: background 0.5s;
	text-decoration: none;
	cursor: pointer;
	font-size: 15px;
}

input[type=submit]:hover {
  background-color: white;
  border: 2px solid red;
  color: red;
}

/* #subject {
	width: 100%;
} */

@media (max-width: 800px){
	input[type=text], select {
		width: 100%;
	}

	textarea {
		width: 100%;
	}
}

/* form validation */
.form-error {
    color: red;
	font-size: 13px;
}

#message_error {
	margin-bottom: 6px;
}

.form-success{
    color: green;
}
.input-error{
    /* box-shadow: 0 0 0 2px red; */
	border: 1px solid red;
}

/* google maps */
/* Set the size of the div element that contains the map */
#map {
	height: 400px;
	/* The height is 400 pixels */
	width: 100%;
	/* The width is the width of the web page */
  }
  

/*-------------------ABOUT PAGE--------------------*/
.abt-bg {
	background-image: url("../img/images/pexels-kevin.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 120px;
}

#abt-row {
	padding-top: 65px;
	margin: 0;
}

.abt-bg h2 {
	text-align: center;
	color: white;
}

#abtbox-shd {
	box-shadow: 5px 10px 18px #888888;
	height: 450px;
	text-align: center;
	color: white;
	background-color: white;
}

#abtbox-shd h1 {
	color: red;
	text-align: center;
}

#abtbox-shd p {
	color: black;
	padding-top: 20px;
}

@media (max-width: 768px) {
	#abtbox-shd p {
		font-size: 14px;
		padding: 5px;
	}
}

.container-abt {
	text-align: center;
}

.col-abt {
	flex-basis: 80%;
	min-width: 300px;
	padding: 60px 30px;
}

.col-abt2 {
	flex-basis: 26%;
	min-width: 300px;
	padding: 10px 30px;
}

#contact-icon {
	font-size: 30px;
	color: red;
}

.abt-page-bg {
	background-image: url("../img/images/pexels-alexander.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.abt-page-bg h1 {
	text-align: center;
	color: white;
}

#abt-page-row {
	padding: 8px 10px;
}

.col-abt-bg {
	flex-basis: 30%;
	padding: 50px 30px;
	color: black;
	background-color: #dddd;
	text-align: center;
}

.col-abt-bg p {
	color: black;
	font-size: 16px;
}

.col-abt2 a {
	color: inherit;
}

.col-abt-bg p span {
	color: red;
}

@media (max-width: 768px){
	.col-abt-bg {
		height: auto;
		padding: 20px 20px;
		flex-basis: 100%;
		border: 1px solid grey;
	}
}

/*---------------------Service pages------------------------*/

#serv-row {
	padding-top: 65px;
	margin: 0;
}

#serv-row-txt {
	position: absolute;
	top: 30%;
	left: 5%;
	right: 50%;
	color: white;
	font-size: 50px;
	line-height: 35px;
}

#serv-row-txt small {
	font-size: 20px;
	padding: 0;
}

#serv-col-txt {
	padding-top: 30px;
}

#box-shd {
	box-shadow: 5px 10px 18px #888888;
	height: 200px;
	text-align: center;
}

.row h2 {
	color: red;
}

.col-body h4 {
	text-align: center;
}

#bx-shd {
	box-shadow: 5px 10px 18px #888888;
	height: 200px;
	padding: 10px;
}

@media (max-width: 800px) {
	#bx-shd {
		padding: 10px;
		height: auto;
		margin-bottom: 10px;
	}
}

#box-shd p {
	font-size: 20px;
	text-align: center;
	padding: 0;
	color: black;
}

.body-bg {
	background-image: url("../img/images/pexels-johannes-plenio.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.body-bg h1 {
	text-align: center;
	color: white;
}

.col-3 {
	flex-basis: 23%;
	height: 350px;
	padding: 30px 30px;
	color: black;
	background-color: white;
	text-align: center;
}

.col-3 h3 {
	color: red;
	text-align: left;
}

.col-3 p {
	color: black;
	font-size: 16px;
	text-align: left;
}

#row-bg {
	color: white;
	padding: 30px 30px;
}

.fa {
	font-size: 50px;
	color: red;
}

.fa-icons {
	text-align: center;
}

@media (max-width: 768px){
	#serv-row-txt {
		top: 15%;
		font-size: 23px;
		right: auto;
		line-height: 20px;
	}

	#serv-row-txt small {
		font-size: 15px;
	}
	.col-3 {
		height: auto;
		padding: 20px 20px;
		flex-basis: 100%;
	}
}

/* ------------------OUR TEAM------------------- */
.container-team {
	margin: auto;
	padding-top: 85PX;
	padding-right: 25px;
	padding-left: 25px;
}

.team-col-3 {
	flex-basis: 20%;
	text-align: left;
	/* height: 480px; */
	min-width: 250px;
	margin-bottom: 20px;
} 

.team-col-3 img {
	width: 100%;
}

@media (max-width: 600px){
	.team-col-3 {
		height: auto;
		flex-basis: 100%;
	}
}

/* -------------------Privacy Policy Page----------------------- */
.col-lg {
	flex-basis: 100%;
}

.col-pd {
    padding: 10px;
}

.col-lg h3 {
	color: red;
}

.col-lg p {
	font-size: 16px;
	color: #000;
}


/* ------------------------404 ERROR PAGE-------------------------------- */

.err-cont {
	padding-top: 85px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #EF0107;
	/* background-image: linear-gradient(to right, #A40606, #D98324); */
}

.err-cont h1 {
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 20px;
}

.err-cont h4 {
	color: white;
}

.err-cont .err-button {
	padding: 15px 30px;
	margin: 40px;
	border-radius: 12px;
	border: none;
	background-color: white;
	text-decoration: none;
}

@media (max-width: 400px) {
	.err-cont img {
		width: 100%;
	}
}