@font-face {
  font-family: "Lato";
  src: url(fonts/lato/Lato-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Lato";
  src: url(fonts/lato/Lato-Regular.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Lato";
  src: url(fonts/lato/Lato-Bold.ttf);
  font-weight: 800;
}
@font-face {
  font-family: "Lato";
  src: url(fonts/lato/Lato-Black.ttf);
  font-weight: 900;
}

:root {
  --primary-color: #ffbc13;
  --white: #fff;
  /* --dark: #333; */
  --dark: #1e1d26;
  --lato: "Lato", sans-serif;
  --gray: #4b4b4b;
  --light-gray: #646464e3;
  --lighter-gray: #f4f4f4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
}

body {
  background: var(--white);
  font-family: "Lato", sans-serif;
  /* overflow: hidden; */
}

a {
  color: #fff;
  text-decoration: none;
}

h2 {
  color: var(--gray);
  font-size: 26px;
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
}

h2::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  width: 80px;
  height: 3px;
  margin: 0 auto;
}

h3 {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 18px;
}

ul {
  list-style: none;
}
.container {
  width: 1200px;
  max-width: 98%;
  margin: 0 auto;
}
.btn {
  background: var(--primary-color);
  padding: 20px 50px;
  border-radius: 5px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--primary-color);
  display: inline-block;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--white);
}
.bg-white {
  background: var(--white);
}
.p-8 {
  padding: 80px 0;
}
.mb-6 {
  margin-bottom: 60px;
}
/* ==========Topbar========== */
/* ========================== */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid var(--primary-color);
  font-family: var(--lato);
  color: #fff;
  padding-top: 20px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  height: 60px;
  font-weight: 800;
}
.topbar a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}
.topbar .container .social-icons {
  display: flex;
}
.topbar .container .social-icons a:not(:first-child) {
  margin-left: 20px;
}
.topbar .container .infos a {
  margin-left: 10px;
}
.topbar .container .infos i {
  margin-right: 10px;
}
.topbar .container .infos span i {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .topbar .container .social-icons {
    display: none;
  }
  .topbar .container .infos a {
    margin: 0 0 5px 0;
  }
  .topbar .container {
    flex-direction: column;
    justify-content: center;
    height: 100px;
    text-align: center;
  }
  .topbar .container .infos {
    display: flex;
    flex-direction: column;
  }
  .topbar {
    padding: 0 0 10px 0;
  }
}

/* ==========Header========== */
/* ========================== */
header {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: -20px;
  padding: 15px;
  font-weight: 800;
  text-transform: uppercase;
  align-items: center;
  background: var(--dark);
  box-shadow: 0px 0px 4px 0px rgba(124, 124, 124, 0.75);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(124, 124, 124, 0.75);
  -moz-box-shadow: 0px 0px 4px 0px rgba(124, 124, 124, 0.75);
  z-index: 10;
}
header a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  margin-left: 30px;
  position: relative;
}
header nav ul .dropdown {
  padding-right: 15px;
  padding-bottom: 15px;
  position: relative;
}
header nav ul .dropdown::before {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  padding-top: 4px;
}

/* Dropdown navigation */
header nav .dropdown-list li {
  margin-left: 0px;
  padding: 5px 12px;
}
header nav .dropdown-list li a {
  color: #333;
}
header nav .dropdown-list li a:hover {
  color: var(--primary-color);
}
header nav .dropdown-list {
  display: none;
  position: absolute;
  background-color: var(--white);
  margin-top: 5px;
  width: 165px;
  padding: 10px 0;
  border-radius: 5px;
}
header nav ul li:hover .dropdown-list {
  display: block;
}

/* Responsive Navigation */
.checkbtn {
  font-size: 25px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 2;
  position: relative;
}

@media (max-width: 992px) {
  header nav ul {
    position: fixed;
    top: -120vh;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    /* background: #2c3e50; */
    background: rgba(44, 62, 80, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
  }
  #check {
    display: none;
  }
  #check:checked ~ ul {
    top: 0;
  }
  header nav ul li {
    margin-bottom: 50px;
  }
  header nav ul li a {
    font-size: 24px;
  }
  header nav .dropdown-list a {
    font-size: 15px;
  }
  header nav .dropdown-list li {
    margin-bottom: 0;
  }
  header nav .dropdown-list {
    position: absolute;
    top: 0px;
    background-color: var(--white);
    height: 100px;
    margin-top: 35px;
    width: 165px;
    z-index: 2;
    padding-bottom: 100px;
  }
}

@media (min-width: 992px) {
  .checkbtn {
    display: none;
  }
  #check {
    display: none;
  }
}

/* Search button */
.search-btn {
  color: var(--primary-color);
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2f3640;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.search-txt {
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: var(--white);
  font-size: 16px;
  transition: 0.4;
  line-height: 40px;
  width: 0px;
}
.search-box:hover > .search-txt {
  width: 240px;
  padding: 0 6px;
  transition: 0.4s;
}

@media (max-width: 992px) {
  .search-txt {
    background: var(--white);
  }
  .search-box:hover > .search-txt {
    width: 200px;
    margin-right: 10px;
    border-radius: 5px;
    color: var(--dark);
    transition: 0.4s;
  }
  /* This class is added for moving search icon at the top */
  header nav ul .searchWrapper {
    position: static;
  }
  .search-box {
    position: absolute;
    top: 8%;
    transform: translate(-50%, -50%);
  }
}

/* .hero {
  height: 100vh;
  background: linear-gradient(
      0deg,
      rgba(114, 114, 114, 0.5),
      rgba(44, 44, 44, 0.5)
    ),
    url(images/hero/picture-1.jpg);
  background-size: cover;
} */

/* .hero .title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  flex-direction: column;
} */

.hero {
  background: var(--dark);
}

.imgSlider .title {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.imgSlider .title p {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.imgSlider .title h1 {
  font-size: 66px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 30px;
}
.imgSlider .title h1 span {
  color: var(--primary-color);
}
.imgSlider img {
  height: 100vh;
  object-fit: cover;
}
.imgSlider .title .btn {
  margin-top: 20px;
}

/* Swiper Slider */
.heroSwiper.swiper {
  width: 100%;
  margin-top: -49px;
}
.heroSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;

  background-position: center;
  background-size: cover;
  margin-bottom: -4px;
}

@media (max-width: 500px) {
  .imgSlider .title h1 {
    font-size: 55px;
  }
}

/* ==========Yellow Bar====== */
/* ========================== */
.yellowBar {
  background: var(--primary-color);
}
.yellowBar .container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.yellowBar p {
  letter-spacing: 1px;
}
.yellowBar .btn {
  background: var(--white);
  color: var(--dark);
  padding: 15px 40px;
  font-size: 16px;
  border: none;
  display: inline-block;
}
.yellowBar .btn:hover {
  background: var(--dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .yellowBar .container {
    flex-direction: column;
    justify-content: center;
    height: 150px;
  }
  .yellowBar p {
    margin: 15px 0;
    text-align: center;
  }
}

/* =======Main Services====== */
/* ========================== */
.topHalf {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.topHalf .cell {
  flex: 0 0 31%;
  display: flex;
}
.cell span:first-child {
  color: var(--white);
  display: flex;
  align-items: flex-start;
}
.cell span i {
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 50%;
  margin-right: 35px;
  border: 2px solid var(--primary-color);
}
.cell:hover i {
  background-color: var(--white);
  color: var(--primary-color);
  transition: 0.4s;
}
.cell p {
  line-height: 24px;
  color: var(--light-gray);
  font-weight: 600;
  margin-bottom: 10px;
}
.cell a {
  color: var(--primary-color);
  font-weight: 600;
}
.cell a:hover span {
  margin-left: 10px;
  transition: 0.4s;
}
.cell a i {
  padding: 0;
  background: none;
  margin-right: 10px;
  border: 0;
}

@media (max-width: 1024px) {
  .topHalf {
    flex-direction: column;
  }
  .cell.mb-6 {
    margin-bottom: 0px;
  }
  .topHalf .cell {
    margin-bottom: 40px;
  }
}

/* =======Scrollbar====== */
/* ====================== */
body::-webkit-scrollbar {
  width: 2px;
}
body::-webkit-scrollbar-track {
  background: #1e1e24;
}
body::-webkit-scrollbar-thumb {
  background: var(--gray);
}

/* =======Featured Work====== */
/* ========================== */
.featuredWork {
  z-index: 10;
  /* position relative and z-index in front of animated main services */
  position: relative;
  padding: 100px 0 0px 0;
  height: 700px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.featuredWork h2 {
  color: var(--white);
  text-align: left;
  margin-bottom: 110px;
}
.featuredWork h2::before {
  left: 0;
  width: 50px;
  transform: translate(0%);
}
.featuredWork .workSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}
.featuredWork .container {
  position: relative;
}
.featuredWork .swiper-button-next {
  position: absolute;
  top: 20px;
}
.featuredWork .swiper-button-next:after {
  font-size: 20px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.featuredWork .swiper-button-next:hover:after {
  background: var(--primary-color);
  color: var(--white);
}
.featuredWork .swiper-button-prev {
  position: absolute !important;
  left: 93%;
  top: 20px;
}
.featuredWork .swiper-button-prev::after {
  font-size: 20px !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.featuredWork .img-wrapper {
  position: relative;
}
.featuredWork .img-wrapper span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 12px;
  opacity: 0.5;
  background: var(--white);
  border-top-left-radius: 6px;
}
.featuredWork .swiper-button-prev:hover:after {
  background: var(--primary-color);
  color: var(--white);
}
@media (max-width: 1092px) {
  .featuredWork .swiper-button-prev {
    left: 92%;
  }
}
@media (max-width: 992px) {
  .featuredWork .swiper-button-prev {
    left: 90%;
  }
}
@media (max-width: 768px) {
  .featuredWork .swiper-button-prev {
    left: 88%;
  }
}
@media (max-width: 668px) {
  .featuredWork .swiper-button-prev {
    left: 86%;
  }
}
@media (max-width: 500px) {
  .featuredWork .swiper-button-prev {
    left: 84%;
  }
}
@media (max-width: 414px) {
  .featuredWork .swiper-button-prev {
    left: 80%;
  }
}
@media (max-width: 350px) {
  .featuredWork .swiper-button-prev {
    left: 77%;
  }
}

/* Slider pagination */
.workSwiper .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
}
.swiper-pagination-bullet {
  background: var(--white) !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}
.workSwiper .swiper-slide p {
  background: rgba(124, 124, 124, 0.8);
  color: var(--white);
  padding: 10px 5px;
  font-size: 14px;
  width: 100%;
  opacity: 0;
}
.workSwiper .swiper-slide:hover p {
  opacity: 1;
  transition: 0.3s;
  position: absolute;
  bottom: -30px;
  transform: translateY(-30px);
  border-radius: 0 0 5px 5px;
}
.workSwiper .swiper-slide p a {
  margin-top: 10px;
  display: block;
  font-weight: 600;
  color: var(--white);
}
.workSwiper .swiper-slide p a i {
  margin-left: 10px;
  color: var(--white);
}

/* ======About Us====== */
/* ==================== */
.aboutUs {
  background: var(--lighter-gray);
  padding-bottom: 100px;
}
.aboutUs .container {
  display: flex;
  justify-content: space-between;
}
.aboutUs .container .left,
.aboutUs .container .right {
  flex: 0 0 49%;
}
.aboutUs .container h2 {
  text-align: left;
  margin: 80px 0 70px 0;
}
.aboutUs .container h2::before {
  left: 0;
  width: 50px;
  transform: translate(0%);
}
.aboutUs .container .right img {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 5px 5px 0 0;
  border-bottom: 5px solid var(--primary-color);
}

/* Accordion */
.aboutUs .accordion {
  width: 90%;
  /* max-width: 100%; */
  /* margin: 2rem auto; */
}
.aboutUs .accordion-item {
  background: var(--white);
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.aboutUs .accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.aboutUs .accordion-item-header::after {
  content: "\002B";
  /* content: "\25BE"; */
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  transition: 0.2s ease-in-out;
}
.aboutUs .accordion-item-header.active::after {
  content: "\2212";
  transform: rotate(180deg);
  color: var(--primary-color);
}
.aboutUs .accordion-item-body {
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.aboutUs .accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(
      to right,
      transparent,
      var(--primary-color),
      transparent
    )
    1;
}
@media (max-width: 992px) {
  .aboutUs .container {
    flex-direction: column;
  }
  .aboutUs .accordion {
    width: 100%;
  }
}

/* =====Latest News==== */
/* ==================== */
.latestNews {
  background-image: url(images/pattern-grid.png);
  background-color: var(--white);
  padding: 80px 0;
  margin: 5px 0;
}
.latestNews h2 {
  text-align: left;
  margin-bottom: 60px;
}
.latestNews h2::before {
  left: 0;
  width: 50px;
  transform: translate(0%);
}
.latestNews .blogPosts {
  display: flex;
  justify-content: space-between;
}
.latestNews .blogPosts .post {
  flex: 0 0 31%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.latestNews .blogPosts .postBody {
  padding: 15px 20px 25px 15px;
  background: var(--white);
  border-top: 4px solid var(--primary-color);
}
.latestNews .blogPosts .post img {
  margin-bottom: -3px;
  border-radius: 5px 5px 0 0;
}
.latestNews .post span {
  font-size: 14px;
}
.latestNews .post span i {
  margin-right: 5px;
}
.latestNews .post h3 {
  margin: 15px 0 10px 0;
}
.latestNews .post p {
  line-height: 26px;
}
.latestNews .post .btn {
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 14px;
}
.latestNews .post .btn:hover {
  background: transparent;
  color: var(--dark);
}
@media (max-width: 767px) {
  .latestNews .blogPosts {
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
  }
  .latestNews .blogPosts .post:nth-child(2) {
    margin: 30px 0;
  }
  .latestNews h2 {
    text-align: center;
    margin-bottom: 60px;
  }
  .latestNews h2::before {
    left: 50%;
    width: 50px;
    transform: translate(-50%);
  }
}
@media (max-width: 500px) {
  .latestNews .blogPosts {
    width: 80%;
  }
  .aboutUs {
    padding-bottom: 50px;
  }
  .latestNews {
    padding-top: 40px;
  }
  .aboutUs .container h2 {
    margin: 40px 0 70px 0;
  }
}

/* ======Counter====== */
/* ==================== */
.counterWrapper {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: var(--white);
}
.counterWrapper .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.counterWrapper p:first-child {
  font-size: 24px;
  font-weight: 800;
}
.counterWrapper h3 {
  color: var(--white);
  font-size: 66px;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 60px;
}
.counterWrapper .numbers {
  display: flex;
  justify-content: space-between;
  width: 60%;
  flex-wrap: wrap;
}
.counterWrapper .numbers div {
  flex: 0 0 30%;
  text-align: center;
}
.counterWrapper .numbers div span {
  font-size: 50px;
  font-weight: 800;
}
.counterWrapper .numbers .plus {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 800;
  margin-left: 10px;
}
.counterWrapper .numbers div p {
  text-transform: uppercase;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .counterWrapper .numbers {
    width: 60%;
  }
  .counterWrapper h3 {
    font-size: 56px;
  }
  .counterWrapper .numbers div span {
    font-size: 40px;
  }
  .counterWrapper .numbers div {
    flex: 0 0 48%;
  }
  .counterWrapper .numbers div:last-child {
    flex: 0 0 100%;
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .counterWrapper .numbers {
    width: 90%;
  }
  .counterWrapper h3 {
    font-size: 46px;
  }
  .counterWrapper .numbers div span {
    font-size: 40px;
  }
  .counterWrapper .numbers div p {
    font-size: 16px;
  }
  .counterWrapper .numbers div {
    flex: 0 0 48%;
  }
  .counterWrapper .numbers div:last-child {
    flex: 0 0 100%;
    margin-top: 40px;
  }
}

/* ======Partners====== */
/* ==================== */
.partners {
  padding: 80px 0;
  background: var(--lighter-gray);
}
.partners h2 {
  text-align: left;
  margin-bottom: 60px;
}
.partners h2::before {
  left: 0;
  width: 50px;
  transform: translate(0%);
}
.partners .container {
  display: flex;
  justify-content: space-between;
}
.partners .container .left,
.partners .container .swiperTestimonials {
  flex: 0 0 48%;
}
.partners .container .logos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.partners .container .logos img {
  flex: 0 0 30%;
  width: 100px;
}
.swiperTestimonials.swiper {
  width: 100%;
  height: 100%;
}
.partners .swiperTestimonials img {
  width: 70px;
  height: auto;
  margin-top: 20px;
}
.partners .swiperTestimonials .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners .swiper-slide p:first-child {
  width: 90%;
  text-align: center;
  background: var(--dark);
  padding: 10px;
  border-radius: 5px;
  color: var(--white);
}
.partners .carrot {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid var(--dark);
}
.partners .swiperTestimonials .swiper-slide .name {
  font-weight: 600;
  font-size: 17px;
}
.partners .swiperTestimonials .swiper-slide .company {
  font-size: 14px;
  padding-bottom: 5px;
  color: var(--light-gray);
}

@media (max-width: 768px) {
  .partners .container {
    flex-direction: column;
  }
  .partners .container .left {
    margin-bottom: 50px;
  }
  .partners .swiper-slide p:first-child {
    padding: 15px 10px 20px 10px;
  }
}

/* =======Footer======= */
/* ==================== */
footer {
  /* background-image: url(images/pattern-grid.png); */
  background-color: var(--dark);
  color: var(--white);
  padding-top: 80px;
  line-height: 1.6;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer div {
  flex: 0 0 30%;
}
footer h2 {
  color: var(--white);
  margin-bottom: 50px;
}
footer .companyLinks ul {
  margin-left: 75px;
}
footer .companyLinks ul i {
  margin-right: 10px;
}
footer .companyLinks ul li:hover i {
  color: var(--primary-color);
  margin-right: 5px;
  transition: 0.3s;
}
footer a:hover {
  color: var(--primary-color);
  transition: 0.3s;
}
footer .contact p {
  margin-bottom: 15px;
}
footer .contact i {
  margin-right: 10px;
}
@media (max-width: 768px) {
  footer .aboutCompany {
    flex: 0 0 50%;
  }
  footer .companyLinks {
    flex: 0 0 50%;
  }
  footer .contact {
    margin: 40px auto 0;
    flex: 0 0 50%;
  }

  /* footer .container {  
    flex-direction: column;
    width: 60%;
  }
  footer .companyLinks {
    margin: 40px 0;
  } */
}

/* Footer Bottom */
.footerBottom {
  background: #111;
  padding: 20px;
  margin-top: 30px;
}
.footerBottom .social-footer a {
  margin-left: 10px;
}
.footerBottom .social-footer a i:hover {
  rotate: 360deg;
  transition: 0.3s;
}

@media (max-width: 680px) {
  .footerBottom .container {
    flex-direction: column;
    text-align: center;
  }
  .footerBottom .container span:first-child {
    margin-bottom: 5px;
  }
}
