@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
  --theme-color: #000000;
  --theme-color-second:#81bc24;
  --theme-color-third: #000;

  --heading-font:  "Baskervville", serif;
  --paragraph-font:"Mulish", sans-serif;
  --span-font: 'spanist';



  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family:"Mulish", sans-serif;
  /* color: var(--theme-color) !important; */
}


a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  font-size: 85px;
}

h2 {
    font-size: 50px;
}

h3 {}

h4{}

h5{}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 0px;
  width: 12rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  opacity: 0.8;
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 29px 19px;
    display: inline-block;
    font-weight: 600;
}
.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}


.banner_sec{
  padding-top:280px;
}
.banner_sec h1{
  line-height: 1;
}

.banner_sec h1 span {
    color: var(--theme-color-second);
    margin-left: 59px;
    text-transform: uppercase;
    background: #fff;
    padding: 15px;
    display: inline-block;
    margin-top: 10px;
    font-size: 70px;
}

/* home_sec_1 */

.home_sec_1  h2 i{
  color: var(--theme-color-second);
}

a.fit-btn{
  width: fit-content;
} 

.home_sec_1 .service-box {
  position: relative;
  margin-bottom: 80px;
}

.home_sec_1 .service-box .number {
  font-size: 100px;
  font-weight: 900;
  opacity: 0.2;
}

.home_sec_1 .service-box .service-contet {
    position: relative;
    margin-top: -20%;
    width: 100%;
}

.home_sec_1 .service-box .service-contet h4{
  font-size: 24px;
}

/* .home_sec_2 */

.home_sec_2 .hd_info h4{
  position: relative;
  display: flex;
  font-size: 24px;
  align-items: center;
}
.home_sec_2 .hd_info h4:before {
    content: "";
    display: block;
    background-color: #fff;
    height: 50px;
    width: 356px;
    position: absolute;
    left: -20px;
    top: -13px;
}
.home_sec_2 .hd_info h4 i{
  position: relative;
  z-index: 1;
}

.home_sec_2 .hd_info h4 span{
  color: #fff;
}

.home_sec_3 {
  height: 100vh;
}

.home_sec_4{
  background-position-x: 100%!important;
  background-position: top!important;
}
a.btn-black {
  background-color: #000;
}
.glightbox-open .glightbox-container {   
    z-index: 99999999999999!important;  
}

.home_sec_4 a.glightbox img{
  height: 350px;
  object-fit: cover;
}

.home_sec_5 {
  height: 100vh;
  display: flex;
  align-items: end;
}

.home_sec_6 .heading h5{
  text-transform: uppercase;
  font-family: var(--paragraph-font);
  font-weight: 800;
  margin-bottom: 0;

}
.home_sec_6 .heading  ul.rating{
  display: flex;
  color: orange;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 0;
}

.home_sec_6  .test-box {
  padding: 15px;
  border: 2px solid #cccccc;
  border-radius: 5px;
}
.home_sec_6 .top-content {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 6px;
}
.home_sec_6 .top-content  .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 600px;
    width: 70px;
    height: 50px;
}

.home_sec_6 .top-content  .img-box img {
    object-fit: cover;
    object-position: top;
    position: relative;
   
}

.home_sec_6 .top-content  .g-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 600px;
    width: 20px;
    height: 20px;
}

.home_sec_6 .name-box {
    width: 100%;
}
.home_sec_6 .name-box h6{
  font-family: var(--paragraph-font);
}
.home_sec_6 .name-box p{
  font-size: 12px;
  opacity: 0.4;
}

.home_sec_6 .rate{
  display: flex;
  gap: 3px;
  color: orange;
  margin-bottom: 0;
}

.home_sec_6 .content a.text-secondary {
  font-size: 14px;
}

.home_sec_6 .owl-nav img{
  width: 35px;
}

.home_sec_6 button.owl-prev {
    position: absolute;
    top: 40%;
    left: -40px;
}
.home_sec_6 button.owl-next {
    position: absolute;
    top: 40%;
    right: -40px;
}

.home_sec_7 a.call{
  color: var(--theme-color-second);
  font-size: 49px;
  font-weight: 800;
}

.home_sec_8 {
  display: flex;
  align-items: self-end;
  height:80vh;
}


/* footer */
.footer {
  color: #fff;
}
.footer .contact-list li {
  margin-bottom: 18px;
}
.footer .contact-list li a {
    display: flex;
    gap: 5px;
    font-size: 17px;
    color: #f4f4f4;
}

.footer .contact-list li a i{
  color: var(--theme-color-second);
}


/* Contact Page */

.contact-info-content {
  background: var(--theme-color-second);
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.contact-info-content .icon {
  width: 60px;
  height: 60px;
  background: #fff;
  margin: auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-second);
  font-size: 30px;
}

.contact-info-content .icon-info {
  margin-top: 20px;
}

.contact-info-content .icon-info h4 {
  color: #fff;
  margin-bottom: 4px !important;
  font-weight: 400;
}

.contact-info-content .icon-info p {
  color: #eee;
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
}

.contact-info-content .icon-info p a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.contact-info span {
  color: #cb1818;
  font-size: 16px;
  /* font-family: "Pacifico", cursive; */
  font-weight: 300;
  letter-spacing: 1.6px;
}

.contact-page-form h2 {
  color: #111;
  font-size: 40px;
}

.map {
  line-height: 0;
}
.map iframe{
 width: 100%;
}
.contact-info form input {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info  form select {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

 form .input:focus {
  color: #5F656F;
  background-color: #fff;
  border-color: #5F656F;
  outline: 0;
  box-shadow: none;
}

.contact-info  form textarea {
  padding: 15px 8px;
  color: #353535;
  background-color: #fff;
  border: 1px solid #666666;
  outline: 0;
  box-shadow: none;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
}

.contact-info  form button {
  padding: 15px 0px;
  background: var(--theme-color-second);
  color: #fff;
  border: none;
  letter-spacing: 1px;
  transition: 1s;
  width: 100%;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
}

.form-check input {
  width: 25px;
}

.form-check {
  display: flex;
  align-items: baseline;
  padding-left: 0;
  /* justify-content: center; */
}

#service_pages .service-box{
  margin-bottom: 0;
}

.about_sec_2 .mission-box i{
  background-color: var(--theme-color-second);
  color: #fff;
  display: flex;
  border-radius: 5px;
  height: 50px;
  width: 50px;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}
.about_sec_2 .mission-box  h3{
  color: #639611;
}
.about_sec_2 .mission-box   p{
  color: #666666;
}

.inner_banner {
    padding: 150px 0;
}

.inner_banner h1{
  display: inline-block;
  padding: 10px 20px;
  font-size: 45px;
  background-color: var(--theme-color-second) ;
} 
 .footer .head-5 h5 {
    
  
    color: #81bc24;
    margin-bottom: 21px;
}

@media (min-width:992px){
    .even-box{
        margin-top:120px;
    }
}

@media (min-width:768px) and (max-width:991px){
    .even-box{
        margin-top:60px;
    }
}
@media (max-width:767px){
    .even-box{
        margin-top:0;
    }
}
/*img.img-fluid.service_img_cre {*/
/*    height: 400px;*/
/*}*/


