* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  font-weight: 400;
  background-color: #000;
  color: #fff;
}

/* utilities */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0px 5%;
}

.row {
  display: flex;

}

.col {}

li {
  list-style: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
}

h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }

  h2,
  h3 {
    font-size: 18px;
  }
}

.header {
  height: 75vh;
  background-image: linear-gradient(0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)), url(../images/backgroung.jpg);
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  object-fit: cover;
  background-position: center;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.logo {
  margin-right: auto;
}

.logo svg {
  fill: #e50914;
  height: 40px;
}

@media screen and (max-width: 600px) {
  .logo svg {
    height: 24px;
  }
}


.select-box {
  position: relative;
}

.select-box svg {
  height: 20px;
  position: absolute;
  top: 5px;
  left: 5px;
}

select {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 6px 0px 6px 20px;
  border-radius: 3px;
}

select option {
  color: #000;
}

.signin-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: #e50914;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
  margin-left: 20px;
}

.signin-btn:hover {
  background-color: #b80f17;
  transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
}

/* header content  */
.header-content {
  margin-top: 80px;
  height: 65vh;
  display: flex;
  flex-direction: column;
  max-width: 31.75rem;
  text-align: center;
  margin: 80px auto 0 auto;
  margin-top: 80px;
}

.form-field {
  text-align: center;
}

.footer-form {
  margin-top: 95px;
}

@media screen and (max-width: 600px) {
  .form-field {
    padding: 0 25px;
  }
}


.form {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .form {
    flex-direction: column;
  }
}


.form-group {
  width: 55%;
  height: 60px;
  position: relative;
}

@media screen and (max-width: 600px) {
  .form-group {
    width: 100%;
  }
}


.form-input {
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #222;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 20px 15px;
}

.form-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  padding: 20px 15px;
  color: #b3b3b3;

  transition: all 0.2s ease-in-out;
}

.form-input:focus+.form-label {
  top: -12px;
  left: 0;
  color: #858585;
  font-size: 12px;
  z-index: 10;
}

.form-input:not(:placeholder-shown).form-input:not(:focus)+.form-label {
  top: -15px;
  left: 0px;
  font-size: 12px;
  z-index: 10;
}

.get-btn {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  padding: 15px 25px;
  background-color: #e50914;
  border-radius: 3px;
  color: #fff;
  border: 0;
}

@media screen and (max-width: 600px) {
  .get-btn {
    align-self: center;
    font-size: 16px;
    padding: 10px 15px;
  }
}


.get-btn:hover {
  background-color: #b80f17;
  transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
}

.trn {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.center-select {
  height: 40px;
  padding-right: 30px;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 10px center;
  background-size: 10px;
  cursor: pointer;
  margin-right: 12px;
}

.center-select:hover {
  border-color: #ffffff;
}

.center-select:focus {
  outline: none;
}

@media (max-width: 600px) {
  .center-select {
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    /* Align the selected text to the left */
  }

  .row {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .center-select option {
    text-align: left;
    /* Align text of options to the left */
  }
}


.box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 20px;

}

.box {
  flex: 1 1 calc(50% - 10px);
  /* 50% width minus the gap */
  background: linear-gradient(149deg, #192247 0%, #210e17 96.86%);
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  color: white;
  box-sizing: border-box;
}

.box h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.box p {
  margin: 0 0 20px 0;
  color: rgb(170, 170, 170);
}

.box .cards_svg {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: last baseline;
}

@media (max-width: 960px) {
  .box {
    flex: 1 1 100%;
  }
}

.question {
  position: relative;
  background-color: #2d2d2d;
  margin-bottom: 10px;
}

.question label:hover {
  background-color: #444;
}

.question svg {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 20px;

  transform: rotate(45deg);
  transition: all 0.2s ease;
}

@media screen and (max-width: 600px) {
  .question svg {
    width: 20px;
    height: 20px;
    right: 20px;
    top: 25px;
  }
}


.question .title {
  display: block;
  padding: 24px 30px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}

.question .answer {
  padding: 0px 30px;

  max-height: 0;
  overflow: hidden;

  transition: all 0.2s ease;
}

.question .answer p {
  margin-bottom: 20px;
}

.question input[type="checkbox"] {
  display: none;
}

.question input[type="checkbox"]:checked~.answer {
  max-height: 600px;
  padding: 24px 30px;
}

.question input[type="checkbox"]:checked~.title svg {
  transform: rotate(180deg);
}

/* footer  */
.footer {
  padding: 80px 0px;
}

.footer ul li a {
  cursor: pointer;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.tel {
  text-decoration: none;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
}

.tel span {
  text-decoration: underline;
}

.footer p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
}

@media screen and (max-width: 600px) {
  .footer .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer .grid-container li a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.slider {
  width: 50%;
  margin: 100px auto;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}


.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: .5;
}

.slick-current {
  opacity: 1;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

/* Scrollable Navbar */
.nav-scroll {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  flex-grow: 1;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

/* Navbar Items */
.nav-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  color: #666;
  text-decoration: none;

}

.btn-next {
  height: 60px;
  border: 1px solid rgb(43, 43, 43);
  border-radius: 5px;
  color: rgb(162, 162, 162);
  background-color: rgb(76, 76, 76);
  cursor: pointer;
  width: 40px;
  margin: 0 8px;
}

/* .nav-item.active {
  color: black;
  font-weight: bold;
  border-bottom: 2px solid black;
} */
/* Circular Buttons */


.bd-radius {
  border-radius: 9px !important;
}

.movie-container {
  /* max-width: 80%; */
  margin-top: 20px;
}