@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* navbar22222222222222222 */
.nav-container {
  /* max-width: 1200px; */
  width: 90%;
  margin: auto;
  padding: 3% 0;
}

/* ............/navbar/............ *
    
    /* desktop mode............/// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  /* box-shadow: 0px 5px 10px 0px #aaa; */
  /* position: fixed; */
  width: 100%;
  /* color: #000; */
  /* opacity: 0.85; */
  /* height: 50px; */
  z-index: 12;
  background-color: #4C4C4C;
  /*opacity: 0.7;*/
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 0px !important;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.menu-items li {
  list-style: none;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.menu-items a {
  color: #000;
  margin: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.menu-items a:hover {
  color: #cafbcd;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  /* font-size: 2.3rem; */
  margin-bottom: 0.5rem;
  height: 110px;
}


/* ......../ media query /.......... */

@media (max-width: 768px) {
  .navbar {
    /* opacity: 0.95; */
  }
      .logo {
        position: absolute;
        top: 4px !important;
        height: 45px !important;
        padding: 0 1% !important;
      }

  .nav-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 4.5% 3%;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #cafbcd;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -70px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    /* box-shadow: 5px 0px 10px 0px #aaa; */
    position: relative;
    z-index: 200;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
   position: absolute;
    top: -20px;
    /* left: 70px; */
    z-index: 500;
    height: 144px;
    padding: 0 22%;
  }

  .navbar-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
}


/* Button***************** */

.cust-btn {
  /* background: -webkit-linear-gradient(0deg, #F2B145, #F0B95E 50%); */
  background: #00BF63;
  /* background-image: linear-gradient(to bottom, #11cdd4, #11999e); */
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 20px;
  padding: 13px 26px 13px 26px;
  text-decoration: none;
  outline: none;
  transition: 0.5s ease;
  border-radius: 35px;
}

.cust-btn:hover {
  background: #00BF63;
  ;
  text-decoration: none;
  color: #000247;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  outline: none;
}






.cta-btn {
  /* background: -webkit-linear-gradient(0deg, #F2B145, #F0B95E 50%); */
  background: #000247;
  /* background-image: linear-gradient(to bottom, #11cdd4, #11999e); */
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 60px 10px 60px;
  text-decoration: none;
  outline: none;
  transition: 1.2s ease;
}

.cta-btn:hover {
  background: #132637;
  text-decoration: none;
  color: white;

}


@media screen and (max-width: 600px) {
  .cta-btn {
    /* background: -webkit-linear-gradient(0deg, #F2B145, #F0B95E 50%); */
    background: rgb(56, 182, 255);

    /* background-image: linear-gradient(to bottom, #11cdd4, #11999e); */
    -webkit-border-radius: 8;
    -moz-border-radius: 8;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 20px;
    padding: 0;
    text-decoration: none;
    outline: none;
    transition: 1.2s ease;
  }

}

.cust-card {
  background-color: white;
  box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 25%);
  border-radius: 12px;
  transition: 1.2s ease;
}

.cust-card:hover {
  background-color: #cafbcd;
  ;
}


.cust-test {
  background-color: #00BF63;
  box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 25%);
  border-radius: 12px;
  transition: 1.2s ease;
}

.cust-test:hover {
 
  background-color: white;
}

.news-card{
  background-color: #fff;
  box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 25%);
  border-radius: 12px;
  transition: 1.2s ease;
}

/* *******************Table */

.cust-table {
  background-color: #cafbcd;
  padding: 40px;
  border-radius: 12px;
  transition: 1.2s ease;
  box-shadow: 0px 0px 30px 1px rgb(0 0 0 / 25%);
}

.cust-table:hover{
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  transition: 1s ease;
}


/************Topbar***************** */


.topbar-list {
  list-style: none;
  color: white;
  font-size: 14px;
  padding-left: 0rem;
}



@media(max-width: 1400px) {


  .topbar-list {
    list-style: none;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    color: white;
    padding-left: 14rem;
  }
}



@media(max-width: 991px) {


  .topbar-list {
    list-style: none;
    color: white;
    font-size: 14px;
    padding-left: 0rem;
  }

  .mob-display {
    display: none;
  }



}



/* **************Contact form *************************/

.contact-form-wrapper {
  /* padding: 100px 0; */
}

.contact-form {
  padding: 30px 40px;
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 450px;
}

.contact-form textarea {
  resize: none;
}

.contact-form .form-input,
.form-text-area {
  background-color: #f0f4f5;
  height: 50px;
  padding-left: 16px;
}

.contact-form .form-text-area {
  background-color: #f0f4f5;
  height: auto;
  padding-left: 16px;
}

.contact-form .form-control::placeholder {
  color: #aeb4b9;
  font-weight: 500;
  opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control:focus {
  border-color: #000247;;
  box-shadow: inset 0 1px 1px rgba(112, 112, 112, 0.07), 0 0 8px #000247;
}

.contact-form .title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.contact-form .description {
  color: #000;
  font-size: 14px;
  text-align: center;
}

.contact-form .submit-button-wrapper {
  text-align: center;
}

.contact-form .submit-button-wrapper input {
  border: none;
  border-radius: 4px;
  background-color: #000;
  color: white;
  text-transform: uppercase;
  padding: 10px 60px;
  font-weight: 500;
  letter-spacing: 2px;
}

.contact-form .submit-button-wrapper input:hover {
  background: #c3fbc6;
  
  text-decoration: none;
  color: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  outline: none;
}

#banner{
  background-image: url(https://birmingham-asbestos-survey.com/wp-content/themes/sur/assets/img/banner-home1.jpg);
}

.mx-4{
  padding-top: 29px!important;
  margin-right: 1.5rem!important;
    margin-left: 1.5rem!important;
}

.banner-10{
  padding-top: 30px;
}


@media  (max-width: 480px) {
  .banner-10 {
    padding-top: 0px;
  }
  .opt-class{

    margin-top: 13px;
  }
  .h1w-co{
    font-size: 34px!important;
  }
  h1{
    font-size: 30px!important;
  }

.emai-3{
  font-size: 18px;
}
.banner-div{
  margin-top: 0px!important;
}

}

.h1w-co{
  font-size: 70px;
  color: #000247;
  margin-bottom: 40px;
}



@media screen and (min-device-width: 992px) and (max-device-width: 1300px) { 
.fit-wp {
    margin-left: -52px;
    font-size: 15px;
  }
}


/***************** banner3 *****************/
video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 600px;
    width: auto;
    z-index: -100;
    transform: translateX(-33%) translateY(-55%);
    background-size: cover;
    transition: 1s opacity;
}