@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Poppins", sans-serif;
    background-color: #171b1e;
  }
  
  a {
    text-decoration: none;
    color: #5cb874;
  }
  
  a:hover {
    color: #80c792;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Poppins", sans-serif;
  }



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #363d43;
    font-size: 15px;
    height: 40px;
    padding: 0;
  }
  
  #topbar .contact-info p {
    line-height: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-size: small;
  }
  
 
  /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px;
    /* height: 90px; */
    border-bottom: 1px solid #fff;
  }
  
  @media (max-width: 575px) {
    .header {
      height: 70px;
    }
  }
  
  
  .header .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .header .logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #046241;
    margin: 0;
    text-transform: uppercase;
  }
  

  @media screen and (max-width: 768px) {
    .header .logo h1 {
      font-size: 20px;
      font-weight: 700;
      color: #046241;
      margin: 0;
      text-transform: uppercase;
    }
  }

  
  .header .btn-book-a-table,
  .header .btn-book-a-table:focus {
    font-size: 14px;
    color: #383838;
    background: #bfbfbf;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .header .btn-book-a-table:hover,
  .header .btn-book-a-table:focus:hover {
    color: #fff;
    background:#046241;
  }
  
  .header .header_social_icon{
    font-size: 14px;
    color: rgb(255 255 255);
    background: rgb(0 0 0);
    padding: 8px 12px;
    margin-left: 13px;
    border-radius: 50px;

  }




  /*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
  @media (min-width: 1280px) {
    .navbar {
      padding: 0;
    }
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar>ul>li {
      white-space: nowrap;
      padding: 10px 0 10px 28px;
    }
  
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3px;
      font-size: 14px;
      /* font-weight: 600; */
      color: #595959;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    /* .navbar>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: red;
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    } */
  
    /* .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
      visibility: visible;
      width: 100%;
    } */
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: #ffba5f;
    }
  
    .navbar .dropdown ul {
      display: block;
      position: absolute;
      left: 28px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
      border-radius: 4px;
    }
  
    .navbar .dropdown ul li {
      min-width: 200px;
    }
  
    .navbar .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 600;
    }
  
    .navbar .dropdown ul a i {
      font-size: 12px;
    }
  
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
      color: var(--color-primary);
    }
  
    .navbar .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navbar .dropdown .dropdown ul {
      top: 0;
      left: calc(100% - 30px);
      visibility: hidden;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: 100%;
      visibility: visible;
    }
  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  @media (min-width: 1280px) {
  
    .mobile-nav-show,
    .mobile-nav-hide {
      display: none;
    }
  }
  
  /*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
  @media (max-width: 1279px) {
    .navbar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 400px;
      border-left: 1px solid #666;
      bottom: 0;
      transition: 0.3s;
      z-index: 9997;
    }
  
    .navbar ul {
      position: absolute;
      inset: 0;
      padding: 50px 0 10px 0;
      margin: 0;
      background: rgba(255, 255, 255, 0.9);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.8);
      font-size: 16px;
      font-weight: 600;
      color: #7f7f90;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    .navbar a:hover,
    .navbar li:hover>a {
      color: #000;
    }
  
    .navbar .active,
    .navbar .active:focus {
      color: #000;
      border-color: var(--color-primary);
    }
  
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
      position: static;
      display: none;
      padding: 10px 0;
      margin: 10px 20px;
      transition: all 0.5s ease-in-out;
      border: 1px solid #eee;
    }
  
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
      display: block;
    }
  
    .mobile-nav-show {
      color: var(--color-secondary);
      font-size: 28px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      z-index: 9999;
      margin: 0 10px 0 20px;
    }
  
    .mobile-nav-hide {
      color: var(--color-secondary);
      font-size: 32px;
      cursor: pointer;
      line-height: 0;
      transition: 0.5s;
      position: fixed;
      right: 20px;
      top: 20px;
      z-index: 9999;
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .navbar {
      right: 0;
    }
  
    .mobile-nav-active .navbar:before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 9996;
    }
  }

/* --------------------------------------------------------
 hero
 -------------------------------------------------------- */


.hero {
	padding-top: 50px;
}

.hero__items {
	/* padding: 250px 0 42px 50px; */
	padding: 380px 0 42px 50px;
	border-radius: 5px;
}

.hero__text {
	position: relative;
	z-index: 9;
}

.hero__text .label {
	font-size: 13px;
	color: #e53637;
	background: #ffffff;
	padding: 5px 14px 3px;
	display: inline-block;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.2s;
	-o-transition: all, 0.2s;
	transition: all, 0.2s;
}

.hero__text h2 {
	color: #ffffff;
	font-size: 42px;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	line-height: 52px;
	margin-top: 35px;
	margin-bottom: 8px;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.4s;
	-o-transition: all, 0.4s;
	transition: all, 0.4s;
}

.hero__text p {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 40px;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}

.hero__text a {
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

.hero__text a span {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 20px;
	border-radius: 4px 0 0 4px;
	margin-right: 1px;
}

.hero__text a i {
	font-size: 20px;
	display: inline-block;
	background: #e53637;
	padding: 11px 5px 16px 8px;
	color: #ffffff;
	border-radius: 0 4px 4px 0;
}

.hero__slider_box{
    background-color: rgb(145, 145, 145);
}

.hero__slider.owl-carousel .owl-item.active .hero__text .label {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text p {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text a {
	top: 0;
	opacity: 1;
}
/* 
.hero__slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

.hero__slider.owl-carousel .owl-dots button {
	height: 8px;
	width: 8px;
	background: #b7b7b7;
	border-radius: 50%;
	margin-right: 10px;
}

.hero__slider.owl-carousel .owl-dots button.active {
	background: #ffffff;
}

.hero__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
} */

.hero__slider.owl-carousel .owl-nav button {
	font-size: 36px;
	height: 66px;
	width: 66px;
	/* background: #fff; */
	line-height: 66px;
	text-align: center;
	color: #141414;
	position: relative;
	z-index: 1;
	position: absolute;
	left: -33px;
	top: 50%;
	margin-top: -47px;
        border-radius: 50%;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -33px;
}

/* .hero__slider.owl-carousel .owl-nav button:after {
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	height: 54px;
	width: 54px;
	background: rgba(255, 255, 255, 0.1);
	content: "";
	z-index: -1;
	margin: 0 auto;
} */

.hero__slider.owl-carousel .owl-nav button span {
	display: block;
	z-index: 999;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
}











  /* ---------------------------------------------------------------
   Industries
   --------------------------------------------------------------- */
   .Industries{
     padding:50px 0;
    }
    
    .Industries h1{
      text-align: center;
      text-transform: uppercase;
    }
    
    .Industries .heading_button{
      color: #fff;
      font-size: 13px;
      text-align: center;
      background-color: #046241;
    padding: 5px 15px;
  }
  
  
  .Industries p{
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
    text-transform: capitalize;
  }
  
  
  .Industries .service-item {
    background-color: #fff;
    padding: 20px 20px;
    height: 100%;
    margin: 5px;
    /* min-height: 380px; */
    border-radius: 2px;
  }
  
  .Industries .service-item .icon{
    max-width: 35px;
    text-align: center;
    margin:10px auto;
  }
  
  .Industries .service-item .icon img{
    width: 100%;
  }
  
  .Industries .service-item h4 {
    /* margin-bottom: 15px; */
    /* font-size: 18px; */
    text-align: center;
    /* border: 1px solid red; */
    font-size: large;
  }
  
  .Industries .service-item h4 a {
    color: #141414;
    transition: ease-in-out 0.3s;
  }
  
  .Industries .service-item p {
    line-height: 22px;
    font-size: 14px;
    color: #000;
    text-align: justify;
    margin: 0;
    /* border: 1px solid red; */
  }
  
  
  
  .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 41%;
    left: 2%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    /* color: transparent; */
    border: none;
    outline: 0;
    background: 0 0;
    z-index: 999;
}


.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 41%;
    right: 5%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: 0;
    content: '';
}


  .slick-next:before {
    font-family: slick;
    font-size: 45px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #046241;
    /* background-color: #fff; */
    border-radius: 50%;
}


.slick-prev:before {
     border-radius: 50%;
     font-family: slick;
    font-size: 45px;
    line-height: 1;
    
     color: #046241;
    z-index: 999;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.View_categories_box{
    text-align: center;
}

.View_categories_box .View_categories_btn{
    background-color: black;
    padding: 5px 15px;
    color: #fff;
    text-transform: capitalize;
}

/* -------------------------------------------------------
 about
 ------------------------------------------------------- */

 .about{
    padding: 50px 0;
    /* background-color: red; */
 }

 .about h1{
    text-align: start;
    text-transform: uppercase;
    margin-top: 0;
    padding: 0;
}

.about .heading_button{
    color: #fff;
    font-size: 13px;
    padding: 2px 25px;
    background-color: #046241;
}


.about .about_content{
    padding-right:30px;
    padding-top: 0;
    text-align: justify;
}


   .about .about_content h2{
       /* text-align: center; */
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.about .about_content p{
    color: #fff;
    font-size: 13px;
}


  .about .about_img{
    position: relative;
  /* border:1px solid red; */
  }

  .about .about_img .overlay{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #4a4a4ba8;
  }

  
  
  .about .play-btn {
    width: 94px;
    height: 94px;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
  }
  
  .about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(13, 66, 255, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  .about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #4f4f4f;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  /* .about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
  } */
  
  /* .about .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  } */

  
  .certification_btton_box{
    display: flex;
    justify-content: end;
  }

.certification_btton_box .certification_btton{
  background: #23282b;
  color: #50595f;
  font-size: 20px;
  /* padding: 20px 0; */
  text-align: center;
  /* min-width: 400px; */
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0px 60px;
}

.certification_btton_box .certification_btton span{
  font-size: 40px;
  margin-left: 10px;
  /* border: 1px solid red; */
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
   .contact{
    padding: 50px 0;
  }

.contact h1{
  z-index: 999;
    text-align: center;
    text-transform: uppercase;
  }
  
  .contact .heading_button{
    color: #fff;
    font-size: 13px;
    text-align: center;
    background-color: #046241;
    padding: 2px 15px;
   }


.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
}
/* 
.contact .info-box i {
  font-size: 32px;
  color: #68A4C4;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a2cce3;
} */


/* .contact h3 {
  font-size: 20px;
  color: #ffffff;
  margin: 10px 0;
  font-size: 200;
} */

.contact .contact_h{
  font-size: 33px;
  color: #fff;
  font-weight: bold;
  text-align: start;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.contact .contact_main_para{
  text-align: center;
  color: #fff;
  padding: 10px 0;
  text-transform: capitalize;
  font-size: 15px;
}

.contact p{
  text-align: center;
  color: #fff;
  padding: 15px 0;
  /* text-transform: capitalize; */
}



.contact .form-control {
  display: block;
  width: 100%;
  padding: 5px 13px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #3a3f4582;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.contact textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
  color:rgb(255, 255, 255)!important;
}

.contact textarea::placeholder {
  color: rgb(146, 146, 146)!important;
}


.contact input::placeholder {
  color: rgb(146, 146, 146)!important;
}



.contact button[type=submit] {
  background: #000000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  margin-top: 20px;
}


/*  */
.contact .info_box {
  color: #444;
  text-align: center;
  box-shadow: none;
  /* padding: 20px; */
}

.contact .info_box h3 {
  font-size: 15px;
  color: #ffba5f;
  text-align: start;
  padding-bottom: 0;
  margin-bottom: 4px;
}

.contact .info_box p {
  padding: 0;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: start;
}


/* ----------------------------------------------------
 footer
 ---------------------------------------------------- */

#footer {
  background: #000000d8;
  padding:30px 0;
}

#footer h1{
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
  color:#fff;
  text-transform: capitalize;
}

#footer .copyright p{
  font-size: 12px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* --------------------------------------------------
footer navbar
 -------------------------------------------------- */
 @media (min-width: 1280px) {
   .footer_navbar {
     /* border: 1px solid red; */
     padding: 0;
    }
  }
    
 


    @media screen and (max-width: 1200px) {
      .footer_navbar ul {
        align-items: flex-start
      }
  
    }

    .footer_navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }

    @media screen and (max-width: 550px) {
      
    .footer_navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
      flex-wrap: wrap;
    }


    .footer_navbar li {
      position: relative;
      flex-grow: 1;
    }
  

    }


  .footer_navbar li {
    position: relative;
  }

  .footer_navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 55px;
  }



  
  @media screen and (max-width: 1200px) {
    .footer_navbar>ul>li {
      white-space: nowrap;
      padding: 10px 0 10px 25px;
    }
  

  }



  .footer_navbar a,
  .footer_navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 14px;
    /* font-weight: 600; */
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .footer_navbar a i,
  .footer_navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  /* .footer_navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: red;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

  /* .footer_navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  } */



  .footer_navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .footer_navbar .dropdown ul li {
    min-width: 200px;
  }

  .footer_navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .footer_navbar .dropdown ul a i {
    font-size: 12px;
  }

  .footer_navbar .dropdown ul a:hover,
  .footer_navbar .dropdown ul .active:hover,
  .footer_navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .footer_navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .footer_navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .footer_navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

@media (min-width: 1280px) and (max-width: 1366px) {
  .footer_navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .footer_navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

.circle {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle .circle_one{
  width: 12px;
  height: 12px;
  margin-left: 15px;
  background-color: #fff;
  border-radius: 50%;
}





/* back to top button */
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #68A4C4;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #85b6cf;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}