@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,600,700&display=swap');

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}

a:Hover {
  text-decoration: none;
}

* {
  outline: 0px !important;
}

.main-header {
  position: fixed;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: 300ms;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.header-container .logo {
  padding-left: 30px;
}

.header-container .logo img {
  max-height: 40px;
}

.header-container .menu-container {
  display: flex;
  align-items: center;
}

.header-container .menu>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: right;
}

.header-container .menu>ul li {
  margin-right: 30px;
  position: relative;
}

.header-container .menu>ul li a {
  color: #fff;
  text-transform: uppercase;
  display: block;
  padding: 25px 10px;
  transition: 300ms;
}

.header-container .menu>ul li a:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0px;
  height: 1px;
  transition: 300ms;
  left: 50%;
  width: 0px;
}

.header-container .menu>ul .submenu {
  position: absolute;
  text-align: center;
  width: 230px;
  left: calc(50% - 115px);
  opacity: 0;
  top: 65px;
  visibility: hidden;
  transition: 300ms;
  overflow: hidden;
  z-index: 99;
}

.header-container .menu>ul .submenu li {
  margin-right: 0px;
}

.header-container .menu>ul .submenu li a {
  background: #ffffffb3;
  display: block;
  padding: 10px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  transition: 300ms;
  text-transform: unset;
}

.header-container .menu>ul .submenu li a:After {
  content: none;
}

.header-container .menu>ul .submenu li a:Hover {
  background: #fecc00;
  color: #000;
}

.header-container .menu>ul li:Hover a:after {
  width: 100%;
  left: 0px;
  background: red;
}

.header-container .menu>ul li:Hover .submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  padding-top: 15px;
  border-bottom: 3px solid #222b6f;
}

.header-container .menu>ul .submenu:before {
  content: '';
  position: absolute;
  left: calc(50% - 15px);
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #d6d4d2 transparent;
  transform: scale(0);
  transition: 300ms;
}

.header-container .menu>ul li:Hover .submenu:before {
  transform: scale(1);
}

.header-container .actions ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-container .actions ul li a {
  padding: 25px 15px;
  text-transform: uppercase;
  display: block;
  transition: 300ms;
}

.header-container .actions ul li:first-child a {
  background: rgba(34, 43, 111, 0.3);
  color: #fecc00;
  font-weight: bolder;
}

.header-container .actions ul li:first-child:Hover a {
  background: rgba(34, 43, 111, 1);
}

.header-container .actions ul li:last-child a {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  font-weight: bolder;
}

.header-container .actions ul li:last-child:Hover a {
  background: rgba(255, 255, 255, 1);
}

.main-slider {
  position: relative;
}

.main-slider .slider-actions {
  position: absolute;
  width: 100%;
  top: 90px;
  z-index: 1;
  left: 0px;
}

.main-slider .slider-actions nav {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.main-slider .slider-actions nav a {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  ;
  display: flex;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: 300ms;
  position: relative;
  transition: 300ms;
  border: 5px solid rgba(255, 255, 255, 0.5);

  -webkit-animation-name: lighter;
  -webkit-animation-duration: 1.5s;
  animation-name: lighter;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.main-slider .slider-actions nav a:after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  background: transparent;
  border-radius: 100%;
  border: 10px solid rgba(255, 255, 255, 0.2);
}


@-webkit-keyframes lighter {
  from {
    border-color: rgba(255, 255, 255, 0.1);
    transition: 2000ms;
  }

  to {
    border-color: rgba(000, 000, 000, 0.4);
    transition: 2000ms;
  }
}


@keyframes lighter {
  from {
    border-color: rgba(255, 255, 255, 0.1);
    transition: 2000ms;
  }

  to {
    border-color: rgba(000, 000, 000, 0.4);
    transition: 2000ms;
  }
}

.main-slider .slider-actions nav a:hover {
  background: #222b6f;
  color: #fecc00;
  transform: scale(1.1);
  box-shadow: 0px 0px 35px white;
}

.header-container .logo {
  background: #fff;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 300ms;
}

.header-container .logo:after {
  content: '';
  position: absolute;
  right: -73px;
  top: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 74px 74px 0px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(90deg);
  transition: 300ms;
}

.main-header.fixed {
  background: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .4);
  border-bottom: transparent;
}

.main-header.fixed .header-container .logo {
  height: 55px;
}

.main-header.fixed .header-container .logo:after {
  right: -55px;
  border-width: 0 55px 55px 0px;
}

.main-header.fixed .menu a {
  color: #000;
}

.main-header.fixed .header-container .actions ul li a {
  padding: 15px;
}

.main-header.fixed .header-container .menu>ul li a {
  padding: 15px 10px;
}

.main-header.fixed .header-container .menu>ul li a:after {
  height: 2px;
  background: #fecc03;
}

.main-header.fixed .header-container .menu>ul .submenu li a {
  background: #fff;
}

.main-header.fixed .header-container .menu>ul .submenu li a:Hover {
  background: #fecc03;
}

.main-header.fixed .header-container .menu>ul .submenu:before {
  border-color: transparent transparent #fff transparent;
}

.vehicles-section {
  background-image: url(../images/vehicles-bg.jpg);
  background-size: cover;
  background-position: center center;
}

.vehicles-section .section-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -55px;
  z-index: 9;
}

.vehicles-section .section-title h1 {
  background: #222b6f;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: bolder;
  text-transform: uppercase;
  padding: 15px 90px;
  border-radius: 30px;
}

.vehicles-section .vehicles-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 0px;
}

.vehicles-section .vehicle .image {
  transition: 300ms;
  opacity: .5;
}

.vehicles-section .vehicle .image img {
  width: 100%;
  height: 90px;
  object-fit: contain;

}

.vehicles-section .vehicle .title {
  text-align: center;
  margin-top: 30px;
}

.vehicles-section .vehicle .title h2 {
  transition: 300ms;
  color: #000;
  display: inline-block;
  font-size: 20px;
  font-weight: bolder;
  text-transform: Uppercase;
  padding: 10px 30px;
  border-radius: 20px;
  background: transparent;
}

.vehicles-section .vehicle:Hover .title h2 {
  background: #4b4b4b;
  color: #fff;
}

.vehicles-section .vehicle:Hover .image {
  opacity: 1;
  transform: scale(1.1);
}

.choose-section {
  padding: 90px 0px;
  background-image: url(../images/shapes-bg.jpg);
  background-position: center top;
  background-size: 1500px auto;
}

.choose-section .choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.choose-section .choose-container .section-title {
  text-align: right;
}

.choose-section .choose-container .section-title h2 {
  font-size: 33px;
  text-transform: uppercase;
  font-weight: bolder;
  white-space: nowrap;
  margin-bottom: 30px;
}

.choose-section .choose-container .section-title strong {
  display: block;
  font-size: 80px;
  color: #fecc03;
}

.choose-section .choose-container .content {
  width: 50%;
}

.choose-section .choose-container .form form {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.choose-section .choose-container .form form .option {
  width: 100%;
  text-align: right;
}

.choose-section .choose-container .form form label {
  font-weight: 600;
  font-size: 13px;
}

.choose-section .choose-container .form select {
  border: 0px;
  border-bottom: 1px solid #000;
  width: 90%;
  text-align: center;
  padding: 5px 10px;
  transition: 300ms;
  margin-bottom: 10px;
}

.choose-section .choose-container .form button {
  transition: 300ms;
  display: inline-block;
  font-size: 20px;
  font-weight: bolder;
  text-transform: Uppercase;
  padding: 10px 30px;
  border-radius: 20px;
  background: transparent;
  border: 0px;
  background: #4b4b4b;
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}

.choose-section .choose-container .form button:Hover {
  background: #fecc03;
  color: #000;
}

.rentcar-section {
  background-image: url(../images/rent-car-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0px;
  position: relative;
}

@supports (-webkit-touch-callout: none) {
  .rentcar-section {
    background-attachment: scroll;
    position: relative;
  }
}

.rentcar-section h2 {
  font-weight: bolder;
  font-size: 80px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.rentcar-section h2:after {
  content: '';
  width: 30%;
  height: 3px;
  background: #fff;
  display: block;
}

.rentcar-section p {
  margin-top: 40px;
  color: #fff;
  font-weight: bolder;
  font-size: 20px;
}

.rentcar-section a {
  color: #000;
  background: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 15px;
  transition: 300ms;
}

.rentcar-section a>i {
  margin-left: 10px;
}

.rentcar-section a:Hover {
  background: #fecc00;
}

.rentcar-section .car {
  position: absolute;
  right: 0px;
  top: 0px;
}

.services-section {
  background-image: url(../images/shapes-bg.jpg);
  background-position: center top;
  padding-top: 120px;
  background-size: 1100px auto;
}

.services-section .section-title h3 {
  font-size: 33px;
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.services-section .section-title h3 strong {
  font-size: 80px;
  display: block;
  color: #222b6f;
}

.services-section .services-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.services-section .services-container .service {
  width: calc(33% - 30px);
  margin: 15px;
  position: relative;
}

.services-section .services-container .service .image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.services-section .services-container .service .content {
  position: absolute;
  right: 0px;
  width: 70%;
  top: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  right: 0px;
  background: rgb(49, 117, 186);
  background: -moz-linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(234, 234, 234, 1) 26%);
  background: -webkit-linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(234, 234, 234, 1) 26%);
  background: linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(234, 234, 234, 1) 26%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3175ba", endColorstr="#eaeaea", GradientType=1);
  color: #000;
  transition: 300ms;
}

.services-section .services-container .service .content h4 {
  font-weight: bolder;
  padding-right: 20px;
  text-transform: uppercase;
  margin: 0px;
  font-size: 27px;
}


.services-section .services-container .service:Hover .content {
  color: #fff;
  background: rgb(49, 117, 186);
  background: -moz-linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(34, 43, 111, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(34, 43, 111, 1) 100%);
  background: linear-gradient(90deg, rgba(49, 117, 186, 0) 0%, rgba(34, 43, 111, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3175ba", endColorstr="#222b6f", GradientType=1);
  padding-right: 20px;
}

.services-section .section-button {
  text-align: center;
  margin-top: 60px;
}

.services-section .section-button a {
  color: #fff;
  background: #222b6f;
  transition: 300ms;
  padding: 15px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bolder;
}

.services-section .section-button a>i {
  margin-left: 10px;
}

.services-section .section-button a:Hover {
  background: #fecc00;
  color: #000;
}

.clients-section {
  margin: 90px 0px;
}

.clients-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.clients-section .section-title h4 {
  font-weight: bolder;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.clients-section .client-item img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  transition: 300ms;
}

.clients-section .client-item:Hover img {
  transform: scale(1.1);
}

.main-footer {
  background-image: url(../images/footer-bg.jpg);
  background-size: 100% auto;
  background-position: center center;
  padding-bottom: 30px;
  background-repeat: no-repeat;
}

.main-footer .logo {
  padding: 90px 0px;
  text-align: center;
}

.main-footer .contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 60px;
}

.main-footer .contact span {
  display: block;
  color: #9e9e9e;
  margin-bottom: 15px;
}

.main-footer .contact p {
  margin: 0px;
  color: #fff;
}

.main-footer .contact .col:first-child p {
  font-size: 25px;
  font-weight: 600;
}

.main-footer .contact p a {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.main-footer .contact .socials {
  display: flex;
  align-items: center;
  justify-content: center;
}


.main-footer .contact .socials a {
  color: #fff;
  font-size: 35px;
  margin: 10px;
  transition: 300ms;
}

.main-footer .contact .socials a:Hover {
  color: #fecc00;
  transform: scale(1.1);
}

.main-footer .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #9e9e9e;
  padding-bottom: 20px;
  margin-left: 50px;
}

.main-footer .menu ul {
  display: flex;
  list-style: none;
  padding: 0px;
  align-items: center;
  margin: 0px;
}

.main-footer .menu .col:last-child ul {
  text-align: right;
  justify-content: flex-end;
}

.main-footer .menu .col:first-child ul {
  text-align: left;
  justify-content: flex-start;
}

.main-footer .menu ul li a {
  display: block;
  color: #9e9e9e;
  text-transform: uppercase;
  margin-right: 10px;
  transition: 300ms;
}

.main-footer .menu ul li a:Hover {
  color: #fff;
}

.main-footer .menu .col:last-child ul li a {
  font-weight: bolder;
  color: #fff;
}

.main-footer .menu .col:last-child ul li a:Hover {
  color: #fecc00;
}

.main-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px;
  color: #fff;
  font-size: 13px;
}

.footer-address {
  font-weight: 200 !important;
}

.main-slider .cover {
  position: relative;
}

.main-slider .content {
  position: absolute;
  z-index: 99;
  left: 0px;
  bottom: 120px;
  width: 100%;
  text-align: center;
}

.main-slider .content h1 {
  color: #fecc00;
  font-style: italic;
}

.main-slider .owl-nav {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: 60px;
  text-align: center;
}

.main-slider .owl-nav i {
  font-size: 35px;
  font-weight: lighter;
  color: #fff;
  margin: 0px 30px;
  transition: 300ms;
}

.main-slider .owl-nav i:Hover {
  color: #fecc00;
}

.mobileMenu {
  display: none;
}

.modal-map {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 0px;
  height: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
  visibility: hidden;
}

.modal-map .modal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  margin-top: 30px;
  height: 560px;
  border-radius: 30px;
  box-shadow: 0px 0px 36px rgba(0, 0, 0, .5);
  padding: 0px;
  transition: 300ms;
  position: relative;
}

.modal-map .modal-container .close {
  float: unset;
  position: absolute;
  right: 0px;
  top: -60px;
  display: flex;
  background: #fff;
  widtH: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms;
}

.modal-map .modal-container .close:Hover {
  background: red;
  color: #ffF;
}

.modal-map .modal-container .map {
  width: 100%;
  position: relative;
  height: 100%;
}

.modal-map .modal-container .map iframe {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 30px;
}

.modal-map.show {
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  visibility: visible;
}

.modal-map.show .modal-container {
  padding: 30px;
}

.breadcrumb {
  padding: 0px;
  margin: 0px;
  position: relative;
  border-radius: 0px;
  background-color: transparent;
  height: 400px;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb h1 {
  color: #fff;
  font-weight: bolder;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0px 0px 30px 0px;
  padding: 0px;
}

.breadcrumb ul li {
  position: relative;
}

.breadcrumb ul li:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  margin: 0px 10px;
  color: #fff;
}

.breadcrumb ul li:last-child:after {
  content: none;
}

.breadcrumb ul li a {
  color: #fff;
  transition: 300ms;
}

.breadcrumb ul li a:Hover {
  color: #fecc00;
}

.breadcrumb ul li span {
  color: #fecc00;
}

.page-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.page-container .menu-container {
  width: 300px;
}

.page-container .menu-container .menu {
  background: rgb(244, 244, 244);
  background: -moz-linear-gradient(189deg, rgba(244, 244, 244, 1) 0%, rgba(0, 212, 255, 0) 100%);
  background: -webkit-linear-gradient(189deg, rgba(244, 244, 244, 1) 0%, rgba(0, 212, 255, 0) 100%);
  background: linear-gradient(189deg, rgba(244, 244, 244, 1) 0%, rgba(0, 212, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4", endColorstr="#00d4ff", GradientType=1);
  padding-bottom: 80px;
  margin-top: -60px;
}

.page-container .menu-container .menu .title {
  background: #fecc00;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
}

.page-container .menu-container .menu .title>strong {
  display: block;
  padding: 0px 30px;
  text-transform: uppercase;
  color: #a98800;
  font-size: 20px;
  letter-spacing: 1px;
}


.page-container .menu-container .menu ul {
  list-style: none;
  padding: 15px 30px;
  margin: 0px;
}

.page-container .menu-container .menu ul li a {
  display: flex;
  color: #000;
  border-bottom: 1px solid #fff;
  padding: 10px 0px;
  align-items: center;
  justify-content: space-between;
  transition: 300ms;
}

.page-container .menu-container .menu ul li.active a:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  margin: 0px 10px;
  color: #000;
  font-weight: normal;
}

.page-container .menu-container .menu ul li.active a {
  font-weight: bolder;
}

.page-container .content-container {
  padding-left: 30px;
  width: calc(100% - 300px);
  margin: 60px 0px;
}

.page-container .menu-container .menu ul li a:Hover {
  color: #222b6f;
  border-color: #222b6f;
}

.service-container {
  column-width: 30em;
  column-gap: 15px;
  width: 100%;
  margin: 50px auto;
}

div.service-container .service {
  background: #fefefe;
  border: 2px solid #fcfcfc;
  box-shadow: 10px 5px 12px rgba(0, 0, 12, 0.1);
  margin: 0 2px 15px;
  padding: 15px;
  padding-bottom: 10px;
  transition: opacity .4s ease-in-out;
  display: inline-block;
  column-break-inside: avoid;
  width: 100%;
  position: relative;
}

div.service-container .service .title h4 {
  margin-bottom: 20px;
  font-weight: bolder;
}

div.service-container .service img {
  width: 100%;
  height: auto;
  padding-bottom: 15px;
  margin-bottom: 5px;
}

div.service-container .service figcaption {
  font-size: .9rem;
  color: #444;
  line-height: 1.5;
}

div.service-container small {
  font-size: 1rem;
  float: right;
  text-transform: uppercase;
  color: #aaa;
}

div.service-container:hover .service:not(:hover) {
  opacity: 0.7;
}

div.service-container .service .logo img {
  margin: 10px 0px;
  width: 150px;
}

.articles-container {
  position: relative;
}

.articles-container article {
  margin-bottom: 50px;
  transition: 300ms;
  border-left: 5px solid transparent;
  padding: 20px;
  position: relative;
}

.articles-container article .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.articles-container article .header {
  margin-bottom: 20px;
}

.articles-container article .header h3 {
  color: #000;
  transition: 300ms;
  font-weight: 600;
  font-size: 20px;
}

.articles-container article.no-image .image {
  display: none;
}

.articles-container article.with-image .image {
  width: 200px;
  border: 1px solid #ddd;
}

.articles-container article.with-image .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.articles-container article.with-image .content .summary {
  width: calc(100% - 200px);
  padding-left: 30px;
}

.articles-container article .button a {
  display: inline-block;
  color: #fecc00;
  background: #222b6f;
  padding: 5px 10px;
  transition: 300ms;
  font-size: 13px;
}

.articles-container article .button a:Hover {
  background: #4c58b3;
}

.articles-container article .content .date {
  margin-bottom: 20px;
  display: block;
  font-size: 14px;
  color: #636363;
  position: relative;
}

.articles-container article .content .date:Before {
  content: '\f073';
  font-family: 'Font Awesome 5 Pro';
  margin-right: 5px;
}

.articles-container article:Hover h3 {
  color: #222b6f;
}

.articles-container article:Hover {
  /* border-color: #222b6f; */
  background: #f7f7f7;
}

.articles-container article:Before {
  content: '';
  position: absolute;
  top: 0px;
  left: -5px;
  height: 1px;
  width: 0px;
  background: #222b6f;
  transition: 2000ms;
}

.articles-container article:Hover:Before {
  width: calc(100% + 5px);
}

.fixed .header-container .actions ul li:first-child a {
  background: rgba(34, 43, 111, 1);
}

.fixed .header-container .actions ul li:first-child a:Hover {
  background: rgb(254, 204, 0);
  color: rgba(34, 43, 111, 1);
}

article.article-detail .date {
  margin: 20px 0px;
}

article.article-detail .date:before {
  content: '\f073';
  font-family: 'Font Awesome 5 Pro';
  margin-right: 5px;
}

.contact-details .page-container .menu-container {
  width: 400px;
}

.contact-details .page-container .content-container {
  width: calc(100% - 400px);
}

.contact-details .page-container .menu-container form {
  position: relative;
}

.contact-details form {
  box-shadow: 0px 20px 12px rgba(0, 0, 0, 0.2);
  margin-top: -60px;
  margin-bottom: 60px;
}

.contact-details form .title {
  background: #fecc00;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 30px;
  height: 60px;
  margin-bottom: 30px;
}

.contact-details form .title strong {
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  color: #a98800;
}

.contact-details form .input {
  padding: 0px 30px;
  margin-bottom: 20px;
}

.contact-details form .input input,
.contact-details form .input textarea {
  width: 100%;
  font-size: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  transition: 300ms;
}


.contact-details form .input input:Focus,
.contact-details form .input textarea:Focus {
  border-color: #222b6f;
}


.contact-details form .input textarea {
  resize: vertical;
  height: 200px;
}

.contact-details form .button {
  padding: 0px 30px 15px 30px;
}

.contact-details form .button button {
  border: 0px;
  transition: 300ms;
  font-weight: 600;
  padding: 5px 30px;
  background: #fecc00
}

.contact-details form .button button:Hover {
  background: #222b6f;
  color: #fecc00;
}

.contact-details .box {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-boxes .value a {
  color: #212529;
}

.contact-details .box:last-child {
  margin-bottom: 50px;
  border: 0px;
}

.contact-details .box .icon {
  margin-right: 20px;
}

.contact-details .box .icon i {
  font-size: 25px;
  color: #222b6f;
}

.contact-details .contact-info {
  margin-left: 60px;
}

.contact-details .contact-info h3 {
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-info .map iframe {
  width: 100%;
  height: 400px;
}

.vehicles-details .vehicles-container {
  width: 100%;
  margin: 50px auto;
}

.vehicles-details .vehicles-container .vehicle {
  background: #f7f7f7;
  border: 2px solid #fcfcfc;
  margin: 0 2px 15px;
  padding-bottom: 10px;
  transition: opacity .4s ease-in-out;
  margin-bottom: 30px;
}

.vehicles-details .vehicles-container .vehicle .content {
  padding: 0px 15px;
}

.vehicles-details .vehicles-container .vehicle .image {
  background: #fff;
  overflow: hidden;
}

.vehicles-details .vehicles-container .vehicle .image img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding-bottom: 15px;
  margin-bottom: 5px;
  transition: 300ms;
}

.vehicles-details .vehicles-container .vehicle .title strong {
  font-weight: bolder;
  display: block;
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #8d8d8d;
}

.vehicles-details .vehicles-container .vehicle ul {
  list-style: none;
  padding: 0px;
  margin: 20px 0px;
  color: #8d8d8d;
  font-size: 13px;
  transition: 300ms;
}

.vehicles-details .vehicles-container .vehicle ul li {
  position: relative;
}

.vehicles-details .vehicles-container .vehicle ul li:before {
  content: '\f00c';
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
}

.vehicles-details .vehicles-container .vehicle .button {
  text-align: center;
}

.vehicles-details .vehicles-container .vehicle .button button {
  background: transparent;
  border: 1px solid #000;
  text-transform: uppercase;
  padding: 5px 30px;
  font-size: 13px;
  transition: 300ms;
  margin-top: 10px;
}

.vehicles-details .vehicles-container .vehicle .button button:Hover {
  background: #fecd06;
  border-color: #fecd06;
}

.vehicles-details .vehicles-container .vehicle:Hover ul {
  color: #000;
}

.vehicles-details .vehicles-container .vehicle:Hover .image img {
  transform: scale(1.1);
}

.modal-rez {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  transition: 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 1;
}

.modal-rez .rez-container {
  width: 50%;
  background: white;
  margin: auto;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, .3);
  position: relative;
}

.modal-rez .rez-container .header {
  background: #222b6f;
}

.modal-rez .rez-container .header strong {
  font-size: 25px;
  padding: 15px;
  color: #fff;
  display: block;
}

.modal-rez .rez-container .header strong:after {
  content: '#GüveneYolculuk';
  display: block;
  color: #fecc00;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1px;
}

.modal-rez .rez-container .form {
  padding: 30px;
}

.modal-rez .rez-container .input {
  width: 100%;
  margin: 10px 0px;
}


.modal-rez .rez-container .input input,
.modal-rez .rez-container .input select,
.modal-rez .rez-container .input textarea {
  width: 100%;
  display: block;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  transition: 300ms;
  transition: 300ms;
}

.modal-rez .rez-container .input.multi {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.modal-rez .rez-container .input.multi>div {
  width: 100%;
}

.modal-rez .rez-container .input.multi>div:first-child {
  margin-right: 10px;
}

.modal-rez .rez-container .input input:focus,
.modal-rez .rez-container .input select:focus,
.modal-rez .rez-container .input textarea:focus {
  border-color: #222b6f;
}

.modal-rez .rez-container label {
  font-size: 13px;
  font-weight: 600;
  color: #6d6d6d;
  display: block;
  margin-bottom: 0px;
}

.modal-rez .rez-container .input.multi>div:last-child label {
  text-align: right;
}

.modal-rez .rez-container .button button {
  background: #222b6f;
  color: #fff;
  transition: 300ms;
  border: 0px;
  padding: 10px 30px;
}

.modal-rez .rez-container .button button:Hover {
  background: #fecc00;
  color: #000;
}

.modal-rez .rez-container .close {
  opacity: 1 !important;
  float: unset;
  position: absolute;
  right: 0px;
  top: -60px;
  transition: 300ms;
}

.modal-rez .rez-container .close-rez-modal {
  background: #fecc00;
  opacity: 1;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: 300ms;
}

.modal-rez .rez-container .close-rez-modal:Hover {
  background: #a20000;
  color: #fff;
}

.modal-rez.view-rez-modal {
  opacity: 1;
  visibility: visible;
}

.rez-results .rez-form .input {
  width: 100%;
  margin: 10px 0px;
}


.rez-results .rez-form .input input,
.rez-results .rez-form .input select,
.rez-results .rez-form .input textarea {
  width: 100%;
  display: block;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  transition: 300ms;
  transition: 300ms;
}

.rez-results .rez-form .input.multi {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.rez-results .rez-form .input.multi>div {
  width: 100%;
}

.rez-results .rez-form .input.multi>div:first-child {
  margin-right: 10px;
}

.rez-results .rez-form .input input:focus,
.rez-results .rez-form .input select:focus,
.rez-results .rez-form .input textarea:focus {
  border-color: #222b6f;
}

.rez-results .rez-form label {
  font-size: 13px;
  font-weight: 600;
  color: #6d6d6d;
  display: block;
  margin-bottom: 0px;
}

.rez-results .rez-form .input.multi>div:last-child label {
  text-align: right;
}

.rez-results .rez-form .button button {
  background: #222b6f;
  color: #fff;
  transition: 300ms;
  border: 0px;
  padding: 10px 30px;
}

.rez-results .rez-form .button button:Hover {
  background: #fecc00;
  color: #000;
}

.rez-results .rez-form .close {
  opacity: 1 !important;
  float: unset;
  position: absolute;
  right: 0px;
  top: -60px;
  transition: 300ms;
}

.rez-results .rez-form .close-rez-modal {
  background: #fecc00;
  opacity: 1;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: 300ms;
}

.rez-results .rez-form .close-rez-modal:Hover {
  background: #a20000;
  color: #fff;
}

.referances-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.referances-container .referance {
  width: calc(33% - 20px);
  overflow: hidden;
  border: 1px solid #ddd;
  margin: 10px;
}

.referances-container .referance img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
  transition: 300ms;
  filter: grayscale(100%);
}

.referances-container .referance img:Hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.fixeda-alert {
  position: fixed;
  bottom: 30px;
  z-index: 99;
  left: 0px;
}

.fixeda-alert p {
  margin: 0px;
  display: inline-block;
  padding: 10px;
  margin-left: 15px;
  transition: 300ms;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, .5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixeda-alert.success p {
  background: #27b300;
  color: #fff;
}

.fixeda-alert.success p:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  display: flex;
  background: #fff;
  color: #27b300;
  ;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 10px;
}

.fixeda-alert.danger p {
  background: #c50000;
  color: #fff;
}

.fixeda-alert.danger p:before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Pro';
  display: flex;
  background: #fff;
  color: #c50000;
  ;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 10px;
}

.vehicles-section .vehicles-container .vehicle {
  width: calc(100% / 5);
}

.vehicles-container .vehicle .icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 0px 30px;
}

.vehicles-container .vehicle .icons .icon-item {
  position: relative;
  text-align: center;
  width: 100%;
}

.vehicles-container .vehicle .icons .icon-item .icon {
  font-size: 30px;
  color: #fed221;
  transition: 300ms;
}

.vehicles-container .vehicle .icons .icon-item .title {
  background: #222b6f;
  color: #fff;
  font-size: 13px;
  transition: 300ms;
  position: absolute;
  left: 50%;
  white-space: nowrap;
  top: -30px;
  padding: 5px 10px;
  box-shadow: 0px 0px 5px #222b6f;
  opacity: 0;
  visibility: hidden;
}

.vehicles-container .vehicle .icons .icon-item .title:after {
  content: '';
  position: absolute;
  left: 5px;
  width: 6px;
  background: #222b6f;
  height: 6px;
  bottom: -3px;
  transition: 300ms;
  transform: rotate(-45deg);
  box-shadow: 0px 0px 5px #222b6f;
}

.vehicles-container .vehicle .icons .icon-item:Hover .title {
  opacity: 1;
  visibility: visible;
}

.vehicles-container .vehicle .icons .icon-item .value {
  position: absolute;
  width: 100%;
  bottom: -20px;
  left: 0px;
}

.vehicles-container .vehicle .icons .icon-item .value span {
  color: #fed221;
  background: #222b6f;
  border-radius: 5px;
  display: flex;
  width: 90px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  font-size: 15px;
}

.f-carousel__slide img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 16px;
}

#myCarousel {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

#myCarousel .f-carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}


.f-carousel {
  --f-button-width: 48px;
  --f-button-height: 48px;

  --f-button-svg-width: 16px;
  --f-button-svg-height: 16px;
  --f-button-svg-stroke-width: 2.5;

  --f-button-color: #fecc00;
  --f-button-border-radius: 0px;
  --f-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0 0 / 30%);

  --f-button-bg: transparent;
  --f-button-hover-bg: #fecc00;
  --f-button-active-bg: #f0f0f0;
  --f-button-next-pos: 0px;
  --f-button-prev-pos: 0px;
}

.f-button {
  border: solid 1px #fecc00;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 15px;
}

.f-thumbs__slide__button {
  border-radius: 0px;
  height: 80px;
  width: 80px;
}

.f-carousel__thumbs {
  --f-thumb-width: auto;
  --f-thumb-height: auto;
}