* {
  box-sizing: border-box;
}
body {
  font-family: "Halant", serif;
  font-size: 14px;
  background: #0f1318;
}

ul > li > ul {
    margin-left: 20px;
}
ul > li > ul > li{
    list-style: disc;
    padding-left: 10px;
}
ul > li > p {
    margin-bottom: 10px;
}
.font-source {
  font-family: "Source Sans 3", sans-serif;
}
.bg-yellow {
  background-color: #e3b215;
}
.bg-black-input {
  background-color: #262626;
}
.color-white-input {
  color: #d2d2d2;
}
.border-yellow {
  border-color: #ffd500;
}
.text-yellow,
.color-yellow {
  color: #ffd500;
}
.color-gray {
  color: #707070;
}
.ring-yellow {
  box-shadow: inset 0 0 0 calc(1px + 1px) #ffd500;
}
.border-b-1 {
  border-bottom: 1px solid;
}
.footer-bottom ul li,
.copyrighttext {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
}
/* .header_banner {
  background: url(../../assets/images/homebanner_mobile.png) center bottom;
  background-size: cover;
  position: relative;
  padding-bottom: 190px;
  margin-top: 80px;
} */
@media screen and (min-width: 768px) {
  .header_banner {
    background: url(../../assets/images/homebanner.png) center center;
    background-size: contain;
    background-repeat: no-repeat;
    
    padding-bottom: 0;
    position: relative;
  }
  .header_banner h1 {
    font-size: 58px;
  }
}
.getintouch-form {
  background: rgba(0, 0, 0, 0.8) url(../../assets/images/contact_form_bg.gif) center center;
  background-size: cover;
  position: relative;
}
.getintouch-form:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.getintouch-content {
  position: relative;
  z-index: 2;
}

.seperator-yellow {
  padding: 0;
  height: 2px;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(255, 213, 0, 0) 0%,
    #ffd500 48.5%,
    rgba(255, 213, 0, 0) 100%
  );
}
.seperator-black {
  padding: 0;
  height: 2px;
  display: block;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 48.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.what_we_do_section {
  background: url(../../assets/images/whatwedo_mobile_bg.png) center bottom;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .what_we_do_section {
    background: url(../../assets/images/what_we_do.png) center center;
    background-size: cover;
  }
}
/* .why_choose_us {
  background: url(../../assets/images/why_choose_us.png) center bottom;
  background-size: cover;
} */
@media screen and (min-width: 768px) {
  .why_choose_us {
    background: url(../../assets/images/why_choose_us.png) top center no-repeat;
    background-size: contain;
   padding-top: 5rem;
        padding-bottom: 2rem;
  }
}

.spaciality_item {
  position: relative;
  overflow: hidden;
  background-color: #1A2027;
}
.spaciality_item:after {
  content: "";
  display: block;
  height: 15px;
  width: 100%;
  background-color: #ffd500;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

input {
  color-scheme: dark;
}

.service_title h3 {
  transform: translateY(-50%);
}

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}

.social_icons_links a svg {
  height: 20px;
  width: 20px;
}
.more_services {
    display: flex;
    margin: 50px auto 10px;
    align-items: center;
    justify-content: space-between;
}
.more_services .more_services_item {
    background: #171C21;
    width: 145px;
    padding: 10px;
    border-radius: .5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 15px;
}
.more_services .more_services_item img{
    width: 64px;
    height: 64px;
    margin: 10px auto;
}
/*input[type=date],*/
/*input[type=time]{*/
/*  text-align: right;*/
/*}*/

input[type="date"]:before,
input[type="time"]:before {
  color: lightgrey;
  content: attr(placeholder) !important;
  margin-right: 0.5em;
}
/*input[type="date"]:focus:before,*/
/*input[type="time"]:focus:before {*/
/*  content: '' !important;*/
/*}*/

.content-page p{
    margin-bottom: 12px;
}
.accordion_wrap {
    border-radius: 10px;
    overflow: hidden;
}
.accordion_wrap .accordion {
  background-color: #e3b215;
  color: #000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion_wrap .accordion:after{
    content: "";
    margin:0 0.5em;
    display:inline-block;
    border: 7px solid transparent;
    border-top:8px solid gray;
    border-bottom:0 none;
}
.accordion_wrap .active, .accordion_wrap .accordion:hover {
  background-color: #ccc; 
}

.accordion_wrap .panel {
  padding: 0 18px;
  display: none;
  
  overflow: hidden;
}
.accordion_wrap .panel ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.accordion_wrap .panel ul li{
    width: 33%;
    padding: 8px 0;
    text-align: left;
}
.accordion_wrap .panel ul li:before {
  content: '✓';
  margin-right: 10px;
}
#services_section img {
    margin-right: auto;
    margin-left: auto;
}

.offerpopup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: white;
    z-index: 1000;
}
.offerpopup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.offerpopup-close {
    display: block;
    text-align: right;
    cursor: pointer;
}
#why_choose_us ul li {
    margin-bottom: 8px;
}
#why_choose_us ul li strong {
  font-family: "Halant", serif;
    color: #ffd500;
}
@media screen and (max-width: 767px) {
    .more_services {
        flex-direction: row;
        flex-wrap: wrap;
        margin: 22px 10px 0;
        justify-content: space-evenly;
    }
    .more_services .more_services_item {
        width: 100px;
        font-size: 12px;
        margin-right: 0;
    margin-left: 0;
    }
    .more_services .more_services_item img{
        width: 30px;
        height: 30px;
    }

    #testimonial_slider {
      padding-bottom: 50px;
    }
    #testimonial_slider .slick-slide p {
      font-size: 12px;
    }
    #testimonial_slider .prev-btn.slick-arrow {
      top: 95%;
      left: 39%;
      width: 30px;
    }
    #testimonial_slider .next-btn.slick-arrow {
      top: 95%;
      right: 39%;
      width: 30px;
    }
    .accordion_wrap .panel ul li{
        width: 100%;
    }
    #why_choose_us ul li {
        margin-bottom: 18px;
    }
}
@media screen and (max-width: 380px) {
     .more_services .more_services_item {
        width: 85px;
        font-size: 12px;
    }
}