@import url('https://fonts.googleapis.com/css?family=Barlow');

:root {
  --primary: #e1ae14;
  --light: #F8F8F8;
  --dark: #252525;
  --info: #250dc4;
}

:root {
  --text-color-light: #545252;
  --text-color-dark: #ffffff;
  --color-secondary-dark: #161718;

}

:root {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
  font-weight: 400 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 30px;
  z-index: 99;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
  body {
    background: #282727;
    color: #fff;
  }

  .project .nav .nav-link {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
  }

  header.scrolled {
    background: rgba(0, 0, 0, 0.8) !important;
    border-bottom: 0.1px solid #444444 !important;
    color: var(--text-color-dark) !important;
  }


  .modal-dialog .modal-content,
  #team,
  #contact .info-container,
  #contact .form-control {
    background-color: #302f2f !important;
  }

  .teams-slider .swiper-slide,
  #services .service-item .service-text,
  #contact .php-email-form,
  .footer {
    background: #353535 !important;
  }

  #services .service-item .service-text {
    color: gray;
  }

  .teams-slider a {
    color: var(--info) !important;
  }

  .modal-dialog .modal-title,
  .modal-dialog .modal-body h3 {
    color: var(--primary) !important;
  }

  #header.header-scrolled .navbar a,
  .display-5,
  #services .service-item .service-text h3,
  .modal-dialog .modal-content,
  #team,
  #team .teams-slider .swiper-slide h4,
  #team .teams-slider .swiper-slide h5,
  #contact .form-control {
    color: var(--text-color-dark) !important;
  }

  @media (max-width: 991px) {

    .navbar-mobile ul {
      background: rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
      color: var(--text-color-dark) !important;

    }

  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 0.1px solid #ccc;
  color: #000;
}

#header.header-scrolled .navbar a {
  color: #000;
}

header.scrolled .menu .active a:before {
  width: 25px;
}

#header h2 {
  font-size: 40px;
}

header.scrolled .navbar-toggle,
.icon-bar {
  border: solid #ccc;
}

header.scrolled .bi-list {
  color: #fff;
  background: #d8d7d7;
  border-radius: 5px;
}

#header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header .logo {
  font-weight: 900;
}

#header .logo a:hover {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  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: -2px;
  left: 0;
  background-color: var(--primary);
  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;
}

/*-------------------------------------------------
   Mobile Navigation 
  ---------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar a.active::after {
    content: "";
    display: block;
    border: 8px solid transparent;
    border-top-color: var(--primary);
    margin-top: 5px;
    border-bottom-width: 1px !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #282828;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# header-carousel
--------------------------------------------------------------*/
.owl-carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img,
  video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item p {
    font-size: 16px !important;
  }
}

.header-carousel .owl-dots {
  position: absolute;
  width: 60px;
  height: 100%;
  top: 0;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  background: var(--dark);
  transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
  width: 60px;
  height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 2px;
  transition: .5s;
  opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

/*--------------------------------------------------------------
# Section title
--------------------------------------------------------------*/
.section-title {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.display-5 {
  color: #000;
}

.service-h1 {
  color: #fff;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

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

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  background: var(--light);
  color: var(--primary);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solidvar(--primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.about .content .btn-learn-more:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Realization
--------------------------------------------------------------*/
.project .nav .nav-link {
  background-color: #fafafa;
  transition: .5s;
  border-radius: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.project .nav .nav-link.active {
  background: var(--primary);
  border-radius: 50px;
}

.project .nav .nav-link.active h3 {
  color: #FFFFFF !important;
}

 #myCarousel .img-fluid {
  width: 100%;
  max-height: 360px !important;
}

@media (max-width: 768px) {
 #myCarousel .img-fluid {
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

   #myCarousel .carousel-indicators {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/
.services {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/carousel/carousel-3.jpeg") fixed center center;
  background-size: cover;
  padding: 10px 0;
}

.service-item .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.service-item .service-text {
  background: var(--light);
  transition: .5s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.service-item:hover .service-text {
  background: rgba(0, 0, 0, .7);
}

.service-item * {
  transition: .5;
}

.service-item:hover * {
  color: #FFFFFF;
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

.service-item:hover .btn {
  width: 140px;
}

/*----------------------------------
Values
-----------------------------------*/
.values {
  overflow: hidden;
}

.values .nav-tabs {
  border: 0;
}

.values .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #646a6f;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.values .nav-link:hover {
  color: var(--primary);
}

.values .nav-link.active {
  color: var(--primary);
  border-color: var(--primary);
}

.values .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.values .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.values .details p {
  color: #777777;
}

.values .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .values .nav-link {
    border: 0;
    padding: 15px;
  }

  .values .nav-link.active {
    color: #fff;
    background: var(--primary);
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 10px 0;
  background: #f6f6f6;
}

.teams-slider {
  width: 100%;
  height: 100%;
  padding: 15px;
}

.teams-slider a {
  font-size: 13px;
}

.team .swiper-slide {
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 18px;
  border-bottom: 5px solid #fff;
  padding: 1em;
}

.team .swiper-slide:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.team .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  margin-right: 20px;
}

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


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

.team .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--info);
}

/*--------------------------------------------------------------
# partner
--------------------------------------------------------------*/
.partner {
  padding-top: 20px;
}

.partner img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
  width: 150px;
  height: 100px;
}

.partner img:hover {
  filter: none;
  opacity: 1;
}

.partner .george p:hover {
  color: rgb(169, 118, 24);
}

/*-----------------------------------------------
contact
------------------------------------------------*/
.contact .map {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.contact .info-container {
  background-color: #fafafa;
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: var(--info) !important;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

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

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary);
}

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

.contact .php-email-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
@media(max-width:428px) {
  .footer .social-media {
    text-align: center;
  }
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: #0c420c;
}


/*------------------------
#POPUP
-------------------*/
div[class^="modal-dialog-centered"] {
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  margin: 0 auto;
}

.modal-body h1,
h4 {
  color: var(--primary);
}

.close {
  border-radius: 4em;
  border-style: none;
  width: 30px;
}

.close-btn {
  background: #838383;
  border: 1px solid;
  color: #fff;
}

.close:hover,
.close-btn:hover {
  background-color: var(--primary);
  color: #fff;
}