@import url("/css/whatBlock.inc.css");
@import url("/css/_modules/List.mod.css");

.homeRow {
  padding: 50px 0;
}
@media screen and (min-width: 769px) {
  .homeRow {
    padding: 100px 0;
  }
}
.homeRow--light {
  background-color: #f7f7f7;
}
.homeRow__icon {
  display: inline-block;
  color: #f4a460;
  font-size: 80px;
  margin-bottom: 20px;
}

.homeSlide {
  background-image: url(/img/homepage/slider1.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  /*display: flex;
	align-items: flex-end;*/
  height: 55vh;
  min-height: 450px;
  /*justify-content: center;*/
}
.homeSlide > .container {
  position: relative;
  height: 55vh;
}
.homeSlide__Button {
  /*bottom: 70px;
	margin-bottom: 60px;*/
}
.homeSlide__text {
  line-height: 1;
  position: absolute;
  bottom: 20px;
  left: 14%;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  text-align: center;
  width: 300px;
}
.homeSlide__textText {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.homeDiscount__container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.homeDiscount__wrapper {
  height: 30px;
  width: 700px;
  background-color: rgb(0, 74, 173);
  display: flex;
  justify-content: center;
}
.homeDiscount__text {
  color: rgb(255, 255, 255);
  margin-right: 20px;
  height: 20px;
  margin-top: 3px;
}
.homeDiscount__coupon {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  height: 20px;
  margin-top: 5px;
  line-height: 16px;
  border-style: dashed;
  border-width: 2px;
  border-color: rgb(0, 0, 0);
}

.homeSupportBlock {
  background: url("/img/homepage/tech-support.jpg");
  position: relative;
}
.homeSupportBlock:before {
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
}

.homeSupportBlock .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .homeSupportBlock .container {
    flex-direction: row;
  }
}

.homeSupportBlock__block {
  flex-grow: 1;
  text-align: center;
}
.homeSupportBlock__block:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .homeSupportBlock__block:first-child {
    margin-right: 135px;
    text-align: left;
  }
}

.homeSupportBlock__phone {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto;
  white-space: nowrap;
  width: auto;
  max-width: 390px;
}
.homeSupportBlock__phone .icofont {
  color: #f4a460;
}

.homeWelcome-text {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .homeWelcome-text {
    width: 70%;
  }
}

/* Login button CSS */

.loginButton {
  background-color: #446f9c;
  border: #446f9c;
  padding: 5px 20px;
  text-align: center;
  width: 150px;
  color: white;
  margin-left: 25px;
}

@media screen and (max-width: 768px) {
  .loginButton {
    margin: 15px auto;
  }
}

.loginButton a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.loginButton:hover {
  background-color: #284b71;
  color: #fff;
}

.loginButton a:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.loginButton:hover a {
  padding-right: 25px;
}

.loginButton:hover a:after {
  opacity: 1;
  right: 0;
}

/* Pop-up styling start */
/* Pop-up styling */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.popup-content {
  background: white;
  padding: 40px; /* Increased padding */
  border-radius: 15px;
  max-width: 95%;
  width: 680px; /* Increased width */
  min-height: 300px; /* Added height for more space */
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
}

.video-container h1 {
  /* font-size: 24px; */
  margin-bottom: 15px;
  line-height: 1.4; /* Increased line spacing */
}

.video-container p {
  /* font-size: 18px; */
  margin-bottom: 25px;
  line-height: 1.6; /* Added more white space in text */
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Increased spacing between buttons */
  margin-top: 30px;
}

.popup-button {
  padding: 14px 20px; /* Bigger buttons */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  text-decoration: none;
  text-align: center;
  flex: 1;
  max-width: 220px;
  background: #ffcc00;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2); /* Added stronger shadow */
}

.popup-button:hover {
  background: #e6b800;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow on hover */
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    width: 95%;
    padding: 30px;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .popup-button {
    font-size: 16px;
    padding: 12px;
    max-width: 100%;
  }
}
/* Popup styling end */
