/* Variables
======================*/
@font-face {
  font-family: "IBM";
  src: url("fonts/IBMPlexSansArabic-Regular.eot");
  src: url("fonts/IBMPlexSansArabic-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/IBMPlexSansArabic-Regular.woff2") format("woff2"),
    url("fonts/IBMPlexSansArabic-Regular.woff") format("woff"),
    url("fonts/IBMPlexSansArabic-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM";
  src: url("fonts/IBMPlexSansArabic-SemiBold.eot");
  src: url("fonts/IBMPlexSansArabic-SemiBold.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/IBMPlexSansArabic-SemiBold.woff2")
      format("woff2"),
    url("fonts/IBMPlexSansArabic-SemiBold.woff") format("woff"),
    url("fonts/IBMPlexSansArabic-SemiBold.ttf")
      format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM";
  src: url("fonts/IBMPlexSansArabic-Bold.eot");
  src: url("fonts/IBMPlexSansArabic-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/IBMPlexSansArabic-Bold.woff2") format("woff2"),
    url("fonts/IBMPlexSansArabic-Bold.woff") format("woff"),
    url("fonts/IBMPlexSansArabic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* Setting Style
======================*/
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #000 !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #efefef;
  width: 5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #efefef;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #000;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

body {
  font-family: "IBM";
  font-weight: normal;
  overflow-x: hidden;
  width: 100%;
}
body::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 185px;
  height: 277px;
  background: url(../images/shap.png) no-repeat;
  background-size: contain;
}


/* Loading
======================*/
.loading {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.loading img {
  width: 280px;
  margin-bottom: 10px;
}


@media (max-width: 1599px) {
  body::before {
    width: 135px;
  }
}
@media (max-width: 991px) {
  body::before {
    width: 120px;
  }
}
@media (max-width: 575px) {
  body::before {
    display: none;
  }
}

@media (min-width: 1440px) {
  .container {
    /* max-width: 1280px; */
    max-width: 1300px;
  }
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Section Title
======================*/
.section_title {
  text-align: start;
}
.section_title h3 {
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  max-width: 390px;
  padding: 0 25px;
  color: #fff;
  background-color: #000;
  line-height: 60px;
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}
.section_title span {
  vertical-align: middle;
  margin-inline-end: 5px;
  height: 60px;
  width: 7px;
  background-color: #000;
  display: inline-block;
}
.section_title p {
  margin: 50px 0;
  font-size: 27px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .section_title h3 {
    font-size: 22px;
    max-width: 240px;
  }
  .section_title p {
    font-size: 18px;
    margin: 30px 0;
  }
}

/* Page Head
=======================*/
.page_head {
  padding-top: 90px;
}
.page_head img {
  width: 100%;
  max-width: 490px;
  margin: 0;
}
.page_head img:first-child {
  max-width: 290px;
}
.page_head .col-12 {
  padding-inline-start: 120px;
}
@media (max-width: 991px) {
  .page_head .col-12 {
    padding-inline-start: 15px;
  }
  .page_head img {
    margin: auto;
  }
}

/* Header
==========================*/
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  z-index: 9999;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
header.move .links li {
  display: none;
}
header .flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
header .logo {
  visibility: hidden;
  opacity: 0;
  height: 40px;
  display: block;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
}
@media (max-width: 575px) {
  header .logo {
    height: 30px;
  }
}
header .logo img {
  margin: 0;
  height: 100%;
}
header .links li {
  margin-inline-start: 10px;
}
header .links a {
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #000;
  text-align: center;
  display: block;
}

header .links a:hover{  border-bottom: 3px solid #000;}
header .links a img {
  margin-bottom: 10px;
  width: 25px;
  height: 20px;
  object-fit: contain;
}
header .links .menu_btn {
  width: 50px;
  height: 80px;
  background-color: #000;
  align-items: flex-end;

}
header .links .menu_btn button {
  height: 30px;
  line-height: 34px;
  width: 100%;
  padding: 0 10px;
  border: 0;
  color: #fff;
  background-color: #000;
  text-align: end;

}
header .links .menu_btn button span {
  display: block;
  background-color: #fff;
  height: 3px;
  margin: auto auto auto 0;
  margin-bottom: 5px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
header .links .menu_btn button span:nth-child(1) {
  width: 30px;
}
header .links .menu_btn button span:nth-child(2) {
  width: 26px;
}
header .links .menu_btn button span:nth-child(3) {
  width: 21px;
}
@media (max-width: 575px) {
  header .links li {
    display: none;
    
  }
  header .links .menu_btn {
    width: 50px;
  }
  header .links .menu_btn button {
    padding: 0 10px;
  }
}

.menu {
  position: absolute;
  background-color: #000;
  width: 420px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  top: 100px;
  left: 15px;
  padding: 10px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s linear all;
  -moz-transition: 0.2s linear all;
  -ms-transition: 0.2s linear all;
  -o-transition: 0.2s linear all;
  transition: 0.2s linear all;
}
.menu.open {
  top: 80px;
  opacity: 1;
  visibility: visible;
}
.menu a {
  margin: 10px 0px;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 15px;
  display: block;
  line-height: 45px;
  font-weight: 600;
  font-size: 18px;
  width: 184px;
  text-align: start;
}
.menu a:hover{border-color: #494949;}
.menu a img {
  display: inline-block;
  margin-inline-end: 25px;
}
@media (max-width: 575px) {
  .menu {
    left: 0;
    width: 100%;
    padding: 1%;
  }
  .menu.open {
    top: 80px;
  }
  .menu a {
    margin: 1%;
    padding: 0 10px;
    font-size: 15px;
    width: 48%;
  }
}

/* Footer
=======================*/
footer {
  background-color: #000;
  padding: 75px 0;
  color: #fff;
}
footer img {
  margin-bottom: 15px;
}
footer img.footer_slogen {
  -webkit-transform: translateX(-35px);
  -moz-transform: translateX(-35px);
  -ms-transform: translateX(-35px);
  -o-transform: translateX(-35px);
  transform: translateX(-35px);
}
footer p {
  font-size: 18px;
  margin: 25px auto;
}
footer a {
  color: #fff;
  font-size: 18px;
}
footer a:hover {
  color: #fff;
}
footer li {
  margin: 0 10px;
 
}

@media (max-width: 767px) {
  footer li {
    margin: 0 5px;
  }
  footer li a {
    font-size: 16px;
  }
}
footer ul {
  margin-top: 35px;
}
footer ul:last-child {
  margin: 0;
}
footer ul:last-child a {
  font-size: 28px;
}
footer ul:last-child img {
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  footer {
    padding: 35px 0;
  }
  footer li {
    margin: 0 10px;
  }
}

.form_page {
  padding: 70px 0 130px;
}
@media (max-width: 991px) {
  .form_page {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .form_page {
    padding: 35px 0;
  }
}

form .form-group {
  text-align: start;
  margin-bottom: 30px;
}
form .form-group label {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  form .form-group label {
    font-size: 16px;
  }
}
form .form-group label sup {
  color: #bc0f0f;
}
form .form-group .form-control {
  border-radius: 0;
  padding: 0 15px;
  line-height: 50px;
  height: 50px;
  border: 1px solid #000 !important;
  outline: none !important;
  box-shadow: none !important;
}
form .form-group textarea {
  min-height: 225px;
  resize: none;
}
form .link {
  height: 65px;
  line-height: 65px;
  background-color: #000;
  color: #fff;
  min-width: 270px;
  padding: 0 15px;
  border: 0;
  text-align: start;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 575px) {
  form .link {
    min-width: 100%;
  }
}
form .link img {
  height: 60px;
  margin-inline-end: 15px;
  display: inline-block;
}
form .check_group {
  min-width: 50%;
  text-align: start;
}
form .check_group .check_list {
  display: inline-block;
  vertical-align: middle;
  margin-inline-start: 25px;
}
form .check_group label {
  margin: 0;
}

.confirm_box {
  width: 100%;
  height: 100%;
  padding: 30px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: fixed;
  text-align: center;
  background-color: #0009;
  z-index: 9999999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.confirm_box .cont {
  padding: 25px;
  background-color: #fff;
  position: relative;
  width: 100%;
  max-width: 420px;
}
.confirm_box img {
  margin: 0 auto 25px;
}
.confirm_box button {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
}
.confirm_box h3 {
  color: #000;
  margin: 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 40px;
  font-weight: 600;
}

/* Home
=======================*/
.home {
  padding-bottom: 0;
}

.intro {
  padding: 80px 0;
  text-align: start;
  padding-inline-start: 110px;
}
.intro h2 {
  font-size: 30px;
  line-height: 50px;
  color: #000;
  font-weight: 600;
  margin-bottom: 15px;
}
.intro h2 span {
  color: #fff;
  background-color: #000;
  padding: 0 30px;
  display: inline-block;
  line-height: 50px;
}
.intro p {
  margin: 0 0 60px;
  font-size: 18px;
  font-weight: normal;
  padding-inline-start: 85px;
  position: relative;
}
.intro p::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 65px;
  height: 88px;
  background: url(../images/arrow.png) no-repeat;
  background-size: contain;
  top: -31px;
  z-index: -1;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .intro {
    padding: 60px 0 0;
  }
  .intro h2 {
    font-size: 26px;
  }
  .intro p {
    padding-inline-start: 65px;
    font-size: 16px;
  }
  .intro .home_items_slide {
    padding-inline-end: 40px;
  }
}
@media (max-width: 991px) {
  .intro {
    padding: 40px 0;
    text-align: center;
  }
  .intro p {
    padding-inline-start: 85px;
    max-width: 460px;
    margin: 0 auto 60px;
  }
}
@media (max-width: 575px) {
  .intro h2 span {
    max-width: 220px;
    margin: auto;
    display: block;
  }
  .intro p {
    padding-inline-start: 50px;
  }
  .intro p::before {
    top: 0;
    width: 45px;
  }

 

}

.video_item {
  position: absolute;
  border-right: 8px solid #000;
  border-top: 8px solid #000;
left:0 ;
height:500px ;
z-index:1000 ;
bottom:0 ;
object-fit: contain;
width:47% ;

background: url(../images/video-shape.png) bottom left no-repeat #000;

}

.video_item video{


  width: 100% !important;
  height: auto !important;

  background-size: cover;

  z-index:-1;

  
}



@media (min-width: 1200px) and (max-width: 1439px) {
  .video_item {
    margin-inline-end: -45px;

  
  }
}


@media (max-width: 575px) {

  .page_head {
    padding-top: 120px;
  }
  .page_head img:first-child {
   margin-bottom: 30px;
  }
  .video_item {
    position: static;
    border-right: 0px solid #000;
   

  height:300px ;
  z-index:1000 ;


  min-width:100% ;
  
  background: url(../images/video-shape.png) bottom center no-repeat #000;
  padding:0px ;
  margin: 50px 0px 0px 0px !important;
  
  }

  .about_home {
    margin:0px 0px 0px 0px !important;
    padding: 20px 0px 0px 0px !important;
  }
  .img_cover {
    position: relative;
    padding-bottom: 70px;
    padding-top: 70px;
  }

}

@media (max-width: 767px) {



  .video_item {
    position: static;
    border-right: 0px solid #000;
   

  height:300px ;
  z-index:1000 ;


  min-width:100% ;
  
  background: url(../images/video-shape.png) bottom center no-repeat #000;
  padding:0px ;
  margin: 50px 0px 0px 0px !important;
  }
}



.video_item img {
  width: 100%;
}
.video_item a {
  position: absolute;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  border: 5px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 70px;
  font-size: 28px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding-inline-end: 5px;
;
}

.home_items_slide {
  padding-inline-end: 100px;
  max-width: 520px;
}
.home_items_slide .owl-dots {
  margin: auto;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  height: 40px;
}
.home_items_slide .owl-dots button.owl-dot {
  display: block;
  width: 15px;
  height: 15px;
  margin: 10px auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #e9e9e9;
}
.home_items_slide .owl-dots button.owl-dot.active {
  background-color: #000;
}
@media (max-width: 991px) {
  .home_items_slide {
    max-width: 100%;
    padding-inline-end: 40px;
  }
}

.home_menu {
  text-align: center;
}
.home_menu img {
  margin: auto;
  height: 60px;
}
.home_menu span {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .home_menu span {
    font-size: 15px;
  }
}

/*About Home
===================*/
.about_home {
  background-color: #000;
  padding: 70px 0 0;
  margin:40px 0px 0px 0px ;
}
@media (max-width: 991px) {
  .about_home .row {
    flex-direction: column-reverse;
  }
}

.img_cover {
  position: relative;
  padding-bottom: 70px;
}
.img_cover img {
  position: relative;
}
.img_cover::before {
  content: "";
  position: absolute;
  inset-inline-start: 15px;
  bottom: 0;
  width: 111px;
  height: 225px;
  background: url(../images/lines.png) no-repeat;
  background-size: contain;
}

.text_cont {
  color: #fff;
  padding-inline-start: 70px;
  padding:70px 70px 0px 0px ;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .text_cont {
    padding-inline-start: 0;
  }
}
@media (max-width: 767px) {
  .text_cont {
    padding-inline-start: 0;
  }
}
.text_cont h3 {
  font-size: 27px;
  text-align: center;
  margin: 0 0 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .text_cont h3 {
    font-size: 20px;
  }
}
.text_cont .feat_lists {
  margin: 30px auto 100px;
}
.text_cont .feat_lists .feat {
  width: 148px;
  height: 149px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 35px;
  padding: 40px 25px;
  position: relative;
  margin: auto;
  margin: auto;
  background: url(../images/circle.png) no-repeat;
  background-size: contain;
}
.text_cont .feat_lists .feat span {
  top: -15px;
  inset-inline-start: 15px;
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #000;
  font-size: 22px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.text_cont .feat_lists .feat:nth-child(2) {
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
}
@media (max-width: 575px) {
  .text_cont .feat_lists {
    flex-wrap: wrap;
    margin: 35px auto;
  }
  .text_cont .feat_lists .feat {
    width: 135px;
    height: 134px;
    padding: 25px;
  }
  .text_cont .feat_lists .feat:nth-child(2) {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  .text_cont .feat_lists .feat:nth-child(3) {
    margin-top: 25px;
  }
}

/* Gallery
===================*/
.gallery {
  padding: 0 0 30px;
  margin-top: 50px;
}
.gallery a {
  display: block;
  margin-bottom: 25px;
}
.gallery a.small img {
  height: 330px;
  object-fit: cover;
}
.gallery img {
  width: 100%;
  min-height: 196px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .gallery .gallery_slide {
    margin-bottom: 25px;
  }
}
.gallery .gallery_slide a {
  margin: 0;
}
.gallery .gallery_slide img {
  height: 420px;
  object-fit: cover;
}
.gallery .day {
  color: #000;
  font-size: 27px;
  font-weight: 600;
  line-height: 75px;
  margin-top: 30px;
}
.gallery .day span:last-child {
  display: inline-block;
  margin-inline-start: 5px;
  padding: 0 15px;
  line-height: 75px;
  background-color: #000;
  color: #fff;
  position: relative;
}
.gallery .day span:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: -70px;
  height: 75px;
  background-color: #000;
  width: 75px;
}
@media (max-width: 991px) {
  .gallery .day span:last-child::after {
    display: none;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .gallery .day span:last-child {
    padding: 0 5px;
  }
  .gallery .day span:last-child::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .gallery .day {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    padding-inline-end: 0;
  }
  .gallery .day span {
    width: 50%;
    text-align: center;
  }

  .gallery a.small img {
    padding-right:15px !important;
   }
}

/* Guide
====================*/
.guide {
  border: 2px solid #000;
  padding: 15px 30px;
  margin: 50px 0px 0px 0px ;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.guide img {
  display: inline-block;
  margin: 0;
  margin-inline-end: 50px;
}
.guide .cont {
  width: 100%;
}
.guide h3 {
  font-size: 27px;
  color: #000;
  font-weight: 600;
  margin: 0 0 25px;
  text-align: start;
}
.guide a {
  width: 160px;
  height: 50px;
  line-height: 50px;
  display: block;
  padding: 0 15px;
  background-color: #000;
  color: #fff;
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
  margin-left: 0;
}
.guide a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
.guide a.rb::before {
  bottom: -7px;
  inset-inline-start: -7px;
}
.guide a.tl::before {
  top: -7px;
  inset-inline-end: -7px;
}
.guide a.lb::before {
  bottom: -7px;
  inset-inline-end: -7px;
}
.guide a:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.guide a:hover::before {
  background-color: #000;
  z-index: -1;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .guide {
    padding: 15px;
  }
  .guide img {
    margin-inline-end: 30px;
    width: 40px;
  }
}
@media (max-width: 767px) {
  .guide {
    margin: 15px auto 0;
  }
}
@media (max-width: 575px) {
  .guide {
    padding: 15px;
    margin:40px 0px 0px 0px ;
  }
  .guide img {
    margin-inline-end: 30px;
    width: 40px;
  }
}

/* Bold Menu
====================*/
.bold_menu {
  padding: 30px 0 70px;
}
.bold_menu .title {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  margin: auto;
  margin-bottom: 25px;
  max-width: 210px;
}
@media (max-width: 575px) {

  .bold_menu .title {
    max-width: 100%;
  }
.order-mob{
padding-bottom: 40px !important;
display: block;

}
}
.bold_menu .title span {
  display: block;
  margin: 5px auto;
  background-color: #000;
  height: 5px;
}
.bold_menu .title span:nth-child(1) {
  margin-top: 15px;
  height: 3px;
}
.bold_menu .title span:nth-child(2) {
  height: 4px;
}

.foot-line{min-width: 100%; display: block; background-color:#fff ;margin:0 auto ;}
.foot-line span{  display: block;
  margin: 4px auto;
  background-color: #000;
  height: 5px;}
  .foot-line span:nth-child(1) {
    margin-top: 15px;
    height: 3px;
  }
  .foot-line span:nth-child(2) {
    height: 4px;
  }

.menu_items_slide .owl-dots {
  text-align: center;
  top: auto;
  bottom: -40px;
  left: 0;
  right: 0;
}
.menu_items_slide .owl-dots button.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #e9e9e9;
}
.menu_items_slide .owl-dots button.owl-dot.active {
  background-color: #000;
}

.menu_type_item {
  margin-top: 25px;
  position: relative;
}
.menu_type_item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.menu_type_item h3 {
  background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1));
  /* background-color: #fff;
  padding: 0 15px;
    inset-inline-end: 10px;
  min-width: 140px; */
  min-width:100%;
  line-height: 80px;
  margin: auto;
  position: absolute;
color:#fff ;
  bottom: 0px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.nav-tabs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 0;
}
.nav-tabs .nav-link {
  border: 3px solid #000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: 600;
  color: #000;
  font-size: 18px;
  width: 138px;
  text-align: center;
  padding: 15px;
  position: relative;
}
@media (max-width: 1439px) {
  .nav-tabs .nav-link {
    width: 130px;
    padding: 10px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .nav-tabs .nav-link {
    width: 110px;
    padding: 5px;
    font-size: 16px;
  }
}
.nav-tabs .nav-link img {
  margin-bottom: 15px;
}
.nav-tabs .nav-link img.black {
  display: none;
}
.nav-tabs .nav-link:hover {
  border: 3px solid #000 !important;
 background-color: #000;
 color:#fff ;
}


.nav-tabs .nav-link:hover img.white {
  display: none;
}
.nav-tabs .nav-link:hover img.black {
  display: block;

}

.nav-tabs .nav-link.active {
  color: #fff;
  border-color: #000;
  background-color: #000;

}



.nav-tabs .nav-link.active img.white {
  display: none;
}
.nav-tabs .nav-link.active img.black {
  display: block;
}
@media (max-width: 991px) {
  .nav-tabs {
    margin-top: 25px;
  }
  .nav-tabs .nav-link {
    font-size: 15px;
    width: 110px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .nav-tabs .nav-link {
    margin: 15px auto 0;
    width: 155px;
  }
}
@media (max-width: 575px) {
  .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  .nav-tabs .nav-link {
    margin: auto;
    min-width: 135px;
    margin-inline-end: 10px;
  }
}

.nav-tabs::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

/* About
=======================*/
.about {
  padding: 70px 0 130px;
}
.about .mt-50 {
  margin-top: 50px;
}
.about .section_title {
  margin-bottom: 45px;
}
.about .about_img {
  position: relative;
  margin: 20px auto;
}
.about .about_img::before {
  content: "";
  position: absolute;
  inset-inline-start: -8px;
  top: -8px;
  width: 40px;
  height: 90%;
  border: 2px solid #000;
  z-index: 99;
}
.about .about_img img {
  width: 100%;
  margin: 0;
}
.about p {
  text-align: start;
  font-weight: 600;
  margin: 0;
  font-size: 18px;
  line-height: 34px;
  margin: 20px auto;
}
.about .about_item {
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 2px solid #000;
  padding: 20px 40px 40px;
  text-align: start;
}
.about .about_item h3 {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 50px;
  margin: 0 0 25px;
}
.about .about_item h3 img {
  display: inline-block;
  margin: 0;
  margin-inline-end: 50px;
}
.about .about_item p {
  font-weight: normal;
  margin: 0;
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 1199px) {
  .about .about_item {
    padding: 20px 30px 30px;
  }
  .about .about_item h3 {
    margin-bottom: 15px;
  }
  .about .about_item h3 img {
    margin-inline-end: 25px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 50px 0;
  }
  .about .mt-50 {
    margin-top: 0;
  }
  .about .about_img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 35px 0;
  }
}
@media (max-width: 575px) {
  .about {
    padding-bottom: 70px;
  }
  .about .section_title {
    margin-bottom: 30px;
  }
  .about p {
    font-size: 16px;
    line-height: 25px;
  }
  .about .about_img {
    margin: 0 auto;
  }
  .about .about_item {
    padding: 20px;
  }
  .about .about_item h3 {
    margin-bottom: 15px;
  }
  .about .about_item h3 img {
    margin-inline-end: 25px;
  }
  .about .about_item p {
    font-size: 16px;
  }
}

/* Branches
=======================*/
.branches {
  padding-top: 70px;
}

.branch {
  text-align: start;
  margin-bottom: 75px;
}
.branch h3 {
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 25px;
}
.branch h3 img {
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 25px;
}
.branch iframe {
  margin-bottom: -7px;
}
.branch .info {
  border: 4px solid #000;
  text-align: start;
  padding: 20px 40px;
}
.branch .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c7c4c4;
}
.branch .item:last-child {
  border-bottom: 0;
  margin: 0;
  padding-bottom: 0;
}
.branch .item img {
  margin: 0;
  margin-inline-end: 25px;
}
.branch .item .cont {
  width: 100%;
  color: #000;
  font-weight: 600;
  font-size: 22px;
}
.branch .item a {
  color: #000;
  font-weight: 600;
  font-size: 22px;
}
.branch .item label {
  margin: 0;
  display: block;
}
.branch .item .delv {
  line-height: 35px;
}
.branch .item .delv p {
  direction: ltr;
  display: inline-block;
  margin: 0;
}
.branch .item .delv span {
  text-align: center;
  background-color: #000;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  width: 65px;
  height: 35px;
  line-height: 35px;
  margin: 0 20px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .branch {
    margin-bottom: 35px;
  }
  .branch h3 {
    font-size: 22px;
  }
  .branch h3 img {
    margin-inline-end: 15px;
    width: 22px;
  }
  .branch .info {
    border: 3px solid #000;
    padding: 10px;
  }
  .branch .item img {
    margin-inline-end: 15px;
    width: 25px;
  }
  .branch .item .cont {
    font-size: 16px;
  }
  .branch .item a {
    font-size: 18px;
  }
  .branch .item .delv span {
    width: 35px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
  }
}
@media (max-width: 575px) {
  .branch {
    margin-bottom: 35px;
  }
  .branch h3 {
    font-size: 22px;
  }
  .branch h3 img {
    margin-inline-end: 15px;
    width: 22px;
  }
  .branch .info {
    border: 3px solid #000;
    padding: 10px;
  }
  .branch .item img {
    margin-inline-end: 15px;
    width: 25px;
  }
  .branch .item .cont {
    font-size: 16px;
  }
  .branch .item a {
    font-size: 18px;
  }
  .branch .item .delv span {
    width: 35px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
  }
}

/*# sourceMappingURL=style.css.map */
