/************ TABLE OF CONTENTS ***************

	01. Theme Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --tw-ff-body: "Open Sans", serif;
  --tw-ff-heading: "Urbanist", serif;
  --tw-ff-p: "Open Sans", serif;
  --tw-fs-body: 16px;
  --tw-fs-p: 16px;
  --tw-fs-h1: 80px;
  --tw-fs-h2: 48px;
  --tw-fs-h3: 24px;
  --tw-fs-h4: 18px;
  --tw-fs-h5: 16px;
  --tw-fs-h6: 14px;
  --tw-color-common-white: #ffffff;
  --tw-color-common-black: #000000;
  --tw-color-heading-primary: #1c1e21;
  --tw-color-text-body: #808080;
  --tw-color-theme-primary: #e02323;
  --tw-color-theme-secondary: #ffc226;
  --tw-color-grey-1: #f9f9f9;
  --tw-color-border-1: #d8d8d8;
  --tw-color-border-2: rgba(15, 27, 36, 0.1);
  --tw-color-border-3: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
	Typography CSS
*/
body {
  font-family: var(--tw-ff-body);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: normal;
  color: var(--tw-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tw-ff-heading);
  color: var(--tw-color-heading-primary);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--tw-fs-h1);
}

h2 {
  font-size: var(--tw-fs-h2);
}

h3 {
  font-size: var(--tw-fs-h3);
}

h4 {
  font-size: var(--tw-fs-h4);
}

h5 {
  font-size: var(--tw-fs-h5);
}

h6 {
  font-size: var(--tw-fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tw-ff-p);
  font-size: 20px;
  font-weight: var(--tw-fw-normal);
  color: var(--tw-color-text-body);
  margin-bottom: 15px;
  line-height: 27.24px;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

.slick-list.draggable {
  cursor: grab;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

input {
  outline: none;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--tw-color-common-black);
  color: var(--tw-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tw-color-common-black);
  color: var(--tw-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tw-color-common-black);
  color: var(--tw-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tw-color-common-black);
  font-size: var(--tw-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tw-color-common-black);
  font-size: var(--tw-fs-body);
  opacity: 1;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 50px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

.section-heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
.section-heading .sub-heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 2px solid var(--tw-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 16px;
  }
}
.section-heading .section-title {
  display: block;
  text-transform: capitalize;
  position: relative;
  margin: 0 auto;
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
}
@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    max-width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 32px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading.heading-2 .section-title {
  margin: 0;
  margin-bottom: 10px;
}
.section-heading.heading-2 p {
  margin-bottom: 0;
}

.read-more {
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .wow {
    animation-name: none !important;
    visibility: visible !important;
  }
}
/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--tw-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: var(--tw-color-common-white);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* Site Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader img {
  width: 300px;
}

/**
  Buttons CSS
*/
.lt-primary-btn {
  background-color: var(--tw-color-theme-primary);
  font-family: var(--tw-ff-body);
  color: var(--tw-color-common-white);
  display: inline-block;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  padding: 13px 26px;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}
.lt-primary-btn:before {
  content: "";
  background-color: var(--tw-color-heading-primary);
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.lt-primary-btn:hover {
  color: var(--tw-color-common-white);
}
.lt-primary-btn:hover:before {
  height: 100%;
}
.lt-primary-btn i:not(.left) {
  font-size: 18px;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .lt-primary-btn i:not(.left) {
    font-size: 14px;
  }
}
.lt-primary-btn i:not(.left).left {
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .lt-primary-btn {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 16px;
  }
}

.lt-primary-btn.primary-2:hover {
  color: var(--tw-color-heading-primary);
}
.lt-primary-btn.primary-2:before {
  background-color: var(--tw-color-common-white);
}
.lt-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--tw-color-theme-primary);
  color: var(--tw-color-theme-primary);
  font-weight: 600;
}
.lt-primary-btn.transparent:before {
  background-color: var(--tw-color-theme-primary);
}
.lt-primary-btn.transparent:hover {
  color: var(--tw-color-common-white);
  border: 1px solid var(--tw-color-theme-primary);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: var(--tw-color-common-white);
  width: 100%;
  position: inherit;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 991px) {
  .header {
    position: inherit;
  }
}

.primary-header-inner {
  background-color: var(--tw-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 86px;
}
.primary-header-inner .header-logo img {
  max-width: 170px;
}
.primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.primary-header-inner .header-menu-wrap .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner .header-menu-wrap .sub-menu {
    display: none;
  }
}
.primary-header-inner .header-menu-wrap .sub-menu li {
  display: inline-block;
  position: relative;
  margin: 0 18px;
}
@media (max-width: 1399px) {
  .primary-header-inner .header-menu-wrap .sub-menu li {
    margin: 0 4px;
  }
}
.primary-header-inner .header-menu-wrap .sub-menu li a {
  color: var(--tw-color-heading-primary);
  display: block;
  font-size: 16px;
  padding: 30px 0;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
.primary-header-inner .header-menu-wrap .sub-menu li a i {
  font-size: 13px;
}
.primary-header-inner .header-menu-wrap .sub-menu li a:before {
  content: "";
  background-color: var(--tw-color-theme-primary);
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.primary-header-inner .header-menu-wrap .sub-menu li.active a:before {
  width: 100%;
}
.primary-header-inner .header-menu-wrap .sub-menu li:hover a:before {
  width: 100%;
}
.primary-header-inner .header-right {
  display: flex;
  align-items: center;
}
.primary-header-inner .header-right .header-right-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 15px;
  display: flex;
}
@media only screen and (max-width: 556px) {
  .primary-header-inner .header-right .header-right-contact {
    display: none;
  }
}
.primary-header-inner .header-right .header-right-contact .contact-icon {
  width: 20px;
  height: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(333deg);
  color: var(--tw-color-theme-primary);
}
@media (max-width: 1399px) {
  .primary-header-inner .header-right .header-right-contact .contact-icon {
    height: 16px;
    width: 16px;
  }
}
.primary-header-inner .header-right .header-right-contact a {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: var(--tw-color-w);
}
@media (max-width: 1399px) {
  .primary-header-inner .header-right .header-right-contact a {
    font-size: 14px;
  }
}
.primary-header-inner .header-right .header-btn i {
  margin-right: 10px;
}
.primary-header-inner .header-right .header-right-item {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner .header-right .header-right-item {
    line-height: 1;
  }
}
.primary-header-inner
  .header-right
  .header-right-item
  .mobile-side-menu-toggle {
  color: var(--tw-color-heading-primary);
  font-size: 30px;
  margin-left: 16px;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner .mean-push {
    display: none;
  }
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
}
.sticky-header-wrap.fixed {
  background-color: var(--tw-color-common-white);
  display: block;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-side-menu {
    background-color: var(--tw-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu.is-open {
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: var(--tw-color-heading-primary);
    font-size: 22px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tw-color-border-1);
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--tw-color-theme-primary);
    color: var(--tw-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--tw-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--tw-color-common-white);
    font-family: var(--tw-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-list li {
    font-size: 20px;
    color: var(--tw-color-common-white);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-list li i {
    background-color: var(--tw-color-theme-primary);
    font-size: 12px;
    color: var(--tw-color-common-black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
  }
  .mobile-side-menu .side-menu-list li :last-child {
    margin-bottom: 0;
  }
  .mobile-side-menu .side-menu-social ul {
    display: flex;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    list-style: none;
  }
  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--tw-color-theme-bg-dark-deep);
    color: var(--tw-color-theme-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--tw-color-border-6);
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
  }
  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--tw-color-theme-primary);
    color: var(--tw-color-common-white);
  }
  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tw-color-border-1);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--tw-color-heading-primary);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--tw-color-theme-primary);
    color: var(--tw-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    right: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before,
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    a.mean-expand.mean-clicked:after {
    content: "\f068";
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
  }
  .mobile-side-menu
    .mean-bar
    .mean-nav.mean-nav
    > ul
    li
    ul
    li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
  }
}
/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .hero-section {
    height: auto;
  }
}

.hero-content {
  padding: 148px 0 244px 0;
}
@media (max-width: 1170px) {
  .hero-content {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-content {
    padding: 100px 0 100px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding: 70px 20px;
  }
}
.hero-content .title {
  color: var(--tw-color-common-white);
  max-width: 908px;
  width: 100%;
  font-weight: 700;
  font-size: 110px;
  line-height: 110px;
  padding-bottom: 22px;
  margin-bottom: 0;
  text-shadow: 4px 4px 9.4px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 991px) {
  .hero-content .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 35px;
    line-height: 48px;
  }
}
.hero-content p {
  color: var(--tw-color-common-white);
  max-width: 710px;
  width: 100%;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #eaeaea;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .hero-content p {
    font-size: 16px;
    line-height: 22px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Outports CSS
----------------------------------------*/
.outports-item {
  display: grid;
  align-items: center;
  grid-template-columns: 56px 1fr;
  grid-gap: 12px;
}
.outports-item .outports-icon {
  color: var(--tw-color-common-white);
  background-color: var(--tw-color-theme-primary);
  height: 56px;
  width: 56px;
  border-radius: 50%;
  font-size: 20px;
  transform: rotate(333deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.outports-item .outports-info .title {
  position: relative;
  color: var(--tw-color-text-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 0;
}
.outports-item .outports-info p {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1c1e21;
  margin-bottom: 0;
}

/* !END: Theme Outports CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.about-section {
  position: relative;
}

/* About 2 */
.about-2 {
  position: relative;
  z-index: 1;
}

.about-info .section-heading p {
  margin-bottom: 48px;
}

/* !END: Theme About CSS */
.about-box {
  background-color: #f9f9f9;
  padding: 28px 19px;
  border-radius: 8px;
  text-align: center;
}
.about-box h6 {
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 8px;
}
.about-box p {
  margin-bottom: 0;
}

/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-top {
  display: flex;
  align-items: end;
  text-align: center;
  position: relative;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 991px) {
  .project-top {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .project-top {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.project-top .section-heading {
  margin-bottom: 0;
}
.project-top .swiper-arrow {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .project-top .swiper-arrow {
    position: relative;
  }
}
@media only screen and (max-width: 991px) {
  .project-top .swiper-arrow {
    gap: 8px;
  }
}
.project-top .swiper-arrow .swiper-nav {
  font-size: 24px;
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tw-color-theme-primary);
  border-radius: 50%;
  border: 1px solid var(--tw-color-theme-primary);
  transition: all 0.3s ease-in-out;
}
.project-top .swiper-arrow .swiper-nav:hover {
  background-color: var(--tw-color-theme-primary);
  color: var(--tw-color-common-white);
}
@media only screen and (max-width: 991px) {
  .project-top .swiper-arrow .swiper-nav {
    font-size: 16px;
    height: 35px;
    width: 35px;
  }
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.page-title h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 54px;
  color: #1c1e21;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .page-title h2 {
    font-size: 30px;
    line-height: 36px;
  }
}

.blog-section {
  padding: 40px 0 70px 0;
}
@media only screen and (max-width: 991px) {
  .blog-section {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section {
    padding-top: 0;
  }
}

.project-carousel-wrap {
  padding-top: 0;
}

.post-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: -2px 0px 40px rgba(0, 0, 0, 0.06),
    2px 0px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .post-card {
    margin-bottom: 35px;
  }
}
.post-card .post-thumb {
  overflow: hidden;
}
.post-card .post-thumb img {
  height: 345px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .post-card .post-thumb img {
    height: 345px;
  }
}
@media only screen and (max-width: 767px) {
  .post-card .post-thumb img {
    height: 310px;
  }
}
.post-card .post-content-wrap {
  transition: all 0.3s ease-in-out;
}
.post-card .post-bottom {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eaeaea;
  transition: all 0.3s ease-in-out;
}
.post-card .post-bottom .read-more {
  font-family: var(--tw-ff-heading);
  color: var(--tw-color-heading-primary);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.post-card .post-bottom .post-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.post-card:hover .post-bottom {
  background-color: var(--tw-color-theme-primary);
}
.post-card:hover .post-bottom .read-more {
  color: var(--tw-color-common-white);
}
.post-card:hover .post-thumb img {
  transform: scale(1.03);
}

.feedback-card {
  background: #ffffff;
  box-shadow: 0px 40px 16px rgba(0, 0, 0, 0.01),
    0px 22px 13px rgba(0, 0, 0, 0.02), 0px 10px 10px rgba(0, 0, 0, 0),
    0px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 22px 64px 32px 64px;
  margin: 60px 0 120px;
}
@media only screen and (max-width: 991px) {
  .feedback-card {
    margin: 60px 10px;
    padding: 16px;
  }
}
.feedback-card .img-fluid {
  height: 72px;
  width: 72px;
}
.feedback-card i.fa-star {
  font-size: 20px;
  color: var(--tw-color-theme-primary);
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .feedback-card i.fa-star {
    font-size: 16px;
  }
}
.feedback-card .reviews {
  font-size: 18px;
  line-height: 25px;
}
@media only screen and (max-width: 767px) {
  .feedback-card .reviews {
    font-size: 14px;
    line-height: 18px;
  }
}
.feedback-card .discription {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #545353;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .feedback-card .discription {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.feedback-card .info .fname {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #1c1e21;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .feedback-card .info .fname {
    font-size: 16px;
    line-height: 22px;
  }
}
.feedback-card .info .address {
  font-size: 20px;
  line-height: 27px;
  color: #878280;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .feedback-card .info .address {
    font-size: 14px;
    line-height: 18px;
  }
}

.product-card {
  overflow: hidden;
  border: 1px solid #cdcdcd;
  box-shadow: -2px -1px 25px rgba(0, 0, 0, 0.06),
    0px 2px 30px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
}
.product-card .post-thumb {
  overflow: hidden;
}
.product-card .post-thumb img {
  height: 290px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.product-card .post-bottom {
  padding: 20px;
  background-color: #eaeaea;
  transition: all 0.3s ease-in-out;
}
.product-card .post-bottom .read-more {
  font-family: var(--tw-ff-heading);
  color: var(--tw-color-heading-primary);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 5px;
  column-gap: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.product-card .post-bottom .post-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.product-card:hover .post-bottom {
  background-color: var(--tw-color-theme-primary);
}
.product-card:hover .post-bottom .read-more {
  color: var(--tw-color-common-white);
}
.product-card:hover .post-thumb img {
  transform: scale(1.03);
}

.post-content {
  padding: 25px 25px 50px 25px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .post-content {
    padding: 25px;
  }
}
.post-content .title {
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 15px;
}
.post-content .title a {
  background: linear-gradient(
    var(--tw-color-theme-primary) 0%,
    var(--tw-color-theme-primary) 98%
  );
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.post-content .title a:hover {
  color: var(--tw-color-theme-primary);
  background-size: 100% 2px;
}
.post-content .title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Feature CSS
----------------------------------------*/
.feature-section .feature-item-wrap .col-lg-3 {
  border-right: 1px solid rgba(255, 143, 143, 0.4);
}
@media only screen and (max-width: 767px) {
  .feature-section .feature-item-wrap .col-lg-3 {
    border-right: none;
    border-bottom: 1px solid rgba(255, 143, 143, 0.4);
    padding-bottom: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-section .feature-item-wrap .col-lg-3:nth-child(2) {
    border-right: none;
  }
}
.feature-section .feature-item-wrap .col-lg-3:last-child {
  border: none;
}
.feature-section .section-heading .section-title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .feature-section .section-heading .section-title {
    max-width: 500px;
  }
}

.feature-item {
  text-align: center;
}
.feature-item .feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.feature-item .feature-icon img {
  height: 58px;
  width: 58px;
}
.feature-item .title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-item .title a:hover {
  color: var(--tw-color-theme-primary);
}
.feature-item p:last-child {
  margin-bottom: 0;
}

/* !END: Theme Feature CSS */
/**----------------------------------------
START: Theme Request CSS
----------------------------------------*/
.request-area {
  background: #fff1f1;
  border: 1px solid #f5cfcf;
  border-radius: 12px;
  overflow: hidden;
}

.req-content {
  height: 100%;
}
.req-content img {
  height: 744px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .req-content img {
    height: 450px;
  }
}

.request-form-wrap {
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .request-form-wrap {
    padding: 30px;
  }
}
.request-form-wrap .form-label {
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 4px;
  color: var(--tw-color-heading-primary);
}

.logisec-contact-form .form-group {
  margin-bottom: 13px;
}
.logisec-contact-form .form-group .form-control {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #7c7c7c;
  padding: 20px 16px 20px 15px;
  border: 1px solid #f5cfcf;
  border-radius: 8px;
}
.logisec-contact-form .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--tw-color-border-1);
}
.logisec-contact-form .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--tw-color-text-body);
}
.logisec-contact-form .form-group .form-control:-moz-placeholder {
  font-size: 14px;
  color: var(--tw-color-text-body);
}
.logisec-contact-form .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--tw-color-text-body);
}
.logisec-contact-form .form-group .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--tw-color-text-body);
}
.logisec-contact-form .form-group .form-icon .form-control {
  padding: 20px 16px 20px 56px;
}
.logisec-contact-form .form-group textarea.form-control {
  padding: 15px;
}
.logisec-contact-form .form-group .form-icon {
  display: flex;
  align-items: center;
  position: relative;
}
.logisec-contact-form .form-group .form-icon svg {
  position: absolute;
  left: 20px;
}
.logisec-contact-form .form-group .edit-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #3b61de;
  cursor: pointer;
}
.logisec-contact-form .form-item {
  margin-top: 27px;
}

.contact-radio .form-check {
  padding: 17px 15px;
  background: #ffffff;
  border: 1px solid #f5cfcf;
  border-radius: 8px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-radio .form-check input {
  margin: 0;
}
.contact-radio .form-check label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #7c7c7c;
  margin-bottom: 0;
  cursor: pointer;
}

/* !END: Theme Request CSS */
/**----------------------------------------
START: Theme Page Header CSS
----------------------------------------*/
.page-header {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .page-header {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-header {
    padding: 20px 0;
  }
}

.page-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 12px 15px 11px;
  background-color: #f6f4f4;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .page-header-content {
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
  }
}
.page-header-content .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 0;
  color: var(--tw-color-theme-primary);
}
.page-header-content .sub-title {
  margin-bottom: 0;
}
.page-header-content .sub-title a {
  font-size: 18px;
  line-height: 25px;
  color: #8b8b8b;
}
.page-header-content .sub-title a:hover {
  color: var(--tw-color-theme-primary);
}
.page-header-content .sub-title a.inner-page {
  color: #1c1e21;
}
.page-header-content .sub-title span {
  font-size: 18px;
  margin: 0 12px 0 4px;
}

/* !END: Theme Page Header CSS */
/**----------------------------------------
START: Theme Team Details CSS
----------------------------------------*/
.team-details-content {
  margin: 50px 0;
}
.team-details-content .details-box {
  margin-bottom: 20px;
}
.team-details-content .details-header {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 25px;
}
.team-details-content .details-title {
  margin-bottom: 15px;
}
.team-details-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 20px;
}
.team-details-content .details-list {
  margin-left: 18px;
  list-style: disc;
}
.team-details-content .details-list li {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #7f7f7f;
}
.team-details-content .details-list li strong {
  color: var(--tw-color-common-black);
  font-weight: 400;
  margin-right: 8px;
}
.team-details-content .details-list li:not(:last-of-type) {
  margin-bottom: 12px;
}
.team-details-content .desc {
  margin-bottom: 0;
}

/* !END: Theme Team Details CSS */
/**----------------------------------------
START: Theme product Details CSS
----------------------------------------*/
.product-list-wrap .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  margin-bottom: 25px;
}
.product-list-wrap .subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}
.product-list-wrap .price {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: var(--tw-color-theme-primary);
  margin-bottom: 6px;
}
.product-list-wrap .price span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(28, 30, 33, 0.878431);
}
.product-list-wrap .weight {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: var(--tw-color-heading-primary);
  margin-bottom: 20px;
}
.product-list-wrap .weight span {
  font-weight: 400;
}
.product-list-wrap .view-more {
  font-size: 18px;
  line-height: 25px;
  text-decoration-line: underline;
  color: #3b61de;
}
.product-list-wrap .product-list {
  margin-bottom: 25px;
}
.product-list-wrap .product-list td {
  vertical-align: top;
  font-size: 18px;
  line-height: 25px;
  padding: 12px 15px 15px 0;
  border-bottom: 1px solid var(--tw-color-border-1);
}
.product-list-wrap .product-list td:first-child {
  text-wrap: nowrap;
  min-width: 90px;
}
.product-list-wrap .product-list td:last-child {
  font-weight: 600;
  color: var(--tw-color-heading-primary);
}
.product-list-wrap .product-list tr:first-child td {
  padding-top: 0;
}

.product-img {
  height: 100%;
  overflow: hidden;
  max-height: 536px;
  border: 1px solid #d1d1d1;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.product-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.more-product-wrraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 19px;
  border-bottom: 1px solid #d8d8d8;
}

.more-product-wrraper .more-product-title {
  font-weight: 700;
  font-size: 45px;
  line-height: 54px;
  color: #1c1e21;
}
@media only screen and (max-width: 991px) {
  .more-product-wrraper .more-product-title {
    font-size: 30px;
    line-height: 36px;
  }
}

/* !END: Theme product Details CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-form .form-control {
  box-shadow: none;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--tw-color-border-1);
  border-radius: 0;
}
.contact-form .submit-btn {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-form .submit-btn {
    margin-top: 20px;
  }
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  overflow: hidden;
}

.footer-wrap {
  border-bottom: 1px solid var(--tw-color-border-1);
}
@media only screen and (max-width: 991px) {
  .footer-wrap {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-wrap {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .footer-logo img {
  margin-top: -5px;
  margin-bottom: 28px;
  max-width: 200px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .footer-logo img {
    margin-bottom: 18px;
  }
}
.footer-widget p {
  color: #bfbebe !important;
  margin-bottom: 30px;
  width: 100%;
}
.footer-widget .footer-social li {
  display: inline-flex;
}
.footer-widget .footer-social li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget .footer-social li a {
  font-size: 26px;
  color: var(--tw-color-heading-primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2b2b;
}
.footer-widget .footer-social li a:hover {
  background-color: var(--tw-color-theme-primary);
  color: var(--tw-color-common-white);
}
.footer-widget .widget-header {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .footer-widget .widget-header {
    margin-bottom: 25px;
  }
}
.footer-widget .widget-list {
  list-style: none;
}
.footer-widget .widget-list li {
  color: var(--tw-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.footer-widget .widget-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .widget-list li a:hover {
  color: var(--tw-color-theme-primary);
}
.footer-widget .widget-list.adress-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 1170px) {
  .footer-widget .widget-list.adress-list li {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .footer-widget .widget-list.adress-list li {
    grid-template-columns: 56px 1fr;
  }
}
.footer-widget .widget-list.adress-list li .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tw-color-theme-primary);
}
.footer-widget .widget-list.adress-list li h6 {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 6px;
  color: #bfbebe;
}
.footer-widget .widget-list.adress-list li a {
  font-family: "Urbanist";
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #bfbebe;
}

/* Footer 2 */
.footer-2 {
  background-image: url("../img/footer-bg.png");
}
.footer-2 .footer-wrap {
  border-bottom: 1px solid var(--tw-color-border-3);
}
.footer-2 .row {
  --bs-gutter-x: 60px;
}
@media (max-width: 1170px) {
  .footer-2 .row {
    --bs-gutter-x: 8px;
  }
}
.footer-2 .footer-widget p {
  color: var(--tw-color-common-white);
}
.footer-2 .footer-widget .footer-social li a {
  color: var(--tw-color-common-white);
}
.footer-2 .footer-widget .widget-header {
  color: var(--tw-color-common-white);
}
.footer-2 .footer-widget .widget-list li {
  color: var(--tw-color-common-white);
}
.footer-2 .footer-widget .widget-list li a {
  color: var(--tw-color-common-white);
}
.footer-2 .footer-widget .widget-list li a:hover {
  color: var(--tw-color-theme-primary);
}

/* !END: Theme Footer CSS */ /*# sourceMappingURL=main.css.map */

.announcement-bar {
  background-color: var(--tw-color-theme-primary);
  color: white;
  padding: 14px 0;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  @media (max-width: 550px) {
    font-size: 12px;
  }
}
.announcement-bar svg {
  margin-right: 10px;
}
.announcement-bar .message {
  display: inline-block;
}
