/**
* Template Name: Logis - v1.2.0
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-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-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: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #082450;
  --color-secondary: #b02526;
  --color-tertiary: #fff;
  --color-border:#d4d6df;
  --color-footer: #0e1d34;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
}
a, a:hover, a:visited, a:active, a:link{
  text-decoration: none!important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
  text-shadow: rgba(0,0,0,.01) 0 0 1px;

}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  padding: 0px;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: #406aff;
  text-decoration: none;
}

p{
  line-height: 26px;
}

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

/*- ========================================
              scroll to top
======================================= --*/
.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: rgba(13, 66, 255, 0.8);
  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;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

/*- ========================================
              Custom Button
======================================= --*/
.btn-get-started{
  font-family: "Raleway", sans-serif;
  color: var(--color-tertiary);
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins,sans-serif;
  background-color: transparent;
  height: 40px;
  line-height: 40px;
  padding: 0 50px;
  position: relative;
  border-radius: 30px;
  border: 2px solid #b02526;
  animation-delay: 0.8s;
  transition: all .4s ease-in-out;
}
.btn-get-started i {
  background-color: transparent;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-tertiary);
  color: var(--color-tertiary);
  position: absolute;
  top: 50%;
  transition: all .4s ease-in-out;
  left: 6px;
  transform: translateY(-50%)
}
.btn-get-started:hover {
  background: #b02526;
  color: #fff;
  text-decoration: none;
}
/*======= custom-button-outline =========== --*/
.custom-button-outline {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins,sans-serif;
  background-color: transparent;
  height: 40px;
  line-height: 40px;
  padding: 0 60px;
  position: relative;
  border-radius: 30px;
  border: 2px solid var(--color-secondary);
  animation-delay: 0.8s;
  transition: all .4s ease-in-out;
}
.custom-button-outline i {
  background-color: transparent;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  position: absolute;
  top: 50%;
  transition: all .4s ease-in-out;
  left: 6px;
  transform: translateY(-50%);
}
.custom-button-outline:hover {
  color: var(--color-tertiary);
  background-color: var(--color-secondary);
}
.custom-button-outline:hover i {
  color: var(--color-tertiary);
  border: 2px solid var(--color-tertiary);
}
/*======= custom-button =========== --*/
.custom-button{
  display: inline-block;
  color: var(--color-tertiary);
  font-size: 14px;
  font-weight: 500;
  font-family: Poppins,sans-serif;
  background-color: var(--color-secondary);
  height: 40px;
  line-height: 40px;
  padding: 0 60px;
  position: relative;
  border-radius: 30px;
  border: 2px solid var(--color-secondary);
  animation-delay: 0.8s;
  transition: all .4s ease-in-out;
}
.custom-button i {
  background-color: var(--color-tertiary);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid var(--color-tertiary);
  color: var(--color-secondary);
  position: absolute;
  top: 50%;
  transition: all .4s ease-in-out;
  left: 6px;
  transform: translateY(-50%);
}
.custom-button:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border: 2px solid var(--color-secondary);
}
.custom-button:hover i {
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

/*- ========================================
              SECTIONS GENERAL
======================================= --*/
section {
  padding: 80px 0;
  overflow: hidden;
  background-color: ;
}
.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #EB0000;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
  line-height: 1.5;
}
/*- === @media screen and (max-width: 768) ======== --*/
@media (max-width: 768px) {
  .section-title p {
    font-size: 26px;
  }
}
/*- ========================================
              BREADCRUMBS
======================================= --*/
.breadcrumbs{
  background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);
}
.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}
.breadcrumbs .page-header h2 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}
.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs nav {
  background-color: #f3f6fc;
  padding: 20px 0;
}
.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
}
.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}
.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}
.breadcrumbs nav ol li+li {
  padding-left: 10px;
}
.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4278cc;
  content: "/";
}

/*-- ======= Header Section ======= --*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
}
.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}
.header .logo img {
  max-height: 55px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

/*-- ======= 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 a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }
  .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;
  }
  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-secondary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: var(--color-secondary);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--color-default);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }
  .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;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    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 20px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .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;
  }
  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }
  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 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;
    border: 1px solid #19335c;
  }
  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }
  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }
  .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-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}

/*- ========================================
              Hero Banner Section
======================================= --*/
/*-- ======= Hero Banner Section ======= --*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);
  padding: 0;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
#hero img{
  width: auto;
  height: 70vh;
  font-weight: 500;
  background-color: transparent;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto;
  object-fit: cover;
  object-position: center bottom;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
  width: 60%;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: 700;
}
#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero span{
  color: var(--color-secondary);
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 20px;
  line-height: 1;
  width: auto;
  height: auto;
}
/*- === @media screen and (max-width: 1024px) ======== --*/
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}
/*- === @media screen and (max-width: 768) ======== --*/
@media (max-width: 768px) {
  #hero img{
    display: none;
  }
  #hero .carousel-container {
    height: 90vh;
    width: 100%; /* Adjust width for smaller screens */
    padding-top: ; /* Remove top padding for better centering */
  }

  #hero h2 {
    font-size: 28px;
  }
}
/*- === Hero Wave ======== --*/
.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*-- ======= About Section ======= --*/
.about {
  padding-top: 80px;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li+li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-secondary);
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .custom-button-outline {
  margin-top: 6px;
}

/*-- ======= Features Section ======= --*/
#features{
  margin: 0px 0px 80px 0px;
}
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 1px solid var(--color-border);
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .nav-link i {
  padding-right: 15px;
  font-size: 25px;
}
.features .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.features .nav-link:hover {
  color: var(--color-secondary);
}
.features .nav-link.active {
  background: var(--color-secondary);
  color: var(--color-tertiary);
  border-color: var(--color-secondary);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 20px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.features .tab-pane .fst-italic {
  font-weight: ;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-secondary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*-- ======= Call To Action(CTA) Section ======= --*/
.cta {
  background: #2a2c39;
  padding: 80px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: #fff;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
/*-- ======= Services Section ======= --*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}
.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 35px 0 rgba(68, 88, 144, 0.2);
}
.services .icon {
  position: absolute;
  left: 20px; /* Adjusted to make icons visible */
  top: calc(50% - 30px);
}
.services .icon i {
  font-size: 30px;
  line-height: 1;
  transition: 0.5s;
}
.services .title {
  margin-left: 50px; /* Adjusted to create space for the icon */
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .title a {
  color: #2a2c39;
  transition: ease-in-out 0.3s;
}
.services .title a:hover {
  color: var(--color-secondary);
}
.services .description {
  font-size: 14px;
  margin-left: 50px; /* Adjusted to create space for the icon */
  line-height: 24px;
  margin-bottom: 0;
}
#services .serv-btn{
  margin-top: 50px;
  align-items: center;
  text-align: center;
  vertical-align: middle;
}

/*-- ======= Portfolio Section ======= --*/
#portfolio-bg {
  background: #2a2c39;
  padding: 100px 0px 100px 0px;
}
#portfolio-bg  .portfolio-container1{
  margin-bottom: 60px;
}
#portfolio-bg .section-title {
  padding-bottom: 20px;
  color: var(--color-tertiary);
}
#portfolio-bg p {
  margin-bottom: 20px;
  max-width: 460px;
  color: var(--color-tertiary);
}
#portfolio-bg .custom-button{
  margin-top: 40px;
}
#portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(2),
#portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(5),
#portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(8) {
    top: 60px;
    position: relative;
}
#portfolio-bg .portfolio-content img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#portfolio-bg .portfolio-content:hover img {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#portfolio-bg .portfolio-container2 .portfolio-content {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

/*-- Mobile adjustment @media (max-width: 992px) --*/
@media (max-width: 992px) {
  #portfolio-bg {
    text-align: center;
  }
  #portfolio-bg .portfolio-container2 .portfolio-section .portfolio-content{
    text-align: center;
    margin-bottom: 30px;
  }
  #portfolio-bg .portfolio-section .row {
    margin-bottom: -30px;
  }
  #portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(2),
  #portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(5),
  #portfolio-bg .portfolio-container2 .portfolio-section .row .col-lg-4:nth-child(8) {
    top: 0px;
    position: relative;
  }
}

/*-- ======= Testimonials Section ======= --*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
.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 .stars{
  color: #ffc107;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 20px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  top: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.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: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-secondary);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}


/*- ========================================
              ABOUT PAGE
======================================= --*/
/*-- ======= about-pg ======= --*/
#about-pg{
  padding: 50px 0px 100px 0px;
  text-align: ;
}
#about-pg .content h3 {
  font-weight: 600;
  font-size: 26px;
}
/*-- ======= about-pg-2 ======= --*/
#about-pg-2 .section-title {
  padding-bottom: 20px;
}
#about-pg-2 .content ul {
  list-style: none;
  padding: 0;
}
#about-pg-2 .content ul li {
  padding-bottom: 10px;
}
#about-pg-2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-secondary);
}
#about-pg-2 .content p:last-child {
  margin-bottom: 0;
}

/*-- ======= Team ======= --*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgba(176, 37, 38, 0.7);
  transition: ease-in-out 0.3s;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #2a2c39;
}
.team .member .member-info a {
  color: #2a2c39;
}

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

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

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
/*- ========================================
              SERVICES PAGE
======================================= --*/


/*- ========================================
              PRICING PAGE
======================================= --*/
.pricing p{
  margin-bottom: ;
}
.pricing-container{
  padding: 60px 30px 100px 30px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid var(--color-secondary);
  border-radius: 5px;
}
.pricing .pricing-item {
  height: 100%;
  bottom: 0;
  padding: 0;
  margin: 0;
  top: 0;
}
.pricing .pricing-item h2 {
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.pricing .pricing-item h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #e65100;
  bottom: 0;
  left: 0;
}
.pricing .pricing-item h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}
.pricing .pricing-item h4 {
  font-size: 30px;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: 25px;
}
.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
  font-weight: 600;
}
.pricing .pricing-item h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}
.pricing .pricing-item ul {
  padding: 20px 0px 0px 0px;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}
.pricing .pricing-item ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.pricing .pricing-item ul i {
  color: #059652;
  font-size: 13px;
  padding-right: 10px;
}
.pricing .pricing-item ul .na {
  color: rgba(108, 117, 125, 0.5);
}
.pricing .pricing-item ul .na i {
  color: rgba(108, 117, 125, 0.5);
}
.pricing .pricing-item ul .na span {
  text-decoration: line-through;
}
.pricing .btn-container{
  text-align: center;
}
.pricing .pricing-btn {
  display: inline-block;
  position: ;
  padding: 12px 35px;
  border-radius: 30px;
  background-color: var(--color-secondary);
  color: var(--color-tertiary);
  transition: none;
  font-family: Poppins,sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 2px solid var(--color-secondary);
  animation-delay: 0.8s;
  transition: all .4s ease-in-out;
}
.pricing .pricing-btn:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border: 2px solid var(--color-secondary);
}
.pricing .featured {
  border-top-color: var(--color-primary);
}
.pricing .featured .pricing-btn {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*- ========================================
    # Horizontal Pricing Section
======================================= --*/
.horizontal-pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  padding-bottom: 30px;
  background: #fff;
  height: 100%;
  position: relative;
}
.horizontal-pricing .pricing-item h2 {
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.horizontal-pricing .pricing-item h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #e65100;
  bottom: 0;
  left: 0;
}

.horizontal-pricing h3 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 20px;
  color: var(--color-secondary);
}

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

.horizontal-pricing h4 sup {
  font-size: 15px;
  top: -15px;
  left: -3px;
  font-weight: 600;
}

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

.horizontal-pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.horizontal-pricing ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.horizontal-pricing ul i {
  color: #059652;
  font-size: 13px;
  padding-right: 10px;
}

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

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

.horizontal-pricing ul .na span {
  text-decoration: line-through;
}
.horizontal-pricing .pricing-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  color: #fff;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  transition: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  animation-delay: 0.8s;
  transition: all .4s ease-in-out;
}
.horizontal-pricing .pricing-btn:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border: 2px solid var(--color-secondary);
}

.horizontal-pricing .featured {
  background: var(--color-primary);
}

.horizontal-pricing .featured h3,
.horizontal-pricing .featured h4,
.horizontal-pricing .featured h4 span,
.horizontal-pricing .featured ul,
.horizontal-pricing .featured ul .na,
.horizontal-pricing .featured ul i,
.horizontal-pricing .featured ul .na i {
  color: #fff;
}

.horizontal-pricing .featured .pricing-btn {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.horizontal-pricing .featured .pricing-btn:hover {
  background: #fff;
  color: var(--color-secondary);
}


/*- ========================================
              PORTFOLIO PAGE
======================================= --*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li::before {
  content: "[";
  margin-right: 6px;
  color: var(--color-tertiary);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li::after {
  content: "]";
  margin-left: 6px;
  color: var(--color-tertiary);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--color-secondary);
}
.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
  color: var(--color-secondary);
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .item-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}
.portfolio .portfolio-item .item-wrap:after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.portfolio .portfolio-item .item-wrap:hover {
  text-decoration: none;
}
.portfolio .portfolio-item .item-wrap:hover:after {
  opacity: 1;
  visibility: visible;
}
.portfolio .portfolio-item .item-wrap .portfolio-img {
  transition: 0.3s transform ease;
  transform: scale(1);
}
.portfolio .portfolio-item .item-wrap:hover .portfolio-img {
  transform: scale(1.05);
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-item .portfolio-img img {
  transition: all 0.8s ease-in-out;
}
.portfolio .portfolio-item .item-wrap>.portfolio-info {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: 0.3s all ease;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .item-wrap:hover .portfolio-info {
  margin-top: 0px;
  opacity: 1;
  visibility: visible;
}
.portfolio .portfolio-item .item-wrap .portfolio-info p {
  color: #fedac0;
  font-size: 12px;
  margin-bottom: 10px;
  font-style: italic;
  /*text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-family: "Inconsolata", monospace;*/
}
.portfolio .portfolio-item .item-wrap .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.glightbox-clean .gdesc-inner {
  background-color: #f1faff;
}
.glightbox-clean .gdesc-inner .gslide-title{
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
}
.portfolio .portfolio-item .item-wrap .portfolio-info .details-link {
  margin-left: 20px;
}
.portfolio .portfolio-item .item-wrap .portfolio-info .preview-link,
.portfolio .portfolio-item .item-wrap .portfolio-info .details-link {
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}
.portfolio .portfolio-item .item-wrap .portfolio-info .preview-link i,
.portfolio .portfolio-item .item-wrap .portfolio-info .details-link i{
  font-size: 15px;
  padding-right: 5px;
}
.portfolio .portfolio-item .item-wrap .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .item-wrap .portfolio-info .details-link:hover {
  color: #fd9f5b;
}

/*- ========================================
              PORTFOLIO DETAILS PAGE
======================================= --*/
.portfolio-details {
  padding-top: 40px;
}
.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-secondary);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(42, 44, 57, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details span{
  color: var(--color-secondary);
}

.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-info ul li i {
  font-size: 14px;
  font-weight: 700;
  margin-right: 5px;
  color: var(--color-secondary);
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*- ========================================
              PRODUCTS PAGE
======================================= --*/


/*- ========================================
              F.A.Q PAGE
======================================= --*/
#faq{
  padding: 50px 0px 50px 0px;
  background-color: ;
}
#faq .faq-container i{
  font-size: 18px;
  margin-right: 10px;
  left: 0;
  color: var(--color-secondary);
}
.faq .faq-container .accordion-item{
  background-color: #f8f9fa;
  border-radius: 4px;
  position: relative;
  border-color: transparent;
  margin-top: 15px;
  padding: 0px;
}

.faq .faq-container .accordion-item .accordion-button{
  border-radius: 0.25rem;
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  outline: none;
}
.faq .accordion-item .accordion-button::after {
  display: none;
}
.accordion-button:not(.collapsed) {
    box-shadow: inset 0 calc(-0* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.faq .accordion-item .icon-close,
.faq .accordion-item .icon-show {
  font-size: 18px;
  position: absolute;
  right: 0;
  padding-right: 10px;
  text-align: right;
  transition: ;
}
.faq .accordion-item .icon-show {
  display: none;
}
.faq .accordion-item button.collapsed {
  color: #343a40;
}
.faq .accordion-item button.collapsed:hover {
  color: #2487ce;
}
.faq .accordion-item button.collapsed .icon-show {
  display: inline-block;
}
.faq .accordion-item button.collapsed .icon-close {
  display: none;
}

#faq .faq-container .accordion-item .terms-list{
  color: #333;
  font-family: calibri;
  font-size: 14px;
  line-height: ;
  text-align: left;
}
#faq .faq-container .accordion-item .terms-list p i{
    font-size: 15px;
    color: #e65100;
    font-weight: 600;
}
#faq .faq-container .accordion-item .accordion-body{
  font-size: 13px;
  margin-bottom: 0;
  padding: ;
  font-family: "Poppins", sans-serif;
}

/*- ========================================
              BLOG/PROJECTS PAGE
======================================= --*/



/*- =========================================
              CONTACT US PAGE
======================================= --*/
#contact-page{
  padding: 50px 0px 100px 0px;
}
#contact-page .card{
  padding: 20px;
  border-radius:4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius:4px;
  box-shadow: 0 0 7px rgba(0, 0, 0, .12);
}
#contact-page h5 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: #;
}
#contact-page h5::after {
  position: absolute;
  content: "";
  background-color: #e65100;
  height: 3px;
  width: 50px;
  bottom: -1px;
  left: 0;
}
/*-- ======= contact-form ======= --*/
.contact-form{
  padding-bottom: 30px;
}
#contact-page .php-email-form{
  width: ;
  background: ;
}
#contact-page .php-email-form .form-group {
  margin-bottom: -5px;
}
.form-group input, .form-group textarea{
  font-size: 13px;
  font-family: sans-serif;
}
.form-group input{
  font-size: 13px;
  font-family: sans-serif;
}
.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #242424;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  border-bottom: 2px solid var(--color-secondary);
  resize: none;
  margin-top: 25px;
}
.form-control:hover, .form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #242424;
}

/*-- ======= Contact Map Section======= --*/
#map-section{
  box-shadow: 0 0 7px rgba(0, 0, 0, .12);
  background-color: #f8f9fa;
  margin: 0;
  left: 0;
  right: 0;
  padding: 0;
}

/*-- ======= map ======= --*/
iframe{
  width: 100%;
  margin-left: ;
}


/*- =========================================
              FOOTER SECTION
======================================= --*/
.footer {
  font-size: 14px;
  background-color: var(--color-footer);
  padding: 50px 0;
  color: white;
}

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

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

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}









































































