/*-----------------------------------------------------------------------

  * Koppa Template v1.0 
  * Copyright 2024 The Koppa Author (https://themeforest.net/user/gianfar)

  =======================================================================*/
/* Scrollbar Styles */
/* Preloader */
/* Settings for Accordion (Bootsrap-5) */
/* Typography*/
/* Navigation */
/* Mobile Navigation */
/* Link style */
/* Button */
/* Fullscreen Parallax Slider */
/* Centered Slider */
/* Creative Agency */
/* Header Image */
/* Header Page */
/* Tagline */
/* Portfolio Layout 2 columns */
/* Clients Section */
/* Footer */
/* Background Text */
/* Animation text */
/* About Us */
/* About Me */
/* Services Page */
/* Pricing Plan Page */
/* Page 404 */
/* Portfolio Filter */
/* Info Section */
/* Portfolio Stack */
/* Portfolio List */
/* Portfolio Standart 2-columns */
/* Portfolio Standart 3-columns */
/* Single Project Page */
/* Blog Page */
/* Single Post Page */
/* Contact Page */
/* Media Queries For Responsive Design */
/* =======================================================================*/
.accordion-item,
.title-page-name,
.header-page-img .button,
.header-page-img .header-content p,
.header-page-img .header-content .main-title,
.header-page-img .header-content .sub-title,
.bg-text,
.header-content .sub-title-2,
.anim-block .sub-title .char {
  opacity: 0;
}
/*Scrollbar Styles*/
* {
  scrollbar-width: thin;
  scrollbar-color: #8b8b8b #cecece;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background: #cecece;
}
*::-webkit-scrollbar-thumb {
  background-color: #8b8b8b;
  border-radius: 10px;
}
/* Preloader */
#preloader {
  z-index: 100;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fbfbfb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 50px;
  position: relative;
  -webkit-animation: sk-rotateplane 1.8s infinite ease-in-out;
  animation: sk-rotateplane 1.8s infinite ease-in-out;
  transition-duration: 2s;
}
.loader img {
  width: 100%;
}
@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  60% {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
  100% {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  60% {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
  100% {
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
}
/*Settings for Accordion (Bootsrap-5)*/
.accordion-item {
  background-color: transparent;
}
.accordion-button::after {
  background-image: url('../icons/add-outline.svg');
  transition-duration: 0.5s;
  width: 30px;
  height: 30px;
  background-size: 30px;
}
.accordion-button:not(.collapsed) {
  color: unset;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../icons/add-outline.svg');
  transition-duration: 0.5s;
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}
.accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}
.accordion-button:not(.collapsed) {
  background-color: unset;
}
.accordion-button::after {
  margin-left: unset;
}
/*input*/
.form-control {
  border-color: #ababab;
  border-radius: 2px;
}
.form-control:focus {
  border-color: #d31e2f;
  box-shadow: 0 0 0 0.25rem #d31e2f30;
}
/*button*/
button {
  background-color: unset;
  border-width: unset;
  border-style: unset;
  border-color: unset;
  -o-border-image: unset;
     border-image: unset;
}
/* Typography*/
html {
  scroll-behavior: smooth;
}
.h1,
h1 {
  font-size: 80px;
}
.h2,
h2 {
  font-size: 60px;
}
.h3,
h3 {
  font-size: 36px;
}
.h4,
h4 {
  font-size: 21px;
}
.h5,
h5 {
  font-size: 18px;
}
.h6 h6 {
  font-size: 14px;
}
p {
  line-height: 23px;
}
ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}
p {
  font-weight: 200;
  margin: 0;
}
a {
  color: #0d0c0c;
  font-weight: 200;
}
a:hover {
  color: #636161;
}
.img-fluid {
  border-radius: 2px;
}
.number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 600;
}
html,
body {
  position: relative;
  height: 100%;
  touch-action: auto;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  overflow-x: hidden;
  background-color: #fbfbfb;
}
/* Navigation */
a.menu-active:before {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px) !important;
  opacity: 1 !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.nav-up {
  -webkit-transform: translateY(-73px);
  transform: translateY(-73px);
  transition-property: all;
  transition-duration: 0.4s;
}
.page-navigation {
  margin-top: 0;
  position: fixed;
  height: 56px;
  width: 100%;
  right: 0;
  z-index: 12;
  transition-duration: 0.5s;
  border-bottom: 1px solid #cecece;
}
.home-menu-text {
  height: 100%;
}
.home-menu-text .menu {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.home-menu-text .menu-item {
  display: inline-block;
  margin: 0 26px;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
}
.home-menu-text a {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1f2022;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
}
.home-menu-text .seen a {
  color: #fff;
}
.home-menu-text .seen a:before {
  background-color: #fff;
}
.home-menu-text a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.home-menu-text a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.home-menu-text .seen > li > a {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}
.seen > .menu-item-has-children > .sub-menu {
  padding-top: 0;
  padding-bottom: 34px;
}
/* Mobile Navigation */
.navigation_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 24px 48px 48px 48px;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  z-index: 11;
  right: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition-property: all;
  transition-duration: 0.5s;
  background-color: #191c1f;
}
.navigation_menu .social-icon .social-icon-text {
  font-size: 10px;
  color: #6c6f70 !important;
  letter-spacing: 1em;
  display: block;
}
.navigation_menu .social-icon .wrap-link {
  margin-top: 0;
}
.navigation_menu a p {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 300;
  color: #4db6ac;
}
.seen {
  -webkit-transform: unset !important;
          transform: unset !important;
}
.nav-down {
  transition-duration: 0.4s;
}
.hamburger {
  width: 45px;
  height: 33px;
  position: absolute;
  cursor: pointer;
  z-index: 1041;
  right: 15px;
  top: 16px;
  transition: 0.5s;
  display: none;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  opacity: 1;
  top: 5px;
  right: 5px;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.color-menu {
  background: #1f2022 none repeat scroll 0% 0%;
}
.opened .color-menu {
  background: #fff;
}
.opened {
  margin-top: -5px;
}
.hamburger span:nth-child(1) {
  margin-top: 0px;
}
.hamburger span:nth-child(2) {
  margin-top: 5px;
  margin-right: 0px;
}
.hamburger span:nth-child(3) {
  margin-top: 10px;
}
.hamburger.opened span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 11px;
}
.hamburger.opened span:nth-child(2) {
  opacity: 0;
  right: 75px;
}
.hamburger.opened span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 11px;
}
.collapse-section > li > a {
  position: relative;
  font-size: 13px !important;
  color: #d0cfcb !important;
}
ul.sub-menu {
  flex-direction: column;
  display: none;
  position: absolute;
  background-color: #fbfbfb;
  border: 1px solid #cecece;
}
.menu-item:hover ul.sub-menu {
  display: flex;
}
.menu > .menu-item-has-children > .sub-menu {
  padding: 12px 0;
}
.menu-item > .sub-menu > .menu-item > .sub-menu {
  position: relative;
}
#menu-all-pages > li > .sub-menu {
  padding: 6px 0;
}
.menu > .menu-item-has-children:before {
  content: url("../icons/arrow-down.svg");
  font-size: 10px;
  top: 10px;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.menu.seen > .menu-item-has-children:before {
  -webkit-filter: invert(0);
          filter: invert(0);
}
#menu-all-pages-flat {
  display: inline;
}
.top-separator-line {
  border-top: 1px solid #cecece;
}
.bottom-separator-line {
  border-top: 1px solid #cecece;
}
/* Link style */
.wrap-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.wrap-link:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
}
.wrap-link:hover .link-hover {
  position: absolute;
  -webkit-transform: translateY(-26px);
  transform: translateY(-26px);
  transition-duration: 0.5s;
}
.wrap-link:hover span {
  -webkit-transform: translateY(-26px);
  transform: translateY(-26px);
  transition-duration: 0.5s;
}
.wrap-link span {
  color: #1f2022;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  transition-duration: 0.5s;
}
.wrap-link .link-hover {
  color: #1f2022;
  text-transform: uppercase;
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  transition-duration: 0.5s;
}
.link-text {
  position: relative;
  overflow: hidden;
  height: 20px;
}
.s-link {
  display: block;
}
.s-link a {
  position: relative;
  display: inline-block;
  text-decoration: unset;
}
.wrap-link.wrap-link-white span {
  color: #fff;
}
.wrap-link.wrap-link-white .link-hover {
  color: #fff;
}
.wrap-link.wrap-link-white:after {
  background-color: #fff;
}
/* Button */
.button-pos {
  font-family: 'Oswald', sans-serif;
  text-align: center;
  color: #1f2022;
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 3px;
  padding: 0 24px;
  font-size: 11px;
  transition-duration: 0.3s;
}
.button-pos span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #1f2022;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.button-pos:hover {
  color: #fff;
}
.button-pos:hover span {
  width: 220%;
  height: 565px;
}
.button-pos:active {
  background-color: #1f2022;
}
.circle-button .button-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 100%;
  padding: unset;
}
.white-button > a {
  color: #fff;
}
.white-button > a:hover {
  color: #1f2022;
  border-color: transparent;
}
.white-button .button-pos span {
  background-color: #fff;
}
.white-button .button-pos:active {
  background-color: #fff;
}
.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 24px;
  z-index: 11;
}
.header-white .header-logo {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header-logo img {
  height: 40px;
  width: auto;
}
.section {
  padding: 72px 0;
}
.main-title {
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.sub-title {
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 16px;
}
.sub-title-2 {
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 24px;
}
/* Slider Settings */
[class^="swiper-button-"] {
  transition: all 0.3s ease;
}
.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.main-slider {
  height: 100vh;
}
.swiper-container {
  width: 100%;
  min-height: 100vh;
  float: left;
  transition: opacity 0.6s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease;
  transition: opacity 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide .img-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-size: cover !important;
}
.swiper-slide .entity-img {
  display: none;
}
.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #000000;
}
.slider-content {
  width: 100%;
  z-index: 1;
}
.wrap-caption {
  overflow: hidden;
}
[class^="swiper-button-"] {
  width: 72px;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}
.swiper-button-next,
.swiper-button-prev {
  height: 36px;
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: none;
}
.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}
.slider-arrow:before {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  background-color: #ffffff;
  position: absolute;
}
.counter {
  font-family: 'Oswald', sans-serif;
  bottom: 24px;
  right: 130px;
  position: absolute;
  color: #ffffff;
}
.first-number {
  font-size: 60px;
  position: relative;
  display: inline-block;
  width: 100px;
  top: -14px;
  left: -100px;
}
.first-number span {
  position: absolute;
  right: 0;
}
.second-number {
  font-size: 24px;
  font-weight: 200;
}
.custom-pagination {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
}
.slider-arrow-text {
  font-family: 'Oswald', sans-serif;
  transition-duration: 0.5s;
  font-size: 18px;
  letter-spacing: 1px;
}
.swiper-button-prev:hover div .slider-arrow-text {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  transition-duration: 0.5s;
}
.swiper-button-next:hover div .slider-arrow-text {
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
  transition-duration: 0.5s;
}
/* Fullscreen Parallax Slider */
.parallax-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}
.parallax-slider .slider-content .main-title {
  color: #fff;
}
.parallax-slider .slider-content .sub-title-2 {
  color: #fff;
  font-weight: 300;
  text-transform: unset;
}
.parallax-slider .slider-content .white-button {
  margin-top: 24px;
}
.header-white {
  position: relative;
}
.header-white .headroom--top {
  background-color: transparent !important;
}
.header-white .headroom--top .color-menu {
  background: #fff;
}
.header-white .headroom--top .home-menu-text a:before {
  background-color: #fff;
}
.header-white .headroom--not-top .header-logo {
  -webkit-filter: unset;
          filter: unset;
}
.header-white .headroom--not-top .menu > .menu-item > a {
  color: #1f2022;
}
.header-white .headroom--not-top .menu > .menu-item:before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header-white .menu > .menu-item > a {
  color: #fff;
}
.header-white .menu > .menu-item:before {
  -webkit-filter: unset;
          filter: unset;
}
.header-white .parallax-slider-container .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.header-white .parallax-slider-container .social-icon .s-link {
  margin-right: 12px;
}
.header-white .parallax-slider-container .social-icon .wrap-link span {
  color: #fff;
}
.header-white .parallax-slider-container .social-icon .wrap-link:after {
  background-color: #fff;
}
.slider-text {
  width: 60%;
}
.parallax-slider .swiper-slide:before {
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #18191ba1 0%, rgba(255, 255, 255, 0) 100%);
}
/* Centered Slider */
.slider-v2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.slider-v2 .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}
.slider-v2 .swiper-slide .img-slider {
  position: relative;
  top: unset;
  left: unset;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: 3s cubic-bezier(0.085, 0.85, 0.17, 1);
}
.slider-v2 .swiper-slide .wrap-slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 70%;
  top: 10%;
  height: 85%;
}
.slider-v2 .swiper-slide .wrap-slider-content h6 {
  color: #1f2022;
  margin-bottom: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.slider-v2 .swiper-slide .wrap-slider-content h3 {
  color: #1f2022;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}
.slider-v2 .button-underline {
  margin-top: 56px;
}
.slider-v2 .counter {
  color: #1f2022;
  display: unset;
  justify-content: unset;
  align-items: unset;
  bottom: 28px;
  right: 100px;
  height: auto;
}
.centered-slider .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.centered-slider .social-icon .s-link {
  margin-right: 12px;
}
.centered-slider .slider-arrow {
  color: #1f2022;
}
.centered-slider .slider-arrow:before {
  background-color: #1f2022;
}
.centered-slider:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
}
.grab-slider-img {
  -webkit-clip-path: inset(40px 40px 40px 40px) !important;
          clip-path: inset(40px 40px 40px 40px) !important;
}
.carousel-slider-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.carousel-slider-container .swiper-slide-active.swiper-slide-active .wrap-slider-content h6,
.carousel-slider-container .swiper-slide-active.swiper-slide-active .wrap-slider-content h5 {
  opacity: 1;
}
.carousel-slider-container .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
}
.carousel-slider-container .swiper-slide .char {
  opacity: 0;
}
.carousel-slider-container .swiper-slide .img-slider {
  position: relative;
  top: unset;
  left: unset;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: 3s cubic-bezier(0.085, 0.85, 0.17, 1);
}
.carousel-slider-container .swiper-slide .wrap-slider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 70px;
  width: 80%;
  height: 85%;
}
.carousel-slider-container .swiper-slide .wrap-slider-content h6 {
  color: #1f2022;
  margin-bottom: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
  opacity: 0;
}
.carousel-slider-container .swiper-slide .wrap-slider-content h5 {
  color: #1f2022;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
  opacity: 0;
}
.carousel-slider-container .button-underline {
  margin-top: 56px;
}
.carousel-slider-container .counter {
  color: #1f2022;
  display: unset;
  justify-content: unset;
  align-items: unset;
  bottom: 28px;
  right: 100px;
  height: auto;
}
.carousel-slider .social-icon {
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
}
.carousel-slider .social-icon .s-link {
  margin-right: 12px;
}
/* Creative Agency */
.slider-why-choose-us {
  margin-top: 56px;
  min-height: 450px;
}
.slider-why-choose-us .wrap-slider-content {
  display: flex;
  height: 100%;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text .sub-title-2 {
  text-transform: unset;
  margin-bottom: 18px;
  line-height: 40px;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-text .sub-title-2 .slider-why-choose-us p .word {
  opacity: 0;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
  padding: 0 56px;
  width: 50%;
}
.slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img figure {
  border-radius: 2px;
  position: relative;
}
.slider-why-choose-us .swiper-button-prev,
.slider-why-choose-us .swiper-button-next {
  position: relative;
  top: unset;
  opacity: 1;
  visibility: visible;
  -webkit-transform: unset;
          transform: unset;
  height: 48px;
  width: 48px;
  background-size: 48px 48px;
  bottom: 0;
}
.slider-why-choose-us .swiper-button-prev,
.slider-why-choose-us .swiper-container-rtl .swiper-button-next {
  background-image: url('../icons/arrow-back-circle-outline.svg');
  left: -4px;
}
.slider-why-choose-us .swiper-button-next,
.slider-why-choose-us .swiper-container-rtl .swiper-button-prev {
  background-image: url('../icons/arrow-forward-circle-outline.svg');
  right: unset;
  left: 4px;
}
.slider-why-choose-us .wrap-swiper-icon-button {
  position: absolute;
  top: 0;
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 50%;
}
.slider-why-choose-us .counter {
  width: 50%;
  color: #1f2022;
  bottom: unset;
  right: unset;
  top: 32px;
}
.slider-why-choose-us .counter .first-number {
  font-size: 24px;
  position: relative;
  display: inline-block;
  width: unset;
  top: unset;
  left: unset;
}
.slider-why-choose-us .counter .first-number span {
  top: -23px;
}
/* Header Image */
.header-page-img .main-title {
  line-height: 1;
}
.section-our-mission h4 {
  text-transform: uppercase;
}
/* Header Page */
.header-page {
  overflow: hidden;
  position: relative;
  padding-top: 128px;
  height: 100vh;
  border-bottom: 1px solid #1f2022;
}
.header-page .container,
.header-page .row {
  height: 100%;
}
.header-img {
  position: absolute;
  top: 72px;
  right: 0;
  height: 100%;
  width: 50%;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 200px;
  z-index: -1;
}
.dsc-header {
  margin-bottom: 36px;
}
.header-content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.card-section .card {
  background-color: transparent;
  margin-top: 0;
  border-radius: 2px;
}
.card-section .card-group {
  margin-top: 56px;
}
.number-card {
  margin-left: 0;
  padding: 24px;
  text-align: right;
}
/* Tagline */
.tagline-section {
  border-top: solid 1px #cecece;
  border-bottom: solid 1px #cecece;
  padding-top: 56px;
  padding-bottom: 66px;
  overflow: hidden;
}
.tagline-marquee {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #d31e2f;
}
.tagline-marquee img {
  border-radius: 2px;
  height: 200px;
  margin-right: 28px;
}
.tagline-marquee .js-marquee {
  display: flex;
  align-items: center;
}
.tagline-marquee .js-marquee span {
  font-size: 200px;
  line-height: 1;
  margin-right: 28px;
}
/* Portfolio Layout 2 columns */
.project-img {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.project-img .img {
  width: 100%;
  height: 600px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition-duration: 0.3s;
}
.project-img .img:hover {
  -webkit-clip-path: inset(10px 10px 10px 10px);
          clip-path: inset(10px 10px 10px 10px);
  transition-duration: 0.3s;
  cursor: url('../icons/cursor_view_project.svg') 40 40, pointer !important;
}
.project-img > .img > div {
  width: 100%;
  height: 130%;
  background-position: top center !important;
  background-size: 130% !important;
  background-repeat: no-repeat !important;
}
.project-tem {
  margin-bottom: 60px;
}
.project-tem .info {
  margin-top: 12px;
}
.col-2-works {
  margin-top: 120px;
}
.parallax-works-grid {
  margin-top: 60px;
}
.parallax-works-grid .col-md-6:nth-child(1) {
  padding-left: 24px;
  padding-right: 72px;
}
.parallax-works-grid .col-md-6:nth-child(2) {
  padding-right: 24px;
  padding-left: 72px;
}
/* Clients Section */
.clients {
  position: relative;
  border-top: 1px solid #cecece;
  padding: 72px 0;
  background-color: #fbfbfb;
}
.clients-container {
  overflow: hidden;
}
/* Tagline Section */
.plx-tagline .container {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plx-tagline .main-title,
.plx-tagline .sub-title {
  color: #fff;
}
.plx-tagline .main-title {
  text-transform: unset;
}
.plx-tagline h4 {
  font-weight: 200;
  color: #fff;
  margin-bottom: 24px;
}
.plx-tagline {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.parallax-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -1px;
  background-position: top !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  height: 100%;
  z-index: -2;
}
/* Footer */
.footer {
  position: relative;
  background-color: #fbfbfb;
  border-top: 1px solid #cecece;
  padding-top: 72px;
  z-index: 0;
}
.footer-menu a {
  position: relative;
  color: #1f2022;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-decoration: none;
}
.footer-menu a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition-duration: 0.3s;
}
.footer-menu a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.footer-logo img {
  width: 50px;
}
.contacts-info span {
  display: block;
  font-weight: 300;
}
.copyright {
  text-align: center;
  border-top: 1px solid #cecece;
  font-size: 11px;
  margin-top: 72px;
  padding: 12px 0;
  letter-spacing: 1px;
}
/* Background Text */
.bg-text-header {
  padding-bottom: 72px;
  height: unset;
}
.bg-text-header .container {
  height: unset;
}
.bg-text {
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  font-size: 35vw;
  text-align: center;
  color: #d31e2f;
  font-weight: 600;
  letter-spacing: -5px;
}
.bg-text .char {
  -webkit-transform: translateX(270px);
          transform: translateX(270px);
}
/* Animation text */
.anim-txt {
  -webkit-perspective: 500px;
          perspective: 500px;
}
.anim-txt .word {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(100%) rotateX(-80deg);
          transform: translateY(100%) rotateX(-80deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.wrap-word {
  overflow: hidden;
  display: inline-block;
}
.el {
  display: inline-block;
  -webkit-transform-origin: left;
          transform-origin: left;
}
/* About Us Page */
.title-page-name {
  font-size: 10vw;
  line-height: 1;
}
.section-our-mission h3 {
  text-transform: uppercase;
  font-weight: 200;
  color: #fff;
}
.team-section-wrap .list-section {
  margin-top: 54px;
}
.list-section .list-section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list-section .data-img {
  width: 100%;
  height: 400px;
  background-position: center;
  background-size: cover;
  border-radius: 2px;
}
.list-section .row:nth-child(odd) .data-img {
  border-top-left-radius: 100px;
}
.list-section .row:nth-child(even) {
  text-align: right;
}
.list-section .row:nth-child(even) .social-icon {
  justify-content: flex-end;
}
.list-section .row:nth-child(even) .social-icon .s-link {
  margin-right: unset;
  margin-left: 12px;
}
.list-section .row:nth-child(even) .data-img {
  border-top-right-radius: 100px;
}
.list-section .sub-title-2 {
  font-weight: 900;
  margin-bottom: 0;
}
.list-section h6 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 300;
  margin-bottom: 14px;
}
.list-section .social-icon {
  margin-top: 56px;
  display: flex;
  text-align: left;
}
.list-section .social-icon .s-link {
  margin-right: 12px;
}
/* About Me */
.about-me-content {
  margin-top: 54px;
}
.about-me-content .data-img {
  width: 100%;
  height: 800px;
  /*border-radius: 2px;
  border-top-left-radius: 200px;*/
  background-position: center;
  background-size: cover;
}
.about-me-content .button {
  margin-top: 36px;
}
.expertise-content {
  margin-top: 54px;
}
.expertise-content .h3 {
  margin-bottom: 0;
  line-height: 1;
}
/* Services Page */
.services-section-wrap .list-section .data-img {
  background-size: 90%;
  background-repeat: no-repeat;
  border-radius: unset;
  border-top-left-radius: unset !important;
  border-top-right-radius: unset !important;
}
/* Pricing Plan Page */
.price-text h4 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0px;
  font-weight: 300;
}
.price-text h4 span {
  display: inline-block;
}
.price-text h3 {
  text-transform: uppercase;
  font-weight: 900;
}
.list-services li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 28px;
  font-weight: 800;
  text-transform: uppercase;
}
.list-services li span {
  margin-right: 6px;
}
.check-icon {
  display: inline-block;
  background-image: url('../icons/checkmark-circle-outline.svg');
  width: 20px;
  height: 20px;
}
.check-icon {
  display: inline-block;
  background-image: url('../icons/checkmark-circle-outline.svg');
  width: 20px;
  height: 20px;
}
.no-check-icon {
  display: inline-block;
  background-image: url('../icons/ellipse-outline.svg');
  width: 20px;
  height: 20px;
}
.price-item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #0000002d;
}
.default-plx h2 {
  color: #fff;
  text-transform: uppercase;
}
/* Page 404 */
.search-page {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.search-page .title-page-name {
  font-size: 200px;
  font-weight: 900;
  line-height: 1;
}
.search-page .title-page-name:before {
  content: '404';
  position: absolute;
  color: #1f2022;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1f2022;
  margin-left: 10px;
}
.wrap-search-content {
  width: 50%;
  text-align: center;
}
.wrap-search-content .header-content {
  height: unset;
  display: unset;
  justify-content: unset;
  flex-direction: unset;
}
.wrap-search-content .button {
  margin-top: 28px;
}
/* Portfolio Filter */
.item {
  width: 33.3333%;
  padding: 9px !important;
}
.filter-btn {
  margin-bottom: 26px;
  box-shadow: none !important;
}
#filter {
  text-align: center;
  padding-bottom: 26px;
}
#filter li {
  display: inline-block;
}
#filter a {
  position: relative;
  display: inline-block;
  margin: 0 7px;
  font-size: 12px;
  text-transform: uppercase;
  color: #1f2022;
  text-decoration: unset;
  letter-spacing: 0.1em;
  transition-duration: 0.5s;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}
#filter a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1f2022;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  transition-duration: 0.3s;
}
#filter a:hover:before {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
a.active-filter:before {
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
  opacity: 1 !important;
}
/* 1 Columns */
.item.column-1 {
  width: 100%;
  padding: 9px !important;
}
/* 2 Columns */
.item.column-2 {
  width: 50%;
  padding: 9px !important;
}
/* 3 Columns(defolt) */
.item {
  position: relative;
  width: 33.3333%;
  padding: 9px !important;
  overflow: hidden;
}
/* 4 Columns */
.item.column-4 {
  width: 25%;
  padding: 9px !important;
}
/*  Info Section */
.info {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  padding: 24px;
  background-color: rgba(25, 28, 31, 0.5);
  transition-duration: 0.5s;
}
.info h6 {
  color: #fff;
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 12px;
  font-weight: 300;
  transition-duration: 0.7s;
}
.info:before {
  content: "";
  width: 52px;
  height: 1px;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  transition-duration: 0.4s;
}
.info:after {
  content: "";
  width: 1px;
  height: 52px;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  transition-duration: 0.4s;
}
.item:hover .info:before {
  transition-timing-function: ease-out;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.item:hover .info:after {
  transition-timing-function: ease-out;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.wrap-item {
  position: relative;
  overflow: hidden;
}
.image-link-home {
  width: 100%;
  position: relative;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}
.image-link-home .img {
  overflow: hidden;
  cursor: pointer;
}
.image-link-home .img div,
.image-link-home .img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.item:hover .info {
  opacity: 1;
}
.item:hover .info h6 {
  letter-spacing: 0.2em;
}
.item:hover .img > div,
.item:hover .img > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.mfp-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
/* Portfolio Stack */
.stack-section {
  position: relative;
}
.stack-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  transition-duration: 0.05s;
  will-change: contents;
}
.stack-item .main-title,
.stack-item p {
  color: #fff;
}
.stack-item p {
  font-weight: 200;
}
.stack-item-info {
  position: relative;
  margin-bottom: 48px;
  z-index: 1;
}
.stack-item-info .button-link {
  margin-top: 14px;
}
.stack-item:after {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(1, 1, 15, 0.5) 0%, rgba(0, 0, 0, 0.3) 15%, rgba(255, 255, 255, 0) 50%);
  z-index: 0;
}
/* Portfolio List */
.list-portfolio {
  margin-top: 224px;
  text-decoration: none;
  color: #1f2022;
}
.list-portfolio-item {
  width: 100%;
  margin-bottom: 224px;
  display: inline-block;
}
.list-portfolio-item p {
  width: 70%;
}
.list-portfolio-item a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 400px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition-duration: 0.4s;
  border-radius: 2px;
}
.list-portfolio-item a:hover {
  -webkit-clip-path: inset(10px 10px 10px 10px);
          clip-path: inset(10px 10px 10px 10px);
}
.list-item-img {
  background-position: center;
  background-size: cover;
  background-repeat: none;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.list-portfolio a:hover {
  cursor: url('../icons/cursor_view_project.svg') 40 40, pointer !important;
}
.list-item-desc {
  display: flex;
  margin-top: 14px;
  margin-left: 28px;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.list-item-desc .number {
  display: inline-block;
  font-size: 60px;
  line-height: 1;
  margin-right: 28px;
  background-color: #fbfbfb;
  font-weight: 400;
}
.list-item-desc h4 {
  font-weight: 900;
}
.prlx-item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.prlx-item .data-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -1px;
  background-position: top !important;
  background-size: cover !important;
  transition-duration: 0.1s;
  will-change: contents;
  height: 145%;
  z-index: -2;
}
.prlx-item-info {
  color: #fff;
  position: absolute;
  bottom: 48px;
  z-index: 1;
  width: 50%;
}
.prlx-item-info p {
  font-weight: 200;
}
.prlx-item-info .button-link {
  margin-top: 14px;
}
/*Portfolio Standart 2-columns*/
.portfolio-2-col .image-link-home .img {
  display: flex;
  height: 600px;
  align-items: center;
  border-radius: 2px;
}
.portfolio-2-col a {
  text-decoration: none;
}
.portfolio-2-col .item.column-2 {
  padding: 7px 28px !important;
}
.project-info {
  text-align: center;
}
.project-info .sub-title-2 {
  margin-top: 7px;
  color: #1f2022;
}
/*Portfolio Standart 3-columns*/
.portfolio-3-col .image-link-home .img {
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.portfolio-3-col a {
  text-decoration: none;
}
.portfolio-3-col .item.column-3 {
  padding: 7px 28px !important;
}
.project-info {
  text-align: center;
}
.project-info .sub-title-2 {
  margin-top: 7px;
  color: #1f2022;
}
/* Single Project Page */
.contact-info h3,
.single-project-info h3 {
  margin-bottom: 14px;
}
.contact-info span,
.single-project-info span {
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 7px;
}
.contact-info p,
.single-project-info p {
  line-height: 22px;
}
.single-project-img {
  margin-top: 56px;
}
.single-project-img div:nth-child(3n) {
  margin-top: 28px;
}
.other-posts-content {
  margin-top: 56px;
}
.other-posts-content .post-link {
  text-decoration: none;
  text-align: center;
}
.other-posts-content .post-link h6 {
  color: #1f2022;
  position: relative;
  width: 100%;
  bottom: -307px;
}
.other-post-img {
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 300px;
  border-radius: 2px;
}
.other-posts-content div:nth-child(2n) .post-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-posts-content div:nth-child(3n) .post-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.other-projects-section {
  border-top: 1px solid #cecece;
}
/* Blog Page */
.latest-post {
  margin-bottom: 56px;
}
.latest-post-text h3 {
  color: #1f2022;
  margin-top: 14px;
  margin-bottom: 7px;
}
.latest-post-text a {
  text-decoration: none;
}
.latest-post-text .button-link {
  margin-top: 14px;
}
.blog-sidebar .search-block {
  margin-top: 24px;
}
.blog-sidebar h5 {
  margin-top: 14px;
}
.blog-sidebar a {
  color: #1f2022;
}
.arrows-obj {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
nav.navigation.pagination {
  display: inline-block;
  width: 100%;
}
.nav-links {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.arrows-obj span {
  color: #1f2022;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.4em;
  font-size: 18px;
  transition-duration: 0.5s;
}
span.page-numbers.current {
  position: relative;
}
a.next.page-numbers {
  float: right;
}
a.prev.page-numbers {
  float: left;
}
span.page-numbers.current .v-pagination {
  color: #1f2022;
  font-weight: 600;
}
.nav-links .v-pagination {
  position: relative;
  font-size: 16px;
  display: inline-block;
  padding: 12px 6px;
  margin-top: 4px;
}
.arrows-obj .arrow-right {
  position: relative;
  transition-duration: 0.5s;
}
.arrow-left,
.arrow-right {
  width: 56px;
}
.sidebar-tags li {
  display: inline-block;
  padding: 3px 18px;
  margin-bottom: 7px;
  border-radius: 100px;
  border: 1px solid #1f2022;
  transition-duration: 0.5s;
}
.tags a {
  text-decoration: none;
  font-weight: 400;
}
.sidebar-tags li:hover {
  background-color: #1f2022;
}
.sidebar-tags li:hover a {
  color: #fff;
}
/* Single Post Page */
.single-post-text-header .main-title {
  line-height: 0.8;
}
blockquote {
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 14px;
}
blockquote p {
  font-weight: 600;
  font-style: italic;
}
/* Contact Page */
.form-group {
  margin-bottom: 14px;
}
#contactForm {
  margin-top: 56px;
}
#map {
  height: 100%;
}
/* Media Queries For Responsive Design */
@media (max-width: 991.98px) {
  h2 {
    font-size: 36px;
  }
  .slider-text {
    width: 100%;
  }
  .slider-v2 h3 {
    font-size: 21px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content {
    width: 95%;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
    padding: 0 6px;
  }
  .parallax-works-grid .col-md-6:nth-child(1) {
    padding-right: 30px;
  }
  .parallax-works-grid .col-md-6:nth-child(2) {
    padding-left: 30px;
  }
  .project-img > .img > div {
    height: 130%;
    background-size: 130% !important;
  }
  .project-img .img {
    height: 450px;
  }
  .portfolio-2-col .image-link-home .img {
    height: 400px;
  }
  .portfolio-3-col .item.column-3 {
    padding: 3px 14px !important;
  }
  .other-post-img {
    width: 200px;
    height: 200px;
  }
  .other-posts-content .post-link h6 {
    bottom: -207px;
  }
}
@media (max-width: 767.98px) {
  .menu > .menu-item-has-children > .sub-menu {
    padding-top: 0;
    background-color: #1f2022;
    border: unset;
  }
  .menu > .menu-item-has-children:before {
    top: -8px;
    position: relative;
  }
  .hamburger {
    display: flex;
  }
  .home-menu-text {
    position: relative;
  }
  .home-menu-text .menu {
    flex-direction: column;
    position: absolute;
    height: 100vh;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    transition-duration: 0.3s;
  }
  .home-menu-text .menu.seen {
    background-color: #1f2022;
  }
  .menu {
    text-align: center;
  }
  .menu-item-has-children .sub-menu {
    position: relative;
  }
  .menu > li > a {
    font-size: 13px;
    line-height: 32px;
  }
  .sub-menu li a {
    font-size: 10px;
    color: #b7b7b7;
    font-weight: 300;
  }
  .sub-menu .menu-item-has-children .sub-menu {
    margin-left: 24px;
  }
  .home-menu-text .menu-item {
    display: block;
  }
  .menu-item:hover ul.sub-menu {
    display: none;
  }
  .header-white .headroom--not-top .menu > .menu-item > a {
    color: #fff;
  }
  .header-white .headroom--not-top .menu > .menu-item:before {
    -webkit-filter: unset;
            filter: unset;
  }
  .slider-content h1 {
    font-size: 60px;
  }
  .slider-why-choose-us .counter {
    top: 36px;
  }
  .carousel-slider-container .counter,
  .carousel-slider .social-icon,
  .centered-slider .social-icon {
    bottom: 6px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content h6 {
    font-size: 11px;
  }
  .carousel-slider-container .swiper-slide .wrap-slider-content h5 {
    font-size: 14px;
  }
  .project-img .img {
    height: 330px;
  }
  .parallax-works-grid .col-md-6:nth-child(1) {
    padding-right: 15px;
    padding-left: 12px;
  }
  .parallax-works-grid .col-md-6:nth-child(2) {
    padding-left: 15px;
    padding-right: 12px;
  }
  .header-img {
    height: 100%;
    width: 100%;
    border-radius: unset;
    top: 0;
  }
  .header-page-img .header-content {
    color: #fff;
  }
  .header-page-img {
    position: relative;
  }
  .header-page-img .main-title {
    font-size: 60px;
  }
  .header-page-img:after {
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    opacity: 0.3;
    z-index: -1;
  }
  .title-page-name {
    font-size: 12vw;
    line-height: 70px;
  }
  .team-section-wrap .list-section .sub-title-2 {
    margin-top: 14px;
  }
  .list-section .row:nth-child(odd) .data-img {
    border-top-left-radius: 2px;
  }
  .list-section .row:nth-child(even) {
    text-align: left;
  }
  .list-section .row:nth-child(even) .social-icon {
    justify-content: flex-start;
  }
  .list-section .row:nth-child(even) .social-icon .s-link {
    margin-right: 12px;
    margin-left: unset;
  }
  .list-section .row:nth-child(even) .data-img {
    border-top-right-radius: 2px;
  }
  .list-section .social-icon {
    margin-top: 28px;
  }
  .list-section .row:nth-child(n+2) {
    margin-top: 48px;
  }
  .about-me-content .data-img {
    margin-bottom: 14px;
  }
  .services-section-wrap .list-section .data-img {
    left: 0;
    right: 0;
    margin: auto;
    width: 300px;
    height: 300px;
    background-position: center;
    background-size: cover;
    text-align: center;
  }
  .services-section-wrap .list-section-text {
    text-align: center;
  }
  .services-section-wrap .list-section-text .sub-title-2 {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .price-item div:nth-child(2) {
    margin-top: 14px;
  }
  .price-item div:nth-child(3) {
    margin-top: 28px;
  }
  .price-item div {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .price-item p {
    width: 70%;
  }
  .wrap-search-content {
    width: 80%;
  }
  .wrap-grid-portfolio .item {
    width: 50%;
  }
  .list-portfolio-item {
    margin-bottom: 112px;
  }
  .list-portfolio-item a {
    height: 300px;
  }
  .prlx-item-info {
    width: 60%;
  }
  .portfolio-2-col .image-link-home .img {
    height: 300px;
  }
  .other-post-img {
    width: 300px;
    height: 300px;
  }
  .other-posts-content .post-link {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center !important;
  }
  .other-posts-content .post-link h6 {
    bottom: -307px;
  }
  .single-project-img div:nth-child(2n) {
    margin-top: 28px;
  }
  #map {
    margin-top: 56px;
    height: 400px;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 21px;
  }
  h4 {
    font-size: 18px;
  }
  .parallax-slider .counter,
  .carousel-slider-container .counter,
  .slider-v2 .counter {
    display: none;
  }
  .slider-why-choose-us .wrap-slider-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    text-align: center;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-text {
    width: 100%;
    color: #fff;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-text p {
    padding: 0 15px;
  }
  .slider-why-choose-us .counter {
    color: #fff;
    width: 100%;
    top: 74px;
  }
  .slider-why-choose-us .wrap-swiper-icon-button {
    width: 100%;
    justify-content: center;
    top: -24px;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    padding: unset;
  }
  .slider-why-choose-us .wrap-slider-content .why-choose-us-wrap-img figure {
    border-radius: unset;
  }
  .slider-why-choose-us .swiper-button-prev,
  .slider-why-choose-us .swiper-button-next {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  .why-choose-us-wrap-img:before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
  }
  .project-img .img {
    height: 600px;
  }
  .col-2-works {
    margin-top: 0;
  }
  a.footer-logo {
    margin-bottom: 48px;
    text-align: center;
    width: 100%;
    display: block;
  }
  .plx-tagline .main-title {
    font-size: 36px;
  }
  .title-page-name {
    font-size: 14vw;
  }
  .section-our-mission h3 {
    font-size: 21px;
  }
  .list-section .social-icon {
    margin-top: 14px;
  }
  .expertise-content .number,
  .expertise-content .h3 {
    font-size: 21px;
  }
  .search-page .title-page-name {
    font-size: 120px;
  }
  .prlx-item-info {
    width: 90%;
  }
  .portfolio-3-col .item.column-3,
  .portfolio-2-col .item.column-2 {
    width: 100%;
  }
  .portfolio-2-col .image-link-home .img {
    height: 100%;
  }
}
@media (max-width: 379.98px) {
  .project-img .img {
    height: 500px;
  }
  .services-section-wrap .list-section .data-img {
    width: 250px;
    height: 250px;
  }
}
