/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --laboix-font: "Lexend", sans-serif;
  --laboix-heading-font: "Lexend", sans-serif;
  --laboix-special-font: "Urbanist", sans-serif;
  --laboix-text: #6A6A6A;
  --laboix-text-rgb: 106, 106, 106;
  --laboix-text-gray: #97A5B7;
  --laboix-text-gray-rgb: 151, 165, 183;
  --laboix-base: #021936;
  --laboix-base-rgb: 2, 25, 54;
  --laboix-secondary: #2a5c34;
  --laboix-secondary-rgb: 14, 189, 102;
  --laboix-gray: #6A6A6A;
  --laboix-gray-rgb: 106, 106, 106;
  --laboix-white: #fff;
  --laboix-white-rgb: 255, 255, 255;
  --laboix-black: #000;
  --laboix-black-rgb: 0, 0, 0;
  --laboix-black2: #011126;
  --laboix-black2-rgb: 1, 17, 38;
  --laboix-black3: #111117;
  --laboix-black3-rgb: 17, 17, 23;
  --laboix-border-color: #DBDBDB;
  --laboix-border-color-rgb: 219, 219, 219;
  --laboix-border-color2: #F3F3F3;
  --laboix-border-color2-rgb: 243, 243, 243;
  --laboix-letter-space: 0.1em;
  --laboix-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.laboix-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--laboix-secondary, #2a5c34);
  color: #fff;
  font-family: var(--laboix-font, "Lexend", sans-serif);
  padding: 19px 41.5px;
  transition: 500ms;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 112.5%;
  background-color: var(--laboix-secondary, #2a5c34);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.laboix-btn:hover {
  color: var(--laboix-secondary, #2a5c34);
  background-color: #fff;
}

.laboix-btn::before {
  content: "";
  height: 0px;
  width: 0px;
  background-color: var(--laboix-base, #021936);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}

.laboix-btn:hover {
  color: var(--laboix-white, #fff);
}

.laboix-btn:hover::before {
  height: 400px;
  width: 200%;
  top: -70%;
  left: -50%;
}

.laboix-btn--submite:hover::before {
  height: 200%;
  width: 200%;
  top: -50%;
  left: -50%;
}

.laboix-btn--base {
  background: var(--laboix-base, #021936);
}

.laboix-btn--base::before {
  background-color: var(--laboix-secondary, #2a5c34);
}

.laboix-btn--base:hover {
  color: var(--laboix-base, #021936);
}

.laboix-btn--white::before {
  background-color: var(--laboix-white, #fff);
}

.laboix-btn--white:hover {
  color: var(--laboix-base, #021936);
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--laboix-font, "Lexend", sans-serif);
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  line-height: 187.5%;
  font-weight: 500;
  counter-reset: courseNumber;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--laboix-white, #fff);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--laboix-heading-font, "Lexend", sans-serif);
  color: var(--laboix-base, #021936);
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-x-20 {
  --bs-gutter-x: 20px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--laboix-base, #021936);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--laboix-text, #6A6A6A);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}

.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}

.block-title p {
  margin: 0;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}

.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--laboix-black, #000);
  font-family: var(--laboix-special-font, "Urbanist", sans-serif);
}

@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}

.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--laboix-black, #000);
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: var(--laboix-base, #021936);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--laboix-black, #000);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
  color: var(--laboix-secondary, #2a5c34);
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--laboix-base, #021936);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--laboix-secondary, #2a5c34);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 0px;
}

@media (min-width: 992px) {
  .post-pagination {
    margin-top: 0px;
  }
}

.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #eff2f6;
  align-items: center;
  justify-content: center;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}

@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

.post-pagination a:hover {
  background-color: var(--laboix-base, #021936);
  color: #fff;
}

.post-pagination li:first-child a {
  background-color: var(--laboix-base, #021936);
  color: #fff;
}

.post-pagination li:last-child a {
  background-color: var(--laboix-black, #000);
  color: #fff;
}

.post-pagination li+li {
  margin-left: 10px;
}

.laboix-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.laboix-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.laboix-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--laboix-gray, #f9f6f1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--laboix-text, #6A6A6A);
  border-radius: 50%;
  font-size: 14px;
  color: var(--laboix-text, #6A6A6A);
  transition: all 500ms ease;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: var(--laboix-black, #000);
  color: var(--laboix-white, #fff);
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--laboix-black, #000);
  border: 2px solid var(--laboix-white, #fff);
  box-shadow: 0 0 1px rgba(var(--laboix-black-rgb, 0, 0, 0), 1);
  margin: 0;
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.laboix-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--laboix-black, #000);
  border: 2px solid var(--laboix-black, #000);
  box-shadow: 0 0 1px rgba(var(--laboix-black-rgb, 0, 0, 0), 1);
}

.laboix-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 60px;
}

.sec-title {
  margin-top: -1px;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
  }
}

.sec-title--two .sec-title__title {
  color: var(--laboix-white, #fff);
  font-weight: 700;
}

.sec-title__img {
  object-fit: cover;
  margin-right: 8px;
}

.sec-title__tagline {
  margin: 0;
  color: var(--laboix-secondary, #2a5c34);
  font-size: 14px;
  font-weight: 500;
  line-height: 185.714%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sec-title__title {
  margin: 0;
  color: var(--laboix-base, #021936);
  font-size: 40px;
  font-weight: 700;
  line-height: 117.5%;
  letter-spacing: -0.8px;
}

@media (max-width: 768px) {
  .sec-title__title {
    font-size: 30px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--laboix-black, #000);
  color: var(--laboix-white, #fff);
  font-family: var(--laboix-font, "Lexend", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--laboix-font, "Lexend", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--laboix-gray, #f9f6f1);
  background-image: none;
  font-family: var(--laboix-font, "Lexend", sans-serif);
  color: var(--laboix-text, #6A6A6A);
}

.ui-datepicker-calendar td a {
  border-color: var(--laboix-border-color, #DBDBDB);
  background-color: var(--laboix-gray, #f9f6f1);
  background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--laboix-border-color, #DBDBDB);
  background-color: var(--laboix-gray, #f9f6f1);
  background-image: none;
  color: var(--laboix-text, #6A6A6A);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--laboix-white, #fff);
  background-color: var(--laboix-base, #021936);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--laboix-white, #fff);
  background-color: var(--laboix-base, #021936);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--laboix-white, #fff);
  color: var(--laboix-black, #000);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--laboix-base, #021936);
  color: var(--laboix-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.logo-laboix img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  background-color: var(--laboix-black, #000);
  padding: 100px 0;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--laboix-black, #000);
  background-size: cover;
  background-position: center center;
  opacity: 0.5;
}

.video-one .container {
  position: relative;
  text-align: center;
}

.video-one__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}

.video-one__btn .video-popup {
  font-size: 24px;
  color: var(--laboix-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}

.video-one__btn .video-popup:hover {
  color: var(--laboix-base, #021936);
}

.video-one__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-one__btn .curved-circle--item {
  width: 145px;
}

.video-one__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--laboix-white, #fff);
  letter-spacing: 0.4em;
}

.video-one__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--laboix-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .video-one__title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .video-one__title {
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
}

.video-one__link::before {
  background-color: var(--laboix-base, #021936);
}

.video-two {
  position: relative;
  background-color: var(--laboix-black, #000);
  padding: 143px 0 320px;
}

@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }

  .video-two .text-end {
    text-align: left !important;
  }
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--laboix-black, #000);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}

.video-two .container {
  position: relative;
}

.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}

.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--laboix-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}

.video-two__btn .video-popup:hover {
  color: var(--laboix-base, #021936);
}

.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}

.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--laboix-white, #fff);
  letter-spacing: 0.4em;
}

.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--laboix-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}

.video-two__link::before {
  background-color: var(--laboix-base, #021936);
}

.team-card {
  position: relative;
  width: 100%;
  margin-bottom: 17px;
}

.team-card__inner {
  position: relative;
  z-index: 1;
}

.team-card__image {
  position: relative;
  z-index: 1;
}

.team-card__image img {
  object-fit: cover;
  width: 100%;
}

.team-card__image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.7);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
}

.team-card__content {
  position: relative;
  z-index: 1;
  margin-top: -75px;
  margin-left: 54px;
  margin-right: 39px;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .team-card__content {
    margin-left: 15px;
    margin-right: 0px;
  }
}

.team-card__content__inner {
  padding: 28px 30px 27px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  background: var(--laboix-white, #fff);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-card__content::after {
  width: 80px;
  height: 100px;
  content: "";
  position: absolute;
  background: var(--laboix-base, #021936);
  z-index: -1;
  bottom: -16px;
  left: -16px;
  transition: all 0.4s ease-in-out;
}

.team-card__content__title {
  color: var(--laboix-base, #021936);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.team-card__content__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-card__content__title a:hover {
  background-size: 100% 1px;
}

.team-card__content__designation {
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

.team-card__content__hover {
  position: relative;
}

.team-card__content__hover__icon {
  display: inline-block;
  width: 45px;
  height: 51px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  background-color: var(--laboix-secondary, #2a5c34);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.000000 52.000000"> <g transform="translate(0.000000,52.000000) scale(0.050000,-0.050000)" > <path d="M215 895 l-215 -123 0 -251 1 -251 204 -114 c113 -62 216 -116 229 -120 14 -3 124 48 245 114 l220 120 0 251 1 251 -218 124 c-259 148 -206 148 -467 -1z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.000000 52.000000"> <g transform="translate(0.000000,52.000000) scale(0.050000,-0.050000)" > <path d="M215 895 l-215 -123 0 -251 1 -251 204 -114 c113 -62 216 -116 229 -120 14 -3 124 48 245 114 l220 120 0 251 1 251 -218 124 c-259 148 -206 148 -467 -1z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.team-card__content__hover__icon i {
  color: var(--laboix-white, #fff);
  font-size: 16.66px;
}

.team-card__content__hover__icon:hover {
  background-color: var(--laboix-base, #021936);
}

.team-card__content__hover__social {
  background: var(--laboix-base, #021936);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  position: absolute;
  bottom: 70px;
  left: 5px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 1000ms ease;
  transform-origin: bottom top;
}

.team-card__content__hover__social a {
  color: var(--laboix-white, #fff);
  line-height: 1;
  font-size: 9px;
}

.team-card__content__hover__social a:hover {
  color: var(--laboix-secondary, #2a5c34);
}

.team-card__content__hover__social a+a {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(249, 244, 232, 0.2);
}

.team-card__content__hover__social::after {
  position: absolute;
  bottom: -8px;
  left: 36%;
  content: "";
  width: 9.526px;
  height: 8.25px;
  background: var(--laboix-base, #021936);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.team-card__content__hover:hover .team-card__content__hover__icon {
  background-color: var(--laboix-base, #021936);
}

.team-card__content__hover:hover .team-card__content__hover__social {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.team-card:hover .team-card__content::after {
  background: var(--laboix-secondary, #2a5c34);
}

.team-card:hover .team-card__image::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .team-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.team-one {
  padding: 120px 0px;
  background: var(--laboix-white, #fff);
}

@media (max-width: 991px) {
  .team-one {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .team-one {
    padding: 80px 0px;
  }
}

.team-one--home {
  padding-bottom: 0px;
}

.team-one--home .container {
  max-width: 1570px;
  margin-left: auto;
  margin-right: auto;
}

.team-one__carousel .owl-nav {
  display: none !important;
}

.team-details {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--laboix-border-color, #DBDBDB);
}

@media (min-width: 992px) {
  .team-details {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.team-details__image {
  display: inline-block;
  position: relative;
  margin-right: -30px;
}

.team-details__image img {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .team-details__image {
    margin-right: 0px;
  }
}

@media (max-width: 768px) {
  .team-details__content {
    margin-top: 30px;
  }
}

@media (min-width: 1199px) {
  .team-details__content {
    padding-left: 70px;
  }
}

.team-details__content__subtitle {
  margin-top: -6px;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.team-details__content__title {
  margin-top: -5px;
  font-size: 30px;
  margin-bottom: 22px;
  color: var(--laboix-base, #021936);
  font-weight: 700;
  line-height: 117.5%;
  letter-spacing: -0.8px;
}

@media (min-width: 992px) {
  .team-details__content__title {
    font-size: 40px;
  }
}

.team-details__content__text {
  color: var(--laboix-text, #6A6A6A);
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
}

@media (min-width: 992px) {
  .team-details__content__text {
    margin-bottom: 32px;
  }
}

.team-details__content__highlight {
  background-color: var(--laboix-border-color2, #F3F3F3);
  position: relative;
  padding: 10px 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  border-left: 6px solid var(--laboix-secondary, #2a5c34);
}

.team-details__content__highlight__text {
  max-width: 492px;
  display: block;
  width: 100%;
  color: var(--laboix-base, #021936);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  transition: all 0.4s ease-in-out;
}

@media (min-width: 992px) {
  .team-details__content__highlight {
    padding: 22px 40px;
    margin-bottom: 38px;
  }

  .team-details__content__highlight__text {
    font-size: 20px;
  }
}

.team-details__content__highlight:hover {
  background: var(--laboix-text, #6A6A6A);
}

.team-details__content__highlight:hover .team-details__content__highlight__text {
  color: var(--laboix-white, #fff);
}

.team-details__list {
  margin-bottom: 32px;
}

.team-details__list>li {
  margin-bottom: 11px;
  color: var(--laboix-base, #021936);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.team-details__list>li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: var(--laboix-base, #021936);
}

.team-details__list>li a:hover {
  background-size: 100% 1px;
}

.team-details__list>li span {
  display: inline-block;
  color: var(--laboix-text, #6A6A6A);
}

.team-details__list>li:last-child {
  margin-bottom: 0;
}

.team-details .team-skills {
  margin-bottom: 40px;
}

.team-details .team-skills__progress+.team-skills__progress {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .team-details .team-skills__progress+.team-skills__progress {
    margin-top: 18px;
  }
}

.team-details .team-skills__progress__title {
  color: var(--laboix-base, #021936);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
  text-shadow: 0 0 0 0.1px currentColor;
}

.team-details .team-skills__progress__bar {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: var(--laboix-border-color2, #F3F3F3);
}

.team-details .team-skills__progress__inner {
  position: absolute;
  height: 10px;
  background-color: var(--laboix-secondary, #2a5c34);
  transition: all 700ms linear;
  width: 0px;
}

.team-details .team-skills__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  margin-bottom: 8px;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.team-details__social a {
  width: 36px;
  height: 36px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--laboix-border-color2, #F3F3F3);
  font-size: 14px;
  color: var(--laboix-base, #021936);
  line-height: 1;
  transition: all 500ms ease;
}

.team-details__social a:hover {
  background-color: var(--laboix-base, #021936);
  color: var(--laboix-white, #fff);
}

.team-skills-one {
  padding: 120px 0 110px 0px;
}

@media (max-width: 767px) {
  .team-skills-one {
    padding: 60px 0;
  }
}

.team-skills-one__title {
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--laboix-base, #021936);
  font-weight: 700;
  line-height: 117.5%;
  letter-spacing: -0.8px;
}

@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  .team-skills-one__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

.team-skills-one__text {
  max-width: 542PX;
  width: 100%;
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  line-height: 187.5%;
  font-size: 16px;
  font-weight: 500;
}

.team-skills-one__certificates {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 21px;
}

.team-skills-one__certificates__item {
  max-width: 176px;
  width: 100%;
  cursor: pointer;
}

.team-skills-one__certificates__item img {
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}

.team-skills-one__certificates__item:hover img {
  object-fit: cover;
  filter: grayscale(0%);
}

.team-form-one {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .team-form-one {
    padding: 80px 0;
  }
}

.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}

.team-form-one .container {
  position: relative;
  max-width: 898px;
}

.team-form-one .sec-title {
  text-align: center;
}

.team-form-one .form-one .bootstrap-select>.dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
  background-color: var(--laboix-white, #fff);
}

.team-form-one .form-one textarea {
  height: 176px;
}

.team-form-one .form-one .laboix-btn {
  padding: 19px 40.5px;
}

.blog-card {
  background: var(--laboix-white, #fff);
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.blog-card__image {
  position: relative;
  z-index: 1;
}

.blog-card__image__item {
  max-height: 240px;
  width: 100%;
  overflow: hidden;
}

.blog-card__image__item img {
  object-fit: cover;
  width: 100%;
}

.blog-card__image__link {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.7);
  visibility: hidden;
  opacity: 0;
}

.blog-card__image__link::before {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--laboix-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__image__link::after {
  content: "";
  width: 2px;
  height: 32px;
  background-color: var(--laboix-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__date {
  position: absolute;
  bottom: -72px;
  right: 8px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M424 1713 l-423 -243 4 -489 5 -489 410 -236 c226 -129 419 -235 430 -235 11 0 205 106 430 237 l410 237 5 487 5 488 -314 180 c-173 99 -364 208 -426 243 l-112 62 -424 -242z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M424 1713 l-423 -243 4 -489 5 -489 410 -236 c226 -129 419 -235 430 -235 11 0 205 106 430 237 l410 237 5 487 5 488 -314 180 c-173 99 -364 208 -426 243 l-112 62 -424 -242z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background: var(--laboix-secondary, #2a5c34);
  display: inline-block;
  padding: 17px;
  color: var(--laboix-white, #fff);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.blog-card__date img {
  width: 42px;
}

.blog-card__date__day {
  margin-top: -7px;
  margin-bottom: -8px;
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.blog-card__content {
  padding: 30px 40px 40px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .blog-card__content {
    padding: 30px 30px 40px;
  }
}

.blog-card__content__btn {
  background: var(--laboix-border-color2, #F3F3F3);
  position: relative;
  z-index: 1;
}

.blog-card__content__btn a {
  padding: 10px 30px;
  display: block;
  color: var(--laboix-text, #6A6A6A);
  font-size: 14px;
  font-weight: 600;
  line-height: 178.571%;
  text-transform: capitalize;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.blog-card__content__btn a.laboix-btn {
  color: var(--laboix-white, #fff);
}

.blog-card__content__btn a i {
  top: 35%;
  position: absolute;
  font-size: 12px;
  right: 30px;
}

.blog-card__content__btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: var(--laboix-base, #021936);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  left: 0%;
  top: 0;
}

.blog-card__content__btn:hover a {
  color: var(--laboix-white, #fff);
}

.blog-card__content__btn:hover::before {
  width: 100%;
}

.blog-card__content::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: var(--laboix-secondary, #2a5c34);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  left: -100%;
  top: 0;
}

.blog-card__content::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: var(--laboix-secondary, #2a5c34);
  transition: all 0.5s ease-in-out;
  z-index: -1;
  right: -100%;
  top: 0;
}

.blog-card__author {
  margin-bottom: 5px;
  margin-top: -4px;
}

.blog-card__author__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-card__author__thumb {
  max-width: 35px;
  width: 100%;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.blog-card__author__thumb img {
  object-fit: cover;
  width: 100%;
}

.blog-card__author__name {
  color: var(--laboix-base, #021936);
  font-size: 16px;
  font-weight: 700;
  line-height: 162.5%;
  margin-bottom: -9px;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__author__name:hover {
  background-size: 100% 1px;
}

.blog-card__author__deg {
  color: var(--laboix-text, #6A6A6A);
  font-size: 12px;
  font-weight: 500;
  line-height: 208.333%;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.blog-card__title {
  color: var(--laboix-base, #021936);
  font-size: 24px;
  font-weight: 700;
  line-height: 145.833%;
  letter-spacing: -0.48px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) and (min-width: 758px) {
  .blog-card__title {
    font-size: 20px;
  }
}

.blog-card__title a {
  color: currentColor;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  background-size: 100% 1px;
}

.blog-card__title a:hover {
  color: var(--laboix-white, #fff);
}

.blog-card:hover .blog-card__content__btn {
  background: var(--laboix-white, #fff);
}

.blog-card:hover .blog-card__content::before {
  left: 0%;
}

.blog-card:hover .blog-card__content::after {
  right: 0%;
}

.blog-card:hover .blog-card__author__name,
.blog-card:hover .blog-card__author__deg {
  color: var(--laboix-white, #fff);
}

.blog-card:hover .blog-card__title {
  color: var(--laboix-white, #fff);
}

.blog-card:hover .blog-card__date {
  background: var(--laboix-base, #021936);
}

.blog-card:hover .blog-card__image__link {
  visibility: visible;
  opacity: 1;
}

.blog-card__two {
  margin-bottom: 60px;
}

.blog-card__two__image {
  max-height: 449px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.blog-card__two__image img {
  object-fit: cover;
  width: 100%;
  max-height: 449px;
}

.blog-card__two__image__item {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.7);
  visibility: hidden;
  opacity: 0;
}

.blog-card__two__image__item::before {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--laboix-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__two__image__item::after {
  content: "";
  width: 2px;
  height: 32px;
  background-color: var(--laboix-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-card__two__image:hover .blog-card__two__image__item {
  visibility: visible;
  opacity: 1;
}

.blog-card__two__image:hover .blog-card__two__date {
  background: var(--laboix-base, #021936);
}

.blog-card__two__date {
  position: absolute;
  bottom: -24px;
  right: 38px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M424 1713 l-423 -243 4 -489 5 -489 410 -236 c226 -129 419 -235 430 -235 11 0 205 106 430 237 l410 237 5 487 5 488 -314 180 c-173 99 -364 208 -426 243 l-112 62 -424 -242z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85.000000 99.000000"> <g transform="translate(0.000000,99.000000) scale(0.050000,-0.050000)"> <path d="M424 1713 l-423 -243 4 -489 5 -489 410 -236 c226 -129 419 -235 430 -235 11 0 205 106 430 237 l410 237 5 487 5 488 -314 180 c-173 99 -364 208 -426 243 l-112 62 -424 -242z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  background: var(--laboix-secondary, #2a5c34);
  display: inline-block;
  padding: 30px 30px 20px 30px;
  color: var(--laboix-white, #fff);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.blog-card__two__date__day {
  margin-top: -7px;
  margin-bottom: -8px;
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.blog-card__two__meta {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.blog-card__two__meta__item {
  color: var(--laboix-text, #6A6A6A);
  font-size: 14px;
  font-weight: 500;
  line-height: 214.286%;
}

.blog-card__two__meta__item:last-child::before {
  content: "|";
  margin-left: 13px;
  margin-right: 13px;
  font-weight: 300;
}

.blog-card__two__meta__item a {
  color: inherit;
}

.blog-card__two__meta__item a i {
  color: var(--laboix-secondary, #2a5c34);
  font-size: 15px;
  margin-right: 2px;
}

.blog-card__two__meta__item a:hover {
  color: var(--laboix-base, #021936);
}

.blog-card__two__title {
  color: var(--laboix-black3, #111117);
  font-family: var(--laboix-special-font, "Urbanist", sans-serif);
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 15px;
  text-shadow: 0 0 0.2px currentColor;
}

.blog-card__two__title--two {
  font-family: var(--laboix-heading-font, "Lexend", sans-serif);
  font-weight: 700;
  text-shadow: 0 0 0px currentColor;
}

.blog-card__two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__two__title a:hover {
  background-size: 100% 1px;
}

.blog-card__two__title a:hover {
  color: var(--laboix-secondary, #2a5c34);
}

.blog-card__two__text {
  color: var(--laboix-text, #6A6A6A);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  margin-bottom: 30px;
}

.blog-card__two__text--two {
  margin-bottom: 0;
}

.blog-card__two__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-one {
  padding: 120px 0px;
  background: var(--laboix-white, #fff);
}

@media (max-width: 991px) {
  .blog-one {
    padding: 100px 0px;
  }
}

@media (max-width: 768px) {
  .blog-one {
    padding: 80px 0px;
  }
}

.blog-one .owl-nav {
  display: none !important;
}

.blog-two {
  padding: 120px 0px;
}

@media (max-width: 991px) {
  .blog-two {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0;
  }
}

.blog-two__card {
  position: relative;
  z-index: 1;
}

.blog-two__card__list__item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-two__card__list__item:hover .blog-two__card__list__thumb__link {
  opacity: 1;
  visibility: visible;
}