:root {
  --primary: #305B58;
  --dark: #231f20;
}
*{
  padding: 0;
  margin: 0;
  font-family: 'RedHat-regular';
  box-sizing: border-box;
}
p{
  font-size: 16px;
}

@font-face {
  font-family: RedHat-regular;
  src: url(fonts/RedHatDisplay-Regular.ttf);
}

@font-face {
  font-family: RedHat-Bold;
  src: url(fonts/RedHatDisplay-Bold.ttf);
}

.layout{
  width: 80%;
  margin: auto;
}

.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.header-wrapper{
  position: relative;
}
.header-wrapper:after{
  position: absolute;
    bottom: -20px;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../images/down-icon.png);
    background-size: cover;
    left: 50%;
    margin-left: -20px;
}

.owl-stage{padding-left:0px !important;}

.logo img{
  width: 300px;
}

.top-head{
  padding: 15px 0;
}

.hero-section{
  margin: 60px 0;
    width: 530px;


}

.text-white{
  color: #fff;
}
.text-primary{
  color: var(--primary);
}
.text-dark{
  color: var(--dark);
}

.bg-primary{
  background: var(--primary);
}

.header-wrapper{
  background-image: url(../images/bg-img-1.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.slider{
  margin-bottom: 50px;
}
.slider-wrapper{
  width: 90%;
  margin:0 0 0 auto;
}
.slider-head{
  display: flex;
  align-items: center;
  margin-bottom: 20px;

}
.slider-icon img{
  width: 50px !important;
  margin-right: 15px;
}
.item{
  background: #60BF9859;
  border: 1px solid #60BF9899;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  backdrop-filter: blur(2px);
}
.slider-heading{
  font-size: 14px;
  font-family: 'RedHat-Bold';
}
.slide-intro{
  font-size: 14px;
}
.alpha{
  width: 70%;
  display: flex;
      flex-direction: row;
    flex-wrap: wrap;
    float: left;
}
.beta{
  width: 30%;
  display: flex;
      flex-direction: row;
    flex-wrap: wrap;
}


.field-full{
  width: 100%;
  padding-right: 15px;
    margin-bottom: 15px;
}
.field-half{
  width: 50%;
  padding-right: 15px;
    margin-bottom: 15px;
}

label{
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.checkbox-wrap label{
  display: inline;
}
.field{
  width: 100%;
    padding: 7px;
    border-radius: 10px;
    border: 1px solid var(--primary);
}

.form-wrapper{
  padding: 50px 0;
}

.footer-wrapper{
  background: #305B58;
  padding: 50px 0;

}

.footer-wrapper *{
  color: #fff;
}
.footer-wrapper p{
  display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}
.footer-wrapper p img{
      width: 30px;
    margin-left: 5px;
}
h1{
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
}

.mb-30{
  margin-bottom: 30px;
}
.mb-20{
  margin-bottom: 20px;
}
.slider-wrapper h2{
  display: inline;
  font-size: 40px;
}
.slide-btn{
  padding: 4px;
  color: #fff;
  cursor: pointer;
  position: relative;
  top: -6px;
      width: 40px;
    display: inline-block;
    margin: 0;
}
.prev-slide{
  background: #025450;
      border-radius: 20px 0 0 20px;
}
.next-slide{
  background: #00443F;
      border-radius: 0 20px 20px 0;
      left: -4px;
}
.line{
  width: 70px;
  height: 1px;
  background: #fff;
  display: inline-block;
  position: relative;
  top: -12px;
}
.submit-btn{
  box-shadow: 0 0 0 #fff;
    background: #305B58;
    color: #fff;
    padding: 7px;
    border: 0;
    display: block;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}
textarea{
  height: 122px;
}
.wpcf7-list-item-label{
  font-size: 13px;
  margin-left: 5px;
}
.checkbox-wrap label{
  display: flex !important;
  margin-bottom:0;
}
.wpcf7-checkbox{
    display:flex;
    flex-wrap:wrap;
}
.arrow-s{
    width:10px;
        position: relative;
    left: 10px;
    top: 2px;
}

@media only screen and (max-width: 600px) {
  .hero-section, .alpha, .beta, .field-half {
    width: 100%;
  }
  .header{
    flex-direction: column;
    
    align-items: center;
  }
  .logo{
    margin-bottom: 10px;
  }
  .c-detail{
    text-align: center;
  }
  .wpcf7-list-item{
      margin-bottom: 5px !important;
      width:100%;
  }
}