@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
	background: url(../images/bg.webp) no-repeat 100% ;
	font-family: 'Montserrat', sans-serif;
}
.navbar-brand img{
	width: 100px;
}
.main-header nav li a{
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}
.main-header nav li a:hover{
	color: #fff;
	text-decoration: underline;
}

.search-form-container{
	position: relative;
	top: -25px;
}
.main-text-banner{
  margin-bottom: 40px;
}
h1{
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	color: #fff;
	font-size: 72px;
}
h1 strong{
	font-weight: 700;
}
.main-banner-text{
	padding-top: 80px;
}
.bottom-quick-contact{
  min-height: 110px;
}
/*button ripple animation*/
.ripple-btn {
  position: relative;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

/* Ripple circles */
.ripple-btn::before,
.ripple-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0px;
  height: 0px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1s linear infinite;
}

.ripple-btn::after {
  animation-delay: 1s; /* second ripple follows after 1s */
}
.bottom-quick-contact a {
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.9;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
button.navbar-toggler {
    border-color: #fff;
}
button.navbar-toggler.collapsed{
  background: #fff;
}
button.navbar-toggler{
  background: #b3b3b3;
}
.services-section .nav a {
    color: #fff;
}
.services-section .nav a {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    background: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    border-radius: 0;
}
.services-section  .nav-pills .nav-link.active{
  font-weight: 700;
}
.services-section .tab-content>.active{
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .tab-content, .about-us-section, .section-vision-and-mission{
  color: #fff;
}
section.about-us-section{
  background: url(../images/bg-about-us.png) no-repeat center right;
  padding: 100px 0;
  background-size: 430px;
}
section.container-fluid.section-vision-and-mission img {
    max-height: 500px;
    margin: auto;
    display: block;
}
section.section-vision-and-mission .container > .row{
  align-items: center;
}
.col-md-6.vision-img-container{
  position: relative;
}
.col-md-6.vision-img-container:after {
    width: calc(100% + 85px);
    height: 8px;
    background: #fff;
    content: " ";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 13px;
    right: calc(100% - 97px);
}
section.about-us-section h2,
.section-vision-and-mission h2 {
    font-weight: 700;
    font-size: 46px;
}
@media (min-width: 992px){
  .main-header .navbar-brand{
    position: relative;
    top: 25px;
  }
}
@media (max-width: 992px){
  h1{
    font-size: 52px;
  }
  .search-form-container {
      position: relative;
      top: -10px;
  }
  .col-md-6.vision-img-container:after{
    display: none !important
  }
}
@media (max-width: 767px){
  h1{
    font-size: 34px;
  }
  .search-form-container {
      position: relative;
      top: 0;
      margin-top: 15px;
      width: 100%;
  }
  .main-banner-text{
    padding-top: 220px;
  }
}