@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
}

ul{
    list-style: none;
}

a{
    text-decoration: none!important;
}

p{
    font-size: 18px;
    color: var(--dark-grey);
}

:root{
    --blue:#2b7faf;
    --dark-grey:#231F20;
}

body{
  font-family: 'Inter', sans-serif;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Montserrat', sans-serif;
}

header{
    width: 100%;
    position: sticky;
    z-index: 99;
    top: 0;
    background-color: #eeeeee;
}

.top-header{
    padding-top: 10px;
    background-color: #eeeeee;
}

.top-header ul.header-icon{
    text-align: left;
    margin-bottom: 10px;
}

.top-header ul.header-icon.middle{
    text-align: right;
    
}

.top-header ul.header-icon li{
    display: inline-block;
    color: var(--dark-grey);
}

.top-header ul.header-icon.middle li{
    margin-left: 10px;
}

.top-header ul.header-icon li a{
    color: var(--dark-grey);
    font-size: 16px;
    margin-right: 12px;
}

.top-header ul.header-icon li i{
    color: var(--blue);
}

.top-header ul.header-icon li a:hover{
    color: var(--blue);
}

.border-1{
    width: 100%;
    background-color: #C1C1C1;
    margin: 0;
}

header .header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    position: sticky;
    top: 0;
}
header .header .menu{
  margin: auto 0;
}
header .header .menu ul{
    margin: 0;
}

header .header .menu ul li{
    display: inline-block;
    /* margin-left: 25px; */
    margin-left: 35px;
}

.mobile-menu{
  overflow: auto;
}

header .header .menu ul li a, .mobile-menu ul li a{
    font-size: 18px;
    color: var(--dark-grey);
    transition: 0.3s;
    font-weight: 500;
}

header .header .menu ul li a:hover, header .header ul li a.active{
    color: #0079c1;
}


header .header .menu ul li.dropdown ul{
    /* position:absolute;
    width: 250px;
    top: 100%;
    left: -15px;
    background: #0079c1;
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    transition: 0.3s; */
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding-top: 5px;
    padding-bottom: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    /* color: #F58430; */
    color: var(--dark-grey);
    background: #eee;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    width: 272px;
}
header .header .menu ul li.dropdown:hover ul{
/* clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); */
opacity: 1;
    top: 100%;
    visibility: visible;
}

header .header ul li.dropdown a i{
    transition: 0.3s;
}

header .header .menu ul li.dropdown:hover a{
   color: #0079c1;
}

header .header .menu ul li.dropdown:hover a i{
    transform: rotateX(180deg);
}

header .header .menu ul li.dropdown ul li{
    display: block;
    margin: 5px 0;
    border-bottom: 1px solid #fff;
    padding-left: 10px;
    padding-bottom: 5px;
}

header .header .menu ul li.dropdown ul li:last-child{
  margin-bottom: 0;
}

header .header .menu ul li.dropdown ul li a{
   color: var(--dark-grey)!important;
   line-height: 1!important;

}


header .header .menu ul li.dropdown ul li a:hover{
    color: var(--blue)!important;
}

header .header-bottom {
  padding:5px 0;
  border-top: 1px solid #C1C1C1;
}
header .header-bottom .menu{
  width: 100%;
  text-align: center;
}

header .header-bottom .menu ul li {
  margin-left: 15px;
}

header .header-bottom .menu ul li:first-child {
  margin-left: 0  px;
}
header .header-bottom .menu ul li a {
  font-size: 14px;
}

.mobile-menu{
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
}


.mobile-menu ul{
    margin-bottom: 0;
}

.mobile-menu ul li{
    text-align: center;
    background: var(--dark-grey);
    margin: 0 20px 10px;

}

.mobile-menu ul li a{
    color: #fff;
    padding: 10px 0;
    display: block;
}

.dropdown-list{
    display: none;
}

.menu-button{
    width: 50px;
    height: 40px;
    text-align: center;
    line-height: 44px;
    border: 2px solid var(--dark-grey);
    cursor: pointer;
    border-radius: 5px;
    display: none;
}

.menu-button i{
    color: var(--dark-grey);
    font-size: 25px;
}

/* banner css */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .slick {
    position: relative;
    overflow: hidden;
  }
  .slick .item {
    float: left;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .slick .item img {
    display: block;
    margin: 0 auto;
  }
  .slick .item .caption {
    position: absolute;
    /* top: 40%; */
    color: #fff;
    /* width: 100%; */
    width: 100%;
    max-width: 800px;
    text-align: center;
    bottom: 0;
  }
  .slick .item .caption span{
    font-size: 22px;
  }
  .slick .item .caption h2{
    font-size: 38px;
    font-weight: 700;
  }
  .slick .item .caption p{
    color: #fff;
  }
  .slick-no-slide .slick-track {
    width: 100% !important;
    text-align: center;
    transform: inherit !important;
  }
  .slick-no-slide .slick-slide {
    float: none;
    display: inline-block;
  }
  .slick-list {
    position: relative;
    overflow: hidden;
  }
  .slick-dots {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .slick-dots li {
    display: inline-block;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    font-size: 0;
    background-color: grey;
    border-radius: 50%;
    border: none;
    cursor: pointer;
  }
  .slick-dots .slick-active button {
    background-color: var(--dark-grey);
  }
 

/* banner css end */

.give-us {
    width: 100%;
    height: auto;
    padding: 60px 0 40px 0;
}

.give-us .details{
    width: 100%;
    height: auto;
}

.give-us .details h3{
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-grey);
}

.give-us .details h3 span{
    padding: 10px 15px;
    background: #0079c1;
    margin-right: 4px;
    color: #fff;
    font-size: 16px;
}

.give-us .details p{
    font-size: 12px;
    padding: 15px 0;
    font-weight: 500;
}

.what-we{
    background: #f6f7f9;
    padding: 40px 0;
}

.heading span{
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
}

.heading h2{
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 0;
}

.heading h2 span{
    font-weight: 400;
    display: inline;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--dark-grey);
}

.heading p{
    font-size: 26px;
    font-weight: 500;
}

/* textiminal */
.textiminal{
    padding-top: 20px;
}
.textiminal .slick{
    padding: 0 100px;
}
.textiminal .item{
    padding: 0 20px;
}
.textiminal .item img{
    margin-bottom: 20px;
}
.textiminal .item h3{
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-grey);
}

.textiminal .item p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
}

.textiminal .item a{
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.textiminal .item a i{
    padding-left: 10px;
}

.textiminal .slick-arrow {
    position: absolute;
    top: 30%;
    z-index: 1;
    width: 15px;
    height: 30px;
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--blue);
    font-size: 35px;
    border: none;
    cursor: pointer;
    outline: none;
}

.textiminal .slick-arrow.slick-prev{
    left: 30px;
}
  /* .textiminal .slick-arrow::before{
    content: '\f105';
    font-family: "Font Awesome 6 Brands";
  } */
.textiminal .slick-arrow.slick-next {
    right: 30px;
}

.who-we{
    padding: 80px 0 40px;
    overflow: hidden;
}

.who-we .we-are {
    width: 100%;
}

.who-we .we-are figure{
    position: relative;
    z-index: 1;
}

.who-we .we-are figure::before{
    content: '';
    position: absolute;
    width: 80%;
    height: 100%;
    background: var(--blue);
    z-index: -1;
    border-radius: 0 170px 170px 0;
    right: 0%;
    top: 8%;
}

.who-we .we-are figure img{
    width: 100%;
    border-radius: 0 170px 170px 0;
}

.who-we .we-are figure figcaption{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #1c458b;
    border: 5px solid var(--blue);
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6%;
    right: 4%;
}

.who-we .we-are figure figcaption .exp h3{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 0;
}

.who-we .we-are figure figcaption .exp p{
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
.who-we .we-content p{
    /* font-size: 15px; */
    line-height: 1.2;
}

.who-we .we-content a{
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.who-we .we-content a i{
    padding-left: 10px;
}

.custom-clearance{
    padding: 100px 0;
    overflow: hidden;
    background: url(../images/logistic-zoll-fiege-1.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.custom-clearance p{
    padding: 10px 0 25px;
    /* font-weight: 500; */
    margin-bottom: 0;
}

.custom-clearance a{
    padding: 20px 25px;
    color: #fff;
    background: var(--blue);
}

.logistical{
    padding: 40px 0 25px;
    background: var(--blue);
    overflow: hidden;
}
.logistical h2{
    color: #fff;
    font-weight: 600;
}
.logistical p{
    color: #fff;
}

.logistical a{
    padding: 20px 35px;
    color: var(--blue);
    background: #fff;
}

.counter{
    padding: 50px 0 80px 0;
}

.counter .count-up{
    text-align: center;
}

.counter .count-up i{
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: #0079C190;
    border-radius: 50%;
    line-height: 60px;
    font-size: 35px;
    color: #fff;
}

.counter .count-up .counter-border{
    width: 115%;
    height: 3px;
    background-image: linear-gradient(to right, transparent 50%, #231F20 50%);
    background-size: 22px 100%;
    margin: 20px 0;
}

.counter .count-up .counter-border-1{
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, transparent 50%, #231F20 50%);
    background-size: 22px 100%;
    margin: 20px 0;
}

.counter .count-up p.counter-count{
    font-size: 30px;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 0;
}

.counter .count-up h3{
    font-size: 20px;
    font-weight: 600;
}

footer{
    width: 100%;
    background: #eeeeee;
    padding: 40px 0;
    overflow: hidden;
}

footer .footer-1 p{
    font-size: 14px;
    color: var(--dark-grey);
}
footer .footer-1 p strong{
    color: var(--blue);
}

footer .footer-1 .footer-icons ul li{
    display: inline-block;
    margin-right: 10px;
}

footer .footer-1 .footer-icons ul li a i{
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 25px;
}

footer .footer-2 h3{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

footer .footer-2 .footer-menu ul li{
    margin-bottom: 10px;
}
footer .footer-2 .footer-menu ul li a{
    color: var(--dark-grey);
}

footer .footer-2 .footer-menu ul li a i{
    padding-right: 8px;
    transition: 0.3s;
}

footer .footer-2 .footer-menu ul li a:hover i{
    transform: rotate(45deg);
}

footer .footer-3 .footer-menu ul li{
  padding-left: 27px;
  position: relative;
}

footer .footer-3 .footer-menu ul li a:hover i{
    transform: none;
}

footer .footer-3 .footer-menu ul li i {
  font-size: 22px;
  color: var(--blue);
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 3px;
}

/* about us */

.about-banner{
    width: 100%;
    height: auto;
    padding: 50px 0;
    text-align: center;
    background: #007ac190;
}

.about-banner h1{
    color: #fff;
}

.about-us img{
    float: left;
    margin: 0 20px 10px 0;
}

.founder-details{
    background: #eeeeee;
}

.founder-details figure{
    position: relative;
    overflow: hidden;
}

.founder-details figure::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--blue);
    opacity: 0;
    right: 0;
    top: 0;
    transition: .3s ;
    z-index: 2;
}
.founder-details:hover figure::before{
    opacity: 0.3;
}

.founder-details figure img{
    transition: 0.3s;
}

.founder-details:hover figure img{
    transform: scale(1.1) rotate(3deg);
}

.founder-details h3{
    font-size: 18px;
    padding: 0 0 10px 10px;
    font-weight: 600;
}

.our{
    width: 100%;
    height: auto;
    background: #eeeeee;
    z-index: 0;
    position: relative;
    padding: 50px 0;
}

.our-mission{
    width: 100%;
    height: auto;
    border: 3px solid var(--blue);
    background: #fff;
    /* margin-bottom: 35px; */
    position: relative;
    padding: 20px;
    height: 100%;
    padding-bottom: 10px;
}

.our-mission:before,
.our-mission:after{
    content: "";
    width: 130px;
    height: 150px;
    background: var(--blue);
    position: absolute;
    z-index: -2;
}
.our-mission:before{
    bottom: -20px;
    left: -20px;
}
.our-mission:after{
    top: -20px;
    right: -20px;
}

.our-mission i{
    width: 60px;
    height: 60px;
    background: #eeeeee;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 12px;
}

.our-mission p{
    font-size: 14px;
}

.about-img-1 img{
    margin: 0;
}

/* gallery */

.magnific-img img {
    width: 100%;
    height: auto;
}
.magnific-img {
    display: inline-block;
    /* width: 32.3%; */
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.blog .blog-list{
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px #0004;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog .blog-list .blog-content{
  padding: 20px;
}

.blog .blog-list .blog-content .user-name{
  margin-bottom: 10px;
}

.blog .blog-list .blog-content .user-name i{
  font-size: 20px;
  padding-right: 15px;
  color: var(--blue);
}

.blog .blog-list .blog-content p{
  margin-bottom: 10px;
  line-height: 1.2;
}

.blog .blog-list .blog-content p strong a{
  color: var(--dark-grey);
  transition: 0.3s;
}

.blog .blog-list .blog-content p strong a:hover{
  color: var(--blue);
}

.blog .blog-list .blog-content a{
  color: var(--blue);
}

.blog .blog-list .blog-content a i{
  transition: 0.3s;
}

.blog .blog-list .blog-content a:hover i{
  transform: translateX(5px);
}

.bolgs-pages-1 .blog-page{
  box-shadow: 0 0 8px #0004;
  padding: 20px;
  border-radius: 5px;
}

.blog-heading, .blog-heading a{
  color: var(--dark-grey);
  font-size: 22px;
  padding: 10px 0;
}

.blog-page .blog-user ul li{
  display: inline-block;
  padding-right: 20px;
}

.blog-page .blog-user ul li a{
  color: var(--dark-grey);
}

.blog-page .blog-user ul li a i{
  color: var(--blue);
  padding-right: 10px;
}

.bolgs-pages-1 .side-bar{
  width: 100%;
  height: auto;
  box-shadow: 0 0 8px #0004;
  border-radius: 5px;
  padding: 10px;
}

.bolgs-pages-1 .side-bar .heading{
  font-size: 24px;
  padding-bottom: 10px;
}

.recent-post{
  margin-bottom: 10px;
}
.recent-post h4{
  font-size: 14px;
}

.recent-post h4 a{
  color: var(--dark-grey);
}

.faqs .card{
  margin-bottom: 10px;
}

.faqs .card .card-header{
  padding: 0;
}

.faqs .card .card-header a.card-link{
  display: block;
  padding: 10px 15px;
  color: var(--dark-grey);
}

.call-us-1{

  padding-bottom: 1px;
}

.call-us{
  width: 100%;
  height: 100%;
  /* margin-bottom: 20px;  */
  box-shadow: 0 0 10px #0004;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
.call-us i{
  /* margin-right: 10px; */
  font-size: 24px;
  background-color: var(--blue);
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.call-us p{
  padding: 10px 0;
  margin: 0;
  font-size: 22px;
}

.call-us a{
  color: var(--dark-grey);
}

.form{
  width: 100%;
  height: auto;
  padding: 10px;
  border: 1px solid var(--dark-grey);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form form input{
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  margin-bottom: 10px;
  padding: 0 10px;
  background: #eeeeee;
  border-radius: 5px;
}

.form form input[type="submit"]{
  background: var(--blue);
  cursor: pointer;
  color: #fff;
  padding: 0;
  width: 250px;
}

.form form textarea{
  width: 100%;
  height: 100px;
  border: none;
  outline: none;
  padding: 0 10px;
  padding-top: 10px;
  background: #eeeeee;
  margin-bottom: 10px;
  border-radius: 5px;
}

/* loader */

.preloader{
  text-align: center;
}
#overlayer {
  width:100%;
  height:100vh;  
  position:fixed;
  z-index:999;
  background:#eeeeee;
  /* bottom: 0; */
  top: 0;
  overflow: hidden;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: fixed;
  z-index:1000;
  border: 4px solid var(--blue);
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: var(--blue);
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

.img-design{
  position: relative;
  width: 100%;
  height: auto;
}

.img-design::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  left: -3%;
  bottom: -5%;
  z-index: -1;
}

.vertical-slider{
  position: relative;
}

.vertical-slider .slick-arrow{
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background: #fff6;
  color: #fff;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 40px;
}

.vertical-slider .slick-arrow.slick-next{
  left: 30px;
  z-index: 1;
}
.vertical-slider .slick-arrow.slick-prev{
  right: 30px;
  z-index: 1;
}