*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

* {
  scroll-behaviour: smooth;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 412px) {
  .container {
    max-width: 98%;
  }
}

.custom-btn-primary {
  background: #F26522;
  color: #FFFFFF;
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #F26522;
  font-weight: 500;
  font-size: 16px;
  border-radius: 33px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.6s ease-in;
}
@media (max-width: 1440px) {
  .custom-btn-primary {
    font-size: 14px;
  }
}
@media (max-width: 667px) {
  .custom-btn-primary {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.custom-btn-primary:hover, .custom-btn-primary:active, .custom-btn-primary:focus {
  background: #1C75BC;
  color: #FFFFFF;
}

.custom-btn-secoundary {
  background: #1C75BC;
  color: #FFFFFF;
  padding: 15px 50px;
  display: inline-block;
  border: 1px solid #1C75BC;
  font-weight: 500;
  font-size: 16px;
  border-radius: 33px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.6s ease-in;
}
@media (max-width: 1440px) {
  .custom-btn-secoundary {
    font-size: 14px;
  }
}
@media (max-width: 667px) {
  .custom-btn-secoundary {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.custom-btn-secoundary:hover, .custom-btn-secoundary:active, .custom-btn-secoundary:focus {
  background: #F26522;
  color: #FFFFFF;
}

.custom-btn-primary-sm {
  background: #F26522;
  color: #FFFFFF;
  padding: 5px 20px;
  display: inline-block;
  border: 1px solid #F26522;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.6s ease-in;
}
@media (max-width: 667px) {
  .custom-btn-primary-sm {
    padding: 5px 20px;
  }
}
.custom-btn-primary-sm:hover, .custom-btn-primary-sm:active, .custom-btn-primary-sm:focus {
  background: #1C75BC;
  color: #FFFFFF;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-family: "Montserrat-title";
}
.section-title h2 {
  font-size: 48px;
  font-family: "Montserrat-title";
  position: relative;
}
@media (max-width: 1366px) {
  .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1284px) {
  .section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 28px;
  }
}
@media (max-width: 667px) {
  .section-title h2 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 26px;
  }
}
.section-title h2 span {
  font-family: "Montserrat-title";
  color: #F26522;
}
.section-title p {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .section-title p {
    font-size: 14px;
  }
}

.section-title-sm {
  position: relative;
  z-index: 1;
}
.section-title-sm h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1660px) {
  .section-title-sm h2 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .section-title-sm h2 {
    font-size: 22px;
  }
}
@media (max-width: 667px) {
  .section-title-sm h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .section-title-sm h2 {
    font-size: 20px;
  }
}
.section-title-sm h2 span {
  font-size: 40px;
  font-weight: 700;
  color: #F26522;
}
@media (max-width: 1660px) {
  .section-title-sm h2 span {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .section-title-sm h2 span {
    font-size: 28px;
  }
}
@media (max-width: 667px) {
  .section-title-sm h2 span {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .section-title-sm h2 span {
    font-size: 20px;
  }
}

header {
  position: relative;
  width: 100%;
  text-align: left;
  transition: position 0.45s;
  padding: 10px 0;
  z-index: 1;
}
@media (max-width: 667px) {
  header {
    text-align: center;
  }
}
header .logo img {
  min-width: 220px;
  margin-top: 50px;
}
@media (max-width: 1366px) {
  header .logo img {
    padding: 5px 0;
    min-width: 180px;
  }
}
@media (max-width: 1199px) {
  header .logo img {
    min-width: 80px;
    max-width: 80px;
    margin-top: 0px;
  }
}
header .top-head {
  background-color: #F6F4F4;
}
header .top-head a {
  text-decoration: none;
}
header .top-head a span {
  font-size: 14px;
  font-weight: 600;
  color: #0E0E0D;
}
@media (max-width: 1199px) {
  header .top-head a span {
    text-decoration: none;
    color: #FFFFFF;
  }
}
@media (max-width: 1199px) {
  header .top-head a svg {
    height: 15px;
    width: 15px;
  }
}
@media (max-width: 1199px) {
  header .top-head a svg path {
    fill: #FFFFFF;
  }
}
@media (max-width: 1199px) {
  header .top-head {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 10;
    background-color: #1C75BC;
  }
}
@media (max-width: 576px) {
  header .top-head {
    gap: 100px;
  }
}
@media (max-width: 576px) {
  header .top-head span {
    gap: 100px;
    display: none;
  }
}

footer {
  background-color: #1C75BC;
  padding: 25px 0;
}
footer .copyright {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1284px) {
  footer .copyright {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  footer .copyright {
    font-size: 14px;
  }
}
@media (max-width: 667px) {
  footer .copyright {
    text-align: center;
    flex-direction: column;
  }
}
footer .copyright ul {
  margin-bottom: 0;
}
footer .copyright ul li {
  display: inline-block;
  color: #FFFFFF;
  font-size: 18px;
  margin-right: 25px;
}
@media (max-width: 1284px) {
  footer .copyright ul li {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  footer .copyright ul li {
    font-size: 14px;
  }
}
footer .copyright ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 576px) {
  footer .copyright ul li a {
    font-size: 14px;
  }
}

.feature-middle .box-border-right {
  border-right: 2px dashed #e7e7e7;
}
.feature-middle .box-border-right:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .feature-middle .box-border-right {
    border-right: none;
  }
}
.feature-middle .row-feat .box-border-bottom {
  border-bottom: none;
}
@media (max-width: 768px) {
  .feature-middle .row-feat .box-border-bottom {
    border-bottom: 2px dashed #e7e7e7;
  }
}
.feature-middle .box-border-bottom {
  border-bottom: 2px dashed #e7e7e7;
}

.plan-feature-more h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 1366px) {
  .plan-feature-more h3 {
    font-size: 16px;
  }
}
@media (max-width: 1284px) {
  .plan-feature-more h3 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .plan-feature-more h3 {
    margin-top: 10px;
  }
}
.plan-feature-more p {
  font-size: 18px;
  color: var(--bs-body-color);
  padding: 5px 0;
  margin-bottom: 0;
}
@media (max-width: 1400px) {
  .plan-feature-more p {
    font-size: 16px;
  }
}
.plan-feature-more img {
  min-width: 50px;
  max-height: 60px;
}
@media (max-width: 667px) {
  .plan-feature-more img {
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }
}

section {
  position: relative;
}
section .section-title-xl {
  position: relative;
  z-index: 1;
}
section .section-title-xl h2 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1660px) {
  section .section-title-xl h2 {
    font-size: 38px;
  }
}
@media (max-width: 1550px) {
  section .section-title-xl h2 {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  section .section-title-xl h2 {
    font-size: 28px;
  }
}
@media (max-width: 667px) {
  section .section-title-xl h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  section .section-title-xl h2 {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  section .section-title-xl h2 {
    font-size: 20px;
  }
}
section .section-title-xl h2 span {
  font-size: 40px;
  font-weight: 700;
  color: #F26522;
}
@media (max-width: 1660px) {
  section .section-title-xl h2 span {
    font-size: 38px;
  }
}
@media (max-width: 1550px) {
  section .section-title-xl h2 span {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  section .section-title-xl h2 span {
    font-size: 28px;
  }
}
@media (max-width: 667px) {
  section .section-title-xl h2 span {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  section .section-title-xl h2 span {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  section .section-title-xl h2 span {
    font-size: 20px;
  }
}
section .section-title-xl h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1660px) {
  section .section-title-xl h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 991px) {
  section .section-title-xl h3 {
    font-size: 16px;
  }
}
section .section-title-xl p {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  section .section-title-xl p {
    font-size: 14px;
  }
}
section.hero-banner {
  margin-top: -160px;
  background-position: right;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  section.hero-banner {
    margin-top: -100px;
  }
}
@media (max-width: 1200px) {
  section.hero-banner {
    margin-top: -63px;
  }
}
@media (max-width: 667px) {
  section.hero-banner {
    margin-top: 0px;
  }
}
section.hero-banner img {
  width: 100%;
}
@media (max-width: 667px) {
  section.hero-banner img {
    min-height: 480px;
    object-position: right;
    object-fit: cover;
  }
}
@media (max-width: 576px) {
  section.hero-banner img {
    min-height: 360px;
  }
}
section.hero-banner .hero-banner-text {
  position: absolute;
  top: 30%;
}
@media (max-width: 1550px) {
  section.hero-banner .hero-banner-text {
    font-size: 28px;
    top: 33%;
  }
}
@media (max-width: 667px) {
  section.hero-banner .hero-banner-text {
    top: 3%;
  }
}
@media (max-width: 410px) {
  section.hero-banner .hero-banner-text {
    left: 15px;
  }
}
@media (max-width: 667px) {
  section.hero-banner .hero-banner-text {
    padding: 20px 10px;
  }
}
@media (max-width: 500px) {
  section.hero-banner .hero-banner-text {
    padding: 0;
  }
}
section.hero-banner .hero-banner-text .section-title h2 {
  font-size: 60px;
}
@media (max-width: 1400px) {
  section.hero-banner .hero-banner-text .section-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 1100px) {
  section.hero-banner .hero-banner-text .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  section.hero-banner .hero-banner-text .section-title h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  section.hero-banner .hero-banner-text .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  section.hero-banner .hero-banner-text .section-title h2 {
    font-size: 24px;
    text-shadow: 0px 0px 9px rgba(255, 255, 255, 0.9), 0px 0px 9px rgba(255, 255, 255, 0.1), 0px 0px 9px rgba(255, 255, 255, 0.1);
  }
}
section.features-section .plan-offer-text .section-title-xl p {
  font-size: 20px;
  font-weight: 500;
  color: var(--bs-body-color) !important;
}
@media (max-width: 576px) {
  section.features-section .plan-offer-text .section-title-xl p {
    font-size: 16px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
section.features-section .plan-offers {
  background-color: #FFFFFF;
  margin-top: -100px;
  border-radius: 10px;
  padding: 50px;
}
@media (max-width: 991px) {
  section.features-section .plan-offers {
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  section.features-section .plan-offers .feature-middle {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 667px) {
  section.features-section .plan-offers {
    margin-top: -20px;
    padding: 20px 15px;
  }
}
section.prepaid-wireless-plan {
  background-color: #f7f7f7;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 667px) {
  section.prepaid-wireless-plan {
    padding: 25px 0;
  }
}
section.prepaid-wireless-plan::after {
  content: url("/assets/images/circle-pattern-01.svg");
  position: absolute;
  right: -200px;
  top: -130px;
  transform: scale(0.9);
}
section.prepaid-wireless-plan .section-title {
  margin-bottom: 0;
}
section.prepaid-wireless-plan .plan-card {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: transform 0.2s;
  height: 100%;
}
section.prepaid-wireless-plan .plan-card .plan-card-title h2 {
  text-align: center;
  color: #F26522;
  font-size: 40px;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 0;
}
@media (max-width: 400px) {
  section.prepaid-wireless-plan .plan-card .plan-card-title h2 {
    font-size: 28px;
    padding: 12px;
  }
}
section.prepaid-wireless-plan .plan-card .plan-card-title h2 span {
  color: #1C75BC;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 400px) {
  section.prepaid-wireless-plan .plan-card .plan-card-title h2 span {
    font-size: 18px;
  }
}
section.prepaid-wireless-plan .plan-card .bg-seconday {
  background: #1C75BC;
  padding: 12px 0;
}
section.prepaid-wireless-plan .plan-card .bg-seconday h3 {
  color: #FFFFFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 400px) {
  section.prepaid-wireless-plan .plan-card .bg-seconday h3 {
    font-size: 16px;
  }
}
section.prepaid-wireless-plan .plan-card .plan-list {
  padding: 20px 20px 40px 20px;
  text-align: center;
}
section.prepaid-wireless-plan .plan-card .plan-list ul {
  padding: 10px 0;
}
section.prepaid-wireless-plan .plan-card .plan-list ul li {
  list-style-type: none;
  margin-bottom: 15px;
  display: flex;
  text-align: left;
}
@media (max-width: 400px) {
  section.prepaid-wireless-plan .plan-card .plan-list ul li {
    font-size: 14px;
  }
}
section.prepaid-wireless-plan .plan-card .plan-list ul li img {
  margin-right: 10px;
  width: 25px;
  max-height: 25px;
}
section.street-banner::before {
  content: "";
  background: url("/assets/images/cloud1.webp");
  background-repeat: no-repeat;
  position: absolute;
  top: 3%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1024px) {
  section.street-banner::before {
    width: 500px;
    height: 370px;
    background-size: 100% 100%;
  }
}
@media (max-width: 992px) {
  section.street-banner::before {
    width: 370px;
    height: 264px;
    background-size: 100% 100%;
  }
}
@media (max-width: 420px) {
  section.street-banner::before {
    width: 100%;
  }
}
section.street-banner::after {
  content: "";
  background: url("/assets/images/cloud2.webp");
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 220px;
  z-index: -1;
  background-size: 100% 100%;
}
section.street-banner .street-banner-content {
  padding-left: 80px;
}
@media (max-width: 1024px) {
  section.street-banner .street-banner-content {
    padding-left: 40px;
  }
}
section.street-banner .street-banner-content h4 {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 1055px) {
  section.street-banner .street-banner-content h4 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  section.street-banner .street-banner-content h4 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  section.street-banner .street-banner-content h4 {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  section.street-banner .street-banner-content p {
    font-size: 16px;
  }
}
section.street-banner img {
  width: 100%;
  margin-top: -90px;
}
@media (max-width: 768px) {
  section.street-banner img {
    margin-top: 20px;
  }
}
section.connecting-section {
  padding: 60px 0;
  background: url("/assets/images/footer-california-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom;
}
section.connecting-section .connecting-body {
  padding: 10px 15px;
}
@media (max-width: 991px) {
  section.connecting-section .connecting-img {
    max-width: 400px;
    margin: 0 auto;
  }
}
section.connecting-section .footer-sign-form {
  width: 450px;
  text-align: left;
}
@media (max-width: 576px) {
  section.connecting-section .footer-sign-form {
    width: 100%;
  }
}
section.connecting-section .footer-sign-form input {
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  display: inline-block;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 18px;
}
@media (max-width: 576px) {
  section.connecting-section .footer-sign-form input {
    padding: 8px 10px;
    font-size: 16px;
  }
}

.social-media ul {
  display: flex;
  gap: 10px;
  padding-left: 0;
}
@media (max-width: 667px) {
  .social-media ul {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.social-media ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 1px solid #F6F4F4;
  border: 1px solid #D2D2D2;
}
@media (max-width: 576px) {
  .social-media ul li {
    height: 40px;
    width: 40px;
  }
}
.social-media ul li:hover {
  background-color: #F26522;
}
.social-media ul li:hover svg, .social-media ul li:hover path, .social-media ul li:hover g {
  fill: #FFFFFF;
}
.social-media ul li a svg {
  min-height: 25px;
}
@media (max-width: 576px) {
  .social-media ul li a svg {
    min-height: 15px;
  }
}