/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #008374;
  --color-secondary: #f85a40;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

body::-webkit-scrollbar {
  display: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  /* background: rgb(0 88 149 / 85%) */
  ;
  background: rgba(21, 34, 43, 0.85);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  /* box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1); */
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

/* 
.sticked-header-offset {
  margin-top: 70px;
} */

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# 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-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    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: var(--color-secondary);
    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: #fff;
  }

  .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;
    color: #006a5d;
  }

  .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-secondary);
  }

  .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;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;

  }

  .navbar-brand img {
    min-width: 45%;
    /* margin-top: 20px; */
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 0px 0 10px 0;
    margin: 0;
    background: rgb(185 214 101);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    height: 28vh;
    margin-top: 18%;
    margin-left: 136px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    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 .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    font-size: 30px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
    color: #fff;
  }

  .mobile-nav-hide {
    color: #fff;
    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(0, 106, 93, 0.8); */
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/


.about_box {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width:767px) {
  .about_box {
    width: 97vw;
  }

  .fst-italic {
    font-size: 1.3rem;
  }

  .bi_p {
    font-size: 19px;
    text-align: none;
  }

  .btn {
    left: -31px;
    position: relative;

  }
}

.about_row {
  padding-bottom: 52px;
}

.about_header h2 {
  text-align: center;
  padding-bottom: 41px;
  padding-top: 34px;
}

.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 8;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  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(0, 131, 116, 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: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  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;
  }
}


/* About Button */

/* From uiverse.io by @Ali-Tahmazi99 */
.btn_about {
  display: inline-block;
  width: 150px;
  height: 50px;
  border-radius: 10px;
  /* border: 1px solid #03045e; */
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background: #fff;
  margin-left: 37%;
  margin-top: 8%;
}

.btn_about::before,
.btn_about::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  overflow: hidden;
  z-index: -1;
}

.btn_about::before {
  left: -10px;
  background: #009688;
}

.btn_about::after {
  right: -10px;
  background: #009688;
}

.btn_about:hover::before,
.btn_about:hover::after {
  width: 58%;
}

.btn_about:hover span {
  color: rgb(3 0 4);
  transition: all 0.3s ease 0s;
}

.btn_about span {
  color: #03045e;
  font-size: 18px;
  transition: all 0.3s ease-in;
}

.btn_about span p {
  margin-top: 8px;
  margin-left: -8px;
  /* font-size: 400; */
  font-weight: 500;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
}

.stats-counter .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  background-color: #fff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

/* .contact_images {
  background-image: url('./assets/img/Khaitar/contact/contact8.jpg');
  background-size: cover;
} */

.new_cont_container {
  margin-top: 5%;
}

.contact_images {
  background-image: url('../img/Khaitar/contact/contact_new_fans.png');
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(80%);

}

.adreess_info {
  width: 15vw;
  margin-left: 3%;
}

.info_box {
  height: 68vh;
  border-radius: 50px 5px;
}

.contact_email {
  display: flex;
  /* flex-direction: column; */
  margin-top: -35%;
  gap: 1%;
  border: none;
  /* margin-left: 100px; */
}

.info-box2 {
  color: #fff;
  text-align: center;
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */
  /* padding: 0px 0 15px 0; */
  font-weight: bold;
  /* border: 0.2px solid; */
}

.contact .info-box2 h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
}

.email_fa {
  font-size: 30px;
  margin-top: 20px;
  color: #ee1d23;
}

.address_fa {
  font-size: 60px;
  border-radius: 50%;
  padding: 8px;
  color: #ee1d23;
  margin-left: -65%;
}

.info_p {
  margin-left: 42px;
}

h3.addres_h {
  margin-left: -65%;
}


.contact .info-box {
  color: #000000;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 0px 0 15px 0;
  font-weight: bold;
  border: 0.2px solid;
}



.contact .info-box h3 {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  /* margin: 2px 0; */
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
  margin-left: -29px;
}

.address_main {
  margin-left: 36%;
  margin-top: 10%;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 50px 5px;
  border: 1px solid;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ff4a17;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ff4a17;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff5e31;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 2px solid #918d8d;
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#contact .india_add {
  display: flex;
  margin-left: 70px;
  margin-top: 17px;
  margin-bottom: -3px;
}

#contact .mumbai {
  margin-right: 21px;
}

#contact .mumbai h5 {
  margin-bottom: -4px;
}

#contact .hydrabad h5 {
  margin-bottom: -4px;
}

#contact .other_add {
  display: flex;
  margin-left: 111px;
  margin-top: -4px;
  margin-bottom: -29px;
}

#contact .africa {
  margin-right: 84px;
}

#contact .africa h5 {
  margin-bottom: -12px;
}

#contact .dubai h5 {
  margin-bottom: -12px;
}

@media (max-width:767px) and (max-width:980px) {
  #contact .india_add {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
  }
}

@media (max-width:767px) and (max-width:980px) {
  #contact .other_add {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
  }
}

@media (max-width:767px) and (max-width:980px) {
  #contact .africa {
    margin-right: 8px;
  }
}

#contact {
  margin-top: 40px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: transparent;
  border-radius: 50px 5px;
  border: 1px solid;
}


.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}


.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}


.contact .php-email-form button[type=submit] {
  background: #119cfd;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #c8581c;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.add .info-box {
  width: 55%;
}

@media (max-width:767px) and (max-device-width: 980px) {
  .add .wid {
    width: 100%;
    margin-top: 16px;
  }
}

.add1 {
  display: flex;
  flex-direction: column;
  margin-left: 55%;
  margin-top: -55%;
}


@media (max-width:767px) and (max-device-width: 980px) {
  .add1 {
    margin-left: 0%;
    margin-top: 0%;
  }
}

@media (max-width:980px) {
  #contact {
    margin-top: 125px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero_img {
  width: 100vw;
}

@media (max-width:767px) {
  .hero_img {
    /* width: 100vw; */
    height: 50vh;
  }
}

.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  animation: slide 6s infinite;
}

.carousel img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}

.carousel-slide {
  width: 100%;
  height: 90%;
  background: #000;
}

/* .carousel_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

@keyframes slide {

  0%,
  100% {
    transform: translateX(0);
  }

  16.666% {
    transform: translateX(0);
  }

  33.333% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-100%);
  }

  66.666% {
    transform: translateX(-100%);
  }

  83.333% {
    transform: translateX(-100%);
  }
}






/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-primary);
  padding: 50px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.navbar-brand img {
  width: 30%;
  margin-top: 23px;
}


.navbar-brand {
  margin-left: -37%;
}

/* img {
  margin: 0 auto;
  display: block;
  margin-top: 20%;
} */



/* New Footer */



.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 40px;
  width: 40px;
  display: block;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a span {
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ftco-footer-social li a:hover {
  color: #fff;
}

.form-control {
  height: 52px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #fff;
}

.form-control:focus,
.form-control:active {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  height: inherit !important;
}

.ftco-section {
  padding: 12em 0;
  background: #f8f8f8;
}

.ftco-section h2 {
  margin-bottom: 0;
}

footer {
  padding-top: 5em;
}

.footer-02 {
  /* background: linear-gradient(45deg, #7bb3db, #0396ff); */
  background-color: #aed04b;
  /* margin-top: 10%; */
}






.footer_02 {
  margin-top: 6%;
}

.footer_new {
  margin-top: 10%;
}


.footer-02 .footer-heading {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-02 .footer-heading .logo {
  color: #fff;
  text-transform: uppercase;
}

.footer-02 a {
  color: #000;
  font-weight: bold;
}

.footer-02 p {
  color: #000;
  font-weight: bold;
}

.footer-02 .copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-02 .list-unstyled li a {
  color: #000;
}

.footer-02 .list-unstyled li a:hover {
  color: #fff;
}

.footer-02 .list-unstyled a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-02 .list-unstyled a:hover {
  color: #fff;
}

.footer-02 .subscribe {
  margin-top: -105px;
}

.footer-02 .subscribe-form {
  border-radius: 40px;
  background: #fff;
  padding: 3px;
  -webkit-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -12px 21px -15px rgba(0, 0, 0, 0.1);
}

.footer-02 .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
}

.footer-02 .subscribe-form .form-group input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  /* color: rgb(251 245 245) !important; */
  font-size: 16px;
  height: 56px;
  border-radius: 0;
}

.footer-02 .subscribe-form .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}

.footer-02 .subscribe-form .form-group input:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.footer-02 .subscribe-form .form-group .submit {
  color: #fff !important;
  display: block;
  width: 150px;
  height: 56px;
  font-size: 14px;
  background: #bfa88e !important;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
}

.footer-02 .subscribe-form .form-group .submit:hover,
.footer-02 .subscribe-form .form-group .submit:focus {
  text-decoration: none !important;
  outline: none !important;
}

.footer-02 .partner-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1em 0;
}

.footer-02 .partner-wrap h3 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-02 .partner-wrap .partner-name a {
  margin-right: 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer-02 .partner-wrap .partner-name a span {
  color: white;
}

.footer-02 .partner-wrap .btn-custom {
  font-size: 14px;
}

.footer-02 .border-left {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 1199.98px) {
  .footer-02 .border-left {
    border: none;
  }
}

.footer-heading img {
  width: 50%;
}

.sign-gd-two .add {
  display: flex;
  flex-direction: row;
  margin-left: 70px;
}

.address {
  margin-top: 8%;
  margin-left: -45%;
}

.address_grid1 {
  width: 20vw;
  margin-top: 1px;
  margin-left: 29%;
}

.address-grid {
  margin-bottom: 20%;
}

.footer_info {
  margin-left: 14%;
  width: 20vw;
}

.footer-02 .fa {
  color: #c51010;
}

.address-left {
  float: left;
  width: 10%;
}

.address-right {
  margin-left: 20%;
  width: 100%;
}

.address-right h6 {
  color: #ffffff;
  font-size: 0.9em;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.address-right p {
  width: 14vw;
}


.address_right12 {
  margin-left: 10%;
  width: 100%;
}

p.copy-right {
  color: #ededed;
  text-align: center;
  /* margin-top: 55px; */
  font-size: 14px;
  border-top: 1px solid #0e0e0e;
  /* padding-top: 3em; */
}



/* send request */



.contact1 {
  width: 100%;
  height: 100vh;
  padding: 15px;

  background-image: url('../img/Khaitar/contact/contact8.jpg');
  background-size: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.contact1-pic {
  transition: transform 0.3s ease-in-out;
}

.contact1-pic:hover {
  transform: translate(10px, 10px);
}

.container-contact1 {
  width: 93VW;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  padding: 90px 130px 88px 148px;
}


.contact1-pic {
  width: 296px;
}

.contact1-pic img {
  max-width: 100%;
}


.contact1-form {
  width: 390px;
}

.contact1-form-title {
  display: block;
  font-family: Montserrat-ExtraBold;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 44px;
}

input.input1 {
  height: 50px;
  border-radius: 25px;
  padding: 0 30px;
}

input.input1+.shadow-input1 {
  border-radius: 25px;
}

textarea.input1 {
  min-height: 150px;
  border-radius: 25px;
  padding: 12px 30px;
}

textarea.input1+.shadow-input1 {
  border-radius: 25px;
}

/*---------------------------------------------*/
.wrap-input1 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

.input1 {
  display: block;
  width: 100%;
  background: #e6e6e6;
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}

.shadow-input1 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(87, 184, 70, 0.5);
}

.input1:focus+.shadow-input1 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

/*---------------------------------------------*/
.container-contact1-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact1-form-btn {
  min-width: 193px;
  height: 50px;
  border-radius: 25px;
  background: #57b846;
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn i {
  margin-left: 7px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact1-form-btn:hover {
  background: #333333;
}

.contact1-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}




/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 1200px) {
  .contact1-pic {
    width: 33.5%;
  }

  .contact1-form {
    width: 44%;
  }
}

@media (max-width: 992px) {
  .container-contact1 {
    padding: 90px 80px 88px 90px;
  }

  .contact1-pic {
    width: 35%;
  }

  .contact1-form {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .container-contact1 {
    padding: 90px 80px 88px 80px;
  }

  .contact1-pic {
    display: none;
  }

  .contact1-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container-contact1 {
    padding: 90px 15px 88px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Montserrat-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* new product changes */



.slide-container {
  /* max-width: 1120px; */
  /* width: 87%; */
  padding: 40px 100px;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  /* border-radius: 25px; */
  background-color: #FFF;
}

.card:hover {
  box-shadow: 4px 5px 5px 5px grey;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070F4;
  /* border-radius: 25px 25px 0 25px; */
}

.overlay::before,
.overlay::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070F4;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070F4;
}

.img2 {
  width: 24.3vw;
  height: 29vh;
  background: #f7f7f7;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.button {
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}


/* .more_port {

  background-color: #ee1d23;
} */

/* .more_port:hover {
  background-color: #a4b8cb;
} */


.button:hover {
  background: #265DF2;
}

.swiper-navBtn {
  color: #393333;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #393333;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 25px;
}

.swiper-button-next {
  right: 60px;
}

.swiper-button-prev {
  left: 50px;
}

.swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    /* display: none; */
  }
}


.container2 {
  /* border: 1px solid grey; */
  /* margin: 1rem; */
  background: #f7f7f7;
}

.card-img {
  background: rgb(255, 255, 255);
  width: 22.3vw;
  height: auto;
  margin-left: 45px;
  margin-top: 20px;
}

.card .swiper-slide {
  width: 418px;
  height: 36vh;
  margin-right: 25px;
}

.swiper-slide {
  width: 306.667px;
}

[data-tab-info] {
  display: none;
}

.active[data-tab-info] {
  display: block;
}

.tab-content {
  margin-top: 1rem;
  padding-left: 1rem;
  font-size: 20px;
  font-family: sans-serif;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.tabs {
  font-size: 25px;
  color: rgb(0, 0, 0);
  display: flex;
  margin-left: 42%;
  margin-top: -55px;

}

.tabs span {
  /* background: rgb(16, 153, 9); */
  padding: 10px;
  letter-spacing: 1px;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}

.tabs span:hover {
  /* background: rgb(55, 219, 46); */
  cursor: pointer;
  color: rgb(0 131 125);
  text-decoration: underline;
}

.tabs span.active {
  text-decoration: underline;
  color: rgb(0, 76, 218);
}

.sect_header_product {
  padding-top: 70px;
  font-size: 3em;
  letter-spacing: 2px;
  padding-top: -20px;
}

.more_port {
  width: 100%;
  background: rgb(164, 184, 203);
  padding: 0.5em 1em;
  transition: all 0.5s ease 0s;
  height: 52px;
  text-align: center;
  margin-bottom: -10px;
  margin-top: 30px;
}


/* Product Button */

.product_btn {
  padding: 1.3em 3em;
  font-size: 16px;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  /* background-color: #fff; */
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-left: 45%;
  margin-bottom: 4%;
  background-color: lightgray;
}


.product_btn:hover {
  background-color: #23c483;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.product_btn:active {
  transform: translateY(-1px);
}

@media (max-width:767px) {
  .product_btn {
    margin-left: 25%;
    background-color: darkgray;
  }

  /* .tip {
    margin-left: 37%;
  } */
}



/* about */


.span_shield {
  font-size: 32px;
  margin-top: 20px;
}

.new_span {
  margin-top: -15%;
}

.span_shield {
  /* font-size: 32%; */
  color: #ccc;
  background: #1d5deeb5;
  width: 100px;
  height: 100px;
  line-height: 2.4em;
  border: 2px solid #ccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-left: 41%;
}

.cards {
  display: flex;
  flex-direction: row;
  gap: 0px;
}

.cards .red {
  background-image: linear-gradient(180deg, #2196F3, transparent 100%);
}

.cards .blue {
  background-image: linear-gradient(180deg, #2196F3, transparent 100%);
}

.cards .green {
  background-image: linear-gradient(180deg, #2196F3, transparent 100%);
}

.cards .card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 60vh;
  width: 23.3%;
  border-radius: 10px;
  color: #000;
  cursor: pointer;
  transition: 400ms;
  margin-left: 125px;
  box-shadow: 2px 2px 2px 2px #6a6a6a;
}

.cards .card p.tip {
  font-size: 2em;
  font-weight: bold;
}

.cards .card p.second-text {
  font-size: 1em;
  width: 20vw;
  align-items: ju;
  text-align: justify;
}


.cards .card:hover {
  transform: scale(1.2, 1.2);
}

.cards:hover>.card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}

@media (max-width:767px) {
  .cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .cards .card {

    min-height: 143vh;
    min-width: 93%;
    margin-left: 8px;
  }

  .span_shield {
    margin-top: -28%;
  }

  .cards .card p.tip {
    font-size: 2em;

  }


  .cards .card p.second-text {
    font-size: 1.5em;
    min-width: 85vw;

  }
}


/* about end */



.img_card {
  background: #f7f7f7;
  width: 25.3vw;
  height: 29vh;
}

.name_product {
  background: #fff;
  width: 25.2vw;
  height: 5vh;
  margin-left: 1px;
  margin-top: 1px;
  margin-bottom: -11px;
  text-align: center;
}



/* product page */



#services-projects {
  background-color: #f7f7f7;
  width: 125%;
  margin-left: -162px;
}

.services-projects .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 100%;
  height: 40vh;
}


.services-projects .icon-box .icon {
  width: 61vw;
  height: 0;
  margin-left: -81%;
  background: #f35f09;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-projects .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-projects .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services-projects .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services-projects .icon-box h4 a:hover {
  color: #f35f09;
}

.services-projects .icon-box p {
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 45%;
  height: 5vh;
  padding-top: 8px;
  background: #a4b8cb;
}

.services-projects .icon-box:hover {
  border-color: #fff;
  box-shadow: 15px 15px 10px #3d3d3d;
  transform: translateY(-10px);
}


@media(max-width:980px) {
  .project_row {
    display: flex;
    flex-direction: column;
    margin-left: 100px;
  }

  .services-projects .icon-box .icon {
    max-width: 103px;
    max-height: 94px;
  }

  .services-projects .icon-box h4 {
    font-size: 28px;
  }

  .services-projects .icon-box p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services-projects .icon-box a .read_more .stretched-link {
    font-size: 20px;
    font-weight: bold;
  }
}

.icon img {
  margin-top: 83px;
}


.services-projects .icon-box2 {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 130%;
  height: 40vh;
}


.services-projects .icon-box2 .icon {
  width: 61vw;
  height: 0;
  margin-left: -81%;
  background: #f35f09;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services-projects .icon-box2 .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services-projects .icon-box2 h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services-projects .icon-box2 h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services-projects .icon-box2 h4 a:hover {
  color: #f35f09;
}

.services-projects .icon-box2 p {
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 45%;
  height: 5vh;
  padding-top: 8px;
  background: #a4b8cb;
}

.services-projects .icon-box2:hover {
  border-color: #fff;
  box-shadow: 15px 15px 10px #3d3d3d;
  transform: translateY(-10px);
}


@media(max-width:980px) {
  .project_row {
    display: flex;
    flex-direction: column;
    margin-left: 100px;
  }

  .services-projects .icon-box2 .icon {
    max-width: 103px;
    max-height: 94px;
  }

  .services-projects .icon-box2 h4 {
    font-size: 28px;
  }

  .services-projects .icon-box2 p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services-projects .icon-box2 a .read_more .stretched-link {
    font-size: 20px;
    font-weight: bold;
  }

  .btn_about {
    min-width: 51vw;
    margin-left: 80px;
  }
}

.icon .proj-img {
  margin-top: 83px;
  margin-left: 70px;
}

.btn_about {
  width: 12vw;
}

.new_italic {
  width: 35vw;
  margin-left: -22px;
  text-align: justify;
}


.about_main {
  background-color: #d3d0d052;
}

.main_ab_header {
  background-color: #fff;
}

.new_about_box {
  background-color: #fff;
}

.new_about_row {
  background-color: #fff;
}


.miss_p1 {
  text-align: justify;
  font-size: 15.5px;
}

.vision_logo {
  width: 11%;
}

.mission_logo {
  width: 11%;
}


.main_about {
  display: flex;
  margin-top: 156px;
  background-color: #c7bdbd0a;
  text-align: justify;
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  margin-bottom: -10%;
}

.mission_main {
  width: 20vw;
  margin: 2%;
  margin-left: 65px;
}

/* .vision_main{
    width: 69vw;
} */
.vision_main {
  width: 20vw;
  margin-left: 46%;
  margin-top: 2%;
}



#header {
  background-color: transparent;
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

#header.fixed {
  background-color: rgb(174 208 75 / 85%);
  /* Change this to your desired background color */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* #header.fixed.navbar ul li a {
  color: #000;
} */

.navbar {
  background-color: transparent;
  /* Set the initial background color */
  color: white;
  /* Set the initial font color */
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Add transition for a smooth color change */
  /* Other styles for your navigation bar */
}

.navbar.scrolled {
  /* background-color: #your-background-color; */
  /* Set the background color when scrolled */
  color: #000;
  /* Set the font color when scrolled */
}


/* why us */



.why-us {
  background-color: #f7f7f7;
}

.description {
  text-align: justify;
}

.why-us .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
  background: #fff;
  width: 83vw;
}

.why-us .icon-box+.icon-box {
  margin-top: 50px;
}

.why-us .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f3f8fa;
  border-radius: 6px;
  transition: 0.5s;
}

.why-us .icon-box .icon i {
  color: #68A4C4;
  font-size: 32px;
}

.why-us .icon-box:hover .icon {
  background: #68A4C4;
}

.why-us .icon-box:hover .icon i {
  color: #fff;
}

.why-us .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.why-us .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.why-us .icon-box .title a:hover {
  color: #68A4C4;
}

.why-us .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.why-us .video-box {
  position: relative;
}

.why-us .video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .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(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #68A4C4;
  transform: scale(20);
}

.why-us .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;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



.miss_p1 {
  text-align: justify;
  font-size: 15.5px;
}

.vision_logo {
  width: 11%;
}

.mission_logo {
  width: 11%;
}


.main_about {
  display: flex;
  margin-top: 156px;
  background-color: #c7bdbd0a;
  text-align: justify;
  /* background-image: url(assets/img/Khaitar/about/about1.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  margin-bottom: -10%;
}

.mission_main {
  width: 20vw;
  margin: 2%;
  margin-left: 65px;
  box-shadow: 2px 2px 2px 2px;
  height: 35vh;
  padding-left: 19px;
  padding-right: 19px;
}

/* .vision_main{
width: 69vw;
} */
.vision_main {
  width: 20vw;
  height: 34vh;
  margin-left: 46%;
  margin-top: 2%;
  padding-left: 19px;
  padding-right: 19px;
  box-shadow: 2px 2px 2px 2px;
}


.about_cont_box {
  margin-top: -60px;
  background-color: #fff;
  /* margin-bottom: 239px; */
}

.about_cont {
  background-color: #041821;
  width: 55vw;
}

.about_header {
  color: #000;
}

.about_green {
  background-color: #041821;
  background-color: #9cb846;
  width: 30vw;
  /* margin-top: 66px; */
  margin-bottom: 59px;
  position: relative;
  top: 28px;
  /* bottom: 33px; */
  left: -12px;
}

.content {
  width: 47vw;
  margin-left: 133px;
  text-align: justify;
}

.content12 {
  width: 40vw;
  margin-left: -18px;
  text-align: justify;
}

.about_green2 {
  background-color: #9cb846;
  width: 5vw;
  height: 107vh;
  /* margin-top: 66px; */
  margin-bottom: 59px;
  position: relative;
  top: 0px;
  right: -12px;
  /* bottom: 33px; */
  float: right;
}

.about_green h2 {
  text-align: center;
  color: #ee1d23;
  font-weight: bold;
}

.about_green2 h2 {
  text-align: center;
  color: #ee1d23;
  font-weight: bold;
}

.about_cont_box2 {
  margin-top: -60px;
  background-color: #041821;
  margin-bottom: -51px;
}

.about_h {
  margin-left: -140px;
}

.new_italic {
  width: 48vw;
  margin-left: -57px;
  text-align: justify;
  color: #fff;
  /* font-family: var(--font-secondary); */
  font-size: 1em;
  line-height: 1.7;
}

.content ul {
  margin-left: -54px;
}

.content ul li {
  list-style-type: disc;
  color: #fff;


}

.fst_italic {
  margin-top: 10px;
  margin-bottom: 40px;
}

.about .content ul {
  /* list-style: none;
                padding: 0; */
  padding: 0px 0 2px 30px;
}

.bottom {
  margin-bottom: 44px;
}

.product_img {
  margin-left: 20%;
}

.product_img1 {
  background-color: #8092a2;
}

.new_about_con {
  color: #000;
}

.first_img {
  width: 50%;
  /* height: 100vh; */
  margin-top: 15PX;
  MARGIN-LEFT: 25%;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .content12 {
    width: 78vw;
    margin-left: 23px;
    text-align: justify;
  }

  .about .content ul{
    padding: 7px 0 2px 46px;
  }

  .what_do {
    /* display: flex; */
    flex-direction: column;
  }

  .span_shield {
    margin-top: 9%;
    margin-left: 144px;
  }

  .second-text {
    width: 87vw;
    margin-left: 2%;
    position: relative;
    left: -37px;
  }

  .tip {
    left: -150px;
    position: relative;
  }

  .navbar-brand {
    margin-left: -62px;
  }

  /* .tabs span{
  left: -119px;
  font-size: 25px;
  position: relative;
} */

  .tabs__tab {
    width: 115vw;
    margin-left: -15%;
  }

  .card-img {
    width: 89%;
    margin: 40px 19px 19px 19px;
  }

  .sparkdeco_img {
    min-width: 60vw;
  }

  .tabs {

    font-size: 25px;
    margin-left: 13%;
    margin-top: -55px;
    min-width: 72vw;
  }

  .tabs span {
    /* background: rgb(16, 153, 9); */
    padding: 10px;
  }

  .new_product_botton {
    margin-left: 25%;
  }

  /* .footer-heading {
    margin-left: 1px;
    width: 32vw;
  } */


  .footer_info {
    margin-left: 0%;
    min-width: 50vw;
  }

  .address {
    /* margin-top: 8%; */
    margin-left: -49%;
    margin-bottom: -3%;
  }

  .address-grid {
    margin-bottom: 14%;
  }

  .sign-gd-two .add {
    display: flex;
    flex-direction: column;
  }

  .address_grid1 {
    /* max-width: 101vw; */
    margin-top: 2px;
    margin-left: -28%;
  }

  .address-right {
    margin-left: 25%;
  }

  .footer-02 .fa {
    font-size: 20px;
    margin-left: 76px;
    margin-top: 2px;
  }

  .font_maker {
    /* margin-left: -60px; */
    font-size: 20px;
  }

  .address_right12 {
    margin-left: 60%;
  }

  .address-right p {
    width: 80vw;
  }

  p.copy-right {
    font-size: 22px;
  }
}



@media (max-width:768px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
}


.about_new_khaitar {
  width: 70vw;
}


/* New Hero section */


.fade:not(.show) {
  opacity: 80;
}

:root {
  scroll-behavior: smooth;
}


img {
  vertical-align: middle;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}


.fade {
  animation-name: fade;
  animation-duration: 8.5s;
}

@keyframes fade {
  from {
    opacity: 1.4
  }

  to {
    opacity: 1.4
  }
}

@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}



@media (max-width:767px) {
  .btn_about::before {
    /* left: -10px; */
    background: #009688;
  }

  .about_new_khaitar {
    min-width: 89vw;
  }

  .new_italic {
    min-width: 69vw;
    left: -50px;
    position: relative;
  }

  .about_h {
    margin-left: 10px;
  }

  .about_green {
    min-width: 74vw;
    left: -12px;
  }

  .about_green2 {
    min-height: 303vh;
    display:  none;
  }

  .fst_italic {
    font-size: 19px;
    font-weight: 500;
  }


  ul.ul_about {
    width: 82vw;
    margin-left: -152px;
  }

  .new_about_con {
    font-weight: 400;
  }

  .icon {
    margin-left: 55%;
    margin-top: 10px;
    margin-bottom: 10%;
  }

  .why-us .icon-box .icon {
    float: none;
  }

  .why-us .icon-box .icon {
    background: #68A4C4;
  }

  .why-us .icon-box .description {
    margin-left: 110px;
    width: 40vh;
  }

  .new_desc {
    left: -35px;
    max-width: 47vh;
    position: relative;
  }

  .new_tit_des {
    min-width: 51vw;
    left: -55px;
    position: relative;
  }

  .spark_deco {
    max-width: 60vw;
    margin-top: 18px;
  }

  .why-us .container {
    min-width: 92vw;
  }

  .fa-map-marker:before {
    /* content: "\f041"; */
    margin-left: -53px;
  }

  .why-us .icon-box .title {
    margin-left: 187px;
    min-width: 100%;
  }


  .first_img {
    min-width: 93%;
    top: 18px;
    left: -21%;
    margin-bottom: 49%;
    position: relative;
  }


  .adreess_info {
    min-width: 60vw;
  }

  .address_fa {
    margin-left: -9%;
  }

  .contact_email {
    margin-top: -200px;
  }

  .info_p {
    margin-left: 38px;
  }

  h3.addres_h {
    margin-left: -33%;
  }

  .new_cont_row {
    margin-top: 50%;
  }

  .contact_images {
    background-size: 112vw;
  }

  #services-projects {
    /* background-color: #f7f7f7; */
    width: auto;
    margin-left: 20px;
  }

  .icon-box {
    min-width: 86vw;
    margin-left: -97px;
  }

  .icon img {
    width: 72vw;
    margin-left: 620%;
    margin-top: 40%;
  }

  .services-projects .container {
    margin-bottom: 15%;
  }

  .swiper-button-next {
    right: 29px;
  }

  .swiper-button-prev {
    left: 45px;
  }

  .slide-container {
    padding: 40px 61px 40px 77px;
  }

  .swiper-navBtn::after {
    font-size: 22px;
  }
}



/* 
.footer_02 {
  margin-top: -1%;
} */




.inner_breadcrumb {
  background: #8092a2;
  margin-top: -60px;
  margin-bottom: -82px;
}

.short {
  margin-top: 128px;
  display: flex;
  margin-left: 46%;
  margin-bottom: -78px;
}

.home_pro {
  margin-left: -82px;
  margin-top: 50px;
}

.about_pro {
  margin-left: 48px;
  margin-top: 50px;
}

.span_pro {
  margin-left: 33px;
  margin-top: 50px;
}

@media (max-width:767px) {
  .short {

    margin-left: 33%;
    margin-bottom: -104px;
  }

  .address_main {
    margin-left: 25%;
  }
}

/* what we do */


.what_do {
  display: flex;
}

.what_do1 {
  border-right: 1px solid;
  width: 170vw;

}

.what_do2 {
  border-right: 1px solid;
  width: 170vw;
}

.what_do3 {
  /* border-right: 1px solid; */
  width: 170vw;
}

.second-text {
  margin-left: 10%;
  margin-right: 12%;
  text-align: justify;

}

.tip {
  margin-left: 40%;
  margin-top: 20px;
  margin-bottom: 34px;
  font-weight: bold;
  font-size: 20px;
}

.fa-shield:before {
  margin-left: 32px;
}

.fa-pencil:before {
  margin-left: 32px;
}

.fa-star:before {
  margin-left: 32px;
}

.card_deco {
  height: 28vh;
}


.cool_img {
  height: 28.7vh
}

.sparkdeco_img {
  width: 20vw;
}

.head_prod {
  margin-top: -1px;
}

.smokey_img {
  width: 26vw;
  margin-left: 0;
  height: 26vh;
}


@media (max-width:767px) {
  .smokey_img {
    min-width: 67vw;
    height: 24vh;
    margin-top: 19px;
    margin-left: 15px;
  }
}


.img_stand {
  height: 20vh;
  margin-top: 31px;
}