 /*========== Banner Scetion Here ==========*/
.banner-two.style-about.style-details-two {
  background: url(../assets/images/photo/photo2.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.banner-two.style-about.style-details-two .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: 3px 3px;
}

.banner-two.style-about .page-tittle {
  padding: 250px 0px;
  max-width: 685px;
  text-align: left;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
}
.banner-two.style-about .page-tittle .banner-tittle {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-two.style-about .page-tittle .left-content {
  display: flex;
  align-items: center;
}
.banner-two.style-about .page-tittle .left-content .home {
  font-size: 24px;
  font-weight: 500;
  margin-right: 20px;
  text-transform: capitalize;
  position: relative;
}
.banner-two.style-about .page-tittle .left-content .home a {
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.banner-two.style-about .page-tittle .left-content .home a:hover {
  color: #109b9e;
}
.banner-two.style-about .page-tittle .left-content li {
  margin-right: 20px;
  text-transform: capitalize;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.banner-two.style-about .page-tittle .left-content li i {
  font-size: 16px;
}
.banner-two.style-about .page-tittle .left-content li a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .banner-two.style-about .page-tittle {
    padding: 150px 0px;
  }
  .banner-two.style-about .page-tittle .banner-tittle {
    font-size: 60px;
  }
  .banner-two.style-about .page-tittle .left-content .home {
    font-size: 22px;
  }
  .banner-two.style-about .page-tittle .left-content a {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .banner-two.style-about .page-tittle {
    padding: 100px 0px;
  }
  .banner-two.style-about .page-tittle .banner-tittle {
    font-size: 42px;
    text-align: center;
  }
  .banner-two.style-about .page-tittle .left-content {
    justify-content: center;
  }
  .banner-two.style-about .page-tittle .left-content .home {
    font-size: 18px;
  }
  .banner-two.style-about .page-tittle .left-content a {
    font-size: 18px;
  }
}
/*========== Banner Scetion End ==========*/

 /*------Gallery Section Start--------*/
 .gallery-section {
    overflow: hidden;
    position: relative;
  }
  .gallery-section .galley-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 25px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.7s;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 10%;
    display: block;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a:not(:last-child) {
    margin-right: 10px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .link a i {
    color: #fff;
    font-size: 17px;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items:hover {
    cursor: pointer;
  }
  .gallery-section .galley-wrapper .gallery-items .g-items:hover .link-solcial {
    opacity: 1;
  }
  .gallery-section .galley-wrapper .gallery-items-two {
    margin: 0 20px;
  }
  
  @media screen and (max-width: 1199px) {
    .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
      font-size: 18px;
      margin-bottom: 15px;
    }
  }
  @media screen and (max-width: 991px) {
    .gallery-section .galley-wrapper {
      flex-wrap: wrap;
    }
    .gallery-section .galley-wrapper .gallery-items-two {
      margin: 0;
    }
    .gallery-section .galley-wrapper .gallery-items-three {
      margin-top: -25px;
    }
    .gallery-section .galley-wrapper .gallery-items {
      width: 48.5%;
    }
    .gallery-section .galley-wrapper .gallery-items .g-items {
      margin: 20px;
    }
    .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
      font-size: 18px;
      margin-bottom: 15px;
    }
  }
  @media screen and (max-width: 580px) {
    .gallery-section .galley-wrapper {
      flex-wrap: wrap;
    }
    .gallery-section .galley-wrapper .gallery-items-two {
      margin: 0;
    }
    .gallery-section .galley-wrapper .gallery-items-three {
      margin-top: 0px;
    }
    .gallery-section .galley-wrapper .gallery-items {
      width: 95%;
    }
    .gallery-section .galley-wrapper .gallery-items .g-items {
      margin: 10px;
    }
    .gallery-section .galley-wrapper .gallery-items .g-items:not(:last-child) {
      margin-bottom: 25px;
    }
    .gallery-section .galley-wrapper .gallery-items .g-items .link-solcial .content .title {
      font-size: 18px;
      margin-bottom: 15px;
    }
  }
  /*========== Gallery Scetion End ==========*/

  
  /*========== Photo Section Here ==========*/
.photo-section {
    overflow: hidden;
  }
  .photo-section .photo-items .photo-thumb img {
    width: 100%;
    height: 100%;
  }
  /*========== Photo Section End ==========*/
  

   /*========== Newsletter Scetion Start ==========*/
.newsletter {
    overflow: hidden;
    padding: 70px 0px;
    background: #109b9e;
  }
  .newsletter .form-content h5 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
  }
  .newsletter .form {
    position: relative;
  }
  .newsletter .form input {
    color: #109b9e;
    width: 100%;
    padding: 22px 35px;
    border: none;
    outline: none;
    border-radius: 10px;
  }
  .newsletter .form i {
    position: absolute;
    top: 30px;
    left: 14px;
    color: #109b9e;
  }
  .newsletter .form .effect-button {
    position: absolute;
    top: 22px;
    right: 6px;
  }
  .newsletter .form .effect-button .effect-btns {
    border: none;
    outline: none;
    border-radius: 5px;
    background: none;
    color: #fff !important;
    padding: 16px 40px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    background-image: -webkit-linear-gradient(145deg, rgb(27, 211, 228) 0%, rgb(20, 201, 192) 100%);
    box-shadow: 0px 18px 30px 0px rgba(100, 159, 205, 0.36);
  }
  
  @media screen and (max-width: 991px) {
    .newsletter .form input {
      font-size: 15px;
    }
    .newsletter .form .effect-button .effect-btns {
      padding: 15px 20px;
      font-size: 15px;
    }
  }
  @media screen and (max-width: 768px) {
    .newsletter .form-content h5 {
      font-size: 28px;
    }
  }
  @media screen and (max-width: 500px) {
    .newsletter .form-content h5 {
      font-size: 28px;
    }
    .newsletter .form input {
      font-size: 14px;
    }
    .newsletter .form .effect-button .effect-btns {
      padding: 10px 10px;
      font-size: 14px;
    }
  }
  /*========== Newsletter Scetion End ==========*/