/* ====common css start here===== */
@charset "utf-8";

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-orange:#F58020;
  --color-dark: #373C40;
  --color-light-gray: #C9D5DB;
  --color-blue: #13204B;
  --color-sky-blue: #1395E1;
  --color-text-gray: #636262;
  --color-gray: #707070;
 
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* ------Scrollbar CSS Start----- */

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-orange);
  border-radius: 0px;
  border: 0px solid var(--color-white);
}

/* ------Scrollbar CSS End----- */

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 23px;
  color: var(--color-black);
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
}

p {
  padding: 0;
  color: var(--color-text-gray);
  font-weight: 400;
  line-height: 1.6;
  font-size: 13px;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-blue);
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
  color: var(--color-white);
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

figure {
  margin: 0;
  padding: 0;
  display: block;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4{
  color: var(--color-black);
  position: relative;
  letter-spacing: 0;
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Poltawski Nowy", serif;
}


h1 strong,
h2 strong,
.heading strong {
  font-weight: 500;
}


h3,
h4,
h5,
.subheading {
  color: var(--color-blue);
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
}


.form-control {
  height: 45px;
  border: 1px solid #E1E1E1;
  padding: 10px 15px;
  background-color: var(--color-white);
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 5;
  box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
  height: 50px;
}

textarea.form-control {
  height: 100px;
  resize: none;
}

.form-control::placeholder {
  color: var(--color-gray);
}

.form-control:focus {
  border-color: var(--color-orange);
}
button:focus {
  outline: none;
}
.bg-custom{
  background: #FBFBFB;
}

/* menu fixd animation */

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

/* menu animation end */

/*--------------Menu Section Start--------------*/

.main-header{
  width: 100%;
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #ffffffad;
}
.main-header .navbar {
  padding: 0;
}

.main-header.header-appear{
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--color-white);
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}
.main-header.header-appear .brandlogo img {
  width: 100px;
}

.main-header.header-appear .navbar .navbar-collapse ul li a {
  color: #7a7979;
  font-size: 16px;
}

.main-header.header-appear .navbar .navbar-collapse ul li.active a {
  color: #000;
}
.menu_nav{
  background-color: var(--color-white);
}

.menumain {
  width: 100%;
  z-index: 9999;
  transition: all .5s ease;
  position: relative;
  background-color: var(--color-black);
  padding: 10px 0;
}

.menumain nav.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all .5s ease;
}

.brandlogo {
  display: inline-block;
  position: relative;
  padding: 0px 0;
  margin: 0;
}

.brandlogo img {
  width: 200px;
}

.navbar .navbar-collapse > ul {
  flex-wrap: wrap;
  display: flex;
  margin: 0;
  justify-content: center;
  width: 100%;
}
.navbar .navbar-collapse ul li{
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .navbar-collapse ul li a {
  color: #000;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  margin: 0 6px;
  display: inline-block;
}
.navbar .navbar-collapse ul li.active a {
  color: #F28610;
}

.navbar .navbar-collapse ul ul.dropdown-menu {
  box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 0;
  margin: 0;
}

.navbar .navbar-collapse ul ul.dropdown-menu li {
  padding: 0;
}

.navbar .navbar-collapse ul ul.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  border-left: solid 2px transparent;
  margin-left: 0;
  color: var(--color-black);
  font-weight: 400;
  font-size: 13px;
}

.navbar .navbar-collapse ul ul.dropdown-menu li a:hover {
  color: var(--color-black);
  border-left: solid 2px var(--color-blue);
  background-color: #f8f9fa !important;
}

.dropdown-toggle::after {
  width: 10px;
  height: 8px;
  border: 0;
  background-image: url(../images/down-aro.png);
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  position: relative;
  background-size: contain;
}

/* styke menu  */
.sticky .menu_nav {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

/* menu fixd animation */

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

/* menu animation end */


/*--------------Menu Section End--------------*/


/* ------------- Banner Section Start ------------- */
.bannersec{
  /* height: calc(100vh - 105px); */
  position: relative;
}
/* .bannersec:after{
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(0,0,0,1));
  bottom: 0; left: 0;
  width: 100%; height: 100%;
} */
.bannersec video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bannertxt{
  position: absolute;
  bottom:50px; left: 0; width: 100%;
  text-align: center;
  z-index: 1;
}
.bannertxt h2 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 68px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

/* ------------- Banner Section End ------------- */

/* OWL Aro start */
.owlnav-active .owl-nav {
  display: block;
}

.owlnav-active .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 1px #E5EBF3 !important;
  box-shadow: 0px 3px 6px #00000024;
  background: url(../images/left-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  left: -20px;
  font-size: 0 !important;
  background-size: 14px !important;
}

.owlnav-active .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: solid 1px #E5EBF3 !important;
  right: -20px;
  box-shadow: 0px 3px 6px #00000024;
  background: url(../images/right-i.png) no-repeat center var(--color-white) !important;
  border-radius: 50px;
  font-size: 0 !important;
  background-size: 14px !important;
}

.owlnav-active.vehicle-list .owl-nav .owl-prev {
  width: 40px;
  height: 40px;
  left: -18px;
}

.owlnav-active.vehicle-list .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  right: -18px;
}

/* OWL Aro End */

.bg1{
  background: #1A422C;
}
.bg2{
  background: #DEEEFB;
}
.bg3{
  background: #F5EFCD;
}
.bg4{
  background: #C0D9BF;
}

.glofbox {
  position: relative;
  padding: 0 0 0 55px;
}

.glofbox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}

.glofbox p {color: #fff;font-size: 16px;line-height: 22px;}
.heading h2 {
  color: #1A422C;
  font-size: 45px;
  font-weight: 700;
  margin: 0;
}
.heading {
  margin-bottom: 30px;
}

.glofholisec {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.glofholisec img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.locdat {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.loc {
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  font-family: "Poltawski Nowy", serif;
}

.loc i {
  margin: 0 10px 0 0;
}

.days {
  color: #969696;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
  font-weight: 400;
}

.days i {
  margin: 0 10px 0 0;
  /* transform: rotate(-45deg); */
}

.threeboxslider  .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.threeboxslider {
  padding: 0 50px;
}

.threeboxslider.owl-carousel .owl-nav button {
  /* background-color: #B4DDFF;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50px;
  color: #fff;
  font-size: 30px; */
  background: url(../images/arow1.png);
  height: 30px;
  width: 30px;
  background-size: 100%;
  font-size: 0;
  filter: invert(18%) sepia(15%) saturate(1921%) hue-rotate(94deg) brightness(40%) contrast(86%);
}
.threeboxslider.owl-carousel .owl-nav button.owl-next {
  transform: rotate(180deg);
}

.threeboxslider.owl-carousel.owl-theme .owl-nav [class*='owl-']:hover{background: url(../images/arow1.png); background-size:100%;
  text-decoration: none;}

.bd_footer{
  padding: 40px 0;
}
ul.sochal-icon {
    display: flex;
    justify-content: center;
}

ul.sochal-icon li + li {
    margin-left: 30px;
}

ul.sochal-icon li  img {
    width:40px;
}

.ftrmenu {
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
}

.ftrmenu li+li {
  margin: 0 0 0 10px;
}

.ftrmenu li a.nav-link {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.ftrmenu {
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
}

.ftrmenu li+li {
  margin: 0 0 0 10px;
}

.ftrmenu li a.nav-link {
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.copyright p {
  /* font-family: "Poltawski Nowy", serif; */
  text-align: center;
  margin: auto;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.copyright p a {
  color: #fff;
}

/* .graycolor.threeboxslider.owl-carousel .owl-nav button {
  background: url(../images/arow1.png);
  background-size: 100%;
}
.testimonialsec.threeboxslider.owl-carousel .owl-nav button {
  background: url(../images/arow2.png);
  background-size: 100%;
} */


.graycolor .glofholisec {
  background: #9E9E9E;
}

.graycolor .glofholisec .loc, .graycolor .glofholisec .days {
  color: #fff;
}
.allimg img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testibox {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-left: 10px;
}

.testibox .qout {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 50px;
}
.testimonialsec .owl-stage-outer {
  padding: 30px 0 0 0;
}
.testibox .star {
  text-align: center;
  font-size: 40px;
  line-height: 46px;
  color: #E9BE46;
}

.testcon {
  margin: 10px 0 0 0;
  height: 155px;
  overflow-y: scroll;
}

.testcon p {
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.testcon::-webkit-scrollbar-thumb, .testcon::-webkit-scrollbar-track{
background: transparent;
}

.wpcf7-spinner {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translate(-50%);
}

.ftraddress {
  position: relative;
  padding-left: 35px;
}

.ftraddress i {
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

.ftraddress p, .ftraddress a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}
.ftraddress.envelope {
  padding-left:45px;
}
.envelope a, .fphone a {top: 8px;position: relative;}

.envelope i, .fphone i {
  font-size: 14px;
  /* background: #000; */
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50px;
}

.ftraddress.fphone {
  padding-left: 45px;
  margin-top: 20px;
}
.socialmedia .qodef-iwt.qodef-iwt-icon-left {
  display: block;
}