

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
  }
  body {
    width: 100vw;
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
  }
  
  a{
    text-decoration: none;
    font-size: 18px;
  }
  a:hover{
    color: none;
    text-decoration: none;
  }
  
  ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  img {
    width: 100%;
    max-width: 100%;
  }
  .form-control,
  .form-control:focus,
  .form-control:active {
    border: none;
    outline: none;
    box-shadow: none;
    min-height: 48px !important;
}
.form-control::placeholder {
  color: black;
  opacity: 1; /* Ensures the color is fully opaque */
}
  
  h1, h2, h3, h4, h5, h6 {
      color: #000000;
  }
  a, a:hover, a:focus, a:active {
      text-decoration: none;
      outline: none;
  }
  ul {
      margin: 0;
      padding: 0;
      list-style: none;
  }
  
      .bg-black{
      background-color: black;
      }
  
      .m-15{
        margin: 15px 0px;
      }
      .m-60{
        margin: 60px 0px;
      }
      .mt {
          margin-top: 30px;
      }
      
      .mb {
          margin-bottom: 30px;
      }
      .margin-main {
          margin: 80px 0;
      }
      
      h4 {
          font-size: 20px;
      }
      h5 {
          font-size: 19px;
      }
      li {
          font-size: 17px;
          font-weight: 400;
      }
      p {
          font-size: 18px;
          font-weight: 400;
          line-height: 25px;
          color: #111111;
      }
      .d-flex {
          display: flex;
          align-items: center;
          gap: 10px;
      }
      .align-center{
          align-items: center;
      }
      .justify-center{
        justify-content: center;
      }
      .justify-end{
        justify-content: end;
      }
      .gap-15 {
          gap: 15px;
      }
      .h-100{
        height: 100%;
      }
      .h-400{
        height: 400px;
      }
      .w-auto{
        width: auto;
      }
      .w-100{
        width: 100%;
      }
      .p-0{
        padding: 0px !important;
      }
      .text-right{
        text-align: right;
      }
  
      .space-between {
          justify-content: space-between;
      }
      h2 {
          font-size: 40px;
          letter-spacing: 0.5px;
      }
      h3 {
          font-size: 30px;
      }
      h1 {
          font-size: 42px;
      }
      @media (max-width: 768px){
        .flex-reverse{
          flex-direction: column-reverse !important;
        }
      }
  @media (min-width: 768px){
      .col-md-3 {
          flex: 0 0 25%;
          max-width: 25%;
      }
      .col-md-4 {
          flex: 0 0 33.33333%;
          max-width: 33.33333%;
      }
      .col-md-8 {
          flex: 0 0 66.66666%;
          max-width: 66.66666%;
      }
      .col-md-9{
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
      .col-md-6 {
          flex: 0 0 50%;
          max-width: 50%;
      }
      .col-md-2 {
          flex: 0 0 16.666%;
          max-width: 16.666%;
      }
      .col-md-7 {
          flex: 0 0 58.333333%;
          max-width: 58.333333%;
      }
      .col-md-5 {
          flex: 0 0 41.666667%;
          max-width: 41.666667%;
      } 
      .col-md-10 {
        flex: 0 0 auto;                
        width: 83.333333%;            
        max-width: 83.333333%;       
      }
     
  }
  
  
  @media (min-width:1700px) {
    .container {
        max-width: 1600px !important;
    } 
  }
  @media screen and (min-width:1251px) and (max-width:1500px) {
    .container {
        max-width: 1200px !important;
    }
  }
  @media screen and (min-width:1001px) and (max-width:1250px) {
     .container {
        max-width: 980px !important;
    }
  }
  @media screen and (min-width:769px) and (max-width:1000px) {
      .container {
        max-width: 730px !important;
    }
  }
  @media (max-width:768px) {
    .container {
      max-width: 580px !important;
    }
  }
  
  @media (max-width:468px) {
    .container {
      padding-right: 15px;
      padding-left: 15px;
    }
  }
  
  .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11{
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;
  }
  
  .container {
      max-width: 1400px;
      margin: auto;
    
  
    }
    .row {
      display: flex;
      flex-flow: row wrap;
    }
    .btn {
      touch-action: manipulation; /* Prevents double-tap to zoom */
    }
  
    .p-10{
      padding: 10px 0px;
    }
    .p-20{
      padding: 20px 0px;
    }
    .p-30{
      padding: 30px 0px;
    }
    .p-40{
      padding: 40px 0px;
    }
    .p-50{
      padding: 50px 0px;
    }
  
    .mb-10{
      margin-bottom: 10px;
    }
    .mb-20{
      margin-bottom: 20px;
    }
    .mb-30{
      margin-bottom: 30px;
    }
    .mb-40{
      margin-bottom: 40px;
    }
    .mb-50{
      margin-bottom: 50px;
    }
  
    .mt-10{
      margin-top: 10px;
    }
    .mt-20{
      margin-top: 20px;
    }
    .mt-30{
      margin-top: 30px;
    }
    .mt-40{
      margin-top: 40px;
    }
    .mt-50{
      margin-top: 50px;
    }
  
   


    /* ADD ON */





:root{
  --primary-color:#5B7E96;
  --secondary-color:#231F20;
  --primary-light:#e5f7ff;
  --text-color:#828282;
}



a {
  text-decoration: none;
}
a,
a:active,
a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.padding-main{
  padding: 50px 0px;
}
@media (max-width:768px) {
  .padding-main{
    padding: 20px 0px;
  }
}


/*  */

/*--------------------------------
	GET IN TOUCH BTN
---------------------------------*/
.btn-1 {		
	position: relative;	
	padding: 15px 25px;
	font-size: 14px;
	color: #000;
  background-color: white;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);	
	cursor: pointer;
	user-select: none;
	display:inline-block;
	font-weight:400;
	border: 1px solid #5b7d9645;
  display: flex;
  gap: 15px;
  align-items: center;
  width: max-content;
}
.btn-1:hover{
  background-color: var(--primary-color);
  color: white;
}
.btn-2 {		
	padding: 15px 25px;
	font-size: 14px;
	color: white;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);	
	cursor: pointer;
	user-select: none;
	display:inline-block;
	font-weight:400;
  background-color: black;
  width: max-content;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.btn-2:hover{
  background-color: var(--primary-color);
}
@media (min-width:768px) and (max-width:1400px) {
  .btn-1{
    padding: 12px 15px;
    font-size: 12px;
  }
  .btn-2{
    padding: 12px 15px;
    font-size: 12px;
  }
}

.box-shadow-1{
  background-color: #ffffff;
  box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 16%);
  border-radius: 2px;
}


/* pagination  */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  gap: 10px;
}

.pagination li {
  margin: 0 5px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 15px 10px;
  height: 50px;
  min-width: 50px;
  background-color: var(--primary-light);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
}

.pagination a:hover,
.pagination span.current {
  background-color: var(--primary-color);
  color: #fff;
}



.pagination .prev:hover,
.pagination .next:hover {
  background-color: var(--primary-color);
}

.pagination .page-number {
  display: inline-block;
  margin-right: 10px;
}
