*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:sans-serif;
}

/* HEADER */
.header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 10px;
}
.logo{
  font-size:26px;
  font-weight:700;
}
.logo span{color:#ff8c00;}
nav a{
  margin-left:25px;
  text-decoration:none;
  color:#000080;
  font-size: 13px;
}
nav .active{
    color: #ff8c00;
}
.login{color:#ff8c00;}

/* HERO */
.hero{
  background:url(images/herobanner1.jpg) center/cover no-repeat;
  height:82vh;
  opacity: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding:0 20px;
}
.hero h1{
  font-size:50px;
  font-weight:700;
  color:#fff;
}
.hero p{
  font-size:19px;
}
.hero::before{
  content:'';
  background: rgba(255,255,255,.6);
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.hero-overlay{
  padding: 10px 0px;
  margin: auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  position: relative;
  z-index: 1;
}
.hero-overlay::before{
  content:'';
  background: #252525;
  opacity: 0.65;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index: -1;
}

.btn-orange{
  background:#FF8C00;
  color:#fff;
  padding:10px 23px;
  border-radius:4px;
  text-decoration:none;
  opacity: 1;
  position: relative;
  z-index: 999;
  font-size: 16px;
}
.btn-secondary{
  border:2px solid #ff8c00;
  color:#ff8c00;
  padding:10px 24px;
  display:inline-block;
  margin-top:15px;
}
.logo img{
    max-width: 380px;
}

.about-content {
    position: relative;
    top: -40px;
    padding-left: 30px;
}
.about-content h2{
    font-size: 45px;
    font-weight: 700;
    margin: 20px 0px;
}
.about-content p{
    font-size: 19px;
    line-height:28px;
    margin: 25px 0px;

}
.myline{
    width: 100px;
    height: 3px;
    background: #000;
    margin: 0 auto;
    margin-top: 20px;
    display: inline-block;
}
.section3{
    background: url(images/section3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 65px 0px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.section3::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

.section3 h2 a {
    font-size: 36px;
    margin: 20px 0px;
    color: #fff;
    text-decoration: none;
    
}
.mytitle h2{
    font-size: 45px;
    font-weight: 700;
    margin: 20px 0px;
    color: #333333;
}
.mytitle p{
    font-size: 19px;
    font-weight: 700;
}
.services-box{
    text-align: center;
}
.services-box img{
    width: 110px;
    margin: auto;

}
.services-box h3{
    margin: 20px 0px;
}
.services-box h3 a{
    font-size: 19px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
}
.services-box p{
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0px;
    color: #333333;
}
.f20{
    font-size: 30px !important;
    font-weight: 300 !important;
    color: #333333;
}
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.myslider {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: calc(100% / 6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  /* max-width: 120px; */
  opacity: 0.8;
  transition: 0.3s;
}

.slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .slide { min-width: calc(100% / 3); }
}

@media (max-width: 576px) {
  .slide { min-width: calc(100% / 2); }
}
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dots span.active {
  background: #000;
  width: 10px;
  height: 10px;
}
.copyrighttext{
  font-size: 13px;
  margin-top: 10px;
}
/* FOOTER */
.footer{
  background:#ffa500;
  color:#fff;
  text-align:center;
  padding:8px;
}
.footer-links a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  font-size:13px;
}
.hero2{
  background:url(images/herobanner2.webp) center/cover no-repeat;
  height:110vh;
  opacity: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding:0 20px;
}
.hero2 h2{
  font-size:48px;
  font-weight:700;
  color:#fff;
}
.hero2 p{
  font-size:19px;
}
.hero2 h5{
    font-size: 32px;
    margin: 20px 0px;
}
.hero2::before{
  content:'';
  background: rgba(255,255,255,.6);
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.hero-overlay2{
  padding: 30px 0px;
  margin: auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  position: relative;
  z-index: 1;
}
.hero-overlay2::before{
  content:'';
  background: #252525;
  opacity: 0.55;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index: -1;
}
.humberger-menu{
  display: none;
}
.responsive-logo{
  display: none;
}
.responsive-logo img{
  width: 70px;
}
.mobilenav{
  min-height: 400px;
  display: none;
}
.mobilenav a{
  display: block;
  margin-top: 12px;
}
@media (max-width:992px) {
  .bignav{
    display: none;
  }

  .humberger-menu{
  display: block;
  cursor: pointer;
}
.logo{
  display: none;
}
.responsive-logo{
  display: block;
 
}

}
.block
{
  display: block;
}

@media (max-width:576px) {
  .hero2 {
    padding: 0 0px;
}
}
/* this is abput us section  */
.breadcrumb{
  width: 100%;
  min-height: 400px;
  background: url(images/breadcrumb.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.breadcrumb::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: #13aef0b5;
  z-index: -1;
}
.breadcrumb h1{
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
}
.breadcrumb p{
  font-size: 24px;
}
.f-24{
  font-size: 24px !important;
}
.fw-300{
  font-weight: 300 !important;
}
.f-normal{
  font-weight: normal !important;
}
.f-28{
  font-size: 35px !important;
}
.formcontainer{
  width: 100%;
  min-height: 100vh;
  background: url(images/breadcrumb.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  z-index: 1;
}
.formcontainer::before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: #13aef0b5;
  z-index: -1;
}
.formcontainer h2{
  font-size: 38px;
  margin-bottom: 20px;
}
.formcontainer p{
  font-size: 22px;
}
.formcontainer form input{
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  outline: none;
}
.formcontainer form input:focus{
  border:1px solid #FF8C00;
}
.formcontainer form input:focus::placeholder{
  color: #fc4305fe;
  opacity: 0.4;
}
.formcontainer form textarea{
  width: 100%;
  height: 110px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 6px 20px;
  font-size: 16px;
  border: none;
  outline: none;
}
.formcontainer form textarea:focus{
  border:1px solid #FF8C00;
}
.formcontainer form textarea:focus::placeholder{
  color: #fc4305fe;
  opacity: 0.4;
}
.formcontainer form button{
  width: 100%;
  height: 50px;
  border: none;
  background-color: #FF8C00;
  font-weight: 700;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  border-radius: 5px;
}
.formcontainer form button:hover{
  background-color: #ffa500;
}
.formcontainer form label{
 font-weight: 800;
}
.information-box .squarebox {
width: 80px;
height: 80px;
background-color: #DDDDDD47;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-radius: 5px;
margin-bottom: 20px;
}
.information-box h5{
  color: #6784ec;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}
.information-box  p{
  font-size: 14px;
}
.information-box:hover .squarebox{
  background: #6784ec;
}
.information-box:hover .squarebox img {
  filter: brightness(0) invert(1);
}
@media (max-width:769px) {
  .breadcrumb h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.breadcrumb p {
    font-size: 24px;
    text-align: center;
   
}
.mytitle h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0px;
    color: #333333;
}
.hero2 h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}
.section3 h2 a {
    font-size: 28px;
    margin: 20px 0px;
    color: #fff;
    text-decoration: none;
}
.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0px;
}
}
@media (max-width:350px) {
  .breadcrumb h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb p {
    font-size: 20px;
    text-align: center;
   
}
}
.terms-conditions {
  padding: 60px 0;
  line-height: 1.8;
}

.terms-conditions h1,
.terms-conditions h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.terms-conditions ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.terms-conditions ul li {
 font-size: 14px;
}
.terms-conditions p{
  font-size: 14px;
}
.search-box {
  position: relative;
  width: 90%;
  margin: 10px auto;
}

.search-box input {
  width: 100%;
  padding: 10px 40px 10px 12px;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
