/* Hide the main content on small screens */
/* @media (max-width: 768px) {

  main,
  .hero,
  .hero-carousel,
  footer,
  .header {
    display: none !important;
  }

  .mobile-message {
    height: 100vh;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
    color: #000;
  }
} */

/* Hide the mobile message on larger screens */
/* .mobile-message {
  display: none;
} */

/* Colors */
:root {
  --brand-primary: #29b5a8;
  --brand-secondary: #ff8300;
  --gray: #6b7381;
  --gray-light: #9fa8b8;
  --gray-lighter: #c9d1de;
}

/* Button Colors */
:root {
  --btn-default-color: var(--gray);
  --btn-default-bg: var(--gray-lighter);
}

/* Toggle Sizes */
:root {
  --toggle-default-size: 1.5rem;
  --toggle-default-label-width: 4rem;
  --toggle-default-font-size: .75rem;
}

/* General Styles for Demo */
body {
  font-family: 'Tw Cen MT Std', sans-serif;
  /* font-family: TwCenMT; */
  /* src: url('assets/fonts/airbnb-cereal-font/AirbnbCereal_W_Blk.otf') format('truetype'); */
  /* font-weight: 600; */
  color: var(--gray);
  background: #fff;
}

.jumbotron {
  background: var(--gray);
  color: var(--gray-lighter);
}

.jumbotron h1 {
  color: #fff;
}

.example {
  margin: 4rem auto;
}

.example>.row {
  margin-top: 2rem;
  height: 5rem;
  vertical-align: middle;
  text-align: center;
  border: 1px solid rgba(201, 209, 222, 0.5);
}

.example>.row:first-of-type {
  border: none;
  height: auto;
  text-align: left;
}

.example h3 {
  font-weight: 400;
}

.example h3>small {
  font-weight: 200;
  font-size: 0.75em;
  color: var(--gray-light);
}

.example h6 {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 3.32px;
  text-transform: uppercase;
  color: var(--gray-lighter);
  margin: 0;
  line-height: 5rem;
}

.example .btn-toggle {
  top: 50%;
  transform: translateY(-50%);
}

/* Mixin for Switch Colors */
.toggle-color {
  color: var(--btn-default-color);
  background: var(--btn-default-bg);
}

.toggle-color.active {
  background-color: var(--brand-primary);
}

/* Contact Map and Form Responsive Styles */

/* Hide Leaflet attribution label */
.leaflet-control-attribution {
  display: none !important;
}

/* Mixin for Default Switch Styles */
.toggle-mixin {
  margin: 0 var(--toggle-default-label-width);
  padding: 0;
  position: relative;
  border: none;
  height: var(--toggle-default-size);
  width: calc(var(--toggle-default-size) * 2);
  border-radius: var(--toggle-default-size);
}

.toggle-mixin:focus,
.toggle-mixin.focus {
  outline: none;
}

.toggle-mixin:before,
.toggle-mixin:after {
  line-height: var(--toggle-default-size);
  width: var(--toggle-default-label-width);
  text-align: center;
  font-weight: 600;
  font-size: var(--toggle-default-font-size);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}

.toggle-mixin:before {
  content: 'Off';
  left: calc(-1 * var(--toggle-default-label-width));
}

.toggle-mixin:after {
  content: 'On';
  right: calc(-1 * var(--toggle-default-label-width));
  opacity: 0.5;
}

.toggle-mixin>.handle {
  position: absolute;
  top: calc(var(--toggle-default-size) * 0.25 / 2);
  left: calc(var(--toggle-default-size) * 0.25 / 2);
  width: calc(var(--toggle-default-size) * 0.75);
  height: calc(var(--toggle-default-size) * 0.75);
  border-radius: calc(var(--toggle-default-size) * 0.75);
  background: #fff;
  transition: left 0.25s;
}

.toggle-mixin.active>.handle {
  left: calc(var(--toggle-default-size) + (var(--toggle-default-size) * 0.25 / 2));
}

.toggle-mixin.active:before {
  opacity: 0.5;
}

.toggle-mixin.active:after {
  opacity: 1;
}

/* Apply Mixin to different sizes & colors */
.btn-toggle {
  top: 50%;
  transform: translateY(-50%);
}

.btn-toggle .toggle-mixin,
.btn-toggle .toggle-color {
  display: inline-block;
}

.btn-toggle.btn-lg .toggle-mixin {
  margin: 0 5rem;
  height: 2.5rem;
  font-size: 1rem;
  width: calc(2.5rem * 2);
}

.btn-toggle.btn-lg .toggle-mixin:before,
.btn-toggle.btn-lg .toggle-mixin:after {
  width: 5rem;
}

.btn-toggle.btn-lg .toggle-mixin>.handle {
  top: calc(2.5rem * 0.25 / 2);
  left: calc(2.5rem * 0.25 / 2);
  width: calc(2.5rem * 0.75);
  height: calc(2.5rem * 0.75);
  border-radius: calc(2.5rem * 0.75);
}

.btn-toggle.btn-sm .toggle-mixin {
  margin: 0 4rem;
  font-size: 0.55rem;
}

.btn-toggle.btn-xs .toggle-mixin {
  width: 1rem;
  height: 1rem;
}

/* Fonts */
:root {
  /* --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  --font-primary: 'Tw Cen MT Std', sans-serif;
  --font-secondary: 'Averta Black', sans-serif;
}

/* Colors */
:root {
  --color-default: #fff;
  --color-paradigma: #00afef;
  --color-secondary: #1b2f45;
  --color-footer: #000;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* body {
  font-family: var(--font-default);
  color: var(--color-default);
} */

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover,
#security-solutions-details .icon-list span a:hover,
#aviation-solutions #aviation-links .row .icon-list span a:hover,
#tech-software-solutions .container .row .icon-list span a:hover,
#navbar li a:hover,
a:active {
  color: var(--color-paradigma);
  text-decoration: none;
}

#security-solutions-details .icon-list span a,
#aviation-solutions #aviation-links .row .icon-list span a,
#tech-software-solutions .container .row .icon-list span a {
  text-decoration: none;
}

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

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

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

.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: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}


.arrow-container {
  position: fixed;
  right: 10px;
  top: 30%;
  transform: translateY(50%);
  text-align: center;
  z-index: 1;
  display: none;
  /* Initially hide both arrows */
}

#down-arrow {
  display: block;
}


.vertical-text {
  display: flex;
}

.vertical-text p {
  margin: 0;
  padding: 0;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(360deg);
}

.dotted-line {
  width: 1px;
  height: 200px;
  background: repeating-linear-gradient(0deg,
      currentColor,
      currentColor 2px,
      transparent 2px,
      transparent 4px);
  margin: 0 10px;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  animation: bounce 2s infinite;
  margin: 10px auto;
}

.down {
  border-top: 10px solid;
}

.up {
  border-bottom: 10px solid;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.tech-software-solutions-details-last {
  height: 300px;
  /* Adjust as needed */
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

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

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (min-width: 2400px) {
  .breadcrumbs {
    background-position: center 15% !important;
  }
}

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

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

.scroll-top:hover {
  background: #00afef;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

/* @media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
} */

.header.sticked {
  background: #000;
  padding: 12px 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.mobile-nav-show,
.mobile-nav-hide {
  display: none;
}

.navbar ul,
.section-navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  /* gap: 100px;
  justify-content: evenly; */
}

.navbar ul li,
.section-navbar ul li {
  display: flex;
  align-items: center;
}

.navbar a,
.section-navbar a {
  color: #fff;
}

.navbar .dropdown #thicker-icon:hover,
.navbar a.active,
.section-navbar a.active .navbar li:hover>a,
.section-navbar li:hover>a {
  color: var(--color-paradigma);
}


.navbar a,
.section-navbar a,
.navbar i,
.section-navbar i,
.navbar a:focus,
.section-navbar a:focus,
.navbar i:focus,
.section-navbar i:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

.navbar,
.section-navbar {
  padding: 0;
}

.navbar li,
.section-navbar li {
  position: relative;

}

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

.navbar .dropdown #thicker-icon {
  font-size: 1.5rem;
  /* Adjust the size as needed */
  -webkit-text-stroke: 1px;
  /* Adjust the thickness as needed */
  transform: scaleX(1.5);
  /* Adjust the scale factor to make it wider */
}

@media (min-width: 620px) {

  .navbar .dropdown ul,
  .section-navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 1px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
    background-color: #000;
  }

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

  .navbar .dropdown ul a,
  .section-navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
  }

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

  .navbar .dropdown ul a:hover,
  .section-navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .section-navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a,
  .section-navbar .dropdown ul li:hover>a {
    color: var(--color-paradigma);
  }

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

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

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

  .nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  #para-mobile-nav {
    display: none;
  }
}


/* @media (min-width: 1280px) and (max-width: 1366px) {

  .navbar .dropdown .dropdown ul,
  .section-navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
} */

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 619px) {
  #para-mobile-nav {
    display: block;
  }
  #para-desktop-nav1,
  #para-desktop-nav2,
  #para-desktop-nav3,
  #para-desktop-dropdown {
    display: none;
  }
  .navbar .dropdown ul,
  .section-navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 1px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
    background-color: #000;
  }

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

  .navbar .dropdown ul a,
  .section-navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
  }

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

  .navbar .dropdown ul a:hover,
  .section-navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .section-navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a,
  .section-navbar .dropdown ul li:hover>a {
    color: var(--color-paradigma);
  }

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

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

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

  .nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }
}

/* @media (max-width: 1255px) {

  .nav-show {
    display: none;
  }

  .navbar,
  .section-navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul,
  .section-navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .section-navbar a,
  .navbar a:focus,
  .section-navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navbar a:hover,
  .section-navbar a:hover,
  .navbar .active,
  .section-navbar .active,
  .navbar .active:focus,
  .section-navbar .active:focus,
  .navbar li:hover>a,
  .section-navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .section-navbar .dropdown ul,
  .navbar .dropdown .dropdown ul,
  .section-navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

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

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

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

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

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/Security Pic_1.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
}

#hero-carousel {
  padding: 0;
}

#hero-carousel .carousel-indicators {
  margin-bottom: 50px;
}

@media (min-width: 1034px) {
  /* .hero:after {
    position: absolute;
    content: "";
    width: 40%;
    background: var(--color-secondary);
    top: 0;
    bottom: 0;
  } */
}

/* .hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.6);
  inset: 0;
} */

@media (max-width: 1034px) {
  /* .hero:before {
    background: rgba(27, 47, 69, 0.7);
  } */
}

.hero .container {
  z-index: 1;
}

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

.hero h2,
.carousel-caption h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-default);
  font-family: var(--font-primary);
  width: 45%;
}

.hero blockquote,
.carousel-caption blockquote {
  color: #fff;
  /* padding-left: 20px; */
  font-size: 24px;
  font-family: var(--font-primary);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
  line-height: 1.1;
  width: 85%;

}

.hero .btn-get-started,
.carousel-caption .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
  color: var(--color-default);
  border: 1px solid var(--color-paradigma);
}

.hero .btn-get-started:hover,
.carousel-caption .btn-get-started:hover {
  background: var(--color-paradigma);
  border: 1px solid var(--color-paradigma);
}

.hero .btn-watch-video,
.carousel-caption .btn-watch-video  {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero .btn-watch-video i,
.carousel-caption .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover,
.carousel-caption .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i,
.carousel-caption .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 1254px) {
  .carousel-caption h2 {
    font-size: 45px;
  }
  .carousel-caption blockquote {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .hero h2,
  .carousel-caption h2 {
    font-size: 36px;
    line-height: 1;
  }

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

/*--------------------------------------------------------------
# Security Solutions Section
--------------------------------------------------------------*/

.security-solutions {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}

/* @media (min-width: 1365px) {
  .security-solutions {
    background-attachment: fixed;
  }
} */

.security-solutions .details .security-btn,
#security-solutions-details .home-detail-page .icon-list .security-btn {
  margin-top: 10px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
  border: 1px solid var(--color-paradigma);
}

.security-solutions .details .security-btn {
  color: black;
}

#security-solutions-details .home-detail-page .icon-list .security-btn {
  color: #fff;
}

.security-solutions .details .security-btn:hover,
#security-solutions-details .home-detail-page .icon-list .security-btn:hover {
  background: var(--color-paradigma);
  border: 1px solid var(--color-paradigma);
}

#security-solutions-details {
  width: 100%;
  height: 100%;
  /* min-width: 200vh; */
  min-height: 100vh;
  background: url("../img/Mining/Mining_10.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
}


.slanted-border {
  position: relative;
  overflow: hidden;
  padding: 0px 20px 0px 20px;
  background-color: rgba(0, 175, 239, 0.9);
  transform: skewX(-3deg);
}


.slanted-border h3,
.slanted-border .detail-image,
.slanted-border .icon-list {
  transform: skewX(3deg);
}

.security-solutions h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 40px;
}

#security-solutions-details #detail-part h3 {
  text-align: center;
}

.security-solutions .icon-list i {
  margin-right: 20px;
  font-size: 8px;
  line-height: 2.5;
}

.security-solutions .icon-list span {
  font-size: 16px;
  color: #fff;
  font-weight: 550;
  text-align: center;
}

#security-solutions-details #detail-part #mini-header {
  font-weight: 900;
}

#security-solutions-details #detail-part span {
  font-size: 11px;
  font-weight: 550;
}

#security-solutions-details #detail-part .slanted-border {
  max-width: 40%;
}

.security-solutions .icon-list span button {
  border-radius: 7px;
  font-size: 20px;
  background-color: #fff;
  border: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.security-solutions .icon-list span button:hover {
  background: var(--color-paradigma);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.security-solutions .icon-list span button span {
  font-size: 13px;
  color: black;
  vertical-align: middle;
  text-align: center;
}

.security-solutions .icon-list span a {
  text-decoration: underline;
}

.security-solutions .icon-list span a:hover {
  color: black;
  cursor: pointer;
}

#security-solutions-details #detail-part .detail-image .img-fluid {
  max-width: 180px;
  max-height: 180px;
}

.security-solutions .details {
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #fff;
}

.security-solutions .details h4 {
  color: #000;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.security-solutions .details p {
  font-size: 24px;
  font-family: var(--font-primary);
  line-height: 1.1;
  text-align: left;
  color: #000;
}

.security-solutions .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.security-solutions .details .btn-get-started:hover {
  background: #2aa5df;
}

/* #security-solutions-details .home-detail-page h3 {
  font-size: 50px;
  font-family: var(--font-primary);
} */

#security-solutions-details .home-detail-page h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-default);
  font-family: var(--font-primary);
}

#security-solutions-details .home-detail-page .icon-list span {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

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

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# Aviation Solutions Section
--------------------------------------------------------------*/


.aviation-solutions {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}

.aviation-solutions .details .security-btn,
#aviation-solutions-details .home-detail-page .icon-list .security-btn {
  margin-top: 10px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
  border: 1px solid var(--color-paradigma);
}

.aviation-solutions .details .security-btn {
  color: black;
}

#aviation-solutions-details .home-detail-page .icon-list .security-btn {
  color: #fff;
}

.aviation-solutions .details .security-btn:hover,
#aviation-solutions-details .home-detail-page .icon-list .security-btn:hover {
  background: var(--color-paradigma);
  border: 1px solid var(--color-paradigma);
}

#aviation-solutions-details {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url("../img/Equipment Hire/Equipment_Hire1.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
  position: relative;
}

#aviation-solutions-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 0;
}

#aviation-solutions-details .container {
  position: relative;
  z-index: 1;
}

/* .aviation-solutions {
  width: 100%;
  min-height: 100vh;
  background: var(--color-default);
  background-size: contain;
  transform: scaleX(-1);
} */

.aviation-solutions .container #details,
.aviation-solutions .details,
.aviation-solutions .container #aviation-links {
  /* transform: scaleX(-1); */
  position: relative;
  /* z-index: -1; */
}

.aviation-solutions .slanted-border {
  position: relative;
  overflow: hidden;
  padding: 0px 20px 0px 20px;
  background-color: rgba(300, 300, 300, 0.5);
  transform: skewX(-3deg);
}

/* .aviation-solutions {
  width: 100%;
  min-height: 100vh;
  background: var(--color-default);
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  transform: scaleX(-1);
} */

/* .aviation-solutions {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.aviation-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: var(--color-default);
  background-size: cover;
  transform: scaleX(-1);
} */

.aviation-solutions h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 40px;
}

.aviation-solutions .icon-list i {
  margin-right: 20px;
  font-size: 8px;
  line-height: 2.5;
}

.aviation-solutions .icon-list span {
  font-size: 16px;
  color: #fff;
  font-weight: 550;
  text-align: center;
}

.aviation-solutions .details {
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #fff;
}

.aviation-solutions .details h4 {
  color: #000;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.aviation-solutions .details p {
  font-size: 24px;
  font-family: var(--font-primary);
  line-height: 1.1;
  text-align: left;
  color: #000;
}

/* .aviation-solutions .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.aviation-solutions .details .btn-get-started:hover {
  background: #2aa5df;
} */

/* #aviation-solutions-details .home-detail-page h3 {
  font-size: 50px;
  font-family: var(--font-primary);
} */

#aviation-solutions-details .home-detail-page h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-default);
  font-family: var(--font-primary);
}

#aviation-solutions-details .home-detail-page .icon-list span {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
}

#aviation-solutions-details #detail-part h3 {
  text-align: center;
}


#aviation-solutions-details #detail-part #mini-header {
  font-weight: 900;
}

#aviation-solutions-details #detail-part span {
  font-size: 11px;
  font-weight: 550;
}

#aviation-solutions-details #detail-part .slanted-border {
  max-width: 40%;
}

.aviation-solutions .icon-list span button {
  border-radius: 7px;
  font-size: 20px;
  background-color: orange;
  border: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.aviation-solutions .icon-list span button:hover {
  background: var(--color-paradigma);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.aviation-solutions .icon-list span button span {
  font-size: 13px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
}

/* .aviation-solutions .icon-list span a {
  text-decoration: underline;
}

.aviation-solutions .icon-list span a:hover {
  color: black;
  cursor: pointer;
} */

#aviation-solutions-details #detail-part .detail-image .img-fluid {
  max-width: 180px;
  max-height: 180px;
}


/*--------------------------------------------------------------
# Tech & Software Solutions Section
--------------------------------------------------------------*/

.tech-software-solutions {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  padding-bottom: 0;
}

.tech-software-solutions .details .security-btn,
#tech-software-solutions-details .home-detail-page .icon-list .security-btn {
  margin-top: 10px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
  border: 1px solid var(--color-paradigma);
}

.tech-software-solutions .details .security-btn {
  color: black;
}

#tech-software-solutions-details .home-detail-page .icon-list .security-btn {
  color: #fff;
}

.tech-software-solutions .details .security-btn:hover,
#tech-software-solutions-details .home-detail-page .icon-list .security-btn:hover {
  background: var(--color-paradigma);
  border: 1px solid var(--color-paradigma);
}

#tech-software-solutions-details {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url("../img/Construction/Contruction1.jpg") top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px;
  position: relative;
}

#tech-software-solutions-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 0;
}

#tech-software-solutions-details .container {
  position: relative;
  z-index: 1;
}

.tech-software-solutions .details {
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #fff;
}

.tech-software-solutions .details h4 {
  color: #000;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.tech-software-solutions .details p {
  font-size: 24px;
  font-family: var(--font-primary);
  line-height: 1.1;
  text-align: left;
  color: #000;
}

.tech-software-solutions h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 40px;
}

.tech-software-solutions .icon-list i {
  margin-right: 20px;
  font-size: 8px;
  line-height: 2.5;
}

.tech-software-solutions .icon-list span {
  font-size: 16px;
  color: #fff;
  font-weight: 550;
  text-align: center;
}

#tech-software-solutions-details #detail-part h3 {
  text-align: center;
}

#tech-software-solutions-details #detail-part #mini-header {
  font-weight: 900;
}

#tech-software-solutions-details #detail-part span {
  font-size: 11px;
  font-weight: 550;
}

#tech-software-solutions-details #detail-part .slanted-border {
  max-width: 40%;
}

.tech-software-solutions .icon-list span button {
  border-radius: 7px;
  font-size: 20px;
  background-color: #fff;
  border: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.tech-software-solutions .icon-list span button:hover {
  background: var(--color-paradigma);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.tech-software-solutions .icon-list span button span {
  font-size: 13px;
  color: black;
  vertical-align: middle;
  text-align: center;
}

.tech-software-solutions .icon-list span a {
  text-decoration: underline;
}

.tech-software-solutions .icon-list span a:hover {
  color: black;
  cursor: pointer;
}

#tech-software-solutions-details #detail-part .detail-image .img-fluid {
  max-width: 180px;
  max-height: 180px;
}

/* #tech-software-solutions-details .home-detail-page h3 {
  font-size: 50px;
  font-family: var(--font-primary);
} */

#tech-software-solutions-details .home-detail-page h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-default);
  font-family: var(--font-primary);
}

#tech-software-solutions-details .home-detail-page .icon-list span {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), var(--color-default);
  background-size: cover;
  padding: 100px 0;
}

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

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

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

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

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

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

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

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

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

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

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

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-paradigma);
  color: #fff;
  width: 44px;
  height: 44px;
  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: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-paradigma);
  font-family: var(--font-primary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-family: var(--font-primary);
}

.contact .info-item a:hover {
  color: var(--color-paradigma);
}

.contact .php-email-form {
  width: 100%;
}

.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: #059652;
  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 #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 20px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-paradigma);
}

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

.contact .php-email-form button[type=submit] {
  background: #fff;
  border: 1px solid var(--color-paradigma);
  padding: 12px 40px;
  color: var(--color-paradigma);
  transition: 0.4s;
  border-radius: 10px;
  font-size: 20px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-paradigma);
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

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

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

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

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

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

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

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

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

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

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

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

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

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

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

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

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

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

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

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

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

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

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

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

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

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

.blog .blog-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/*--------------------------------------------------------------
# Partners
----------------------------------------------------------------*/

.partners .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
}

.partners .swiper-slide img:hover {
  filter: none;
  /* opacity: 1; */
}

.partners .swiper-wrapper {
  height: auto;
}

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

.partners .swiper-pagination .swiper-pagination-bullet,
.footer .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: color-mix(in srgb, grey, transparent 80%);
}

.partners .swiper-pagination .swiper-pagination-bullet-active,
.footer .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-paradigma);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 40px;
}

.footer .details {
  /* padding-top: 60px;
  padding-bottom: 30px; */
  background-color: #fff;
}

.footer .details h4 {
  color: #000;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  text-align: center;
}

.footer .details p {
  font-size: 28px;
  color: #000;
  font-family: var(--font-primary);
  text-align: center;
  line-height: 1.1;
}

.footer-icons {
  width: 100%;
  height: 100%;
  /* background: url("../img/logo-background.jpg") center center; */
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-icons #icons h4 {
  padding-top: 20px;
  /* padding-bottom: 50px; */
  color: #000;
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-primary);
  text-align: center;
}

/* .footer-icons #icons img {
  padding-bottom: 50px;
} */

.footer .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.footer .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Original Footer
--------------------------------------------------------------*/
.orig-footer {
  background: url("../img/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.orig-footer {
  font-size: 22px;
  font-family: var(--font-primary);
}

@media (max-width: 491px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 20px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 14px !important;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content .footer-links h4 {
    padding-left: 25px;
  }
  .orig-footer .footer-content .footer-links ul {
    padding-left: 30px;
  }
}

@media (max-width: 464px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 19px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 14px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
}

@media (max-width: 451px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 18px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 12px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
}

@media (max-width: 424px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 17px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 12px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
}

@media (max-width: 438px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 16px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 12px !important;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
}

@media (max-width: 406px) {
  .orig-footer,
  .orig-footer .footer-content .footer-info p {
    font-size: 15px;
  }
  .orig-footer .footer-legal .copyright {
    font-size: 12px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0;
  }
  .orig-footer .footer-content .footer-info {
    margin-left: 10px;
  }
  .orig-footer .footer-content h4 {
    padding-bottom: 0px !important;
  }
  .orig-footer .footer-content .footer-links ul li {
    padding: 1px 0 !important;
  }
}


.orig-footer .footer-content {
  padding: 60px 0 30px 0;
}

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

.orig-footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.orig-footer .footer-content .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.orig-footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-default);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.orig-footer .footer-content .footer-info p {
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-default);
  line-height: 1.1;
}

.footer-content .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
  background-color: #292828;
  line-height: 0;
  text-align: center;
}

.footer-content .social-links a i {
  line-height: 0;
  display: inline-flex;
}

.footer-content .social-links a:hover {
  color: #fff;
  background-color: var(--color-paradigma);
}

.orig-footer .footer-content h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-paradigma);
  position: relative;
  padding-bottom: 12px;
}

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

.orig-footer .footer-content .footer-links h4 {
  padding-left: 50px;
}

.orig-footer .footer-content .footer-links ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}

.orig-footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: var(--color-default);
  font-size: 32px;
  line-height: 0;
}

.orig-footer .footer-content .footer-links ul li {
  padding: 3px 0;
  display: flex;
  align-items: center;
}

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

.orig-footer .footer-content .footer-links ul a {
  color: var(--color-default);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.orig-footer .footer-content .footer-links ul a:hover {
  color: var(--color-paradigma);
}

.orig-footer .footer-content .footer-contact p {
  line-height: 26px;
  color: var(--color-default);
}

.orig-footer .footer-content .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
  background-color: #292828;
}

.orig-footer .footer-content .social-links a:hover {
  color: #fff;
  background-color: var(--color-paradigma);
}

.orig-footer .footer-legal {
  padding: 10px 0;
}

.orig-footer .footer-legal .copyright {
  text-align: center;
  color: var(--color-default);
  font-size: 18px;
}

.orig-footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-default);
}


.orig-footer .footer-content #orig-footer-links1,
.orig-footer .footer-content #orig-footer-links2 {
  border-left: 2px solid rgb(86, 86, 86);
}

@media (max-width: 768px) {

  .orig-footer .footer-content #orig-footer-links1,
  .orig-footer .footer-content #orig-footer-links2 {
    border: 0;
  }
}