@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Great+Vibes&display=swap");
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* Start Header */
nav {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
nav .container-fluid {
  width: 80%;
  margin: 0 auto;
}
nav .navbar-brand {
  font-size: 44px;
  color: black;
  font-family: "Great Vibes", cursive;
  text-decoration: none;
}
nav .navbar-collapse {
  gap: 10px;
}
nav .navbar-collapse ul li a {
  display: inline;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s;
  color: #060606;
}
nav .navbar-collapse ul li a:hover {
  color: #336dd5;
}
.navbar .nav-link.active {
  color: #336dd5 !important;
}
.navbar .d-flex {
  display: flex;
  align-items: center;
}

.navbar form[role="search"] input.form-control {
  font-size: 15px;
  border-radius: 30px 0 0 30px;
  background: #fff;
  padding: 8px 20px;
  color: #060606;
  border: 2px solid #eee;
  border-right: none;
  outline: none;
}
.navbar form[role="search"] input.form-control:focus {
  outline: none;
  box-shadow: none;
}
.navbar .d-flex i {
  border-radius: 0 30px 30px 0;
  box-shadow: none;
  padding: 13px;
  font-size: 15px;
  background-color: #336dd5;
  color: white;
  cursor: pointer;
}
/* End Header */

/* Start Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  background-image: url("../images/banner1.jpg");
  background-size: cover;
  background-position: center;
}
.hero .container .text {
  position: absolute;
  top: 40%;
  left: 25%;
  text-align: left;
  transform: translate(-50%, -50%);
}
.hero .container .text h1 {
  line-height: 85px;
  font-family: "Great Vibes", cursive;
  color: #060606;
}
.hero .container p {
  color: #060606;
  font-size: 18px;
  font-weight: 400;
}
.hero .container a {
  padding: 15px 30px;
  color: white;
  background-color: #336dd5;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: all 1.8s ease-in-out;
  border: 2px solid #336dd5;
  margin-top: 30px;
}
.hero .container a:hover {
  color: #336dd5;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .hero .container .text {
    position: static;
    transform: none;
    text-align: left;
    margin-top: 100px;
  }
}
/* End Hero */

/* Start data */
.data {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}
.data .search-form {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.data .search-form .box {
  flex: 1 1 0;
  min-width: 0;
}

.data .search-form .box label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
.data .search-form .box input {
  padding: 15px 0;
  padding-left: 20px;
  border-radius: 50px;
  background: #f2f5f7;
  font-weight: bold;
  border: none;
  text-align: left;
}
.data .search-form .box select {
  padding: 15px 0;
  padding-left: 20px;
  border-radius: 50px;
  background: #f2f5f7;
  appearance: none;
  border: none;
  font-size: 15px;
}
.data .search-form .box input,
.data .search-form .box select {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
}

.data .search-form button {
  padding: 15px 80px;
  color: white;
  background: #336dd5;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid #336dd5;
  cursor: pointer;
  transition: all 1.8s ease-in-out;
  flex: 0 0 auto;
}
.data .search-form button:hover {
  color: #336dd5;
  background-color: white;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
  .data .search-form {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
  }

  .data .search-form .box {
    width: 48%;
  }

  .data .search-form button {
    width: 100%;
    margin-top: 10px;
  }

  .data .search-form .box input,
  .data .search-form .box select {
    width: 100%;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .data .search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .data .search-form .box {
    width: 100%;
  }

  .data .search-form button {
    width: 100%;
    padding: 15px;
  }
}

/* End data */

/* Start about */
.about {
  padding: 100px 20px;
  position: relative;
}

.about .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about .container img {
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about .container img:hover {
  transform: scale(1.05);
}

.about .container .text {
  flex: 1;
  min-width: 300px;
}

.about .container .text span {
  font-size: 28px;
  color: #336dd5;
  font-weight: bold;
  font-family: "Great Vibes", cursive;
  display: block;
  margin-bottom: 10px;
}

.about .container .text h1 {
  font-size: 40px;
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.about .container .text p {
  font-size: 16px;
  line-height: 26px;
  color: #8c8c8c;
  margin-bottom: 20px;
}

.about .container .text ul {
  padding: 0;
  margin-bottom: 20px;
}

.about .container .text ul li {
  color: #060606;
  list-style: none;
  padding: 8px 0;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.about .container .text ul li i {
  color: #336dd5;
  margin-right: 10px;
}

.about .container .text button {
  padding: 15px 40px;
  border-radius: 50px;
  color: white;
  background-color: #336dd5;
  font-size: 15px;
  font-weight: bold;
  border: 2px solid #336dd5;
  cursor: pointer;
  transition: all 1.8s ease-in-out;
}

.about .container .text button:hover {
  color: #336dd5;
  background-color: white;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .about .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about .container img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .about .container .text {
    text-align: center;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .about .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about .container .text h1 {
    font-size: 32px;
  }

  .about .container .text span {
    font-size: 24px;
  }

  .about .container .text p,
  .about .container .text ul li {
    font-size: 15px;
    line-height: 22px;
  }

  .about .container .text button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .about .container ul {
    padding-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }

  .about .container .text h1 {
    font-size: 28px;
  }

  .about .container .text span {
    font-size: 20px;
  }

  .about .container .text p,
  .about .container .text ul li {
    font-size: 14px;
  }

  .about .container .text button {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/* End about */

/* Start tours */
.tours {
  padding-bottom: 100px;
}
.tours h2 {
  font-size: 32px;
  font-family: "Great Vibes", cursive;
  color: #336dd5;
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.tours h1 {
  font-size: 38px;
  line-height: 46px;
  display: block;
  text-align: center;
  margin-top: 0;
}
.tours .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 0;
}
.tours .container .trip-card {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  border: 1px solid #eee;
  margin-top: 20px;
}
.tours .container .trip-card:hover {
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}
.tours .container .trip-card:hover img {
  transition: ease 0.3s;
  transform: scale(1.08);
}

.tours .container .trip-card img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px 10px 0 0;
  transition: transform 0.5s ease;
}
.tours .container .card-content {
  padding: 20px;
}
.tours .container .card-content .rating span {
  color: #8c8c8c;
}
.tours .container .card-content .rating i {
  color: orange;
}
.tours .container .card-content h3 {
  font-weight: bold;
  font-size: 20px;
}
.tours .container .card-content .location {
  color: #8c8c8c;
}
.tours .container .card-footer .price {
  color: #8c8c8c;
}
.tours .container .card-footer .price span {
  color: #336dd5;
  font-size: 25px;
  margin-left: 5px;
  font-weight: 800;
}
.tours .container .card-footer .two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.tours .container .card-footer .two .days {
  color: #8c8c8c;
}
.tours .container .card-footer .two a {
  color: #336dd5;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .tours .container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }

  .tours h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .tours h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .tours .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tours h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .tours h2 {
    font-size: 24px;
  }

  .tours .card-content h3 {
    font-size: 18px;
  }

  .tours .card-content .price span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .tours h1 {
    font-size: 24px;
  }

  .tours h2 {
    font-size: 20px;
  }

  .tours .card-content h3 {
    font-size: 16px;
  }

  .tours .card-content .price span {
    font-size: 18px;
  }

  .tours .container {
    gap: 15px;
  }
}

/* End tours */

/* Satrt Statistics */
.stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-box {
  flex: 1 1 200px;
  max-width: 250px;
  margin-bottom: 30px;
}
.stats-section {
  position: relative;
  background-color: #0e2244;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.subtitle {
  color: #336dd5;
  font-style: italic;
  font-size: 35px;
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.stats-section h2 {
  font-size: 42px;
  margin: 15px 0 60px;
}

.stats {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.stat-box .icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.stat-box h3 {
  font-size: 48px;
  margin: 0;
}

.stat-box p {
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 400px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .stat-box {
    flex: 1 1 100%;
  }
}
/* End Statistics */

/* Start services */
.services {
  position: relative;
  padding: 100px 20px;
  text-align: center;
}
.services .container span {
  font-size: 32px;
  font-family: "Great Vibes", cursive;
  color: #336dd5;
  display: block;
  margin-bottom: 0px;
}

.services .container .p {
  font-size: 45px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 50px;
  line-height: 46px;
}

.services .container .boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services .container .boxes .box {
  padding: 30px 50px;
  border-radius: 10px;
  background-color: #f2f5f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.5s all;
  border: 1px solid #f2f5f7;
}

.services .container .boxes .box:hover {
  transition: 0.8s all;
  background-color: white;
  border: 1px solid #f2f5f7;
  cursor: pointer;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
}

.services .box .icon {
  display: flex;
  justify-content: center;
}

.services .container .box .icon i {
  font-size: 26px;
  color: #fff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  line-height: 75px;
  background: #336dd5;
  margin-top: 20px;
  margin-bottom: 20px;
}

.services .container .box h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.services .container .box p {
  font-size: 15px;
  line-height: 24px;
  color: #8c8c8c;
}

@media screen and (max-width: 1024px) {
  .services .container .boxes {
    gap: 15px;
  }
  .services .container .box h2 {
    font-size: 24px;
  }
  .services .container .box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .services .container .boxes {
    flex-direction: column;
    align-items: center;
  }
  .services .container .box {
    max-width: 90%;
    padding: 20px;
  }
  .services .container .p {
    font-size: 36px;
    line-height: 42px;
  }
  .services .container span {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .services .container .p {
    font-size: 28px;
    line-height: 34px;
  }
  .services .container span {
    font-size: 22px;
  }
  .services .container .box h2 {
    font-size: 20px;
  }
  .services .container .box p {
    font-size: 13px;
    line-height: 20px;
  }
}
/* End services */

/* Start Our Features */
.features {
  padding: 100px 0;
  position: relative;
}
.features .container {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.features .container img {
  border-radius: 10px;
  width: 100%;
  max-width: 543px;
  height: auto;
  object-fit: cover;
}
.features .container .text {
  flex: 1;
  padding-top: 90px;
}
.features .container .text span {
  font-size: 35px;
  font-family: "Great Vibes", cursive;
  text-decoration: none;
  color: #336dd5;
}
.features .container .text h1 {
  font-size: 38px;
  line-height: 46px;
  margin-top: 0;
}
.features .container .text .p {
  font-size: 18px;
  line-height: 26px;
  color: #8c8c8c;
}
.features .container .text .link {
  display: block;
  flex: 1;
}
.features .container .text .link .f {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.features .container .link .f .icon i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  font-size: 26px;
  color: #336dd5;
  background: rgb(51 109 213 / 8%);
}
.features .container .link .f1 h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}
.features .container .link .f1 p {
  font-size: 16px;
  line-height: 26px;
  color: #8c8c8c;
  margin-top: 0;
}

@media (max-width: 1024px) {
  .features .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .features .container img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .features .container .text {
    padding-top: 0;
    text-align: center;
  }

  .features .container .text .link .f {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 70px 20px;
  }

  .features .container .text h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .features .container .text span {
    font-size: 28px;
  }

  .features .container .text .p {
    font-size: 16px;
  }

  .features .container .text .link .f {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .features .container .text h1 {
    font-size: 24px;
  }

  .features .container .text span {
    font-size: 22px;
  }

  .features .container .link .f1 h2 {
    font-size: 18px;
  }

  .features .container .link .f1 p {
    font-size: 14px;
  }
}
/* End Our Features */

/* Start Our blog */
.blog {
  padding: 100px 0;
  position: relative;
  background-color: #f2f5f7;
  text-align: center;
}
.blog .container {
  background-color: #f2f5f7;
}
.blog .container .s {
  font-size: 35px;
  font-family: "Great Vibes", cursive;
  text-decoration: none;
  color: #336dd5;
}
.blog .container .p {
  font-size: 38px;
  line-height: 46px;
  margin-top: 0;
}
.blog .container .b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog .container .b .card {
  position: relative;
  overflow: hidden;
  transition: 0.3s ease-in;
  display: block;
  box-shadow: 0 1rem 3rem #f5f3f3;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  max-width: 378px;
  height: auto;
}
.blog .container .b .card .h img {
  width: 100%;
  transition: transform 0.5s ease;
  cursor: pointer;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.blog .container .b .card:hover .h img {
  transform: scale(1.08);
}
.blog .container .b .card:hover .h {
  position: relative;
  overflow: hidden;
}
.blog .container .text {
  position: relative;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  text-align: left;
}
.blog .container .text .icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.blog .container .text .icon i {
  color: #336dd5;
  margin-right: 10px;
}
.blog .container .text .icon div span {
  color: #8c8c8c;
}
.blog .container .card .text h1 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #060606;
  transition: 0.3s;
  cursor: pointer;
}
.blog .container .card .text h1:hover {
  color: #336dd5;
}
.blog .container .card .text p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  color: #8c8c8c;
}
.blog .container .card .text button {
  padding: 10px 28px 11px;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  outline: none;
  border: 2px solid #336dd5;
  background: #336dd5;
  transition: all 1.8s ease-in-out;
  margin-top: 30px;
  cursor: pointer;
}
.blog .container .card .text button:hover {
  background-color: white;
  color: #336dd5;
  transition: all 0.5s ease-in-out;
}
.blog .container .b .card .label {
  position: absolute;
  top: 0;
  right: 0;
  background: #336dd5;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 15px 10px;
  border-top-right-radius: 8px;
  z-index: 10;
}
.blog .container .label::before {
  top: 0;
  border-top: 19px solid #336dd5;
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.blog .container .label::after {
  bottom: 0;
  border-bottom: 19px solid #336dd5;
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
@media (max-width: 767px) {
  .blog {
    padding: 60px 15px;
  }

  .blog .container .s {
    font-size: 26px;
  }

  .blog .container .p {
    font-size: 24px;
    line-height: 32px;
  }

  .blog .container .b {
    flex-direction: column;
    gap: 25px;
  }

  .blog .container .b .card {
    max-width: 100%;
  }

  .blog .container .text {
    padding: 20px;
  }

  .blog .container .text .icon {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
  }

  .blog .container .card .text h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .blog .container .card .text button {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blog {
    padding: 80px 20px;
  }

  .blog .container .b {
    justify-content: center;
  }

  .blog .container .b .card {
    max-width: 340px;
  }

  .blog .container .card .text h1 {
    font-size: 22px;
  }
}
@media (max-width: 1280px) {
  .blog .container .b {
    gap: 30px;
  }
}
/* End Our blog */

/* Start Promocode */
.Promocode {
  padding: 100px 0;
  position: relative;
}
.Promocode .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
  padding: 0 15px;
}
.Promocode .container img {
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  height: auto;
}
.Promocode .container .pro {
  flex: 1;
  margin-top: 80px;
}
.Promocode .container .pro span {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #060606;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
.Promocode .container .pro h1 {
  font-size: 30px;
  line-height: 40px;
  margin-top: 6px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.Promocode .container .pro p {
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 26px;
  color: #8c8c8c;
}
.Promocode .container .pro .s {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  display: block;
  color: #060606;
  text-transform: none;
  margin-top: 20px;
}
.Promocode .container .pro .in {
  display: flex;
}
.Promocode .container .pro .in input {
  background: #fff;
  color: #060606;
  border: 1px solid #eee;
  border-right: none;
  font-size: 16px;
  padding: 12px 15px;
  width: 70%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  outline: none;
}
.Promocode .container .pro .in button {
  font-size: 15px;
  text-align: center;
  color: #fff;
  border: none;
  width: 160px;
  border-radius: 0 30px 30px 0;
  font-weight: 600;
  padding: 12px;
  box-shadow: none;
  background: #336dd5;
}
.Promocode .container .pro .p1 {
  margin-top: 30px;
}
.Promocode .container .icon i {
  font-size: 30px;
  margin-top: 15px;
  padding-right: 10px;
  color: #336dd5;
}
@media (max-width: 767px) {
  .Promocode {
    padding: 60px 0;
  }

  .Promocode .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .Promocode .container img {
    max-width: 100%;
  }

  .Promocode .container .pro {
    margin-top: 0;
  }

  .Promocode .container .pro h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .Promocode .container .pro p {
    font-size: 15px;
    line-height: 24px;
  }

  .Promocode .container .pro p br {
    display: none;
  }

  .Promocode .container .pro .in {
    flex-direction: column;
    gap: 15px;
  }

  .Promocode .container .pro .in input,
  .Promocode .container .pro .in button {
    width: 100%;
    border-radius: 30px;
  }

  .Promocode .container .pro .in input {
    border-right: 1px solid #eee;
  }

  .Promocode .container .icon {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .Promocode {
    padding: 80px 0;
  }

  .Promocode .container {
    gap: 40px;
  }

  .Promocode .container img {
    max-width: 420px;
  }

  .Promocode .container .pro {
    margin-top: 40px;
  }

  .Promocode .container .pro h1 {
    font-size: 26px;
  }

  .Promocode .container .pro .in input {
    width: 65%;
  }
}
@media (max-width: 1280px) {
  .Promocode .container {
    gap: 50px;
  }
}
/* End Promocode */

/* Start footer */
.footer {
  background: linear-gradient(180deg, #0e2244, #0e2244);
  color: #cfd6e1;
  padding: 80px 0 40px;
  position: relative;
  font-family: Arial, sans-serif;
}

.footer .container {
  width: 85%;
  margin: auto;
  background-color: #0e2244;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer .col {
  flex: 1 1 220px;
}
.footer h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
}

.footer p {
  line-height: 26px;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #cfd6e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #0a2342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.social a:hover {
  background: #336dd5;
  color: #fff;
}

.subscribe input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  font-size: 15px;
  text-align: center;
}

.subscribe button {
  width: 100%;
  padding: 10px 28px 11px;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  outline: none;
  border: 2px solid #336dd5;
  background: #336dd5;
  transition: all 1.8s ease-in-out;
  cursor: pointer;
}

.subscribe button:hover {
  background: black;
  color: #336dd5;
  transition: all 0.5s ease-in-out;
}

.note {
  font-size: 14px;
  margin-top: 15px;
}

.copy {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  color: #fff;
}

.copy a {
  color: #4da3ff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer .container {
    width: 95%;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer .col {
    margin: auto;
  }

  .social {
    justify-content: center;
  }

  .footer h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .footer p,
  .footer ul li a {
    font-size: 14px;
    line-height: 24px;
  }

  .note br {
    display: none;
  }

  .copy {
    margin-top: 40px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .container {
    width: 90%;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer .col {
    flex: 1 1 45%;
  }

  .footer h3 {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .footer .container {
    width: 90%;
  }
}

/* End footer */
