/**
* Template Name: Impact - v1.2.0
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-1: "Poppins", sans-serif;

  --size-desktop: 15px;
  --size-mobile: 14px;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary-1: #101010;
  --color-primary-2: #0d0d0d;
  --color-primary-3: #0b0b0b;
  --color-primary-4: #090909;
  --color-primary-5: #050505;
  --color-primary-6: #fff;
  --color-secondary: #004aad;
  --color-secondary-hover: #004aad;
  --color-third: #4409a3;
  --color-third-hover: #300575;
  --color-whatsapp: #004aad ;
  --color-whatsapp-hover: #004aad;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  height: 100%;
  overflow: auto; /* Asegúrate de no usar hidden */
}


body {
  font-family: var(--font-1);
  color: var(--color-default);
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  box-shadow: 0 0 .4rem rgba(0, 0, 0, 0.288) inset;
  background-color: var(--b);
  border-radius: 5rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-secondary);
  border-radius: 7rem;
}


::selection {
  background-color: var(--color-third);
  color: #fff;
}
::-moz-selection {
  background-color: var(--color-third);
  color: #fff;
}

.disable-select {
  user-select: none; /* supported by Chrome and Opera */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

/* @media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
} */

a {
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-1);
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-1);
  color: #818181;
  letter-spacing: 0.5px;
}

p,
li {
  font-family: var(--font-1);
  font-weight: 400;
  color: #818181;
  font-size: 15px;
  letter-spacing: 0.5px;
}

@media (max-width: 720px) {
  p,
  li {
    font-size: 14px;
  }
}

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

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

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

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

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

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

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

.breadcrumbs .page-header h2 {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  font-family: var(--font-primary);
  margin-bottom: 15px;
}

.breadcrumbs .page-header p {
  text-align: justify;
}

.breadcrumbs .page-header span {
  color: var(--color-secondary);
}

.breadcrumbs nav {
  background-color: var(--color-primary-1);
  padding: 12px 0;
  margin: 70px 0 0 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #676767;
}

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

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

.breadcrumbs nav ol li {
  font-size: 12px;
}

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

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

@media (max-width: 720px) {
  .breadcrumbs .page-header h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

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

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

.scroll-top:hover {
  background: #004aad;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  height: 70px;
  background-color: #000;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
}

.header .logo img {
  max-height: 30px;
  margin-right: 1px;
}

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

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

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

.header .btn-nav li {
  position: relative;
}

.header .btn-nav a,
.header .btn-nav a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-primary);
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 0 13px;
  font-weight: 600;
}

.header .btn-nav a:hover,
.header .btn-nav .active,
.header .btn-nav .active:focus,
.header .btn-nav li:hover > a {
  color: #fff;
  background: var(--color-primary-3);
}

.header .btn-nav .login-nav a {
  color: var(--color-secondary);
  padding: 11px 17px 9px 17px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.5s;
  border: 1px solid var(--color-secondary);
}

.header .btn-nav .login-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary-4);
  transition: 0.5s;
}

.sticked-header-offset {
  margin-top: 0;
}

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

@media (max-width: 768px) {
  .header .btn-nav a {
    display: none;
  }
}

@media (max-width: 1280px) {
  .header .btn-nav a {
    display: none;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 4px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 0 13px;
    font-weight: 600;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    visibility: hidden;
    width: 0px;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
    background: var(--color-secondary);
    padding: 15px 13px;
    border-radius: 10px;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 8px 8px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-primary-2);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.36);
    transition: 0.3s;
    border-radius: 15px;
    font-weight: 600;
    border: 1px #ffffff20 solid;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    text-transform: none;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: white;
    background: #181818;
    border-radius: 8px;
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

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

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar .nav-mobile h1 {
    color: #fff;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 95px 0 10px 0;
    margin: 0;
    background: var(--color-primary-1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-size: 13px;
    color: #ffffffb3;
    white-space: nowrap;
    transition: 0.3s;
    margin: 0 8px;
    font-weight: 600;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
    background: #000000;
    border-radius: 8px;
  }

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

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

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

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

  .mobile-nav-show {
    color: #ffffff99;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: -2px;
    border-radius: 8px;
    padding: 8px;
  }

  .mobile-nav-show:hover {
    background: var(--color-primary-2);
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-hide:hover {
    background: var(--color-primary-2);
    border-radius: 50px;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #0000002e;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about .section-header h2 {
  font-weight: 700;
  font-size: 32px;
}

.about .content h3 {
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  line-height: 40px;
  text-align: center;
  padding: 0 300px;
}

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

.about .content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0 8px 0;
  background: #f6f6f6;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.about .content h4:hover {
  background: var(--color-secondary);
  color: white;
  transition: all 0.2s ease-in-out;
}

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

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

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

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

.about .content p:last-child {
  margin-bottom: 20px;
  text-align: justify;
}

.about .content-img img {
  border-radius: 30px;
  max-width: 100%;
  height: auto;
  transition: 0.5s;
}

.about .box {
  padding: 20px 20px 5px 20px;
  border-radius: 30px;
  margin: 20px 0;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}

.about .box:hover p {
  color: var(--color-primary-2);
  border: 1px solid var(--color-primary-2);
  transition: 0.5s;
}

.about .box img {
  width: 180px;
  margin: auto;
  display: block;
  padding-bottom: 10px;
}

.about .box h3 {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  border-radius: 8px;
}

.about .box p {
  color: #e2e2e2;
  padding: 10px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  border-radius: 15px;
  border: 1px solid #e2e2e2;
  transition: 0.5s;
}

.about .container .text p {
  padding-top: 10px;
  text-align: justify;
}

@media (max-width: 720px) {
  .about {
    padding: 50px 0;
  }

  .about .content p {
    margin: 0 10px 20px 10px;
  }

  .about .content p:last-child {
    margin: 20px 10px 20px 10px;
  }

  .about .content h4 {
    font-size: 13px;
    margin: 5px 10px 5px 10px;
  }

  .about .content h3 {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    padding: 0;
  }

  .about .box {
    margin: 0;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
  }

  .about .box:hover p {
    border: none;
    color: white;
  }

  .about .box p {
    background: var(--color-primary-2);
    color: white;
    padding: 5px;
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    border-radius: 4px;
    margin: 0 5px 5px 5px;
    border: none;
  }

  .about .container .text p {
    padding-top: 30px;
    margin: 0 10px;
    text-align: justify;
  }

  .about .box img {
    width: 90px;
    padding-top: 10px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 60px;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(
    var(--color-primary-1) 50%,
    rgba(0, 131, 116, 0.4) 52%
  );
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary-1);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary-1);
  border: 2px solid var(--color-primary-1);
}

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

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

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 10px;
  background: linear-gradient(var(--color-primary-1), #001f8d);
  margin: 0 30px;
  border-radius: 40px;
}

@media (max-width: 720px) {
  .services {
    margin: 0;
    border-radius: 0;
  }
}

.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  letter-spacing: 1px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon img {
  max-width: 80px;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 1px;
  font-size: 18px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary-1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
}

.testimonials .testimonials-fade:before {
  content: "";
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 212, 255, 0) 67%
  );
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
}

.testimonials .container-fluid {
  padding: 0;
}

.testimonials .title-header {
  margin: 50px 0 60px 0;
  text-align: center;
  position: relative;
}

.testimonials .title-header p {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #89ff3b27;
  color: var(--color-secondary);
  display: inline-block;
  border-radius: 50px;
  text-align: center;
}

.testimonials .title-header h2 {
  font-weight: 600;
  font-size: 33px;
  padding: 0 180px 30px 180px;
  line-height: 40px;
  color: white;
}

.testimonials .title-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
}

.testimonials .slides-4,
.testimonials .slides-3 {
  padding-top: 10px;
}

.testimonials .swiper-wrapper {
  transition-timing-function: linear;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--color-primary-2);
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 5px 0;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #9999996f;
  margin: 0;
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  text-align: justify;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-default);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}

.testimonials .study-case {
  text-align: center;
  padding-top: 15px;
  display: block;
}

.testimonials .study-case a {
  margin: auto;
  background: var(--color-secondary);
  padding: 12px 30px;
  color: var(--color-primary-5);
  border-radius: 50px;
  font-weight: 500;
  transition: 0.5s;
}

.testimonials .study-case a:hover {
  transform: scale(1.03);
  transition: 0.5s;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 3px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 150px 0 80px 0;
  background: var(--color-primary-5);
}

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

.portfolio .section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0 200px 20px 200px;
  position: relative;
  color: white;
  line-height: 43px;
}

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

.portfolio .section-header p {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #89ff3b27;
  color: var(--color-secondary);
  display: inline-block;
  border-radius: 50px;
}

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

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

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

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

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

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

  .portfolio .section-header h2 {
    padding: 0 0 20px 0;
    margin: 0 10px;
    font-size: 30px;
    line-height: 40px;
  }
}

.portfolio .portfolio-wrap {
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
}

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

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 30px;
  background-color: var(--color-default);
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 26px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.portfolio .portfolio-wrap .portfolio-info h6 {
  font-size: 13px;
  color: var(--color-secondary-hover);
  margin: 0 0 7px 0;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: white;
  transition: 0.3s;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
  font-size: var(--size-desktop);
  margin-bottom: 0;
  padding-right: 50px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.portfolio .portfolio-info .btn-port {
  padding: 7px 10px;
  background: var(--color-secondary);
  border-radius: 6px;
  display: inline-block;
  font-size: var(--size-desktop);
  color: var(--color-primary-2);
}

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

@media (max-width: 720px) {
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 16px;
    line-height: 21px;
  }

  .portfolio .portfolio-wrap {
    border-radius: 15px;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    padding: 18px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  padding: 70px 0;
  background: var(--color-primary-5);
}

.portfolio-details .portfolio-info {
  background-color: var(--color-default);
  padding: 20px;
  border-radius: 20px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  margin-top: 20px;
  color: #fff;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li img {
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-info ul span {
  color: #797979;
}

.portfolio-details .portfolio-info ul a {
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0;
  color: var(--color-primary-3);
  padding: 10px;
  text-align: center;
  background-color: var(--color-secondary);
  border-radius: 50px;
  transition: 0.5s;
}

.portfolio-details .portfolio-info ul a:hover {
  transition: 0.5s;
  background-color: var(--color-secondary-hover);
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 10px 20px;
  background: var(--color-primary-1);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: var(--color-primary-2);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  text-align: justify;
}

.portfolio-details .portfolio-description .portfolio-list ul {
  list-style: none;
  padding: 0;
  margin: 0 10px;
  font-family: var(--font-primary);
  color: #424242;
}

.portfolio-details .portfolio-description .portfolio-list ul li {
  padding: 0 0 5px 35px;
  position: relative;
}

.portfolio-details .portfolio-description .portfolio-list ul i {
  position: absolute;
  font-size: 18px;
  left: 0;
  top: -1px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description .tags {
  margin-bottom: -10px;
}

.portfolio-details .portfolio-description .tags ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .portfolio-description .tags ul li {
  display: inline-block;
}

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

.portfolio-details .portfolio-description .tags ul a:hover {
  border: 1px solid #9d9d9d;
  color: #9d9d9d;
}

@media (max-width: 720px) {
  .portfolio-details .portfolio-description .count-box h3 {
    font-size: 16px;
  }

  .portfolio-details .portfolio-description p {
    padding: 0 10px;
    text-align: justify;
  }
}

.portfolio-details .container-count {
  padding: 20px 10px;
}

.portfolio-details .count-box {
  padding: 30px 30px 24px 30px;
  width: 100%;
  border-radius: 15px;
  margin-bottom: 8px;
  background: var(--color-primary-2);
}

.portfolio-details .count-box i {
  display: block;
  font-size: 20px;
  color: #0b2341;
  float: left;
  font-weight: 700;
}

.portfolio-details .count-box-img img {
  width: 100%;
  border-radius: 10px;
}

.portfolio-details .count-box span {
  font-size: 47px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  font-family: var(--font-default);
  letter-spacing: -2px;
}

.portfolio-details .count-box h3 {
  padding: 18px 0 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  color: #fff;
}

.portfolio-details .count-box p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-align: left;
  padding: 0;
}

.portfolio-details .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  transition: ease-in-out 0.3s;
}

.portfolio-details .count-box a:hover {
  color: #2169c4;
}

.portfolio-details .section-header {
  margin-bottom: -70px;
}

.portfolio-details .section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-primary-3);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
  text-align: start;
}

@media (max-width: 720px) {
  .portfolio-details .count-box {
    padding: 35px 30px 30px 30px;
  }

  .portfolio-details .count-box h3 {
    font-size: 13px;
  }

  .portfolio-details .portfolio-description h2 {
    margin: 0 10px 15px 10px;
  }
}

/*--------------------------------------------------------------
# portfolio-details Testimonial
--------------------------------------------------------------*/
.portfolio-details .testimonial-wrap {
  background: var(--color-default);
  padding: 15px 40px 30px 40px;
  border-radius: 20px;
}

.portfolio-details .testimonial-item .testimonial-img {
  width: 60px;
  border-radius: 50px;
  margin-right: 15px;
}

.portfolio-details .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: white;
}

.portfolio-details .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.portfolio-details .testimonial-item .stars {
  margin: 10px 0;
}

.portfolio-details .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.portfolio-details .testimonial-item .quote-icon-left,
.portfolio-details .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .testimonial-item p {
  margin: 15px auto 22px auto;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #989898;
}

@media (max-width: 767px) {
  .portfolio-details .testimonial-wrap {
    padding: 20px 20px 33px 20px;
  }

  .portfolio-details .testimonial-item p {
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
    margin: 15px auto 22px -10px;
  }

  .portfolio-details .testimonial-item {
    margin: 0 0 0 10px;
  }

  .portfolio-details .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

.portfolio-details .swiper {
  padding: 10px 0;
}

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

@media (max-width: 720px) {
  .portfolio-details .section-header p {
    font-size: 20px;
    line-height: 25px;
  }
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: #a2a2a2;
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbbbbb;
}

.team .member .social a:hover {
  color: var(--color-primary-1);
  border-color: var(--color-primary-1);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(5, 5, 5, 1) 78%
  );
  padding: 50px 0;
}

.pricing .section-header {
  padding-bottom: 1px;
}

.pricing .pricing-item {
  padding: 60px 40px;
  /* box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15); */
  background: var(--color-primary-2);
  height: 100%;
  position: relative;
  border-radius: 30px;
  transition: 0.5s;
}

.pricing .pricing-item:hover {
  transform: scale(1.02);
  transition: 0.5s;
}

.pricing h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 28px;
  color: #555555;
  text-align: center;
  font-size: 33px;
}

.pricing h5 {
  text-align: center;
  font-size: 14px;
  padding: 10px 5px;
  border: solid 2px var(--color-default);
  border-radius: 50px;
  margin: 10px 30px;
  transition: ease-in-out 0.3s;
  color: var(--color-default);
}

.pricing .pricing-item:hover h5 {
  border: solid 2px white;
  color: white;
  transition: ease-in-out 0.3s;
}

.pricing h6 {
  text-align: center;
  color: #313131;
  font-size: 19px;
  font-weight: 600;
  margin: 40px 0 10px 0;
  text-decoration: line-through;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  background: var(--color-primary-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: #4078df;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: #98bcff;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 40px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 0;
  text-align: center;
  margin-bottom: 10px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
  font-family: var(--font-primary);
}

.pricing ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: var(--color-secondary);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-primary-1);
  border: 1px solid var(--color-secondary);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn-primary {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-secondary);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--color-secondary-hover);
}

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

.pricing .buy-btn-primary:hover {
  color: var(--color-primary-5);
  background: var(--color-secondary-hover);
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.291);
}

@media (max-width: 720px) {
  .pricing ul {
    font-size: 14px;
  }

  .pricing .section-header h3 {
    font-size: 24px;
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 0 10px;
}

.faq .section-header h2 {
  font-weight: 700;
}

.faq .section-header p {
  text-align: justify;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #4154f1;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
  font-family: var(--font-primary);
  text-align: justify;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

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

.recent-posts .post-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

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

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

.recent-posts .title a:hover {
  color: var(--color-primary-1);
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 150px 0 80px 0;
  background-color: var(--color-primary-5);
}

.contact .info-container {
  background-color: var(--color-primary-1);
  height: 100%;
  padding: 20px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.202);
}

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

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

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

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

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgb(222, 222, 222);
}

.contact .portfolio-description {
  text-align: left;
  margin-bottom: 0;
}

.contact .portfolio-description p:first-child {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0 0 19px 0;
  background: #89ff3b27;
  color: var(--color-secondary);
  display: inline-block;
  border-radius: 50px;
}

.contact .portfolio-description h2 {
  color: white;
}

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

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

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

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

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

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--color-primary-2);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

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

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

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

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

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

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

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

.contact .php-email-form button[type="submit"]:hover {
  background: var(--color-primary-5);
}

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

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

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

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

@media (max-width: 720px) {
  .contact {
    padding: 120px 0 50px 0;
  }

  .contact .info-container {
    border-radius: 20px 20px 0 0;
  }

  .contact .portfolio-description {
    text-align: center;
    margin-bottom: 0;
  }

  .contact .portfolio-description p {
    padding: 10px 10px 0 10px;
  }

  .contact .portfolio-description h2 {
    text-align: center;
    font-size: 25px;
    line-height: 33px;
  }

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

  .contact .php-email-form button[type="submit"] {
    background: var(--color-primary-1);
    border: 0;
    padding: 14px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 8px;
    display: block;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: #000;
  padding: 180px 0 100px 0;
}

.hero h2 {
  font-size: 68px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-1);
  line-height: 70px;
  font-weight: 700;
}

.hero p {
  margin-bottom: 30px;
  text-align: justify;
  font-size: var(--size-desktop);
}

.hero span {
  color: var(--color-secondary);
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px;
  transition: 0.3s;
  color: var(--color-primary-6);
  background: var(--color-secondary);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.hero .btn-get-started:hover {
  background: var(--color-secondary-hover);
}

.hero .btn-watch-video {
  font-size: 15px;
  transition: 0.5s;
  margin-left: 4px;
  color: #ffffff7b;
  border: solid 2px #ffffff7b;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
}

.hero .btn-watch-video:hover {
  border: solid 2px #fff;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

.hero .icon-boxes {
  padding-bottom: 70px;
}

.hero .icon-box {
  padding: 20px 30px 10px 30px;
  position: relative;
  overflow: hidden;
  background: var(--color-secondary-hover);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.072);
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box:hover {
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.288);
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.hero .icon-box p {
  font-size: 14px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.77));
}

.hero .icon-box .icon img {
  max-height: 90px;
  padding-top: 10px;
  transition: all 0.3s ease-in-out;
}

.hero .icon-box:hover {
  /*background: #002874;*/
  transform: scale(1.1);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.176) 0.5s;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (min-width: 1000px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

@media (max-width: 1000px) {
  .hero .hero-img img {
    padding: 0;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 90px 15px 60px 15px;
  }

  .hero p {
    line-height: 25px;
    font-size: var(--size-mobile);
  }

  .hero h2 {
    font-size: 40px;
    margin: 0 0 20px 0;
    line-height: 45px;
    letter-spacing: 1px;
  }

  .hero .hero-img img {
    padding: 0;
    margin-bottom: -30px;
  }

  .hero .btn-get-started {
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .hero .btn-watch-video {
    width: 100%;
    display: block;
    margin: 0;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Hero-2 Call to Action
--------------------------------------------------------------*/

.hero-2 {
  width: 100%;
  position: relative;
  background: linear-gradient(var(--color-primary-1), #000000);
  padding: 100px 0;
}

.hero-2::after {
  content: "";
  position: absolute;
  display: block;
  width: 1300px;
  height: 1px;
  background: var(--color-primary-1);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
}

.hero-2 .container h1 {
  font-size: 80px;
  color: #fff;
  letter-spacing: 0;
  font-family: var(--font-1);
  font-weight: 700;
}

.hero-2 .container h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.hero-2 .cta-section h2 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-2 .container h1 {
    font-size: 50px;
    letter-spacing: -1px;
  }

  .hero-2 .container h2 {
    font-size: 40px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }

  .hero-2 {
    padding: 100px 15px;
  }
}

.hero-2 .container p {
  line-height: 30px;
  font-size: 20px;
  padding: 10px 290px;
  font-weight: 400;
}

.hero-2 .btn-get-started-2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  transition: 0.3s;
  color: var(--color-primary-6);
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.hero-2 .btn-get-started-2:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}

.hero-2 .btn-get-started-bot {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  transition: 0.3s;
  color: #f1f1f1d2;
  border: 2px solid #ffffff89;
  margin-left: 4px;
}

.hero-2 .btn-get-started-bot:hover {
  border-color: #fff;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .hero-2 .container p {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-2 .btn-get-started-bot {
    width: 100%;
    display: block;
    margin: 0;
  }

  .hero-2 .btn-get-started-2 {
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .hero-2 .container p {
    padding: 0;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  .hero-2:after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 150px 0 80px 0;
  background: var(--color-primary-5);
}

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

.blog .section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0 200px 20px 200px;
  position: relative;
  color: white;
  line-height: 43px;
}

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

.blog .section-header p {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #89ff3b27;
  color: var(--color-secondary);
  display: inline-block;
  border-radius: 50px;
}

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

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

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

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

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

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

@media (max-width: 720px) {
  .blog {
    padding: 120px 0 50px 0;
  }

  .blog .section-header h2 {
    font-size: 30px;
    padding: 0 0 30px 0;
    line-height: 40px;
    margin: 0 10px;
  }
}

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

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

.blog .posts-list .post-category {
  font-size: 10px;
  color: var(--color-primary-3);
  margin: 10px 0 5px 0;
  background: var(--color-secondary);
  padding: 5px 8px;
  border-radius: 5px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  font-size: 500;
}

.blog .posts-list p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 10px 0;
  line-height: 25px;
}

.blog .posts-list .title a {
  color: white;
  transition: 0.3s;
}

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

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

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

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

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-article {
  padding: 120px 0 0 0;
}

.blog-article .blog-details .title {
  font-size: 38px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: white;
}

.blog-article .post-img img {
  border-radius: 10px;
}

.blog-article .blog-details .content {
  margin: 20px 0 50px 0;
}

.blog-article .blog-details .content mark {
  font-weight: 700;
  background: #ffffff;
}

.blog-article .blog-details .content img {
  margin: 20px 0;
  border-radius: 10px;
}

.blog-article .blog-details .content p {
  line-height: 24px;
  text-align: justify;
}

.blog-article .blog-details .content h3 {
  font-size: 26px;
  margin-top: 30px;
  font-weight: bold;
  color: white;
}

.blog-article .blog-details .content h4 {
  font-size: 19px;
  margin-top: 30px;
  font-weight: bold;
  color: white;
}

.blog-article .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(90, 90, 90, 0.077);
  padding: 40px;
  position: relative;
  text-align: left;
  margin: -20px 0;
  border-radius: 20px;
  position: sticky;
}

.blog-article .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.3;
  margin-bottom: 0;
  font-style: bold;
  font-weight: 500;
  font-size: 15px;
}

.blog-article .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 720px) {
  .blog-article {
    padding: 100px 0 0 0;
  }

  .blog-article .blog-details .title {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

.footer .footer-info .logo img {
  max-height: 56px;
}

.footer .footer-top {
  background: #000000;
  padding: 60px 0 30px 0;
}

.footer .footer-top:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-primary-1);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer .footer-top .footer-info p {
  line-height: 24px;
  margin-bottom: 0;
  color: #9d9d9d;
  padding: 20px 20px 0 0;
}

@media (max-width: 720px) {
  .footer .footer-top .footer-info p {
    padding: 20px 0 0 0;
  }
}

.footer .footer-top .social-links a {
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.footer .footer-top .social-links a i {
  line-height: 0;
}

.footer .footer-top .social-links a:hover {
  color: var(--color-secondary);
}

.footer .footer-top h4 {
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
  position: relative;
}

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

.footer .footer-top .footer-blog ul li {
  padding: 0 0 15px 40px;
  position: relative;
}

.footer .footer-top .footer-blog ul img {
  position: absolute;
  left: 0;
  top: 5px;
  margin-right: 5px;
  max-width: 30px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
}

.footer .footer-top .footer-blog ul a {
  color: #9d9d9d;
  transition: 0.5s;
  font-size: var(--size-desktop);
}

.footer .footer-top .footer-blog ul a:hover {
  color: #fff;
  text-decoration: underline;
  transition: 0.5s;
}

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

.footer .footer-top .footer-links ul a {
  color: #9d9d9d;
  transition: 0.5s;
  font-size: var(--size-desktop);
}

.footer .footer-top .footer-links ul a:hover {
  color: #fff;
  text-decoration: underline;
  transition: 0.5s;
}

.footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

.footer .footer-top .footer-contact img {
  width: 80px;
  margin-bottom: 15px;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #9d9d9d;
  font-size: 15px;
}

.footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

.footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border-radius: 7px 0 0 7px;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
  background: var(--color-primary-1);
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0 7px 7px 0;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: var(--color-primary-2);
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: #ffffff43;
}

.footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
  padding-top: 8px;
}

.footer .credits a {
  color: var(--color-third);
}

.footer .credits a:hover {
  color: var(--color-third-hover);
}

@media (max-width: 1280px) {
  .footer .footer-top:after {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 0 15px 30px 15px;
  }

  .footer .footer-top:after {
    width: 100%;
  }

  .footer .footer-top .footer-info p {
    font-size: var(--size-mobile);
  }

  .footer .footer-top .footer-contact {
    margin-bottom: 40px;
  }

  .footer .footer-top .footer-contact p {
    font-size: var(--size-mobile);
  }

  .footer .footer-top .footer-links ul a {
    font-size: var(--size-mobile);
  }

  .footer .copyright {
    font-size: 11px;
    color: #ffffff43;
  }
}
