:root {
	--details: #2aafc0;
	--hover: #000202;
}
img {
  max-width: 100%;
}
a, input, button {
  text-decoration: none !important;
  transition: 0.5s;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 10;
	background-color: #fff;
	padding: 10px 0px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header img {
	max-width: 250px;
}
#custom .row {
  align-items: center;
  flex-wrap: nowrap;
}
.services .row, .about-us .row {
  row-gap: 20px;
}
#services img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767.98px) {
	.header .container{
		flex-direction: column;
	}
  .slider .content h1 {
    font-size: 30px;
  }
  #custom .row {
    flex-direction: column;
    text-align: center;
  }
  #services img {
    height: auto;
    object-fit: contain;
  }
}

/*contact*/
#contact .row {
  flex-wrap: nowrap;
  align-items: center;
}
#contact form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#contact .group-name {
  display: flex;
  column-gap: 16px;
  width: 100%;
}
.custom-form-control {
  margin-bottom: 15px;
  padding-left: 16px;
  border: 1px solid #868e96;
  outline: none;
  font-size: 14px;
  height: 45px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
  border-radius: 10px;
}
.custom-form-control:focus {
  border: 1px solid var(--details);
}
.custom-form-group {
	display: flex;
  align-items: center;
	margin-top: 16px;
}
.custom-form-group input {
	border: 1px solid #CCC;
  background: #FFF;
  padding: 0 12px;
  line-height: 38px;
  outline: none;
  box-shadow: 0;
  border-radius: 2px;
	width: 13px !important;
	height: 13px !important;
  accent-color: var(--hover);
}
.custom-form-group label {
	color: inherit;
	margin-left: 8px;
  margin-bottom: 0;
	text-align: left;
  font-weight: 300;
  font-family: inherit;
  font-size: 14px;
	cursor: pointer;
	display: inline-block;
}
.mandatory {
	color: #EC3324;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}
.custom-form-group label a {
  color: var(--details);
}
.custom-form-group label a:hover {
  color: var(--hover);
}
.submitBnt {
  align-self: center;
  margin-top: 16px;
  padding: 10px 30px;
  font-family: inherit;
  color: #ffffff !important;
  background-color: var(--details);
  border: none;
  border-radius: 8px;
  line-height: normal;
  font-weight: 700;
  cursor: pointer;
}
.submitBnt:hover {
  background-color: var(--hover);
}
@media (max-width: 767.98px) {
  #contact .row {
    flex-direction: column;
    row-gap: 20px;
  }
}
/*footer*/
footer {
  background-color: var(--details);
}
.footer-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 10px;
  column-gap: 20px;
}
.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 33%;
}
.column.center {
  padding-top: 16px;
}
.column img {
  max-width: 250px;
  margin-bottom: 14px;
}
.column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}
.column p {
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
}
.column a {
  margin-bottom: 4px;
  font-size: 14px;
  color: #fff;
  transition: 0.5s;
  font-weight: 400 !important;
}
.column a:hover {
  color: var(--hover);
}
.column ul {
  list-style: none;
  align-self: flex-end;
  width: 90%;
  padding-left: 0;
}
.column li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hover);
}
.copyright {
  width: 100%;
  margin-bottom: 0;
  padding: 20px 0;
  background-color: var(--details);
  text-align: center;
  color: #fff;
}
@media (max-width: 767.98px) {
  .footer-area {
      max-width: 500px;
      flex-direction: column;
  }
  .column {
      align-items: center;
      width: 100%;
      margin-bottom: 1rem;
  }
  .column p, .column a {
      max-width: 90%;
      text-align: center;
  }
  .column ul {
      align-self: center;
      width: 90%;
  }
  .copyright {
      padding: 20px 0 !important;
      font-size: 12px;
  }
}
@media (max-width: 460px) {
  .column {
      align-items: flex-start;
  }
  .column p, .column a {
      text-align: start;
  }
  .column ul {
      width: 100%;
  }
}
/*Footer End*/

/*Thanks area*/
.thanks-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto auto;
  padding: 200px 10px;
}
.thanks-icon {
  width: 100px;
  height: auto;
  margin-bottom: 30px;
}
.thanks-text {
  max-width: 900px;
  font-size: 18px;
  text-align: center;
}
.thanks-text b {
  color: var(--details);
}
@media (max-width: 767.98px) {
  .thanks-area {
      max-width: 490px;
  }
  .thanks-text {
    font-size: 16px;
  }
}
/*Thanks area End*/

/*Docs*/
.wrapper{
	padding: 130px 0 80px;
}
.wrapper h1 {
	text-align: center;
	margin-bottom: 16px;
	font-size: calc(1.5rem + 1vw);
}
.wrapper h1 {
  color: inherit;
}
.wrapper ul {
  padding-left: 20px;
  list-style: disc !important;
}
.wrapper p, .wrapper li {
  font-weight: 400 !important;
  color: inherit;
}
.wrapper p:last-child {
	margin-bottom: 0;
}
.wrapper p:not(:last-child) {
	margin-bottom: 16px;
}
.wrapper a {
	text-decoration: none;
	cursor: pointer;
  color: var(--details);
  transition: 0.5s;
}
.wrapper a:hover {
  color: var(--hover);
}
/*Docs End*/