

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap');


.main-menu ul li.has-dropdown > a::after, .main-menu ul li .submenu, .main-menu ul li .mega-menu, .main-menu ul li .mega-menu li ul li a::before, .vw-search-area, .mean-container .mean-nav ul li > a > i, .mean-container .mean-nav ul li a.mean-expand.mean-clicked i, .offcanvas__contact-icon i, .offcanvas__overlay, .fill-btn.has-border i, a,
.btn,
button,
span,
svg,
p,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6, i[class^=flaticon-], .body__overlay {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

/* variables */

:root { 
  --rajdhani-font: 'Rajdhani', sans-serif;
  --rubik-font: 'Rubik', sans-serif;
  /* colors */
  --theme-color: #275ca8;
  --color-1: #0e509e;
  --black: #121212;
  --black-2: #01273C;
  --white: #ffffff;
  --gray: #363636;

}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

 
}

/*---------------------------------
    TYPOGRAPHY CSS START
---------------------------------*/
body {
  font-family: var(--rubik-font);
  font-size: 16px;
  font-weight: normal;
  color: var(--gray);
  line-height: 26px;    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rajdhani-font);
  color: var(--black);
  margin-top: 0px;
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 700;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 70px;
}

h3 {
  font-size: 60px;
}

h4 {
  font-size: 40px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gray);
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

figure{
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: rgba(22, 22, 22, 0.1);
  opacity: 1;
  border-width: 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
.nice-select,
textarea,
select {
    outline: none;
    background: #fff;
    height: 50px;
    width: 100%;
    line-height: 35px;
    font-size: 16px;
    color: var(--gray);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    border: 1px solid #275ca8;
}

*::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #AFAFAF;
  opacity: 1;
  font-size: 16px;
}

*::placeholder {
  color: #AFAFAF;
  opacity: 1;
  font-size: 16px;
}

/*----------------------------------------
   BOOTSTRAP CUSTOMIZE
-----------------------------------------*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

.row {
  --bs-gutter-x: 3rem;
}

.large-container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 15px;
}

.large-container-1 {
  max-width: 1740px;
  margin: 0 0 0 auto;
  padding: 0 15px;
}

.medium-container {
  max-width: 1590px;
  margin: 0 auto;
  padding: 0 15px;
}

@media only screen and (max-width: 1440px){  

  .medium-container {
    max-width: 1000px;
  }
      
}

@media (min-width: 1441px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1350px;
  }
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 50px;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

.g-15 {
  --bs-gutter-y: 15px;
  --bs-gutter-x: 15px;
}

/*---------------------------------
  COMMON CLASSES CSS START
---------------------------------*/

.page-wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}

.w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-img img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}

.bg-color-1{
  background: var(--color-1);
}

.bg-color-2{
  background: #F4F4F4;
}

.bg-color-3{
  background: #F6F7FB;
}

.bg-color-4{
  background: var(--black);
}


.bg-color-5{
  background: #0e509e;
}
/*----------------------------------------
   MFP CUSTOMIZE
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
.feature_content p
{
      height: auto !important;
}

.banner-button
{
      bottom: 3% !important;
        left: 10% !important;
}
.banner-button .primary-btn-1
{

    font-size: 12px !important;
    padding: 9px 8px !important;

}

.testimonials-3-navigation-wrapper .common-slider-navigation
{
      display: none;

}
.banner-slider-area .primary-btn-1
{
      padding: 11px 10px !important;    font-size: 11px !important;
}

.w-206 {
    width: 138px !important;
}
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: #fff;
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: "Font Awesome 6 Pro";
  font-size: 31px;
  font-weight: 200;
  right: -20px;
  margin-top: -25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-close::after {
    right: 15px;
    margin-top: -30px;
  }
}

.body__overlay {
  background-color: #151515;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.body__overlay {
  background-color: #151515;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.body__overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

.bd-sticky {
  position: sticky;
  top: 120px;
}

/*----------------------------------------
  BODY OVERLAY
-----------------------------------------*/
.body-overlay {
  background-color: #151515;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

/*----------------------------------------*/
/* OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__close button {
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background-color: var(--theme-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.offcanvas__close button i {
  color: #fff;
}
.offcanvas__info {
  background: #191919 none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info ::-webkit-scrollbar {
  display: none;
}
@media (max-width:450px) {
  .offcanvas__info {
    width: 300px;
  }
}
.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas__logo a img {
  width: 150px;
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__top {
  padding-bottom: 20px;
}
.offcanvas__search {
  position: relative;
}
.offcanvas__search input {
  width: 100%;
  height: 50px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #CECECE;
  font-size: 14px;
  color: #fff;
  padding-left: 0;
}
.offcanvas__search input::placeholder {
  color: #fff;
}
.offcanvas__search input:focus {
  border-color: #fff;
}
.offcanvas__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
}
.offcanvas__search button:hover {
  color: var(--theme-color);
}
.offcanvas__text p {
  margin-bottom: 25px;
}
.offcanvas__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--white);
}
.offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__contact ul li:hover i {
  color: var(--white);
  border-color: var(--color-1);
  background-color: var(--color-1);
}
.offcanvas__contact-icon i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  border: 1px solid var(--clr-border-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 5;
}
.offcanvas__contact-text a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.offcanvas__contact-text a:hover {
  color: var(--primary-color);
}
.offcanvas__social {
  margin-bottom: 30px;
}
.offcanvas__social ul li {
  display: inline-block;
}
.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}
.offcanvas__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  background-color: transparent;
}
.offcanvas__social ul li a:hover {
  color: var(--white);
  border: 1px solid var(--color-1);
  background-color: var(--color-1);
}
.offcanvas__notification-icon a {
  font-size: 14px;
  color: #fff;
  position: relative;
}
.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  right: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--theme-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}
.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
}
.offcanvas__notification-text p .notification-number {
  color: var(--theme-color);
}
.offcanvas__notification-text p a {
  color: var(--theme-color);
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.sidebar__toggle {
  cursor: pointer;
  height: 50px;
  width: 50px;
  border: 1px solid var(--theme-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease-in-out;
}

.sidebar__toggle:hover {
  background: var(--primary-color);
}

.sidebar__toggle:hover .bar-icon span,
.sidebar__toggle:hover .bar-icon span small {
  background: #fff;
}

@media (max-width: 992px) {
  .app__offcanvas-overlay.overlay-open {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
  }
}

.offcanvas__contact-icon {
  margin-inline-end: 15px;
}


/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/


.section-title {
  font-size: 35px;
    font-weight: 700;

}


.feature_content .height {
        height: 200px !important;
    }
@media only screen and (min-width: 320px) and (max-width: 767px) {

.section-title
{
      font-size: 26px;
}
.feature_content .height {
        height: auto !important;
    }
}


/*----------------------------------------*/
/*  SPACE CSS START
/*----------------------------------------*/


.section-space {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-space-top {
  padding-top: 80px;
}

.section-space-bottom {
  padding-bottom: 80px;
}

.section-space-medium {
  padding: 100px 0;
}

/*----------------------------------------*/
/*  BACKTOTOP CSS START
/*----------------------------------------*/
.backtotop-wrap {
  position: fixed;
  bottom: 35px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  color: #151515;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}
.backtotop-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
}
.backtotop-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.backtotop-wrap::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f062";
  text-align: center;
  line-height: 44px;
  font-size: 16px;
  font-weight: 900;
  left: 0;
  top: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.backtotop-wrap svg path {
  fill: none;
}
.backtotop-wrap svg.backtotop-circle path {
  stroke: #ccc;
  stroke-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*----------------------------------------*/
/* ANIMATION CSS START
/*----------------------------------------*/
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*======================================
Animate slide-left 
========================================*/
@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/*======================================
Animate card-bounce
========================================*/
@keyframes card-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes hero-circle-1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.quote-animation {
  animation-duration: 10s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: card-bounce;
}

/*======================================
Animate wobble-vertical
========================================*/
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/*======================================
Animate wobble-vertical
========================================*/
@keyframes shape-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateCircle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate-circle {
  -webkit-animation-name: rotateCircle;
  animation-name: rotateCircle;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes circle {
0% {
  opacity: 1;
}
40% {
  opacity: 1;
}
100% {
  width: 200%;
  height: 200%;
  opacity: 0;
}
}
@keyframes circle {
0% {
  opacity: 1;
}
40% {
  opacity: 1;
}
100% {
  width: 200%;
  height: 200%;
  opacity: 0;
}
}


@-webkit-keyframes shine {
100% {
  left: 125%;
}
}
@keyframes shine {
100% {
  left: 125%;
}
}

@keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 1920px 0; }
}

@-webkit-keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 1920px 0; }
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  }
  @keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  }


  @-webkit-keyframes pulse-border {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes pulse-border {
    0% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
              transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }

  @keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}


@keyframes aspro-scroller {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes aspro-scroller-reverse {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}


/*----------------------------------------*/
/*  PRELOADER CSS START
/*----------------------------------------*/
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 999;
}

.vw-loader-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
}

.vw-loader-inner {
  position: fixed;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.vw-loader {
  margin-left: 92px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .vw-loader {
    transform: scale(0.8);
    margin-left: 66px;
  }
}

.vw-loader-item {
  position: absolute;
  width: 6px;
  height: 80px;
  margin-top: -45px;
  border-radius: 0px;
  background-color: var(--theme-color);
  animation: vw-loader-aim 0.8s infinite;
  animation-direction: alternate-reverse;
}

.vw-loader .vw-loader-item:nth-child(1) {
  margin-left: 0px;
}
.vw-loader .vw-loader-item:nth-child(2) {
  margin-left: -14px;
  animation-delay: 0.1s;
}
.vw-loader .vw-loader-item:nth-child(3) {
  margin-left: -28px;
  animation-delay: 0.2s;
}
.vw-loader .vw-loader-item:nth-child(4) {
  margin-left: -42px;
  animation-delay: 0.3s;
}
.vw-loader .vw-loader-item:nth-child(5) {
  margin-left: -56px;
  animation-delay: 0.4s;
}
.vw-loader .vw-loader-item:nth-child(6) {
  margin-left: -70px;
  animation-delay: 0.5s;
}
.vw-loader .vw-loader-item:nth-child(7) {
  margin-left: -84px;
  animation-delay: 0.6s;
}
.vw-loader .vw-loader-item:nth-child(8) {
  margin-left: -98px;
  animation-delay: 0.7s;
}

@keyframes vw-loader-aim {
  0% {
    height: 2px;
    margin-top: 0;
    transform: rotate(0deg);
  }
  100% {
    height: 80px;
    transform: rotate(0deg);
  }
}
/*----------------------------------------*/
/*  MEAN MENU CSS START
/*----------------------------------------*/
/* Mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-top: 1px solid #CECECE;
}
.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 30px;
  top: 0;
  font-weight: 400;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  MENU CSS START
/*----------------------------------------*/
.main-menu ul {
  margin-bottom: 0;
}
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}
.main-menu ul li:last-child {
  margin-inline-end: 0;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  color: var(--black);
  padding: 30px 0;
  text-align: left;
  position: relative;
}
.main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li.has-dropdown > a::after {
  content: "\f078";
  transform: translateY(-1px);
  font-size: 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-inline-start: 5px;
  display: inline-block;
}
.main-menu ul li.has-mega-menu {
  position: static;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #fff;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--theme-color);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #151515;
}
.main-menu ul li .submenu li a {
position: relative;
    z-index: 11;
    color: #151515;

    font-size: 15px;
    padding: 0 25px;
    padding-bottom: 9px;
    padding-top: 9px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    line-height: 22px;
}

.main-menu ul li .submenu li:last-child a {
  border: none;
}

.main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  background: #ECECEC;
  color: var(--theme-color);
}
.main-menu ul li .submenu li:hover > a::after {
  color: #fff;
}
.main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.main-menu ul li .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 40px 225px;
  background: #fff;
  box-shadow: 0px 20px 30px rgba(3, 4, 28, 0.1);
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  z-index: 99;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li .mega-menu {
    padding: 40px 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li .mega-menu {
    padding: 25px 25px;
    padding-inline-start: 80px;
  }
}
.main-menu ul li .mega-menu li {
  float: left;
  width: 25%;
  margin-inline-end: 0;
  text-align: left;
}
[dir=rtl] .main-menu ul li .mega-menu li {
  float: right;
  margin-left: 0;
  text-align: right;
}
.main-menu ul li .mega-menu li .mega-menu-title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #151515;
  cursor: text;
  padding: 0;
  display: inline-block;
  margin-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 5px;
}
.main-menu ul li .mega-menu li .mega-menu-title::before {
  display: none;
}
.main-menu ul li .mega-menu li ul li {
  width: 100%;
  float: none;
  margin-bottom: 5px;
}
.main-menu ul li .mega-menu li ul li:last-child {
  margin-bottom: 0;
}
.main-menu ul li .mega-menu li ul li a {
  font-weight: 500;
  font-size: 15px;
  color: #5D636A;
  padding: 0;
  position: relative;
}
.main-menu ul li .mega-menu li ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 1.2px;
  background-color: var(--primary-color);
}
[dir=rtl] .main-menu ul li .mega-menu li ul li a::before {
  right: 0;
  left: auto;
}
.main-menu ul li .mega-menu li ul li:hover > a {
  color: var(--primary-color);
}
.main-menu ul li .mega-menu li ul li:hover > a::before {
  background-color: var(--primary-color);
}
.main-menu ul li .mega-menu li:hover > .mega-menu-title {
  color: var(--primary-color);
  padding-inline-start: 0;
}
.main-menu ul li .mega-menu li:hover > a {
  color: var(--primary-color);
}
.main-menu ul li .mega-menu li a:hover {
  padding-inline-start: 18px;
}
[dir=rtl] .main-menu ul li .mega-menu li a:hover {
  padding-inline-start: 18px;
  padding-inline-end: 0px;
}
.main-menu ul li .mega-menu li a:hover::before {
  width: 12px;
}
.main-menu ul li:hover > a {
  color: var(--theme-color);
}

.main-menu ul li.active > a {
  color: var(--theme-color);
}

.main-menu ul li:hover > a::after {
  color: var(--primary-color);
}
.main-menu ul li:hover.has-dropdown > a::after {
  content: "\f078";
}
.main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover .mega-menu {
  visibility: visible;
  opacity: 1;
}
.main-menu-2 ul li a {
  color: #fff;
  position: relative;
}
.main-menu-2 ul li:hover > a {
  color: #fff;
}
.main-menu-2 ul li:hover > a::after {
  color: #fff;
}


/*----------------------------------------*/
/*  HEADER CSS START
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  inset-inline-start: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
}

.bar-icon {
  width: 22px;
  height: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  display: inline-block;
}
.bar-icon span:nth-child(2) {
  position: relative;
  width: 6.56px;
}
.bar-icon span:nth-child(2) small {
  position: absolute;
  height: 100%;
  background: var(--theme-color);
  left: 12.56px;
  width: 18.06px;
  z-index: 555;
}
.bar-icon.is-white span {
  background: #fff;
}
.bar-icon.is-white span:nth-child(2) small {
  background: #fff;
}

.bar-icon span:nth-child(3) {
  position: relative;
  width: 10px;
  margin: 0 0 0 auto;
}

.header-top-notice > p {
  margin-bottom: 0;
  color: #fff;
  font-weight: var(--bd-fw-medium);
  font-size: 14px;
}

.header-area {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  background-color: #fff;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area {
    padding: 0 15px;
  }
}
.header-area .fill-btn {
  height: 50px;
}

.header-one .header-logo {
  max-width: 170px;
  padding-left: 15px;
  margin-top: 20px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-one .header-logo {
    max-width: 145px;
  }
}
@media (max-width:450px) {
  .header-one .header-logo {
    max-width: 130px;
  }
}
.header-one .header-logo img {
  width: 100%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header-right {
  gap: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-left {
    gap: 45px;
  }
}

.bar-icon-2 {
  width: 35px;
  height: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon-2 span {
  width: 100%;
  height: 2px;
  background: var(--clr-text-secondary);
  display: inline-block;
}
.bar-icon-2 span:nth-child(1) {
  margin-inline-start: -10px;
}
.bar-icon-2:hover span:nth-child(2) {
  margin-inline-start: 0;
}
.bar-icon-2.is-white span {
  background: #fff;
}

.sticky {
  position: fixed !important;
  top: 0;
  z-index: 111;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -moz-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

.header-area.sticky .main-menu-2 ul li a {
  color: #151515;
}
.header-area.sticky .main-menu-2 ul li:hover > a::after {
  color: #151515;
}
.header-area.sticky .bar-icon-2.is-white span {
  background: #151515;
}


/* Header Top */

.header-top * {
  color: var(--white);
}
.header-top
{
      margin-top: -10px;
    padding-bottom: 26px;
}
.header-call-us {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 46px 55px;
  background: var(--black);
  gap: 15px;
  z-index: 1;
}

.header-call-us * {
  color: var(--white);
}

.header-call-us span {
  font-size: 12px;
  line-height: 22px;
}

.header-call-us h5 {
  font-size: 20px;
}

.header-call-us h5:hover {
  color: var(--theme-color);
}


.header-call-us-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.header-call-us-3 span {
  font-size: 12px;
  line-height: 22px;
}

.header-call-us-3 h5 {
  font-size: 20px;
}

.header-call-us-3 h5:hover {
  color: var(--theme-color);
}


.header-info ul {
  font-size: 12px;
  gap: 60px;
}

.header-info ul li:before {
  content: "|";
  position: relative;
  top: 0;

  color: var(--white);
  opacity: 0;
}

.header-info ul li:first-child:before{
  display: none;
}


.header-one .socials-info,
.header-three .socials-info {
  font-size: 12px;
  display: flex;
  gap: 20px;
}

.header-one .socials-info ul,
.header-three .socials-info ul {
  gap: 15px;
}

.header-one .socials-info ul i,
.header-three .socials-info ul i {
  font-size: 16px;
  transition: all 500ms ease;
}

.header-one .socials-info ul li:hover a i,
.header-three .socials-info ul li:hover a i {
  transform: translateY(-2px);
  color: var(--theme-color);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info ul li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-info ul li i {
  font-size: 16px;
  color: var(--theme-color);
}

.header-one .header-logo:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 195px;
  height: 100px;
  background: var(--white);
  z-index: -1;
}

.header-one .header-logo:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 195px;
  height: 3px;
  background: var(--color-1);
  z-index: -1;
}


/* Header Responsive */

@media only screen and (max-width: 1840px){   
 
  .header-call-us {
    padding: 46px 30px;
}
        
}

@media only screen and (max-width: 1840px){   
 
.header-call-us {
    padding: 61px 14px !important;}

.header-call-us .icon-box svg {
  width: 35px;
}

.header-call-us h5 {
  font-size: 16px;
}
        
}

@media only screen and (max-width: 1660px){   
 
.header-call-us {
    padding: 45px 30px;
}

.header-call-us .icon-box svg {
  width: 35px;
}

.header-call-us h5 {
  font-size: 16px;
}

.header-main {
  justify-content: start;
  gap: 70px;
}

.header-top .container {
  justify-content: start;
  gap: 200px;
}

.header-three .header-top .container {
  justify-content: space-between;
}
        
}


@media only screen and (max-width: 1440px){   
 
.main-menu ul li {
  margin-inline-end: 20px;
}

.header-top .container {
  gap: 80px;
}

.header-info ul {
  gap: 30px;
}



.header-box-main .container{
  padding-right: 0;
}
        
}

@media only screen and (max-width: 1350px){   
 
.header-box-main .container {
    margin-right: 190px;
}
          
}

@media only screen and (max-width: 1250px){   
 
.header-box-main .container {
    margin-right: 0px;
}

.header-call-us {
  display: none;
}
          
}

@media only screen and (max-width: 1199px){   
 
.header-box-main .header-top {
    display: none;
  }

  .header-one .header-logo:after,
  .header-one .header-logo:before{
    display: none;
  }

  .header-one .header-logo{
    margin: 0;
  }
          
}

@media only screen and (max-width: 991px){   
 
.header-logo:before {
  top: -40px;
  height: 111px;
  background: var(--white);
}

.header-box-main .container {
  margin: auto;
}

.header-main {
  justify-content: space-between;
  gap: 0;
}
          
}

@media only screen and (max-width: 767px){   
 
.header-logo:before {
  top: -40px;
  left: -20px;
  height: 111px;
  background: var(--white);
}

.header-one .header-logo {
  padding-left: 0px;
  margin-top: 0;
}

.header-one .header-logo:after {
  left: -20px;
}
            
}

@media only screen and (max-width: 450px){   

  .header-one .header-logo:after {
  bottom: -27px;
}
            
}


/* Header Style Two */


.header-two .header-box-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-two .header-info ul {
  font-size: 12px;
  gap: 130px;
}

.header-two .header-info ul li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    line-height: 17px;
    font-size: 13px;
}

.header-two .header-info ul li i {
  font-size: 16px;
  color: #fff;
}

.header-two .socials-info {
  font-size: 12px;
  display: flex;
  gap: 20px;
}

.header-two .socials-info ul {
  gap: 15px;
}

.header-two .socials-info ul li a i{
  color: var(--white);
  font-size: 16px;
  transition: all 500ms ease;
}

.header-two .socials-info ul li:hover a i{
  transform: translateY(-2px);
  color: var(--theme-color);
}

.header-two .header-info {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.header-two .header-logo {
  padding: 35px 75px 35px 200px;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0 100%);
  background-repeat: no-repeat;
  background-position: center;
}

.header-two .header-call-us{
  position: relative;
  padding: 34px 55px;
  background: #cb3749;
}

.header-two .header-call-us h5:hover{
  color: var(--color-1);
}

.header-two .header-top:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #0e509e;
  z-index: -1;
}

.header-two .main-menu ul li a{
    padding: 6px 0 0px;
}


.search-toggle-open.header-search .search-icon {
  color: var(--black);
  font-size: 20px;
}

.search-toggle-open.header-search .search-icon:hover {
  color: var(--theme-color);
}

.search-toggle-open.header-search {
  cursor: pointer;
}

.sidebar__toggle {
  height: 38px;
  width: 38px;
  border: 1px solid var(--color-1);
  border-radius: 50%;
  background: var(--color-1);
}

.bar-icon {
  width: 17px;
  height: 14px;
}

.bar-icon span,
.bar-icon span:nth-child(2) small{
  background: var(--white);
}

.sidebar__toggle:hover{
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
}

.vw-search-input input[type="text"]{
  background: var(--theme-color);
  color: var(--white);
}

.vw-search-input input[type="text"]::placeholder{
  color: var(--white);
}

.vw-search-input button{
  color: var(--white);
}

.vw-search-input button:hover{
  color: var(--black);
}

.header-two .header-right {
  gap: 25px;
}
.language-change {
    position: absolute;
    right: 7%;
    top: 55%;
}
@media only screen and (max-width: 1799px){   

.header-two .header-logo {
    padding: 11px 75px 14px 90px;}

.header-two .header-info ul {
  gap: 50px;
}

.header-two .socials-info ul{
  gap: 15px;
}
            
}

@media only screen and (max-width: 1499px){   

.header-two .header-call-us {
    padding: 63px 9px;
    height: 100%;
}

.header-two .main-menu ul li {
  margin-inline-end: 35px;
}

.header-two .header-info ul {
  gap: 15px;
}

.header-two .socials-info ul{
  gap: 5px;
}

.header-two .header-logo {
    padding: 23px 45px 12px 36px;
}
              
}


@media only screen and (max-width: 1285px){  

  .header-two .header-logo {
        padding: 15px 35px 18px 35px;
}

.header-two .header-info {
  gap: 20px;        margin-right: 25px;
}
                
}


@media only screen and (max-width: 1250px){  

.header-two .header-box-main {
  justify-content: flex-start;
  gap: 15px;
}

.header-two  .header-area {
  padding: 0;
}
  .language-change
  {
    right: 2%;
  }              
}

@media only screen and (max-width: 1099px){  

.header-two .header-box-main {
  gap: 50px;
}

.header-two  .header-area {
  padding: 0;
}

.header-two .header-main {
  gap: 0;
}
                
}

@media only screen and (max-width: 991px){  

.header-two .header-box-main {
  justify-content: space-between;
  padding-right: 25px;
}

.header-two .header-logo {
  padding: 9px 20px;
}
                
}

.header-two .main-menu ul li .submenu{
  margin-top: 4px;
}

/* Header Style Three */

.header-three {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-three .mega-menu-wrapper {
  background: var(--white);
  padding: 0 50px;
  border-radius: 0 0 10px 10px;
}

@media only screen and (max-width: 1660px){
  .header-three .header-main {
  justify-content: space-between;
  gap: inherit;
}
}

@media only screen and (max-width: 1440px){
.header-three .header-box-main .container {
  padding-right: inherit;
  padding-left: 0;
}
}

@media only screen and (max-width: 1350px){
.header-three .header-box-main .container {
  margin: 0 auto;
}
}

@media only screen and (max-width: 991px){
  .header-three .mega-menu-wrapper {
    padding: 20px;
}

.header-three .header-area {
  padding: 0;
}

.header-three .header-box-main .container {
  padding: 0;
}

}

/*----------------------------------------*/
/*  BUTTON CSS START
/*----------------------------------------*/

.primary-btn-1{
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  background-color:#cb3749;
  display: inline-flex;
  align-items: center;
  line-height: normal;
  white-space: nowrap;
  padding: 15px 20px;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 600ms ease
}

.primary-btn-1 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--black);
  transition: all .6s;
  transform: translate(-50%,-50%);
  z-index: -1
}

.primary-btn-1:hover {
  color: var(--white);
}

.primary-btn-1:hover span {
  width: 225%;
  height: 1000.5px
}

/* button style two */

.primary-btn-2{
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  background-color: var(--color-1);
  display: inline-flex;
  align-items: center;
  line-height: normal;
  white-space: nowrap;
  padding: 15px 20px;
  gap: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all .6s
}

.primary-btn-2 span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--black);
  transition: all .6s;
  transform: translate(-50%,-50%);
  z-index: -1
}

.primary-btn-2:hover {
  color: var(--white);
}

.primary-btn-2:hover span {
  width: 225%;
  height: 1000.5px
}

/*----------------------------------------*/
/*  FOOTER CSS START
/*----------------------------------------*/

.footer-top {
  background: var(--theme-color);
  padding: 20px 0px;
    border-bottom: 5px solid #cb3749;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-top .icon-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 35px;
}

.footer-top .icon-box .content span {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Rubik';
  color: var(--white);
}

.footer-top .icon-box .content h5 {
  font-size: 18px;
  line-height: 30px;
  font-family: 'Rajdhani';
  color: var(--white);    font-weight: 500;
      padding: 0;
}

.footer-top .icon-box .icon-area {
  position: relative;
  font-size: 45px;
  padding: 25px;
  border: 1px dashed var(--white);
  border-radius: 10px;
  color: var(--white);
}

.footer-top .icon-box .icon-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color-1);
  border-radius: 10px;
  transition: all 500ms ease;
}

.footer-top .icon-box:hover .icon-area:before {
  left: 0;
  width: 100%;
}

.footer-top .icon-box:hover .icon-area i {
 color: var(--white);
 position: relative;
}

.footer-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-image-top {
  margin-bottom: -135px;
}

.footer-main .plane {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.footer-widget * {
  color: var(--white);
}

.footer-widget.one p {
  font-size: 15px;
}

ul.footer-socials-icon {
  display: flex;
  gap: 20px;
  font-size: 18px;
  margin-bottom: 15px;
}

ul.footer-socials-icon li a:hover i{
  color: var(--theme-color);
}

.footer-logo {
  margin-left: -15px;
}

.footer-title {
  margin-bottom: 35px;
  font-weight: 700;
  display: inline-block;
}

.footer-title:before {
  content: "";
  position: absolute;
  top: 13px;
  right: -40px;
  width: 30px;
  height: 1px;
  background: var(--theme-color);
}


ul.footer-menu li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  margin-left: 15px;
}

ul.footer-menu li:hover {
  color: var(--theme-color);
}

ul.footer-menu li:before {
  content: ".";
  position: absolute;
  top: -5px;
  left: -15px;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
  font-size: 12px;
  color: var(--white);
}

.footer-terms ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--white);
}

.footer-terms ul li:hover a{
  color: var(--theme-color);
}

.footer-main .shape-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.footer-wrapper.two:before {
  content: "";
  position: absolute;
  top: -17px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #FFF;
}


.footer-widget.two .footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-widget.two .image-area i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #fff;
  opacity: 0;
}

.footer-widget.two .image-area:hover i {
  opacity: 1;
}

.footer-widget.two .image-area img {
  width: 100%;
}

.footer-widget.two .image-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgba(18, 18, 18, 0.8);
  transition: all 500ms ease;
}

.footer-widget.two .image-area:hover:before {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 1399px){   
 

.footer-top .icon-box {
  gap: 20px;
}

.footer-top .icon-box .icon-area {
  font-size: 22px;
  padding: 15px;
}
        
}

@media only screen and (max-width: 1199px){   
 
  .footer-top {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-widget.two {
  padding-left: 0;
}
          
  }

@media only screen and (max-width: 767px){   

  .footer-title {
    margin: 20px 0;
}
          
}

@media only screen and (max-width: 575px){   

  .footer-main .plane{
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
}
          
}

/* HOME ONE START */

/*----------------------------------------*/
/*  BANNER CSS START
/*----------------------------------------*/

.banner-sub-title {
  display: inline-block;
  background: var(--theme-color);
  padding: 10px 30px 10px 40px;
  letter-spacing: 6px;
  text-transform: uppercase;
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 6% 49%, 0% 0%);
}

.banner-sub-title h5{
  color: var(--white);
}

.banner-content h1 {
  font-weight: 700;
  line-height: 90px;
  text-transform: capitalize;
}

.hero-section .bg-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 620px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  /* clip-path: polygon(100% 0, 97% 56%, 84% 100%, 0% 100%, 0 50%, 0% 0%); */
}

.hero-section .bg-img-1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 60, 0.9);
}

.hero-section .bg-img-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.hero-section .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

.hero-section .shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

.hero-section .truck {
  position: absolute;
  bottom: -80px;
  right: 0;
  /* width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom right; */
}

.banner-content *{
  color: var(--white);
}

.hero-section .bg-img-1:after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 113px;
  width: 190px;
  height: 350px;
  background: var(--theme-color);
  z-index: 1;
  clip-path: polygon(72% 0%, 0% 100%, 23% 100%);
}

@media only screen and (max-width: 1440px){   

.hero-section .bg-img-1 {
  clip-path: polygon(100% 0, 97% 56%, 84% 100%, 0% 100%, 0 50%, 0% 0%);
}

.hero-section .bg-img-2 {
  z-index: -1;
}

.hero-section .bg-img-1:after {
  right: -38px;
}
          
}


@media only screen and (max-width: 1399px){   

.banner-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.hero-section .bg-img-1:after {
  height: 295px;
  right: -45px;
}

.hero-section .truck {
  bottom: -50px;
  width: 400px;
}
            
}

@media only screen and (max-width: 1199px){   

  .hero-section .bg-img-1:after {
    display: none;
}

.hero-section .bg-img-1 {
  width: calc(100% - 500px);
}
              
}

@media only screen and (max-width: 991px){   

  .hero-section .bg-img-2{
    display: none;
  }

  .hero-section .bg-img-1 {
    width: 100%;
    background-size: cover;
    clip-path: inherit;
}

.hero-section .truck {
  bottom: -50px;
  width: 290px;
}
              
}

@media only screen and (max-width: 575px){   

.banner-content h1 {
  font-size: 30px;
  line-height: 40px;
  padding: 15px 0;
}

.hero-section .truck {
  bottom: -40px;
  width: 215px;
}

.hero-section{
  padding-top: 60px;
}
              
}
.author-area
{
      border: 1px solid #cb3749;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}
/*----------------------------------------*/
/*  SERVICES CSS START
/*----------------------------------------*/

.service-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service-main-box
 {
    padding: 9px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #0e509e;
}

.service-main-box p
{
      text-align: center;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0px;
    margin: 0;
}

@media(max-width:767px) {
.service-main-box p
{
        font-size: 13px;
        padding: 5px 0px;
        line-height: 17px;
}
.service-main-box
{
  padding: 5px;
}


}
/* hover effects end*/




/*----------------------------------------*/
/*  WORK PROCESS 2 CSS START USE THIS
/*----------------------------------------*/

.work-process-2-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 210px 0;
}

.work-process-2-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 60, 0.85);
}

.work-process-2-section .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  animation: spin 60s linear infinite;
}

.work-process-2-section .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.work-process-2-section .image-area .image {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 1;
}

.work-process-2-section .image-area .bg-shape {
  position: absolute;
  top: 75px;
  right: 0;
}

.work-process-2-section .section-title {
  color: var(--white);
}

.work-process-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
}

.work-process-2 .icon-box {
  position: relative;
    background: #cb3749;
  text-align: center;
  border-radius: 10px;
  display: block;
  width: 230px;

  padding: 40px;
}

.work-process-2 .icon-box * {
  color: var(--white);
}

.work-process-2 .icon-box i {
  position: relative;
  font-size: 80px;
  color: #fff;
  line-height: 100px;
  transition: all 700ms ease;
}

.work-process-2 .icon-box:hover i {
  color: var(--white);
}

.work-process-2 .icon-box h5{
  position: relative;
  font-size: 16px;
}

.work-process-2 .icon-box h3 {
  font-size: 50px;
  position: relative;
  line-height: 60px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  margin-top: 15px;
}

.work-process-2 .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: var(--color-1);
  border-radius: 10px;
  transition: all 700ms ease;
}

.work-process-2 .icon-box:hover:before {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1799px){   

.work-process-2-section .image-area .image{
  width: 600px;
}

.work-process-2-section .image-area .bg-shape{
  width: 635px;
}
                                                      
}


@media only screen and (max-width: 1499px){   

.work-process-2-section .image-area .image{
  width: 500px;
}

.work-process-2-section .image-area .bg-shape{
  width: 535px;
}

.work-process-2-section {
  padding: 120px 0;
}

.work-process-2 .icon-box i {
        font-size: 37px;
        line-height: 50px;

}

.work-process-2 .icon-box h3 {
  font-size: 32px;
  line-height: 42px;
  margin-top: 6px;
}

.work-process-2 .icon-box {
  width: 210px;
         margin-bottom: 5px;
  padding: 10px 18px;
}

.work-process-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.work-process-2-section .shape-1 {
  width: 250px;
}

.work-process-2-section .shape-2 {
  width: 150px;
}
                                                      
}

@media only screen and (max-width: 1220px){   

.work-process-2-section .image-area .image{
  width: 400px;
}

.work-process-2-section .image-area .bg-shape{
  width: 435px;
}
                                                      
}

@media only screen and (max-width: 991px){   

.work-process-2-section .image-area{
  display: none;
}

.work-process-2-section .title-box{
  text-align: center;
}
                                                      
}

@media only screen and (max-width: 767px){   

.work-process-2 {
  flex-direction: column;
}

.work-process-2-section {
  padding: 60px 0;
}
                                                      
}

/*----------------------------------------*/
/*  ABOUT CSS START
/*----------------------------------------*/

.about-section figure.image-1 {
  position: absolute;
  bottom: 25px;
  right: 0;
}

.about-section .border-shape {
  position: absolute;
  top: 33px;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.about-content .icon-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.about-content .icon-inner:nth-last-child(2) {
  border-bottom: none;
  margin-bottom: 20px;
}

.about-content .icon-box {
  position: relative;
  font-size: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding: 30px 10px;
  border-radius: 50px;
  color: var(--theme-color);
}

.about-content .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 50px;
  transform: scale(0);
  transition: all 700ms ease;
}

.about-content .icon-inner:hover .icon-box:before {
  transform: scale(1);
}

.about-content .icon-inner:hover .icon-box i {
  position: relative;
  color: var(--white);
}

.about-content .content h4 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content .content p {
  font-family: var(--rubik-font);
}

.about-bottom-area {
  padding-top: 170px;
}

.about-section .shape-1 {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center left;
}

.about-section .dotted-shape {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  animation: wobble-vertical 5s infinite;
}

.about-section .plane {
  position: absolute;
  top: 20px;
  right: 0;
  animation: wobble-vertical 5s infinite;
}

@media only screen and (max-width: 1699px){   

.about-section .dotted-shape {
    width: 130px;
}

.about-section .plane {
    width: 250px;
}
                  
}

@media only screen and (max-width: 1399px){   

  .about-section .border-shape {
    right: -55px;
}

.about-section .image-area {
  padding: 20px 0;
}

.about-bottom-area {
  padding-top: 85px;
}
                    
}

@media only screen and (max-width: 1199px){   

.about-section .border-shape,
.about-bottom-area {
  display: none;
}

.about-section .image-area,
.about-content {
  padding: 0;
}
                    
}

@media only screen and (max-width: 991px){   

  .about-section .shape-1,
  .about-section .dotted-shape,
  .about-section .plane {
    display: none;
}

.about-section .image-area{
  margin-bottom: 30px;
}
                      
}

/*----------------------------------------*/
/*  COUNTER SECTION CSS START
/*----------------------------------------*/

.counter-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-area h3 {
  font-size: 50px;
  line-height: 60px;
  color: var(--color-1);
}

@media only screen and (max-width: 1250px){   

.counter-padding {
  padding: 60px 0;
}
                      
}

@media only screen and (max-width: 767px){   

.counter-area {
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
                        
}


/*----------------------------------------*/
/*   TEAM SECTION CSS START
/*----------------------------------------*/

.team-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.team-section .shape-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  animation: shake 10s linear infinite;
}



.team-area .content {
  background: var(--white);
  border-bottom: 5px #cb3749;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  position: absolute;
  bottom: 15px;
  right: 60px;
  left: 60px;
  opacity: 1;
  transition: all 700ms ease-in-out;
}

.swiper-slide-active .team-area .content,
.team-area:hover .content {
  opacity: 1;
}

.team-area .content h4 {
font-size: 17px;
    line-height: 19px;
}

/*.team-area .content span {
  font-size: 12px;
  line-height: 22px;
}*/

.socials-link {
  position: absolute;
  top: -16px;
  left: 30px;
}

.team-area .socials-link span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.team-area .socials-link span i {
  font-size: 16px;
}

.team-area .link-box ul {
  position: absolute;
  top: -155px;
  left: -2px;
  opacity: 0;
  transition: all 700ms ease;
}

.team-area .socials-link:hover .link-box ul {
  opacity: 1;
}

.team-area .link-box ul li > a {
  padding: 10px;
  background: var(--white);
  border-radius: 50%;
  color: var(--black);
  font-size: 14px;
  line-height: 0;
  position: relative;
}

.team-area .link-box ul li:hover > a {
  background: var(--theme-color);
  color: var(--white);
}

.team-area .link-box ul li {
  margin-top: 30px;
  line-height: 0;
}

.team-area .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 700ms ease;
}

.swiper-slide-active .team-area .shape,
.team-area:hover .shape {
  opacity: 1;
}


.team-area .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 700ms ease;
}

.swiper-slide-active .team-area .shape-1,
.team-area:hover .shape-1 {
  opacity: 0;
}

@media only screen and (max-width: 1499px){   

  .team-area .content {
    left: 15px;
    right: 15px;
}
                                
}

@media only screen and (max-width: 991px){   

.team-section .container-fluid{
  padding: 0 15px;
}

.team-section .shape-dot {
  display: none;
}
                                
}

/*----------------------------------------*/
/*   TEXT SLIDER SECTION CSS START
/*----------------------------------------*/

.text-slider-box {
  display: flex;
  position: relative;
  animation: aspro-scroller-reverse 60s linear infinite;
  will-change: transform;
  white-space: nowrap;
  gap: 55px;
  left: -100%;
}

.text-slider-box .slide-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 55px;
}

.text-slider-box .slide-box i {
  font-size: 80px;
  color: var(--color-1);
  animation: spin 10s linear infinite;
}

.text-slider-box .slide-box h1 span{
  text-transform: capitalize;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--black);
  color: transparent;
}

@media only screen and (max-width: 425px){   

.text-slider-section{
  display: none;
}
                                  
}


/*----------------------------------------*/
/*   BLOG SECTION CSS START use
/*----------------------------------------*/


.pro-name
{
       background: #275ca8;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-top: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pro-name h6

{
   color:#fff;
}

.w-img img
{
    padding: 4px;
    border-radius: 20px;
}
.blog-section .col-lg-4
{
  padding: 15px;
}
.blog-area-1 {
  padding: 20px;
  background: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(183, 183, 183, 0.25);
  border-radius: 10px;
}

.blog-area-1 .date-meta {
  position: absolute;
  top: -63px;
  right: 10px;
  text-align: center;
  background: var(--color-1);
}

.blog-area-1 .date-meta h5 {
  color: var(--white);
  padding: 10px 0;
}

.blog-area-1 .date-meta span {
  background: rgba(244, 240, 240, 1);
  font-size: 12px;
  line-height: 22px;
  font-weight: 600;
  font-family: var(--rajdhani-font);
  padding: 10px;
  border-radius: 0 0 5px 5px;
  color: var(--black);
}


/* HOME TWO START */


/*----------------------------------------*/
/*  ABOUT US CSS START USE THIS
/*----------------------------------------*/

.about-2-section {
  animation: slide 60s linear infinite;
  background-repeat: repeat-x;
  background-size: contain;
}

.about-2-image-area {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 25px;
}

.about-2-image-area .image-box-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.about-2-counter {
  text-align: center;
  background: var(--theme-color);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 20px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 145px;
  right: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-2-counter h1 {
  font-weight: 600;
  line-height: 55px;
  color: var(--white);
}

.about-2-counter h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 35px;
  color: var(--white);
}

.about-2-counter h4 span {
  font-weight: 400;
  color: var(--white);
}



.about-content.two .icon-inner{
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 15px;
  padding: 30px 0;
  border-bottom: none;
  flex-direction: column;
}

.about-2-section .shape {
  position: absolute;
  bottom: 0;
  right: -25px;
  animation: shake 20s infinite;
}

.about-2-section .shape-1 {
  position: absolute;
  bottom: 45px;
  left: 0;
}

.about-2-image-area .image-box-1 {
  border-radius: 10px;
  overflow: hidden;
  transition: all 700ms ease;
}

.about-2-image-area .image-box-1:hover img {
  transform: scale(1.1) rotate(2deg);
}

.about-2-image-area .image-box-2 figure{
  border-radius: 10px;
  overflow: hidden;
  transition: all 700ms ease;
}

.about-2-image-area .image-box-2 figure:hover > img {
  transform: scale(1.1) rotate(-2deg);
}


@media only screen and (max-width: 1659px){   

.about-2-section .shape {
  right: 0;
  width: 210px;
}


.about-content.two .icon-inner {
  gap: 10px;
  padding: 20px 0;
}
                                            
}

@media only screen and (max-width: 1440px){   

.about-2-counter h1 {
  line-height: 32px;
  font-size: 48px;
}

.about-2-counter h4 {
  font-size: 18px;
  line-height: 28px;
}

.about-2-counter {
  width: 195px;
  height: 195px;
  bottom: 100px;
  right: 140px;
}

.about-2-section .shape {
  width: 160px;
}



.about-2-image-area .image-box-2 {
  gap: 20px;
}

.about-content.two .icon-box {
  font-size: 25px;
  padding: 20px 10px;
}

.about-content.two .content h4 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
}

.about-content.two .title-box {
    margin-bottom: 15px;
}


.about-content.two .section-sub-title {
  font-size: 20px !important;
  line-height: 30px;    margin-bottom: 10px;
}

.about-2-section .shape-1 {
  width: 140px;
  bottom: 55px;
}
                                              
}

@media only screen and (max-width: 991px){   

.about-2-section {
  padding-left: 0;
}

.about-2-section .shape-1,
.about-2-section .shape,
.about-2-counter,
.about-2-image-area .image-box-2 {
  display: none;
}

.about-2-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 15px;
}

.about-2-image-area .image-box-1{
  margin-bottom: 30px;
}
                                              
}


/*----------------------------------------*/
/* PAGE TITLE CSS START
/*----------------------------------------*/

.breadcrumb__area {
    position: relative;
    padding: 32px 0 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.breadcrumb__area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 39, 60, 0.7);
}

.breadcrumb__wrapper .breadcrumb__title {
    color: var(--white);
    margin-top: 0;
    font-size: 29px;
}

.breadcrumb__wrapper ul {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 10px;
  text-transform: uppercase;
  font-family: 'Rajdhani';
}

.breadcrumb__wrapper ul span:before {
  content: "/";
  color: var(--white);
  position: relative;
  top: 1px;
  left: -6px;
}

.breadcrumb__wrapper ul li:first-child span:before{
  display: none;
}

.breadcrumb__wrapper ul li:last-child span{
  color: var(--theme-color);
}


@media only screen and (max-width: 1024px){

.breadcrumb__area {
  padding: 30px 0px 30px;
  text-align: center;
}

.breadcrumb__wrapper ul {
  justify-content: center;
  letter-spacing: 5px;
}

.breadcrumb__wrapper .breadcrumb__title {
  margin-top: 0px;
  font-size: 25px;
}
              
}

/*----------------------------------------*/
/* ABOUT PAGE CSS START
/*----------------------------------------*/

.about-content-section .title-box{
  padding-left: 215px;
}

.about-content-section .text-1 {
  padding-right: 200px;
  padding-top: 40px;
}

.about-bottom {
  max-width: 965px;
  background: var(--theme-color);
  border-radius: 15px;
  padding: 80px;
  margin: 0 0 0 auto;
  margin-top: -360px;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

.about-bottom .content figure img {
  border-radius: 10px;
  border: 5px solid var(--white);
}

.about-bottom .content h4 {
  padding: 30px 0 20px;
  font-size: 35px;
  line-height: 45px;
}

.about-bottom .content * {
  color: var(--white);
}

.about-content-section .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}


@media only screen and (max-width: 1399px){

.about-bottom {
  max-width: 830px;
  padding: 50px;
  margin: 0 0 0 auto;
  margin-top: -300px;
}

.about-content-section figure.image.w-img.pr-100 {
  padding-right: 50px;
}

.about-content-section .text-1 {
  padding-right: 100px;
  padding-top: 30px;
}

.about-content-section .shape-1 {
  width: 300px;
}
              
}

@media only screen and (max-width: 991px){

.about-content-section .title-box{
  padding-left: 0;
  margin-bottom: 30px;
}

.about-bottom{
  margin-top: 30px;
  max-width: 100%;
  padding: 30px;
}

.about-content-section .content {
  margin-bottom: 30px;
}

.about-content-section figure.image.w-img.pr-100,
.about-content-section .text-1 {
  padding-right: 0;
}
              
}


/*----------------------------------------*/
/* TESTIMONIALS PAGE CSS START
/*----------------------------------------*/

.testimonials-section.style-3 {
  padding: 120px 0 240px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.testimonials-section.style-3 .testimonials-area{
  background: transparent;
}

.testimonials-section.style-3 .delivery-boy {
  position: absolute;
  bottom: -30px;
  right: 0;
}

@media only screen and (max-width: 1199px){

.testimonials-section.style-3 {
  padding: 60px 0;
}
                    
}


/*----------------------------------------*/
/* CONTACT PAGE CSS START
/*----------------------------------------*/

.contact-form{
  margin-left: -10px;
}
.contact-input {
  padding: 10px;  
}

.contact-form textarea {
  height: 220px;
  resize: none;
}

.contact-icon-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 6px;
}

.contact-icon-box .icon-box {
    font-size: 14px;
    background: #cb3749;
    color: var(--white);
    padding: 8px;
    border-radius: 4px;
}

.contact-icon-box h4 {
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
}

.contact-icon-box a{
  color: var(--black);
}

.contact-icon-box a:hover{
  color: var(--theme-color);
}

.contact-map iframe {
  height: 450px;
  width: 100%;
  margin-bottom: -8px;
}

.footer-main.three .footer-wrapper.two:before{
  background: transparent;
}

.footer-main.three .footer-top{
  border-radius: 0;
}

@media only screen and (max-width: 991px){

.contact-page-info-area {
  padding: 20px 0 0;
}
                  
}


.safe-content h2 {
    font-size: 25px;

    line-height: 29px;
    margin-bottom: 10px;
  }


 .icon-area img
{
  width: 70px;
}

.w-206
{
  width: 206px;
}

.req-form-content-area .list-area ul li i
{
      margin-right: 6px;
}

.section-title-2
{
          font-size: 35px !important;
}

 h5
{

    padding-bottom: 0;
    padding-top: 13px;
    font-size: 17px;
}

.pd-col-10 .col-lg-3
{
  padding: 10px;
}


.speakers
{
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #0e509e ;
    border-radius: 4px;
    text-align: center;
    min-height: 290px;
    max-height: 100%;
}

.speakers img
{
border-radius: 100%;
    border: 2px solid #ffffff;
    width: 131px;
    padding: 3px;
    margin: 0px auto;
}

.c-username
{
 color: #fff;
    font-size: 18px;
    padding-top: 10px;   
}

.c-post
{
       color: #fff;
    font-size: 16px;
    padding-top: 5px; 
    font-weight: normal;
}

.c-name
{
        color: #fff;
    font-style: italic;
    font-size: 16px;
     font-weight: normal;
    padding-top: 5px;
}
  .f-30
    {
    font-size:28px;
    }
.mediapartnr img
{
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    background: #fff;
}

.popup-image img
{
       border-radius: 4px;
}

.blog-1-active
{
       padding: 0;
}

.mediapartnr
{
       padding: 5px;
}

.banner-slider-area:before
{
       background: transparent;
}
.meida p

{
      font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #000;
}
.meida
{
   border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    background: #fff;    margin-top: 10px;
}

.partner-logos h6 {
    margin-bottom: 5px;
    font-size: 14px;
    text-align: center;
}

.partner-logos img {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
}

.banner-button
{
    position: absolute;
    bottom: 20%;
    left: 45%;
}
.testimonials-3-navigation-wrapper .common-slider-navigation
{
   position: absolute;
       bottom: 50px;
    right: 18px;
}



/*  Why Exhibit at Thai Cargo Expo?  exhibit Page*/
 .feature_item.style_four {
    transform: translateY(0px) !important;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(145, 161, 161, 0.15)) !important;
    padding: 25px ;
    border-radius: 11px;
    background: #fff;
    border-bottom: 2px solid #cb3749;
    margin-top: 10px;
}

.FactsFigures .feature_item.style_four 
{
  padding: 20px !important;
}

.FactsFigures .feature_icon img
{
        width: 50px;
}

.feature_item.style_four::before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #cb3749;
    content: "";
    display: block !important;
    z-index: -1;
    border-radius: 10px;
}
.feature_item.style_four:hover:before{
    width: 100%;
    left: 0;
}
.feature_icon img {
    transition: .5s;
        width: 59px;
}
.feature_item.style_four:hover .feature_icon img {
    filter: brightness(0)  invert(1);
}
.feature_item.style_four .feature_content h3 {
    transition: .5s;
    font-size: 18px;
    color: #0f509e;
    font-weight: 700;
    margin: 0;
}
.feature_content p {
    transition: .5s;
    font-size: 16px;
    line-height: 25px;
    height: 120px !important;
      
}


.feature_item.style_four:hover .feature_content h3 {
    color: #fff !important;
}
.feature_item.style_four:hover .feature_content p {
    color: #ffffff !important;
}


.feature_item.style_five:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: url(../imgs/feature_shape.png);
    height: 101px;
    width: 106px;
    display: block;
    opacity: 1;
    left: inherit;
}

.pd-10
{
    padding: 10px;
}




.listdics li
{
        list-style: disc;
    margin-left: 12px;
}
.blog__item {
    position: relative;
    background-color: var(--white);
    margin-bottom: 10px;
    box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
    border-radius: 10px;
    padding: 20px;

}

.blog__item  h6
{
        color: #0e509e;
    font-size: 19px;
    margin-bottom: 2px;
}
.blog__item  a
{
        color: #0e509e;


}
.category-list_text
{
    margin-bottom: 7px; 
}

.blog__item ol li
{
        list-style: auto;
    margin-left: 20px;

}

.blog__item ol
{
        margin: 10px 0px;
}


.pro-name
{
       background: #275ca8;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-top: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pro-name h6

{
   color:#fff;
}

.w-img img
{
   padding:4px;
}

  .allevents {
                background-color: var(--white);
              
                box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
                border-radius: 4px;
                padding: 10px;
            }

             .visit-profile
   {
          padding: 5px;
    background: var(--white);
    box-shadow: 0px 4px 30px 0px rgba(183, 183, 183, 0.25);
    border-radius: 10px;
   }

   .visit-profile img {
    padding: 4px;
}

.visit-pro-name {
    background: #275ca8;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-top: 0px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.visit-pro-name h6
{color: #fff;
    font-weight: 500;
        font-size: 18px;
}

  .list-style li{
    list-style: none;
    margin-bottom: 5px;
    font-weight: 400;
      }

        .list-style
        {
             padding-left: 15px;
        }
         .list-style li i
            {
    color: #cb3749;
    font-weight: bold;
    margin-right: 5px;
            }



.ExhibitorsTestimonial {
    position: relative;
    background-color: var(--white);
    margin-bottom: 10px;
    box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
    border-radius: 10px;
    padding: 20px;

}

.ExhibitorsTestimonial h6
{
        color: #0e509e;
    font-size: 17px;

}
.ExhibitorsTestimonial img
{
        border-radius: 20px;
        margin-bottom:20px
}
.category-list_text
{
    margin-top: 10px; 
}

.form-select
{
      border: 1px solid #275ca8;
    margin-bottom: 10px;
    font-size: 15px;
}


.listdics li
{
        list-style: disc;
    margin-left: 12px;
}
.our-exhibitors {
    position: relative;
    background-color: var(--white);
    margin-bottom: 10px;
    box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
    border-radius: 10px;
    padding: 20px;

}

.our-exhibitors  h6
{
        color: #0e509e;
    font-size: 19px;
    margin-bottom: 2px;
}
.our-exhibitors  a
{
        color: #0e509e;


}
.category-list_text
{
    margin-bottom: 7px; 
}

.our-exhibitors ol li
{
        list-style: auto;
    margin-left: 20px;

}

.our-exhibitors ol
{
        margin: 10px 0px;
}



    .f-13 {
     font-size: 13px;
         color: #000;
}
 .send-otp-thai {
     border: 0;
     background: #cb3749;
     color: #fff;
     padding: 10px 11px;
     width: 100%;
     font-size: 17px;
     border-radius: 4px;
}

 .send-otp {
     border: 0;
     background: #cb3749;
     color: #fff;
     padding: 10px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}

 .login-content {
     background: #fff;
     margin-top: 20px;
     margin-bottom: 20px;
     border-radius: 12px;
     padding: 20px;
     border-bottom: 3px solid #cb3749;
}
 .login-content label {
     font-weight: 500;
     color: #000;
     font-size: 14px;
}
 .login-content label span {
     color: #ff1e39;
}
 .login-content .form-control {
     border: 1px solid #275ca8;
     margin-bottom: 10px;
     font-size: 15px;
}
 .countryCode {
     height: 50px;
     width: 100%;
     line-height: 33px;
}



 .login-content table input[type="checkbox"]{
    margin-top: 5px;
    margin-right: 8px;
    vertical-align: top;
}

 .login-content table label{
    display: inline-block;
    max-width: calc(100% - 26px);
    vertical-align: top;
    font-size: 13px;
    line-height: 1.6;
}


.terms-and-conditions-check input[type="checkbox"]{
    margin-top: 0;
   
    vertical-align: top;
}
.terms-and-conditions-check span
{    display: inline-block;
    max-width: calc(100% - 26px);
    vertical-align: top;
    font-size: 13px;
    padding-left: 5px;
    margin-top: -2px;
    line-height: 16px;
}
.groupregistrations {
    font-size: 13px;
    padding-left: 27px;
    margin-top: 5px;
    margin-bottom: 5px !important;
}

 .btncstm {
     color: var(--white);
     font-size: 14px;
     width: 100%;
     font-weight: 500;
     background-color: #cb3749;
     padding: 15px 0px;
}
 .btncstm:hover {
     background-color: #cb3749;
}


.exhibitor-registration table input[type="radio"]{
    margin-top: 5px;
    margin-right: 8px;
    vertical-align: top;
}



.exhibitor-registration table input[type="checkbox"]{
    margin-top: 5px;
    margin-right: 8px;
    vertical-align: top;
}

.exhibitor-registration table label{
    display: inline-block;
    max-width: calc(100% - 26px);
    vertical-align: top;
    font-size: 15px;
    line-height: 1.6;
}
.intlabel
{
  width: 100%;
}


 .send-otp-thai {
     border: 0;
     background: #ff4158;
     color: #fff;
     padding: 14px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}

 .send-otp {
     border: 0;
     background: #ff4158;
     color: #fff;
     padding: 14px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}
 .btncstm {
     color: var(--white);
     font-size: 14px;
     width: 100%;
     font-weight: 500;
     background-color: #cb3749;
     padding: 15px 0px;
}
 .btncstm:hover {
     background-color: #cb3749;
}

 table 
{
    width: 100%;
     
}

.text-red
{
  color: #cb3749;
}

#lblMobileNo
{
      height: 50px;
    width: 100%;
    line-height: 35px;
}


#country-name {
     display: none !important;
}
 .countrmcode {
     position: absolute;
     margin-top: 14px;
     padding-left: 12px;
}
 .nice-select .list {
     height: 300px;
     overflow-y: hidden;
     width: 100%;
     display: none;
}

.pl-0
{
  padding-left: 0px;
}
.dial-code
{    padding-left: 5px !important;
}

  .Country-code 
{
 padding-right: 15px;
}



/* VIDEO HERO */
.video-hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background:#000;
    z-index: 0;
}

/* VIDEO */
.video-hero video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */
.video-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* CONTENT */
.hero-content{
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    color: #fff;
    padding: 20px;
}
.text-slider{
    position: relative;
    width: 100%;

    min-height: 80px;   /* 🔑 IMPORTANT: buttons overlap fix */
}

/* SLIDES */
.text-slider .slide{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.text-slider .slide.active{
    opacity: 1;
    transform: translateY(0);
}

/* TEXT */
.text-slider h1{
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

/* BUTTONS */
.hero-buttons{
    margin-top: 15px;   /* minimal gap only */
    padding: 0px;
}.hero-buttons a{
display: inline-block;
    margin: 0 5px;
    padding: 17px 29px;
    border-radius: 4px;
    font-size: 24px;
    text-decoration: none;
    border: 2px solid transparent;
    box-sizing: border-box;
}

/* EXHIBIT */
.btn-exhibit{
    background:#0660cb;
    color:#fff;
}

.btn-exhibit:hover{
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* VISIT */
.btn-visit {
    background: #f5142e;
    color: #fff;
    border: 2px solid #f5142e;
    animation: blinkColor 1s infinite;
}

@keyframes blinkColor {
    0% {
        background: #f5142e; /* red */
        border-color: #f5142e;
    }
    50% {
        background: #0e509e; /* blue */
        border-color: #0e509e;
    }
    100% {
        background: #f5142e; /* red */
        border-color: #f5142e;
    }
}

/* Hover par blink stop ho jayega */
.btn-visit:hover {
    animation: none;
    background: transparent;
    color: #fff;
    border-color: #fff;
}



.slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0e509e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.slider-arrow.left{
       right: 0;
}

.slider-arrow.right{
    right: -55px;
}

.slider-arrow:hover{
    background: #da1930;
}


footer
{
  width: 100%;
    overflow-x: hidden;
}


.venue-top {
      background: #275ca8;
      padding: 8px 5px;
    }

    .venue-top p {
      color: #fff;
      font-size: 11px;
      margin: 0;
      line-height: 12px;
    }

.primary-btn-header {
  padding: 6px 13px !important;
  border-radius: 4px;
  background: #f5142e;
  color: #fff !important;
  text-decoration: none;
}

.primary-btn-header:hover {
  background: #0e509e;
}



.venue-top {
  background: #275ca8;
  padding: 8px 5px;
}

.venue-top p {
  color: #fff;
  font-size: 11px;
  margin: 0;
  line-height: 12px;
}
.pd-0
{
  padding: 0px;
}

@media(max-width:1024px) {
    .slider-arrow { display: none; }
     .video-hero { height: 40vh; }
      .text-slider { height: 120px; }
}

@media(max-width:767px) {
    .text-slider { height: 90px; }
    .text-slider h1 { font-size: 28px; }
    .text-slider p { font-size: 15px; }
    .video-hero { height:85vh; }
    .hero-buttons a {
        margin: 0;
        padding: 15px 13px;
        font-size: 22px;
        width: 100%;
        text-align: center;
    }
    .primary-btn-header
    {
          width: 90% !important;
    }
}


@media only screen and (min-device-width:320px) and (max-device-width:767px) {

.visit-pro-name h6
{
  font-size: 15px;
}
  .Country-code input
{
    padding: 0;
    margin-left: 10px;
}


  .Country-code 
{
 padding-right: 15px;
}

  .exhibitor-registration table td
{
    width: 100%;
        display: block;
}

 .login-content table td
{
    width: 100%;
        display: block;
}


.login-content h5
{
    font-size: 15px;
}
.login-content
{
    padding: 10px;
}
.mpd-10
{
    padding: 10px;
}

.m-pd-15
{
  padding: 15px;
}
  }
  

  .text-blue
  {
    color: #0e509e;
  }

   .related-blogs {
                        background: #fff;
                        border-radius: 8px;
                        padding: 15px;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
                    }

                    .rb-title {
                        font-size: 18px;
                        font-weight: 600;
                        margin-bottom: 15px;
                        border-bottom: 2px solid #0e509e;
                        padding-bottom: 6px;
                        padding-top: 0;
                    }

                    .rb-item img {
                        width: 70px;
                        height: 55px;
                        object-fit: cover;
                        border-radius: 4px;
                    }

                    .rb-content h6 {
                        font-size: 14px;
                        margin-bottom: 0;
                    }

                    .rb-content h6 {
                        font-size: 14px;
                        margin-bottom: 0;
                    }

                    .rb-item {
                        display: flex;
                        gap: 10px;
                        margin-bottom: 12px;
                        border-bottom: 1px solid #ccc;
                        padding-bottom: 10px;
                    }

                    .f-30 {
                        font-size: 30px;
                    }