:root {
  --navbar--size:100px;
  --navbar--color:rgba(4, 0, 2, 0.50);
  --navbar--fontSize:16px;
  --navbar--fontColor:#fff;
  --navbar--logoColor:#228bcb;
  --timeDuration:0.2s ease;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "BPG Banner SuperSquare Caps", sans-serif;
  transition: var(--timeDuration);
}

nav {
  width: 100%;
  height: var(--navbar--size);
  background-color: var(--navbar--color);
  display: flex;
  justify-content: space-between;
  color: var(--navbar--fontColor);
  align-items: center;
  padding: 0 2rem 0 2rem;
  font-size: var(--navbar--fontSize); /* Safari */
  position: sticky;
  top: 0;
  z-index: 104;
}
nav .logo--wrapper {
  cursor: pointer;
  z-index: 101;
}
nav a {
  position: relative;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 0 10px;
}
nav a:after {
  content: "";
  position: absolute;
  background-color: #228bcb;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -10px;
  transition: var(--timeDuration);
}
nav a:hover:after {
  width: 100%;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav li {
  padding: 0 30px 0 0;
  list-style: none;
}
nav a {
  color: var(--navbar--fontColor);
  text-decoration: none;
  transition: var(--timeDuration);
}
nav a:hover {
  color: #228bcb;
}
nav .close {
  font-size: 32px;
  color: #228bcb;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1050px) {
  nav .menu--wrapper {
    height: 200vh;
    width: 100%;
    background-color: #fff;
    position: absolute;
    right: 0;
    bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--timeDuration);
    z-index: 100;
  }
  nav .menu--wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    margin-bottom: 400px !important;
  }
  nav .menu--wrapper li {
    padding: 2rem 0;
  }
  nav .menu--wrapper a {
    color: black;
  }
  nav .menu--wrapper a:hover {
    color: #228bcb;
  }
  nav .close {
    display: block;
    z-index: 101;
  }
  nav .fa-circle-chevron-down {
    transform: rotate(90deg);
    transition: var(--timeDuration);
    color: white;
  }
  nav .fa-active {
    transform: rotate(0deg);
    color: #228bcb;
  }
  nav .active {
    background-color: #fff;
    overflow: hidden !important;
    bottom: -830px;
  }
}
nav .logo--wrapper {
  font-size: 32px;
  color: var(--navbar--logoColor);
}
nav .logo--wrapper h1 {
  font-family: "Square Peg", cursive !important;
}

section {
  margin-top: -100px;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  z-index: -2;
}
section #one {
  background-image: url(/imgs/one.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #two {
  background-image: url(/imgs/two.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #three {
  background-image: url(/imgs/three.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #four {
  background-image: url(/imgs/four.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #five {
  background-image: url(/imgs/five.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #six {
  background-image: url(/imgs/six.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section #seven {
  background-image: url(/imgs/seven.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section .text--wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}
section h1 {
  font-size: 4rem;
  padding: 3rem 0;
  color: #fff;
  font-family: "Square Peg", cursive !important;
}
section button {
  width: 150px;
  height: 40px;
  background-color: #228bcb;
  border: 1px solid #fff;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: var(--timeDuration);
}
section button:hover {
  background-color: white;
  color: #228bcb;
}
@media screen and (max-width: 1050px) {
  section h1 {
    font-size: 2rem;
  }
}
section .swiper {
  width: 100%;
  height: 100vh;
  background-color: var(--navbar--color);
}
section .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
section #svp {
  z-index: -2 !important;
}

.contact-wrapper {
  position: absolute;
  margin-top: 0;
  top: -100%;
  left: 0;
  height: 100%;
  background-image: url(/imgs/seven.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--timeDuration);
}
.contact-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 560px;
  padding: 2rem;
  background: #fff;
  transform: scale(0.8);
}
.contact-wrapper .contact-form h1 {
  color: #228bcb;
  font-size: 32px;
}
.contact-wrapper .contact-form button {
  margin-top: 30px;
}
.contact-wrapper .contact-form input {
  width: 460px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgb(225, 225, 225);
  border: 1px solid rgb(225, 225, 225);
  border-radius: 0px;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 150ms ease 0s;
  outline: none;
  margin-top: 0.33333em;
  height: 50px;
}
.contact-wrapper .contact-form textarea {
  width: 460px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgb(225, 225, 225);
  border: 1px solid rgb(225, 225, 225);
  border-radius: 0px;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 150ms ease 0s;
  outline: none;
  margin-top: 0.33333em;
}
@media screen and (max-width: 760px) {
  .contact-wrapper .contact-form {
    width: 95%;
    height: 95%;
  }
  .contact-wrapper .contact-form h1 {
    color: #228bcb;
    font-size: 22px;
    margin-top: -50px;
  }
  .contact-wrapper .contact-form .fullName input {
    width: 140px;
  }
  .contact-wrapper .contact-form input {
    width: 280px;
  }
  .contact-wrapper .contact-form textarea {
    width: 280px;
  }
  .contact-wrapper .contact-form ::-moz-placeholder {
    font-size: 10px;
  }
  .contact-wrapper .contact-form ::placeholder {
    font-size: 10px;
  }
  .contact-wrapper .contact-form .closeContact {
    margin-right: 150px;
  }
}
@media screen and (max-width: 760px) and (max-width: 360px) {
  .contact-wrapper .fullName input {
    width: 135px !important;
  }
  .contact-wrapper input {
    width: 277px !important;
  }
  .contact-wrapper textarea {
    width: 277px !important;
  }
}
.contact-wrapper .fullName input {
  width: 227px;
}
.contact-wrapper input {
  margin-bottom: 30px;
  height: 40px;
}
.contact-wrapper ::-moz-placeholder {
  padding: 0.5rem 0.5rem;
}
.contact-wrapper ::placeholder {
  padding: 0.5rem 0.5rem;
}
.contact-wrapper .closeContact {
  margin-left: 450px;
  cursor: pointer;
  color: #228bcb;
  font-size: 32px;
}

.fl-fl {
  background: #228bcb;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px;
  width: 185px;
  height: 60px;
  position: fixed;
  right: -125px;
  z-index: 1000;
  font: normal normal 12px Arial;
  transition: var(--timeDuration);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 24px;
}
.fl-fl img {
  vertical-align: middle;
  border-style: none;
  padding: 10px;
}
.fl-fl .fl-fl img {
  margin: 7px;
}
.fl-fl:hover {
  right: 0px;
}
.fl-fl a {
  text-decoration: none;
  color: white;
}

.float-fb {
  top: 220px;
}

.float-ig {
  top: 290px;
}

.about {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.about .about--wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}
@media screen and (max-width: 1530px) {
  .about .about--wrapper {
    width: 70%;
  }
}
@media screen and (max-width: 1250px) {
  .about .about--wrapper {
    width: 90%;
  }
}
.about .aboutText--wrapper {
  margin-top: -200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about h1 {
  font-size: 32px;
  color: #228bcb;
  font-family: "BPG Banner SuperSquare Caps", sans-serif !important;
}
.about p {
  width: 90%;
}
.about img {
  width: 500px;
  margin-top: -250px;
}
.about button {
  border: 2px solid black;
}

@media screen and (max-width: 970px) {
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 190vh;
  }
  .about--wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .aboutText--wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #aboutTITLE {
    margin-top: 100px;
  }
  #aboutIMG {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .about {
    margin-top: -40px;
    height: 110vh;
  }
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: -40px;
    height: 130vh;
  }
}
@media screen and (max-width: 540px) {
  .about {
    margin-top: -40px;
    height: 180vh;
  }
}
@media screen and (max-width: 412px) {
  .about {
    margin-top: -40px;
    height: 150vh;
  }
}
@media screen and (max-width: 393px) {
  .about {
    margin-top: -40px;
    height: 170vh;
  }
}
@media screen and (max-width: 375px) {
  .about {
    margin-top: -40px;
    height: 210vh;
  }
}
@media screen and (max-width: 360px) {
  .about {
    margin-top: -40px;
    height: 190vh;
  }
}
#tours {
  font-family: "BPG Banner SuperSquare Caps", sans-serif !important;
}

.tours--section {
  height: auto;
  width: 100%;
  padding: 10rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  background: url(/imgs/batum.jpg) 0% 0%/cover fixed rgb(0, 13, 26);
  padding: 12rem 0rem;
}
.tours--section .tours--wrapper {
  width: 100%;
  height: 90%;
  background-color: white;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.tours--section .tours--wrapper h1 {
  color: #228bcb;
  font-size: 32px;
}
.tours--section .grid--list {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 277px;
  grid-gap: 20px;
  width: 68%;
  transition: 0.2s;
  padding: 3rem 0;
}
@media screen and (max-width: 1020px) {
  .tours--section .grid--list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tours--section div {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 5;
}
.tours--section div .tit {
  position: absolute;
  margin-top: 220px;
  margin-left: 10px;
  z-index: 105;
  color: #fff;
  width: auto;
  height: auto;
}
.tours--section .imgTOURS {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}
.tours--section .imgTOURS:hover {
  transform: scale(1.1);
}
.tours--section:nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
}
.tours--section:nth-child(3) {
  grid-row: 2;
  grid-column: 3;
}
.tours--section:nth-child(4) {
  grid-row: span 2;
}
.tours--section:nth-child(5) {
  grid-column: span 2;
}
.tours--section:nth-child(6) {
  grid-column: 1;
}
.tours--section:nth-child(8) {
  grid-row: 3/span 2;
  grid-column: 3/span 2;
}

.why--us {
  height: 500px;
  background: url(/imgs/batum.jpg) 0% 0%/cover fixed rgb(0, 13, 26);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -200px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1361px) {
  .why--us {
    height: auto;
    flex-direction: column;
    padding: 4rem 1rem;
  }
  .tours--number {
    margin-left: 0 !important;
    margin-top: 50px;
  }
  .tours--number h1 {
    font-size: 18px !important;
  }
}
.tours--number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  color: white;
  margin-left: 40px;
  border: 1px solid #228bcb;
  border-radius: 10px;
  background-color: #fff;
  padding: 1rem;
  transform: scale(0.9);
  cursor: pointer;
}
.tours--number h1 {
  font-size: 22px;
  color: black;
  margin-top: -20px;
}
.tours--number p {
  color: #666666;
  margin-top: -30px;
  font-size: 14px;
}
.tours--number .icon {
  font-size: 30px;
  position: absolute;
  margin-top: -160px;
  z-index: 105;
  color: white;
  background-color: #228bcb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tours--number:hover {
  transform: scale(1);
}

a {
  color: #fff;
  text-decoration: none;
}

.footer {
  background: url(/imgs/six.jpg) 0% 0%/cover fixed rgb(0, 13, 26);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-top: 100px;
}

.footer-wave-svg {
  background-color: transparent;
  display: block;
  height: 30px;
  position: relative;
  top: -1px;
  width: 100%;
}

.footer-wave-path {
  fill: #fffff2;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.footer-content .contact--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #228bcb;
  border-radius: 5px;
  padding: 1rem;
  margin-top: 30px;
  font-size: 24px;
  transition: var(--timeDuration);
  cursor: pointer;
}
.footer-content .contact--wrapper i {
  font-size: 42px;
}
.footer-content .contact--wrapper:hover {
  color: #228bcb;
  background-color: white;
}

.titleCon {
  margin-top: 150px;
}

.footer-logo-link {
  display: inline-block;
}
.footer-logo-link h1 {
  font-family: "Square Peg", cursive !important;
  font-size: 72px !important;
}

.footer-menu {
  margin-top: 30px;
}

@media screen and (max-width: 760px) {
  .contact--wrapper {
    font-size: 18px !important;
  }
  .footer-logo-link h1 {
    font-size: 40px !important;
  }
}
.footer-copyright {
  background-color: #228bcb;
  color: #fff;
  padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.footer-copyright-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: sans-serif;
  text-transform: uppercase;
}

/* Media Query For different screens */
@media (min-width: 320px) and (max-width: 479px) { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 300px;
    position: relative;
  }
}
@media (min-width: 480px) and (max-width: 599px) { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 300px;
    position: relative;
  }
}
@media (min-width: 600px) and (max-width: 800px) { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 300px;
    position: relative;
  }
}
@media (min-width: 760px) {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 350px;
    position: relative;
  }
  .footer-wave-svg {
    height: 50px;
  }
  .footer-content-column {
    width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}
.car--rent {
  width: 100%;
  height: auto;
  padding: 10rem 2rem 0;
}

#swip {
  width: 700px;
  height: 400px;
}
#swip #prev {
  color: #228bcb !important;
}
#swip #next {
  color: #228bcb !important;
}

#carone {
  background-image: url(/imgs/cars/one.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#cartwo {
  background-image: url(/imgs/cars/two.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#carthree {
  background-image: url(/imgs/cars/three.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#carfour {
  background-image: url(/imgs/cars/four.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#rentBTN {
  margin-top: 20px;
  width: 300px;
  position: absolute;
  z-index: 100;
  margin-top: 470px;
}/*# sourceMappingURL=style.css.map */