/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1. Common
2. Top Bar
3. Upper Header
4. Main Menu
5. Mobile Sidebar
6. Main Footer
7. Search Popup
8. Subscribe Box
9. Blog One
10. Pricing One
11. Contact One
12. Team One
13. Service One
14. Progress One
15. Project One
16. About One
17. Main Slider
18. Page Header
19. Brand
--------------------------------------------------------------*/

/*------------------------------------------------
--------------------------
1. Common
--------------------------
------------------------------------------------*/

/* font-family: 'Heebo', sans-serif;
font-family: 'Roboto', sans-serif; */

:root {
  --thm-font: "Heebo", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --special-font: "Poppins", sans-serif;
  --primary: #fe0040;
  --primary-rgb: 254, 0, 64;
  --black: #182c44;
  --black-rgb: 24, 44, 68;
  --text: #888888;
  --black-bg: #0a1829;
}

body {
  font-size: 16px;
  line-height: 1.87;
  color: var(--text);
  font-family: var(--heading-font);
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

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

.page-wrapper {
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* preloader */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--primary) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

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

/*
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
*/
/* thm btn */

.thm-btn {
  border: none;
  outline: none;
  display: inline-block;
  vertical-align: middle;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--heading-font);
  transition: 500ms;
  padding: 22.5px 44px;
}

.thm-btn i {
  margin-left: 10px;
}

.thm-btn:hover {
  background-color: var(--black);
  color: #fff;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

/* block title */

.block-title {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .block-title {
    margin-bottom: 55px;
  }
}

.block-title p {
  margin: 0;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
}

.block-title p span {
  position: relative;
  width: 35px;
  height: 5px;
  display: flex;
  margin-right: 10px;
}

.block-title>p::after {
  content: "";
  display: inline-block;
  width: 35px;
}

@media (min-width: 576px) {
  .col-sm-12>#contact {
    padding-top: 30px;
  }

  .block-title p {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .block-title p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .block-title p {
    font-size: 20px;
  }
}

.block-title p span::after,
.block-title p span::before {
  content: "";
  height: 1px;
  width: 25px;
  background-color: var(--primary);
  position: absolute;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: lineAnim;
}

.block-title p span::before {
  top: 0;
  left: 0;
}

.block-title p span::after {
  bottom: 0;
  animation-name: lineAnimReverse;
  right: 0;
}

@keyframes lineAnim {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(20%);
  }

  50% {
    transform: translateX(60%);
  }

  75% {
    transform: translateX(20%);
  }

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

@keyframes lineAnimReverse {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-20%);
  }

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

  75% {
    transform: translateX(-20%);
  }

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

.text-left.block-title p {
  justify-content: flex-start;
}

.block-title h1 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
}

@media (min-width: 576px) {
  .block-title h1 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .block-title h1 {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .block-title h1 {
    font-size: 40px;
    line-height: 1.325;
  }
}

.block-title h1 span {
  color: var(--primary);
  font-weight: 400;
}

.block-title h1 br {
  display: none;
}

@media (min-width: 576px) {
  .block-title h1 br {
    display: inherit;
  }
}

/* scroll to top */

.scroll-to-top {
  width: 45px;
  height: 45px;
  background: var(--primary);
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*------------------------------------------------
--------------------------
2. Top Bar
--------------------------
------------------------------------------------*/

.topbar {
  background-color: #b9d9ff;
}

.topbar .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 17px;
  text-align: center;
}

@media (min-width: 768px) {
  .topbar .container {
    padding-top: 17px;
    padding-bottom: 17px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .language-selector ul {
    margin: -7px 0;
  }
}

.topbar p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .topbar p {
    margin-bottom: 0;
  }

  .language-selector ul {
    margin: -7px 0;
  }
}

.topbar p i {
  margin-right: 10px;
  color: var(--primary);
}

.topbar-social {
  display: flex;
  align-items: center;
}

.topbar-social a {
  color: var(--black);
  font-size: 16px;
  transition: 500ms;
}

.topbar-social a:hover {
  color: var(--primary);
}

.topbar-social a+a {
  margin-left: 25px;
}

.language-selector ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}

.language-selector ul li+li {
  margin-left: 9px;
}

.language-selector ul li a {
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
}

.language-selector ul li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.language-selector ul li.active a {
  margin-left: 10px;
  margin-right: 5px;
}

.language-selector ul li.active a:after {
  position: absolute;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  top: -7px;
  left: -7px;
  background-color: #fff;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  content: "";
  z-index: -1;
  border-radius: 50%;
}

/*------------------------------------------------
--------------------------
3. Upper Header
--------------------------
------------------------------------------------*/

.upper-header .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.upper-header {
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .upper-header {
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .upper-header .container {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .upper-header .container {
    padding-top: 17.5px;
    padding-bottom: 17.5px;
  }
}

.upper-header .side-menu-toggler {
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
}

@media (min-width: 768px) {
  .upper-header .side-menu-toggler {
    margin-left: 15px;
  }
}

@media (min-width: 1200px) {
  .upper-header .side-menu-toggler {
    display: none;
  }
}

.upper-header .header-infos {
  display: none;
}

.upper-header .header-infos a {
  color: black !important;
}

@media (min-width: 768px) {
  .upper-header .header-infos {
    display: flex;
    align-items: center;
  }
}

.upper-header .header-info {
  padding-left: 41px;
  position: relative;
}

.upper-header .header-info+.header-info {
  margin-left: 30px;
}

@media (min-width: 992px) {
  .upper-header .header-info+.header-info {
    margin-left: 50px;
  }
}

.upper-header .header-info>i {
  font-size: 28px;
  color: var(--primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
}

.upper-header .header-info h3 {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: bold;
  font-family: var(--special-font);
  margin-bottom: 3px;
}

.upper-header .header-info p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  font-family: var(--special-font);
}

.upper-header .header-info h3 a {
  color: inherit;
  transition: 500ms;
}

.upper-header .header-info h3 a:hover {
  color: var(--primary);
}

/*------------------------------------------------
--------------------------
4. Main Menu
--------------------------
------------------------------------------------*/

.main-menu .container {
  background-color: var(--black);
  position: relative;
  display: none;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
  z-index: 11;
}

@media (min-width: 1200px) {
  .main-menu .container {
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (min-width: 1260px) {
  .main-menu .container {
    max-width: 1250px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.main-menu .main-menu__list>li {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
}

.main-menu .main-menu__list>li+li {
  margin-left: 55px;
}

.main-menu .main-menu__list>li>a {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 500ms;
}

/*.main-menu .main-menu__list > li.current > a,*/
.main-menu .main-menu__list>li:hover>a {
  color: var(--primary);
}

.main-menu .main-menu__list>li>a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: 5px;
}

.main-menu .main-menu__list>li>a:only-child::after {
  display: none;
}

.main-menu .main-menu__list li.search-btn i {
  font-size: 17px;
}

.main-menu__list li.cart-btn a {
  position: relative;
}

.main-menu__list li.cart-btn span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 10px;
  font-family: var(--thm-font);
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(50%);
  transition: background-color 500ms, color 500ms;
}

.main-menu__list li.cart-btn:hover span {
  background-color: #fff;
  color: var(--black);
}

.main-menu__list li.cart-btn i {
  font-size: 23px;
}

.main-menu .thm-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.main-menu .thm-btn:hover {
  background-color: #fff;
  color: var(--black);
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li+li {
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
}

.main-menu .main-menu__list li ul li a {
  font-size: 16px;
  line-height: 30px;
  color: var(--black);
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover>a {
  color: var(--primary);
}

.main-menu .main-menu__list li ul li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

/* after third level no menu */
.main-menu .main-menu__list li ul li>ul ul {
  display: none;
}

/* stricked menu */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--black);
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-110%);
  transition: all 0.4s ease;
}

@media (max-width: 1199px) {
  .stricked-menu {
    display: none;
  }
}

.stricked-menu.stricky-fixed {
  opacity: 1;
  transform: translateY(0%);
}

/* main menu two */
.main-menu__two:not(.stricked-menu) {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 767px) {
  .main-menu__two:not(.stricked-menu) {
    position: relative;
    top: 0;
    left: 0;
  }
}

.main-menu__two.stricked-menu {
  background-color: #fff;
}

.main-menu__two.stricked-menu .container {
  box-shadow: none;
}

.main-menu__two .container {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.05);
}

.main-menu__two .logo .mobile-nav__toggler {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
}

@media (max-width: 1199px) {
  .main-menu__two .logo .mobile-nav__toggler {
    display: flex;
    margin-left: 20px;
  }

  .main-menu__two .logo {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .main-menu__two .logo {
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: space-between;
    flex: 0 0 100%;
  }
}

.main-menu__two .main-menu__list {
  margin-left: auto;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .main-menu__two .main-menu__list {
    display: none;
  }
}

.main-menu__two .main-menu__list>li>a {
  color: var(--black);
}

.main-menu__two .thm-btn {
  position: relative;
  top: auto;
  right: auto;
  padding: 15.5px 32px;
  border-radius: 5px;
}

.main-menu__two .thm-btn:hover {
  background-color: var(--black);
  color: #fff;
}

.main-menu__two-btn-box {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 575px) {
  .main-menu__two-btn-box {
    display: none;
  }
}

/*------------------------------------------------
--------------------------
5. Mobile Sidebar
--------------------------
------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 999;
}

.mobile-nav__wrapper.expanded {
  transform: scale(1, 1);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--black-bg);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .thm-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #dddddd;
  cursor: pointer;
}

.mobile-nav__container {
  padding-bottom: 30px;
}

.mobile-nav__container .logo {
  display: none;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list {
  margin-bottom: 40px;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list ul li a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: #fff;
  font-size: .8rem;
  font-family: var(--heading-font);
  font-weight: bold;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--primary);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  border: none;
  outline: none;
  color: #fff;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

/*------------------------------------------------
--------------------------
6. Main Footer
--------------------------
------------------------------------------------*/

.main-footer {
  background-color: var(--black-bg);
}

.top-footer .row {
  flex-direction: column;
  align-items: center;
}

.top-footer .main {
  margin: 14px 0 10px;
  padding: 0 20px;
  cursor: default;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.top-footer .main>li {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 8px 0;
}

.top-footer .main>li>a {
  color: #fff;
  display: inline-block;
  padding-bottom: 1px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s linear;
}

.top-footer .main>li>a:hover,
.top-footer .main>li>a:focus {
  padding-bottom: 1px;
  border-bottom: 2px solid #fff;
}

.main-footer .top-footer {
  background-size: cover;
  color: #fff;
  padding: 6rem 0;
}

.upper-footer {
  padding-top: 70px;
  padding-bottom: 30px;
}

.main-footer .netsocials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-footer .netsocials a .fab {
  font-size: 1.3rem;
  text-align: center;
  background: transparent;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  margin-right: 1rem;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.main-footer .netsocials a .fa-facebook-f {
  background: transparent;
  color: #fff;
}

.main-footer .netsocials a .fa-facebook-f:hover {
  background: #3b5998;
  color: #fff;
}

.main-footer .netsocials a .fa-twitter {
  background: transparent;
  color: #fff;
}

.main-footer .netsocials a .fa-twitter:hover {
  background: #1da1f2;
  color: #fff;
}

.main-footer .netsocials a .fa-google-plus {
  background: transparent;
  color: #fff;
}

.main-footer .netsocials a .fa-google-plus:hover {
  background: #dd4b39;
  color: #fff;
}

.main-footer .netsocials a .fa-youtube {
  background: transparent;
  color: #fff;
  margin-right: 0px;
}

.main-footer .netsocials a .fa-youtube:hover {
  background: #cd201f;
  color: #fff;
}

.main-footer .netsocials a .fa-linkedin-in {
  background: transparent;
  color: #fff;
}

.main-footer .netsocials a .fa-linkedin-in:hover {
  background: #0275d8;
  color: #fff;
}

.main-footer .netsocials a .fa-instagram {
  background: transparent;
  color: #fff;
}

.main-footer .netsocials a .fa-instagram:hover {
  background: #0275d8;
  color: #fff;
}

.main-footer .contactus ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .contactus>ul>li {
  margin: 20px 15px 0;
}

.main-footer .contactus .info {
  display: flex;
}

.main-footer .contactus .info p {
  margin: 0;
  font-size: .9rem;
  color: #fff;
  margin-left: 1rem;
  line-height: 1.1;
  font-weight: 300;
  text-align: center;
}

.main-footer .contactus ul li .fas {
  position: relative;
  top: -1px;
  font-size: 1rem;
  color: #fe0040;
}

.main-footer .contactus ul li .fa-phone {
  transform: scaleX(-1);
}


/*Custom Media Query -- Start */

@media (min-width: 200px) {

  .page-header .container h2 {

    font-size: 22px;
  }
}

/*Custom Media Query -- End */
@media (min-width: 992px) {
  .upper-footer {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

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

.footer-widget__title {
  margin: 0;
  color: #dddddd;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.footer-widget hr {
  border-color: #444444;
  border-width: 1px;
  margin: 0;
}

.footer-widget__about hr {
  margin-bottom: 40px;
  margin-top: 15px;
}

.footer-widget p {
  margin: 0;
  color: #dddddd;
}

.footer-widget__about a {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 14px;
  display: inline-block;
  transition: 500ms;
  vertical-align: middle;
}

.footer-widget__about p {
  margin-top: 26px;
  margin-bottom: 10px;
}

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

.footer-widget__about a i {
  font-size: 12px;
  margin-left: 8px;
}

@media (min-width: 1199px) {
  .footer-widget__links-widget {
    position: relative;
    left: 30px;
  }

  .footer-widget__contact {
    left: 30px;
    position: relative;
  }
}

.footer-widget__social {
  display: flex;
  align-items: center;
}

.footer-widget__social a {
  font-size: 13px;
  color: #808080;
  transition: 500ms;
}

.footer-widget__social a+a {
  margin-left: 20px;
}

.footer-widget__social a:hover {
  color: var(--primary);
}

.footer-widget ul {
  margin-bottom: 0;
}

.footer-widget__contact-list {
  margin-top: 30px;
}

.footer-widget__contact-list li+li {
  margin-top: 29px;
}

.footer-widget__contact-list li a {
  position: relative;
  display: block;
  padding-left: 25px;
  font-size: 16px;
  color: #dddddd;
  line-height: 1em;
  transition: 500ms;
}

.footer-widget__contact-list li a:hover {
  color: var(--primary);
}

.footer-widget__contact-list li a i {
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-widget__links {
  margin-top: -5px;
}

.footer-widget__links li+li {
  margin-top: 24px;
}

.footer-widget__links li a {
  position: relative;
  color: #dddddd;
  transition: 500ms;
  display: block;
  line-height: 1em;
}

.footer-widget__links li a:hover {
  color: var(--primary);
}

.footer-widget__contact>p {
  margin-top: -15px;
}

.footer-widget__gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-widget__gallery li img {
  width: 100%;
}

.bottom-footer .inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid #444444;
  padding-top: 20px;
  padding-bottom: 20px;
}

.bottom-footer p {
  margin: 0;
  color: #dddddd;
  font-size: 14px;
}

@media (min-width: 768px) {
  .bottom-footer .inner-container {
    padding-top: 36.5px;
    padding-bottom: 36.5px;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
}

.footer-menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-menu li+li {
  margin-left: 15px;
}

@media (min-width: 768px) {
  .footer-menu li+li {
    margin-left: 25px;
  }
}

.footer-menu li a {
  color: #dddddd;
  font-size: 14px;
  transition: 500ms;
}

.footer-menu li a:hover {
  color: var(--primary);
}

/*------------------------------------------------
--------------------------
7. Search Popup
--------------------------
------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  color: var(--text);
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.search-popup__content .thm-btn i {
  margin: 0;
}

/*------------------------------------------------
--------------------------
8. Subscribe Box
--------------------------
------------------------------------------------*/

.subscribe-box {
  background-color: var(--black);
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.subscribe-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  background-image: url(../images/icons/subscribe-box-bg-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.subscribe-box .container {
  position: relative;
}

.subscribe-box__content h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .subscribe-box__content h3 {
    font-size: 22px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .subscribe-box__content h3 {
    font-size: 40px;
  }
}

@media (min-width: 576px) {
  .subscribe-box__content {
    position: relative;
    padding-left: 130px;
    margin-bottom: 20px;
  }

  .subscribe-box__content>img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 992px) {
  .subscribe-box__content {
    margin-bottom: 0;
    padding-left: 110px;
  }
}

@media (min-width: 1200px) {
  .page-header .container h2 {

    font-size: 38px;
  }

  .subscribe-box__content {
    padding-left: 120px;
  }
}

.subscribe-box__content p {
  margin: 0;
  font-weight: 300;
  color: #fff;
}

.subscribe-box__form {
  margin-top: 20px;
  position: relative;
}

@media (min-width: 992px) {
  .subscribe-box__form {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .subscribe-box__form {
    margin-left: 100px;
  }
}

.subscribe-box__form input[type="text"],
.subscribe-box__form input[type="email"] {
  width: 100%;
  height: 55px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-left: 25px;
}

@media (min-width: 992px) {

  .subscribe-box__form input[type="text"],
  .subscribe-box__form input[type="email"] {
    height: 66px;
  }
}

.subscribe-box__form .thm-btn {
  border-radius: 5px;
  width: 100%;
  margin-top: 15px;
  height: 55px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

@media (min-width: 992px) {
  .subscribe-box__form .thm-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    height: 66px;
    max-width: 150px;
    height: 54px;
    font-size: 18px;
    margin-top: 0;
  }
}

/*------------------------------------------------
--------------------------
9. Blog One
--------------------------
------------------------------------------------*/

.blog-one {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .blog-one {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.blog-one__blog-page .blog-one__single {
  margin-bottom: 30px;
}

.blog-one__blog-page {
  padding-bottom: 110px;
}

.load-more__box {
  margin-top: 30px;
}

.blog-one__image img {
  width: 100%;
  height: 250px;
  transition: transform 500ms ease, opacity 500ms ease;
}

.blog-one__image {
  overflow: hidden;
  position: relative;
  background-color: var(--black);
}

.blog-one__image>span {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 576px) {
  .blog-one__image>span {
    top: 20px;
    left: 20px;
  }
}

@media (min-width: 992px) {
  .blog-one__image>span {
    top: 30px;
    left: 30px;
  }
}

.blog-one__single:focus .blog-one__image img,
.blog-one__single:active .blog-one__image img,
.blog-one__single:hover .blog-one__image img {
  opacity: 0.7;
  transform: scale(1.05);
}

.blog-one__single {
  background-color: #fff;
  box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.1);
}

.blog-one__content {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 992px) {
  .blog-one__content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.blog-one__meta {
  display: flex;
  margin-bottom: 0;
  margin-bottom: 5px;
  align-items: center;
}

.blog-one__meta a {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .blog-one__meta a {
    font-size: 15px;
  }
}

.blog-one__meta li+li {
  margin-left: 10px;
}

@media (min-width: 992px) {
  .blog-one__meta li+li {
    margin-left: 20px;
  }
}

.blog-one__meta a i {
  font-size: 13px;
  color: var(--primary);
  margin-right: 10px;
}

@media (min-width: 768px) {
  .blog-one__meta a i {
    font-size: 14px;
  }
}

.blog-one__content h1 {
  margin: 0;
  font-size: 18px !important;
  line-height: 1.25;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .blog-one__content h1 {
    font-size: 20px !important;
  }
}

@media (min-width: 992px) {
  .blog-one__content h1 {
    font-size: 22px !important;
    margin-bottom: 15px;
  }
}

.blog-one__content h4 a {
  color: inherit;
  transition: 500ms;
}

.blog-one__content h4 a:hover {
  color: var(--primary);
}

.blog-one__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .blog-one__content p {
    font-size: 16px;
  }
}

.blog-one__more {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  transition: 500ms;
}

.blog-one__more:hover {
  color: var(--black);
}

@media (min-width: 992px) {
  .blog-one__more {
    font-size: 18px;
  }
}

.blog-one__more i {
  font-size: 14px;
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.blog-one .swiper-container {
  display: flex;
}

.blog-one .swiper-wrapper {
  height: auto;
}

.blog-one .swiper-slide,
.blog-one .row>.col-lg-4 {
  display: flex;
}

@media (min-width: 992px) {
  .blog-one__more i {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .blog-one .swiper-container {
    overflow: visible;
  }
}

.blog-details {
  padding-top: 120px;
  padding-bottom: 80px;
}

.blog-details .blog-one__content img {
  object-fit: contain;
}

.blog-details>.container>.row {
  justify-content: center;
}

@media (min-width: 992px) {
  .blog-details {
    padding-bottom: 120px;
  }
}

.blog-details .blog-one__single {
  box-shadow: none;
}

.blog-details .blog-one__content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.blog-one__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  justify-content: center;
}

@media (min-width: 992px) {
  .blog-one__share {
    justify-content: space-between;
  }
}

.blog-one__tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .blog-one__tags {
    margin-bottom: 0;
  }
}

.blog-one__tags span {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}

.blog-one__tags a {
  color: var(--text);
  transition: all 500ms ease;
  margin-left: 10px;
  transition: all 500ms ease;
}

.blog-one__tags a:hover {
  color: var(--primary);
}

.blog-one__social {
  display: flex;
  align-items: center;
  margin-left: -10px;
}

.blog-one__social a {
  font-size: 14px;
  margin-left: 10px;
  transition: all 500ms ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-bg);
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

.blog-one__social a:hover {
  background-color: var(--primary);
}

.blog-one__hr {
  border-color: #dddddd;
  border-width: 1px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.blog-one__post-paginations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}

.blog-one__post-paginations a {
  flex: 0 0 50%;
  font-size: 20px;
  color: var(--black);
  transition: all 500ms ease;
  font-weight: 500;
  line-height: 1.4em;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 500ms ease;
}

.blog-one__post-paginations a:hover {
  color: var(--primary);
}

.blog-one__post-paginations a:hover span {
  color: var(--text);
}

.blog-one__post-paginations a:last-child {
  text-align: right;
}

.blog-one__post-paginations a>span {
  display: block;
  font-size: 16px;
  color: var(--text);
}

.comment-one {
  padding-top: 60px;
}

.comment-form .block-title,
.comment-one .block-title {
  margin-bottom: 40px;
}

.comment-form .block-title h3,
.comment-one .block-title h3 {
  font-size: 30px;
}

.comment-one__single {
  display: flex;
  margin-bottom: 40px;
  flex-direction: column;
}

@media (min-width: 992px) {
  .comment-one__single {
    flex-direction: row;
  }
}

.comment-one__single>i {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: rgba(var(--black-rgb), 0.5);
  background-color: rgba(234, 234, 234, 1);
  margin-right: 30px;
  border-radius: 50%;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .comment-one__single>i {
    margin-bottom: 0;
  }
}

.comment-one__content {
  position: relative;
}

.comment-one__content h3 {
  font-size: 20px;
  color: var(--black);
  margin: 0;
  font-weight: 500;
}

.comment-one__content p {
  margin: 0;
}

.comment-one__content span {
  display: block;
  color: var(--black);
  font-size: 15px;
  opacity: 0.8;
  margin-top: 5px;
}

.comment-one__content .thm-btn {
  padding: 9.5px 29px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  background-color: var(--black);
}

.comment-one__content .thm-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.comment-one__content hr {
  border-color: #dddddd;
  border-width: 1px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.comment-form {
  margin-top: 20px;
}

.comment-form textarea,
.comment-form input[type="text"] {
  width: 100%;
  display: block;
  height: 60px;
  padding-left: 30px;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: rgba(234, 234, 234, 0.35);
  color: var(--text);
  margin-bottom: 30px;
}

.comment-form textarea {
  height: 175px;
  padding-top: 15px;
}

.comment-form input[type="text"]::placeholder {
  color: var(--text);
}

.comment-form .thm-btn {
  padding: 15.5px 44px;
}

.blog-sidebar {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .blog-sidebar {
    margin-top: 0;
  }
}

.blog-sidebar__single {
  margin-bottom: 40px;
}

.blog-sidebar__single h3 {
  margin: 0;
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 25px;
}

.blog-sidebar__search form {
  width: 100%;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.blog-sidebar__search form input[type="search"],
.blog-sidebar__search form input[type="text"] {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--black);
  color: #ffffff;
  font-size: 16px;
  padding-left: 30px;
  border: none;
  outline: none;
}

.blog-sidebar__search form input[type="search"]::placeholder,
.blog-sidebar__search form input[type="text"]::placeholder {
  color: #fff;
}

.blog-sidebar__search form button[type="submit"] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: var(--primary);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
}

.blog-sidebar__categories-list {
  margin-top: -15px;
}

.blog-sidebar__categories-list li {
  position: relative;
  border-top: 1px solid #dddddd;
}

.blog-sidebar__categories-list li:first-child {
  border-top: 0;
}

.blog-sidebar__categories-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--black-rgb), 0.5);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.blog-sidebar__categories-list li:hover::before {
  background-color: rgba(var(--black-rgb), 1);
}

.blog-sidebar__categories-list li a {
  display: block;
  color: var(--text);
  font-size: 16px;
  padding-left: 25px;
  line-height: 40px;
  transition: all 500ms ease;
}

.blog-sidebar__categories-list li:hover a {
  color: var(--primary);
}

.blog-sidebar__posts-list {}

.blog-sidebar__posts-list li {
  display: flex;
  margin-top: 20px;
}

.blog-sidebar__posts-list li>img {
  width: 83px;
  height: 83px;
  flex-shrink: 0;
  margin-right: 20px;
}

.blog-sidebar__posts-list li h4 {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.4;
}

.blog-sidebar__posts-list li h4 a {
  color: inherit;
  transition: all 500ms ease;
}

.blog-sidebar__posts-list li h4 a:hover {
  color: var(--primary);
}

.blog-sidebar__posts-list li span {
  color: var(--text);
  font-size: 15px;
  display: block;
  margin-top: 5px;
}

.blog-sidebar__tags-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}

.blog-sidebar__tags-list li {
  margin-left: 10px;
}

.blog-sidebar__tags-list li a {
  color: var(--text);
  font-size: 16px;
  transition: all 500ms ease;
}

.blog-sidebar__tags-list li a:hover {
  color: var(--black);
}

/*------------------------------------------------
--------------------------
10. Pricing One
--------------------------
------------------------------------------------*/

.pricing-one {
  padding-top: 80px;
}

.pricing-one__contact-page {
  padding-bottom: 140px;
}

@media (min-width: 992px) {
  .pricing-one {
    padding-top: 140px;
  }
}

.pricing-one__single {
  text-align: center;
  border-top: 1px solid #f2f2f2;
  box-shadow: 0px 14px 47px 0px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .pricing-one__single {
    padding-bottom: 40px;
  }
}

.pricing-one__top h3 {
  margin: 0;
  color: var(--black);
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pricing-one__top h3 {
    font-size: 32px;
  }
}

@media (min-width: 992px) {
  .pricing-one__top h3 {
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
}

.pricing-one__top h3 span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--thm-font);
  margin-left: 5px;
}

.pricing-one__name {
  background-color: var(--black);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .pricing-one__name {
    font-size: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

.pricing-one__list {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .pricing-one__list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.pricing-one__list li {
  font-size: 15px;
  color: #777777;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-one__list li {
    font-size: 16px;
  }
}

.pricing-one__list li+li {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .pricing-one__list li+li {
    margin-top: 25px;
  }
}

.pricing-one__list li i {
  color: var(--primary);
  margin-right: 10px;
}

@media (min-width: 768px) {
  .pricing-one__list li i {
    margin-right: 20px;
  }
}

.pricing-one__single .thm-btn {
  padding: 10.5px 30px;
  background-color: var(--black);
}

.pricing-one__single .thm-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.pricing-one__single.popular .thm-btn {
  background-color: var(--primary);
}

.pricing-one__single.popular .thm-btn:hover {
  background-color: var(--black);
}

@media (min-width: 992px) {
  .pricing-one__single .thm-btn {
    font-size: 19px;
    font-weight: 500;
    padding: 8px 37px;
  }

  .pricing-one__single .thm-btn i {
    font-size: 18px;
  }
}

.pricing-one__single.popular .pricing-one__name {
  background-color: var(--primary);
}

@media (min-width: 1200px) {
  .pricing-one .swiper-container {
    overflow: visible;
  }
}

/*------------------------------------------------
--------------------------
11. Contact One
--------------------------
------------------------------------------------*/

.contact-one .inner-container {
  background-color: #fff;
  position: relative;
}

@media (min-width: 992px) {
  .contact-one .inner-container {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -275px;
    position: relative;
    z-index: 10;
  }
}

.contact-one__form {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .contact-one__form {
    margin-top: 0;
    padding-bottom: 40px;
    padding-left: 30px;
  }
}

.contact-one__contact-page {
  padding-bottom: 120px;
}

.contact-one__form h3 {
  margin: 0;
  color: var(--black);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .contact-one__form h3 {
    font-size: 40px;
    margin-bottom: 55px;
    padding-top: 40px;
  }
}

.contact-one__person {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .contact-one__person {
    position: absolute;
    bottom: 0;
    left: 0px;
    margin-top: 0;
  }
}

.contact-one__form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-one__form .form-group input[type="text"],
.contact-one__form .form-group textarea,
.contact-one__form .form-group input[type="email"] {
  width: 100%;
  height: 55px;
  display: block;
  border: none;
  outline: none;
  border-bottom: 1px solid #dddddd;
  display: block;
  color: var(--text);
  font-size: 16px;
  background-image: none !important;
}

.contact-one__form .form-group textarea {
  height: 130px;
  padding-top: 10px;
}

.contact-one__form ::placeholder {
  opacity: 1;
  color: var(--text);
}

.contact-one__form .form-group i {
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 16px;
  color: var(--text);
}

.contact-one__form .thm-btn {
  padding: 15.5px 38px;
}

@media (min-width: 992px) {
  .contact-one__form .thm-btn {
    margin-top: 30px;
  }
}

.contact-one__top {
  background-color: var(--black);
  text-align: center;
  padding-top: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.contact-one__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.33;
}

.contact-one__top .container {
  position: relative;
}

@media (min-width: 992px) {
  .contact-one__top {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 300px;
  }
}

.contact-one__top-two {
  padding-top: 300px;
}

.contact-one__top .block-title h3,
.contact-one__top .block-title p {
  color: #fff;
}

@media (min-width: 992px) {
  .contact-one__top .block-title p {
    justify-content: flex-start;
  }
}

.contact-one__top .block-title h3 {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .contact-one__top .block-title {
    padding-left: 40px;
  }

  .contact-one__top .block-title h3 {
    padding-left: 0;
    padding-right: 0;
  }
}


/*----------------------------------------*/
/*  Contact Us page
/*----------------------------------------*/
.map-area {
  padding-top: 90px;
}

#googleMap>iframe {
  outline-width: 0;
}

.contact-icon {
  overflow: hidden;
}

.single-contact a {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  font-size: 16px;
}

.contact-page .single-contact {
  float: left;
  width: 50%;
}

.area-padding {
  padding: 100px 0px;
}

.contact-page .row::after {
  content: "";
  clear: both;
  display: block;
}

.contact-head {
  color: #444;
  background: #fff;
  padding: 30px 30px;
  border: 1px solid #ddd;
}

.contact-page .single-contact a i {
  float: left;
  color: #fff;
  font-size: 15px;
  margin-right: 15px;
  line-height: 33px;
  width: 34px;
  height: 34px;
  background: var(--primary);
  text-align: center;
  border-radius: 3px;
}

.contact-head h3 {
  font-weight: 600;
  font-size: 26px;
}

.contact-head p {
  font-size: 16px;
}

.contact-form {
  width: 100%;
}

.contact-form .col-md-6 {
  float: left;
}

.contact-form .col-md-12 {
  clear: both;
}

.contact-form .form-control {
  font-size: 14px;
  line-height: 1.42857143;
  font-family: inherit;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 44px;
  margin-bottom: 15px;
  padding-left: 20px;
  width: 100%;
}

.contact-form textarea#message {
  border: 1px solid #ccc;
  border-radius: 0px;
  height: 180px;
  padding: 20px;
  width: 100%;
}

.contact-page .contact-btn {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin-top: 5px;
  padding: 10px 40px;
  transition: 0.4s;
  width: auto;
  float: left;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  height: 43px;
}

.contact-page .contact-btn:hover {
  background: #222;
  border: 2px solid #222;
  color: var(--primary);
  transition: 0.4s;
}

.map-area {
  padding-top: 90px;
}

.contact-icon {
  overflow: hidden;
}

.contact-page .single-contact h5,
.contact-page .single-contact span {
  color: #444;
}

.contact-page .single-contact h5 {
  margin-bottom: 15px;
}

.single-contact a {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  font-size: 16px;
}

.contact-page .single-contact {
  float: left;
  width: 50%;
}

@media (max-width: 991px) {
  .contact-page .col-md-5 {
    flex: 0 0 100%;
    max-width: none;
  }

  .contact-page .col-md-7 {
    flex: 0 0 100%;
    max-width: none;
  }

  .contact-head {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact-head {
    padding: 40px 15px 0px;
    margin-top: 30px;
  }

  .contact-page .single-contact {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-icon {
    padding: 20px 5px;
    margin-bottom: 0px;
  }
}

/*------------------------------------------------
--------------------------
12. Team One
--------------------------
------------------------------------------------*/

.team-one {
  padding-top: 85px;
  padding-bottom: 85px;
}

@media (min-width: 992px) {
  .team-one {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.team-one__4-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .team-one__4-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .team-one__4-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.team-one__image {
  position: relative;
}

.team-one__social {
  position: absolute;
  top: 50%;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: all 500ms ease;
}

.team-one__single:hover .team-one__social {
  opacity: 1;
  visibility: visible;
}

.team-one__social a {
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  background-color: var(--black);
  color: #fff;
  font-size: 17px;
  text-align: center;
  transition: all 500ms ease;
}

.team-one__social a:hover {
  background-color: var(--primary);
  color: #fff;
}

.team-one__social a+a {
  margin-top: 10px;
}

.team-one__image>img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.team-one__content {
  text-align: center;
}

.team-one__content h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  margin: 0;
  margin-top: 25px;
  margin-bottom: 5px;
}

.team-one__content p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

/*------------------------------------------------
--------------------------
13. Service One
--------------------------
------------------------------------------------*/

.service-one {
  background-color: var(--black);
  padding-top: 85px;
  padding-bottom: 85px;
  background-image: url(../images/icons/service-bg-1-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 992px) {
  .service-one {
    padding-top: 140px;
    padding-bottom: 105px;
  }
}

.service-one__service-page {
  background-color: #fff;
  background-image: unset;
  padding-top: 140px;
  padding-bottom: 140px;
}

.service-one .block-title p,
.service-one .block-title h3 span,
.service-one .block-title h3 {
  color: #fff;
}

.service-one__3-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .service-one__3-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .service-one__3-col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-one__single {
  position: relative;
  transition: 500ms ease;
}

@media (min-width: 768px) {
  .service-one__single {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 130px;
    padding-right: 30px;
  }

  .service-one__single:hover {
    background-color: #fff;
  }
}

.service-one__single>i {
  font-size: 65px;
  color: #fff;
}

.service-one__service-page .service-one__single>i {
  color: var(--primary);
}

@media (min-width: 768px) {
  .service-one__single>i {
    position: absolute;
    top: 35px;
    left: 30px;
    transition: 500ms;
  }

  .service-one__single:hover>i {
    color: var(--primary);
  }
}

.service-one__single h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-one__service-page .service-one__single h3 {
  color: var(--black);
}

@media (min-width: 768px) {
  .service-one__single h3 {
    margin-top: 0;
    transition: 500ms;
    font-size: 22px;
  }

  .service-one__single:hover h3 {
    color: var(--black);
  }
}

.service-one__single p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}

.service-one__service-page .service-one__single p {
  color: #888888;
}

@media (min-width: 768px) {
  .service-one__single p {
    transition: 500ms;
  }

  .service-one__single:hover p {
    color: var(--text);
  }
}

/*------------------------------------------------
--------------------------
14. Progress One
--------------------------
------------------------------------------------*/

.circle-progress__wrap {
  padding-top: 140px;
}

.circle-progress__two {
  padding-bottom: 140px;
}

.circle-progress__4-col {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .circle-progress__4-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .circle-progress__4-col {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.circle-progress__single {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.circle-progress {
  width: 230px;
  height: 230px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  box-shadow: 0px 19px 54px 0px rgba(0, 0, 0, 0.02);
}

.circle-progress>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
  font-family: var(--heading-font);
  color: var(--primary);
}

.circle-progress>canvas {
  height: 100%;
  display: block;
}

.circle-progress__single h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: var(--black);
  display: block;
  margin-top: 30px;
}

/*------------------------------------------------
--------------------------
15. Project One
--------------------------
------------------------------------------------*/

.project-one {
  padding-top: 85px;
}

@media (min-width: 992px) {
  .project-one {
    padding-top: 140px;
  }
}

.project-one__top {
  margin-bottom: 50px;
}

.project-one__top .block-title {
  margin-bottom: 0;
}

.project-one__top-text {
  margin: 0;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .project-one__top-text {
    margin-top: 0;
  }
}

.project-one .thm-swiper__slider {
  width: 100%;
  max-width: 960px;
}

@media (min-width: 992px) {
  .project-one .thm-swiper__slider {
    overflow: visible;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.project-one__single {
  position: relative;
  overflow: hidden;
}

.project-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.12;
}

.project-one__content {
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 20px;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
}

.project-one__single:hover .project-one__content {
  opacity: 1;
  transform: translateY(0%);
  visibility: visible;
}

@media (min-width: 576px) {
  .project-one__content {
    width: 100%;
    max-width: 450px;
    min-height: 86px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}

.project-one__single>img {
  width: 100%;
}

@media (min-width: 992px) {
  .project-one__content {
    bottom: 30px;
    padding-left: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.project-one__content p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .project-one__content p {
    font-size: 18px;
  }
}

.project-one__content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

@media (min-width: 992px) {
  .project-one__single h3 {
    font-size: 24px;
  }
}

.project-one__link {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
  color: var(--primary);
  background-color: #fff;
  transition: 500ms;
}

.project-one__link:hover {
  background-color: var(--black);
  color: #fff;
}

@media (min-width: 576px) {
  .project-one__link {
    position: absolute;
    top: 0;
    right: 0;
    width: 86px;
    margin-top: 0;
    height: 86px;
  }
}

@media (min-width: 992px) {
  .project-one__link {
    width: 112px;
    height: 112px;
    font-size: 49px;
    right: auto;
    left: 100%;
  }
}

/*------------------------------------------------
--------------------------
16. About One
--------------------------
------------------------------------------------*/

.about-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-one__images {
  width: 100%;
  max-width: 576px;
  position: relative;
  right: 70px;
}

@media (max-width: 1199px) {
  .about-one__images {
    margin-bottom: 180px;
    right: 0;
  }
}

@media (max-width: 425px) {
  .about-one__images {
    margin-bottom: 50px;
  }
}

.about-one__images img:nth-child(2) {
  position: absolute;
  top: 150px;
  right: 0;
}

@media (max-width: 425px) {
  .about-one__images img:nth-child(2) {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
  }
}

.about-one__images-content {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  width: 100%;
  max-width: 263px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 130px;
  text-align: center;
}

@media (max-width: 575px) {
  .about-one__images {
    margin-bottom: 59px;
  }

  .about-one__images img:nth-child(1) {
    display: none;
  }

  .about-one__images img:nth-child(1)+img {
    position: static;
    display: block;
    margin-top: 0;
    width: 100%;
  }

  .about-one__images-content {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 30px;
  }
}

.about-one__images-content h3 {
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 17px;
}

.about-one__images-content p {
  margin: 0;
  line-height: 1;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

.about-one__content .thm-btn {
  padding: 14.5px 38px;
}

.about-one__content>p {
  margin: 0;
  font-size: 16px;
  color: #888888;
  margin-bottom: 35px;
  line-height: 1.75;
}

.about-one__content .block-title {
  margin-bottom: 20px;
}

.about-one__box {
  display: flex;
  margin-top: 20px;
}

.about-one__box>i {
  font-size: 36px;
  color: var(--primary);
  margin-right: 26px;
}

.about-one__box-content h2 {
  margin: 0;
  font-weight: bold;
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 15px;
}

.about-one__box-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #888888;
}

.about-one__call {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 425px) {
  .about-one__call {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-one__call-box {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 425px) {
  .about-one__call-box {
    margin-left: 0;
    margin-top: 30px;
  }
}

.about-one__call-box>i {
  font-size: 33px;
  color: var(--primary);
  margin-right: 15px;
}

.about-one__call-box p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  line-height: 30px;
}

.about-one__call-box p a {
  font-weight: bold;
  font-size: 22px;
  color: var(--black);
}

/*------------------------------------------------
--------------------------
17. Main Slider
--------------------------
------------------------------------------------*/

.main-slider {
  overflow: hidden;
  position: relative;
}

@media (max-width: 1199px) {
  .main-slider {
    height: 280px;
  }
}

.main-slider .swiper-slide {
  position: relative;
  height: auto;
  background-color: #151414;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 7000ms ease;
  transition: -webkit-transform 7000ms ease;
  transition: transform 7000ms ease;
  transition: transform 7000ms ease, -webkit-transform 7000ms ease;
}

.main-slider .container {
  padding-top: 250px;
  padding-bottom: 180px;
}

@media (max-width: 575px) {
  .main-slider .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.main-slider__box {
  width: 100%;
  max-width: 760px;
  border-left: 15px solid var(--primary);
  background-color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 11;
  padding-left: 55px;
  padding-right: 55px;
  padding-top: 70px;
  padding-bottom: 70px;
  transform: scale(0, 1);
  opacity: 0;
  transform-origin: right center;
  transition: transform 1500ms ease, opacity 1500ms ease;
}

@media (max-width: 480px) {
  .main-slider__box {
    padding-left: 30px;
    padding-right: 30px;
    border-left: 10px solid var(--primary);
  }
}

.swiper-slide-active .main-slider__box {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: left center;
}

.main-slider__box .block-title {
  margin-bottom: 0;
}

.main-slider__box>p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
  font-family: var(--heading-font);
  max-width: 90%;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 375px) {
  .main-slider__box>p {
    font-size: 18px;
  }
}

.main-slider__box .block-title h3 {
  font-size: 60px;
  line-height: 1.15;
  font-weight: 400;
}

@media (max-width: 575px) {
  .main-slider__box .block-title h3 {
    font-size: 30px;
  }

  .thm-btn {
    font-size: 13px;
    padding: 10px 12px !important;
  }
}

@media (max-width: 480px) {
  .main-slider__box .block-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  .main-slider__box .block-title h3 {
    font-size: 26px;
  }
}

.main-slider__box .block-title h3 span {
  color: var(--black);
  font-weight: 700;
}

.main-slider__box .thm-btn {
  padding: 15.5px 35px;
  border-radius: 5px;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1170px;
  transform: translate(-50%, calc(-50% + 0px));
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 1199px) {
  #main-slider-pagination {
    max-width: 960px;
    -webkit-transform: translate(-50%, calc(-50% + 40px));
    transform: translate(-50%, calc(-50% + 40px));
  }
}

@media (max-width: 575px) {
  #main-slider-pagination {
    display: none;
  }
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.4;
  background-color: #fff;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 10px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/* main slider two */
/*
.main-slider__two {
  margin-top: 0;
}
*/
.main-slider__two .main-slider__box {
  background-color: rgba(0, 0, 0, 0);
  border-left: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-slider__two .main-slider__box .block-title {
  transform: scale(1, 0);
  opacity: 0;
  transform-origin: top center;
  transition: transform 1500ms ease, opacity 1500ms ease;
}

.main-slider__two .swiper-slide-active .main-slider__box .block-title {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.main-slider__two .main-slider__box .block-title h3 {
  color: #fff;
}

.main-slider__two .main-slider__box .block-title h3 span {
  color: #fff;
}

.main-slider__two .main-slider__box p {
  color: #fff;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.main-slider__two .main-slider__box {
  transform: scale(1, 1);
  opacity: 1;
}

.main-slider__two .main-slider__box .thm-btn {
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: bottom center;
  margin-top: 15px;
  transition: transform 1500ms ease, opacity 1500ms ease, color 500ms ease,
    background 500ms ease;
}

.main-slider__two .swiper-slide-active .main-slider__box .thm-btn {
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: top center;
}

/*------------------------------------------------
--------------------------
18. Page Header
--------------------------
------------------------------------------------*/

.page-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.page-header .container {
  padding-bottom: 165px;
  padding-top: 165px;
  position: relative;
}

@media (max-width: 767px) {
  .page-header .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.page-header h1,
.page-header h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--thm-font);
}

/*------------------------------------------------
--------------------------
19. Brand
--------------------------
------------------------------------------------*/

.brand-one {
  background-color: var(--black);
  padding-top: 100px;
  padding-bottom: 100px;
}


#companies_we_work {
  margin: 90px 0 40px;
}

#companies_we_work .block-title {
  margin-bottom: 20px;
}

#companies_we_work .container .company_image_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

#companies_we_work .container .company_image_wrapper .company_image {
  width: 14%;
  padding: 1rem
}

#companies_we_work .owl-stage {
  margin: 0 auto;
}

#companies_we_work .image_holder {
  position: relative;
  width: 150px;
  height: 75px;
}

#companies_we_work img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 90%
}

#companies_we_work .companies_we_work_carousel {
  display: block;
  height: 100px;
}

#companies_we_work .companies_we_work_carousel .item {
  padding: 10px;
}

#companies_we_work .companies_we_work_carousel .item .image_holder img {
  width: 75%;
}

.disabled-e {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.search_infospan {
  font-size: 20px;
  color: #888888;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 575px) {
  .about-one__call {
    display: block;
    text-align: center;
  }

  .about-one__call-box {
    margin-top: 30px;
    margin-left: 0;
  }
}

.new-service {
  margin-bottom: 40px;
}

.service-box {
  position: relative;
}

.new-service .service-box h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.service-img img {
  width: 100%;
}

.service-name,
.service-name2 {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #182c44;
  top: 43%;
  transform: translateY(-50%);
  line-height: 17px;
}

.service-name {
  left: 120px;
}

.service-name2 {
  left: 60px;
}

.service-text {
  left: 87px;
  position: relative;
  width: 75%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}


.products {
  padding-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.product-box {
  width: 26%;
  height: 25rem;
  position: relative;
}

.website-name-product {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 99%, rgba(0, 0, 0, 0.25) 0%);
}

.website-name-product .name-one {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
}

.website-name-product .name-two {
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: 5px;
}

.product-box img {
  width: 100%;
  height: 100%;
}

.container-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.product-category-box {
  width: 25%;
  height: 250px;
}

.category-box {
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.product-btn {
  position: relative;
  color: #fff;
  z-index: 10;
  font-weight: bold;
}

.product-btn::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -10px;
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #1e3583;
  border-radius: 50px;
  opacity: .5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.product-btn:hover:before {
  width: 105%;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.product-btn:hover {
  color: #fff;
  z-index: 1;
}

.bg-product-ct {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0.53) 99%, rgba(0, 0, 0, 0.53) 0%);
}

.search-popup__content {
  height: 300px;
  overflow: auto;
  position: relative;
}

.category-box-search {
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  width: 95%;
  margin-top: 5px;
}

.category-search-btn {
  color: #888888;
}

@media (max-width:950px) {
  .product-category-box {
    width: 100%;
  }
  .product-box{
    width: 100%;
  }
}

/* WP BTN */
.btn-whatsapp-pulse {
  z-index: 99;
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* END WP BTN */


.logo-web {
  width: 9rem;
}

.logo-box a img {
  width: 8rem;
}

@media (max-width:910px) {
  .logo-web {
    width: 8rem;
  }

  .language-selector {
    margin-top: 10px;
  }
}

.main-footer .netsocials a .fa-tiktok {
  color: rgb(255, 255, 255);
  margin-right: 0px;
  background: transparent;
}

.main-footer .netsocials a .fa-brands {
  font-size: 1.3rem;
  text-align: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  margin-right: 1rem;
  background: transparent;
  transition: 0.5s;
}