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

.hidden {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  color: #333;
}

h1 {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1280px;
}

.navbar-component {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
}

.navbar-component .container {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-component .container .logo-img-wrapper {
  position: relative;
  z-index: 1000;
  display: flex;
}

.navbar-component .container .logo-img-wrapper img {
  width: 96px;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .logo-img-wrapper img {
    width: 80px;
  }
}

.navbar-component .container .hamburger-menu-open-btn {
  display: none;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .hamburger-menu-open-btn {
    display: flex;
  }
}

.navbar-component .container .navbar-items {
  flex: 1;
  padding-left: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .navbar-items {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100%;
    padding-left: 0;
    background-color: #2c6176;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .navbar-component .container .navbar-items.active {
    transform: translateX(0);
  }
}

.navbar-component .container .navbar-items .hamburger-menu-close-btn {
  position: absolute;
  top: 50px;
  right: 25px;
  display: none;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .navbar-items .hamburger-menu-close-btn {
    display: flex;
  }
}

.navbar-component .container .navbar-items ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .navbar-items ul {
    flex-direction: column;
  }
}

.navbar-component .container .navbar-items ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #fff;
  transition: all 0.2s ease;
}

.navbar-component .container .navbar-items ul li a:hover {
  color: #f2a413 !important;
}

.navbar-component .container .navbar-items ul li a svg path {
  transition: all 0.2s ease;
}

.navbar-component .container .navbar-items ul li a:hover svg path {
  stroke: #f2a413 !important;
}

.navbar-component .container .navbar-items ul li.dropdown-menu {
  position: relative;
  z-index: 1000;
}

.navbar-component .container .navbar-items ul li.dropdown-menu .dropdown-menu-items-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 15px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 1180px) {
  .navbar-component .container .navbar-items ul li.dropdown-menu .dropdown-menu-items-wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
}

.navbar-component .container .navbar-items ul li.dropdown-menu .dropdown-menu-items-wrapper .dropdown-menu-items {
  padding: 15px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.navbar-component .container .navbar-items ul li.dropdown-menu .dropdown-menu-items-wrapper .dropdown-menu-items a {
  font-weight: 600;
  white-space: nowrap;
  color: #333;
}

.navbar-component .container .navbar-items ul li.dropdown-menu .dropdown-menu-items-wrapper .dropdown-menu-items a:hover {
  color: #f2a413 !important;
}

.navbar-component .container .navbar-items ul li.dropdown-menu:hover .dropdown-menu-items-wrapper {
  opacity: 1;
  pointer-events: all;
}

.navbar-component .container .navbar-items .cta-btn {
  padding: 14px 20px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #2c6176;
  transition: all 0.2s ease;
}

.navbar-component .container .navbar-items .cta-btn:hover {
  background-color: transparent;
  color: #fff;
}

.navbar-component .container .navbar-items .cta-btn svg path {
  transition: all 0.2s ease;
}

.navbar-component .container .navbar-items .cta-btn:hover svg path {
  stroke: #fff;
}

.navbar-component.light .container .navbar-items ul li a {
  color: #333;
}

.navbar-component.light .container .navbar-items ul li a svg path {
  stroke: #333;
}

.navbar-component.light .container .navbar-items .cta-btn {
  border: 1px solid #2c6176;
  background-color: #2c6176;
  color: #fff;
}

.navbar-component.light .container .navbar-items .cta-btn svg path {
  stroke: #fff;
}

.navbar-component.light .container .navbar-items .cta-btn:hover {
  background-color: transparent;
  color: #2c6176;
}

.navbar-component.light .container .navbar-items .cta-btn:hover svg path {
  stroke: #2c6176;
}

.hero-section .cta-btn {
  padding: 14px 20px;
  border: 1px solid #fff;
  /*background-color: #fff;*/
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #2c6176;
  transition: all 0.2s ease;
}

.footer-component {
  padding: 50px 0;
  background: #2c6176;
}

.footer-component .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

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

@media only screen and (max-width: 580px) {
  .footer-component .container {
    grid-template-columns: 1fr;
  }
}

.footer-component .container .part {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-component .container .part h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .footer-component .container .part h4 {
    font-size: 18px;
  }
}

.footer-component .container .part .links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-component .container .part .links-wrapper a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  transition: all 0.2s ease;
}

.footer-component .container .part .links-wrapper a:hover {
  color: #f2a413;
}

.footer-component .container .part .links-wrapper a svg {
  min-width: 20px;
}

.footer-component .container .part .links-wrapper a svg path {
  transition: all 0.2s ease;
}

.footer-component .container .part .links-wrapper a:hover .social-svg path {
  fill: #f2a413;
}

.home-page .hero-section {
  position: relative;
  min-height: 720px;
  background-color: #2c6176;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .home-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .home-page .hero-section {
    padding-top: 150px;
  }
}

.home-page .hero-section.primary {
  background-color: #f2a413;
}

.home-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .home-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .home-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.home-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
  max-width: 600px;
}

@media only screen and (max-width: 768px) {
  .home-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .home-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.home-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .home-page .hero-section .container p {
    font-size: 18px;
  }
}

.home-page .hero-section .container .cta-btn {
  max-width: 200px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.home-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.home-page .hero-section img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .home-page .hero-section img {
    position: static;
    width: 350px;
    height: auto;
  }
}

.home-page .packages-section {
  padding: 100px 0;
}

.home-page .packages-section .container .top-desc {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .top-desc {
    font-size: 18px;
  }
}

.home-page .packages-section .container h2 {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container h2 {
    font-size: 32px;
  }

  .home-page .packages-section .container h2 br {
    display: none;
  }
}

.home-page .packages-section .container .info-boxes-wrapper {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1180px) {
  .home-page .packages-section .container .info-boxes-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .info-boxes-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.home-page .packages-section .container .info-boxes-wrapper .info-box {
  padding: 20px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.home-page .packages-section .container .info-boxes-wrapper .info-box svg {
  width: 40px;
  height: 100%;
  margin-right: 15px;
}

.home-page .packages-section .container .info-boxes-wrapper .info-box h4 {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .info-boxes-wrapper .info-box h4 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .info-boxes-wrapper .info-box p {
    font-size: 14px;
  }
}

.home-page .packages-section .container .tab-navs {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .tab-navs {
    gap: 12px;
  }
}

.home-page .packages-section .container .tab-navs button {
  height: 50px;
  padding: 0 30px;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .tab-navs button {
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
  }
}

.home-page .packages-section .container .tab-navs button.active {
  border-color: transparent;
  background: linear-gradient(90deg, #06242f, #2c6176);
  color: #fff;
}

.home-page .packages-section .container .tab-container {
  display: none;
}

.home-page .packages-section .container .tab-container.active {
  display: block;
}

.home-page .packages-section .container .tab-container .tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-flow: wrap;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .tab-container .tabs-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab {
  width: 100%;
  max-width: 392px;
  padding: 50px;
  background-color: #f2a413;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .tab-container .tabs-wrapper .tab {
    padding: 25px;
  }
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .title {
  margin-top: 15px;
  text-align: center;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab h3 {
  margin: 5px 0;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-section .container .tab-container .tabs-wrapper .tab h3 {
    font-size: 28px;
  }
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .sub-title {
  text-align: center;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .points-wrapper {
  margin: 25px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .points-wrapper p svg {
  min-width: 20px;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .btn {
  width: 100%;
  display: flex;
  font-size: 16px;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab .btn:hover {
  text-decoration: underline;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary {
  background-color: #2c6176;
}

.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary .title,
.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary .sub-title,
.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary h3,
.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary .points-wrapper p,
.home-page .packages-section .container .tab-container .tabs-wrapper .tab.secondary .btn {
  color: #fff;
}

.home-page .packages-2-section {
  padding: 100px 0;
}

.home-page .packages-2-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-2-section .container h2 {
    font-size: 32px;
  }

  .home-page .packages-2-section .container h2 br {
    display: none;
  }
}

.home-page .packages-2-section .container .top-desc {
  margin-bottom: 50px;
  line-height: 36px;
}

.home-page .packages-2-section .container .top-desc h3 {
  margin-bottom: 20px;
}

.home-page .packages-2-section .container .info-boxes-wrapper {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1024px) {
  .home-page .packages-2-section .container .info-boxes-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .home-page .packages-2-section .container .info-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.home-page .packages-2-section .container .info-boxes-wrapper .info-box {
  padding: 35px;
  background-color: #2c6176;
  border-radius: 10px;
}

.home-page .packages-2-section .container .info-boxes-wrapper .info-box h4 {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-2-section .container .info-boxes-wrapper .info-box h4 {
    font-size: 28px;
  }
}

.home-page .packages-2-section .container .info-boxes-wrapper .info-box p {
  text-align: center;
  color: #fff;
}

.home-page .packages-2-section .container .points-wrapper {
  padding: 12px 20px;
  border: 1px solid #06242f;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media only screen and (max-width: 1280px) {
  .home-page .packages-2-section .container .points-wrapper {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-page .packages-2-section .container .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .home-page .packages-2-section .container .points-wrapper p {
    font-size: 18px;
  }
}

.home-page .details-section {
  padding-bottom: 100px;
}

.home-page .details-section .container {
  max-width: 1050px;
}

.home-page .details-section .container h2 {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .details-section .container h2 {
    font-size: 32px;
  }

  .home-page .details-section .container h2 br {
    display: none;
  }
}

.home-page .details-section .container .points-wrapper {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media only screen and (max-width: 1024px) {
  .home-page .details-section .container .points-wrapper {
    grid-template-columns: 1fr;
  }
}

.home-page .details-section .container .points-wrapper .point {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .details-section .container .points-wrapper .point h4 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .details-section .container .points-wrapper .point h4 {
    font-size: 18px;
  }
}

.home-page .details-section .container .points-wrapper .point p {
  text-align: center;
}

.home-page .details-section .container .info-boxes-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1024px) {
  .home-page .details-section .container .info-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.home-page .details-section .container .info-boxes-wrapper .info-box {
  padding: 35px;
  background-color: #f2a413;
  border-radius: 10px;
}

.home-page .details-section .container .info-boxes-wrapper .info-box.secondary {
  background-color: #2c6176;
}

.home-page .details-section .container .info-boxes-wrapper .info-box h4 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .home-page .details-section .container .info-boxes-wrapper .info-box h4 {
    font-size: 28px;
  }
}

.home-page .details-section .container .info-boxes-wrapper .info-box p {
  text-align: center;
  color: #fff;
}

.home-page .info-section.info-section-1 {
  padding: 65px 0;
  background-color: #f9f9f9;
}

.home-page .info-section.info-section-1 h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .info-section.info-section-1 h2 {
    font-size: 32px;
  }

  .home-page .info-section.info-section-1 h2 br {
    display: none;
  }
}

.home-page .info-section.info-section-1 .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .info-section.info-section-1 .top-desc {
    font-size: 18px;
  }

  .home-page .info-section.info-section-1 .top-desc br {
    display: none;
  }
}

.home-page .info-section.info-section-2 {
  padding: 100px 0;
}

.home-page .info-section.info-section-3 {
  background-color: #fdfdfb;
}

@media only screen and (max-width: 1024px) {
  .home-page .info-section.info-section-3 {
    padding: 65px 0;
  }
}

.home-page .info-section.info-section-3 .container .parts-wrapper {
  align-items: flex-end;
}

.home-page .info-section.info-section-3 .container .parts-wrapper .content-part {
  padding: 50px 0;
}

@media only screen and (max-width: 1024px) {
  .home-page .info-section.info-section-3 .container .parts-wrapper .content-part {
    padding: 0;
  }
}

.home-page .info-section.info-section-4 {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.home-page .info-section .container {
  max-width: 1100px;
}

.home-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .home-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .home-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .home-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.home-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.home-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .home-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.home-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.home-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.home-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.home-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.home-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.home-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.home-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.home-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .home-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.home-page .faqs-section {
  padding: 100px 0;
}

.home-page .faqs-section .container {
  max-width: 1050px;
}

.home-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .home-page .faqs-section .container h2 br {
    display: none;
  }
}

.home-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .home-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .home-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.home-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.home-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.home-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.home-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.home-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .home-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.home-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.home-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.home-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.home-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.home-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .home-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}

.network-design-and-build-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .network-design-and-build-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .hero-section {
    padding: 150px 0;
  }
}

.network-design-and-build-page .hero-section.primary {
  background-color: #f2a413;
}

.network-design-and-build-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .network-design-and-build-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.network-design-and-build-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .network-design-and-build-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.network-design-and-build-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.network-design-and-build-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .hero-section .container p {
    font-size: 18px;
  }
}

.network-design-and-build-page .hero-section .container .cta-btn {
  max-width: 180px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.network-design-and-build-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.network-design-and-build-page .text-section {
  padding: 100px 0;
}

.network-design-and-build-page .text-section .container h4 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .network-design-and-build-page .text-section .container h4 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .text-section .container h4 {
    font-size: 24px;
  }
}

.network-design-and-build-page .text-section .container p {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .text-section .container p {
    font-size: 18px;
  }
}

.network-design-and-build-page .text-2-section {
  padding: 100px 0;
  background-image: url("../assets/images/text-section-1.png");
  background-size: cover;
  background-position: center;
}

.network-design-and-build-page .text-2-section .container h2 {
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .network-design-and-build-page .text-2-section .container h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .text-2-section .container h2 {
    font-size: 24px;
  }
}

.network-design-and-build-page .text-2-section .container ul {
  padding-left: 20px;
}

.network-design-and-build-page .text-2-section .container ul li {
  margin-top: 20px;
  list-style-type: disc;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .text-2-section .container ul li {
    font-size: 16px;
  }
}

.network-design-and-build-page .info-section {
  padding: 65px 0;
}

.network-design-and-build-page .info-section .container {
  max-width: 1100px;
}

.network-design-and-build-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .network-design-and-build-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .network-design-and-build-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .network-design-and-build-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.network-design-and-build-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.network-design-and-build-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.network-design-and-build-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .network-design-and-build-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.customized-iot-solution-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-7.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .customized-iot-solution-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .hero-section {
    padding: 150px 0;
  }
}

.customized-iot-solution-page .hero-section.primary {
  background-color: #f2a413;
}

.customized-iot-solution-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .customized-iot-solution-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.customized-iot-solution-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .customized-iot-solution-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.customized-iot-solution-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.customized-iot-solution-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .hero-section .container p {
    font-size: 18px;
  }
}

.customized-iot-solution-page .hero-section .container .cta-btn {
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.customized-iot-solution-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.customized-iot-solution-page .text-section {
  padding: 100px 0;
}

.customized-iot-solution-page .text-section .container h4 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .customized-iot-solution-page .text-section .container h4 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .text-section .container h4 {
    font-size: 24px;
  }
}

.customized-iot-solution-page .text-section .container p {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .text-section .container p {
    font-size: 18px;
  }
}

.customized-iot-solution-page .text-section .container .text-boxes-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .text-section .container .text-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.customized-iot-solution-page .text-section .container .text-boxes-wrapper .text-box {
  padding: 35px;
  background-color: #f5f5f5;
}

.customized-iot-solution-page .text-section .container .text-boxes-wrapper .text-box h5 {
  font-size: 22px;
  font-weight: 600;
}

.customized-iot-solution-page .text-section .container .text-boxes-wrapper .text-box p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}

.customized-iot-solution-page .info-section {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.customized-iot-solution-page .info-section .container {
  max-width: 1100px;
}

.customized-iot-solution-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .customized-iot-solution-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .customized-iot-solution-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.customized-iot-solution-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .customized-iot-solution-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.customized-iot-solution-page .faqs-section {
  padding: 100px 0;
}

.customized-iot-solution-page .faqs-section .container {
  max-width: 1050px;
}

.customized-iot-solution-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .customized-iot-solution-page .faqs-section .container h2 br {
    display: none;
  }
}

.customized-iot-solution-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .customized-iot-solution-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .customized-iot-solution-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}

.about-us-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-9.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .about-us-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .about-us-page .hero-section {
    padding: 150px 0;
  }
}

.about-us-page .hero-section.primary {
  background-color: #f2a413;
}

.about-us-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .about-us-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .about-us-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.about-us-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .about-us-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .about-us-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.about-us-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .about-us-page .hero-section .container p {
    font-size: 18px;
  }
}

.about-us-page .hero-section .container .cta-btn {
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.about-us-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.about-us-page .text-section {
  padding: 100px 0;
}

.about-us-page .text-section .container h4 {
  font-size: 28px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .about-us-page .text-section .container h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .about-us-page .text-section .container h4 {
    font-size: 18px;
  }
}

.about-us-page .text-section .container .content-wrapper {
  margin: 75px auto 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

@media only screen and (max-width: 768px) {
  .about-us-page .text-section .container .content-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-us-page .text-section .container .content-wrapper .content-box h5 {
  font-size: 22px;
  font-weight: 600;
}

.about-us-page .text-section .container .content-wrapper .content-box p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}

.about-us-page .guide-section {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.about-us-page .guide-section .container h2 {
  margin-bottom: 35px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .about-us-page .guide-section .container h2 {
    font-size: 32px;
  }

  .about-us-page .guide-section .container h2 br {
    display: none;
  }
}

.about-us-page .guide-section .container .top-boxes-wrapper {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}

@media only screen and (max-width: 768px) {
  .about-us-page .guide-section .container .top-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-us-page .guide-section .container .bottom-boxes-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}

@media only screen and (max-width: 768px) {
  .about-us-page .guide-section .container .bottom-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-us-page .guide-section .container .text-box {
  padding: 35px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  border-radius: 10px;
}

.about-us-page .guide-section .container .text-box h5 {
  font-size: 22px;
  font-weight: 600;
}

.about-us-page .guide-section .container .text-box p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}

.about-us-page .details-section {
  padding: 65px 0;
  background-color: #2c6176;
}

.about-us-page .details-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 65px;
}

@media only screen and (max-width: 1024px) {
  .about-us-page .details-section .container {
    grid-template-columns: 1fr;
  }
}

.about-us-page .details-section .container h3 {
  margin-bottom: 15px;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .about-us-page .details-section .container h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .about-us-page .details-section .container h3 {
    font-size: 28px;
  }
}

.about-us-page .details-section .container p {
  line-height: 26px;
  color: #fff;
}

.about-us-page .details-section .container p span {
  font-weight: 600;
}

.about-us-page .info-section {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.about-us-page .info-section .container {
  max-width: 1100px;
}

.about-us-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .about-us-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .about-us-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .about-us-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.about-us-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.about-us-page .info-section .container .parts-wrapper .content-part .desc {
  margin-top: 15px;
  color: #2c6176;
}

.about-us-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .about-us-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.about-us-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.about-us-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-us-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.about-us-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.about-us-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.about-us-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.about-us-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.about-us-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.about-us-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .about-us-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.about-us-page .faqs-section {
  padding: 100px 0;
}

.about-us-page .faqs-section .container {
  max-width: 1050px;
}

.about-us-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .about-us-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .about-us-page .faqs-section .container h2 br {
    display: none;
  }
}

.about-us-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .about-us-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .about-us-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.about-us-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.about-us-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .about-us-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.about-us-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .about-us-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}

.property-manager-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-15.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .property-manager-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .property-manager-page .hero-section {
    padding: 150px 0;
  }
}

.property-manager-page .hero-section.primary {
  background-color: #f2a413;
}

.property-manager-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .property-manager-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .property-manager-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.property-manager-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .property-manager-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.property-manager-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.property-manager-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .hero-section .container p {
    font-size: 18px;
  }
}

.property-manager-page .hero-section .container .cta-btn {
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.property-manager-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.property-manager-page .text-section {
  padding: 100px 0px 30px 0px;
}

.property-manager-page .text-section .container h4 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .property-manager-page .text-section .container h4 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .property-manager-page .text-section .container h4 {
    font-size: 24px;
  }
}

.property-manager-page .text-section .container h4 span {
  font-size: 28px;
}

@media only screen and (max-width: 1024px) {
  .property-manager-page .text-section .container h4 span {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .property-manager-page .text-section .container h4 span {
    font-size: 20px;
  }
}

.property-manager-page .text-section .container p {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .text-section .container p {
    font-size: 18px;
  }
}

.property-manager-page .text-section .container img {
  margin: 75px 0;
  width: 100%;
}

.property-manager-page .info-section {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.property-manager-page .info-section.info-1 {
  padding: 0px 0px 65px 0;
  background-color: #ffffff;
}

.property-manager-page .info-section .container {
  max-width: 1100px;
}

.property-manager-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .property-manager-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .property-manager-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .property-manager-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.property-manager-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.property-manager-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.property-manager-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.property-manager-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-manager-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-manager-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.property-manager-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.property-manager-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.property-manager-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.property-manager-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.property-manager-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.property-manager-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .property-manager-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.property-manager-page .faqs-section {
  padding: 100px 0;
}

.property-manager-page .faqs-section .container {
  max-width: 1050px;
}

.property-manager-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .property-manager-page .faqs-section .container h2 br {
    display: none;
  }
}

.property-manager-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .property-manager-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.property-manager-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .property-manager-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}


.sppb-addon-feature {
  border: 1px solid #eee;
  padding: 20px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background-color: #fff !important;
  transition: transform 0.3s ease;
}

.sppb-addon-feature:hover {
  transform: translateY(-5px);
}

.sppb-img-container {
  display: inline-block;
  margin-bottom: 15px;
}

.fibronix-logo {
  width: 100px;
  height: auto;
  display: block;
  margin: auto;
}

.sppb-text-center {
  text-align: center;
}

.sppb-addon-title {
  font-size: 16px !important;
  margin: 10px 0 5px;
  color: #333;
  font-weight: 600;
}

.sppb-addon-title a {
  text-decoration: none;
  color: inherit;
}

.sppb-addon-text {
  margin: 0;
  font-size: 15px;
  color: #555;
  text-transform: lowercase;
}

.packages-2-section .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.packages-2-section .parts-wrapper p {
  text-align: left !important;
}

.contact-us-page {
  padding-top: 110px;
}

.contact-us-page .hero-section {
  padding: 50px 0 100px 0;
}

.contact-us-page .hero-section .container {
  display: grid;
  grid-template-columns: auto 588px;
  gap: 65px;
}

@media only screen and (max-width: 1024px) {
  .contact-us-page .hero-section .container {
    grid-template-columns: 1fr;
  }
}

.contact-us-page .hero-section .container .left h1 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .hero-section .container .left h1 {
    font-size: 32px;
  }
}

.contact-us-page .hero-section .container .left .top-desc {
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .hero-section .container .left .top-desc {
    font-size: 18px;
  }
}

.contact-us-page .hero-section .container .left form {
  display: grid;
  gap: 15px;
}

.contact-us-page .hero-section .container .left form .input-group label {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.contact-us-page .hero-section .container .left form .input-group input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .input-group input:focus {
  outline: 3px solid #eee;
}

.contact-us-page .hero-section .container .left form .input-group input::-moz-placeholder {
  color: #9c9c9c;
}

.contact-us-page .hero-section .container .left form .input-group input::placeholder {
  color: #9c9c9c;
}

.contact-us-page .hero-section .container .left form .input-group textarea {
  width: 100%;
  height: 160px;
  resize: none;
  padding: 12px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .input-group textarea:focus {
  outline: 3px solid #eee;
}

.contact-us-page .hero-section .container .left form .input-group textarea::-moz-placeholder {
  color: #9c9c9c;
}

.contact-us-page .hero-section .container .left form .input-group textarea::placeholder {
  color: #9c9c9c;
}

.contact-us-page .hero-section .container .left form .input-group .select-wrapper {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
}

.contact-us-page .hero-section .container .left form .input-group .select-wrapper select {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.contact-us-page .hero-section .container .left form .phone-number-input-group label {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.contact-us-page .hero-section .container .left form .phone-number-input-group .phone-number-select-wrapper {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-us-page .hero-section .container .left form .phone-number-input-group .phone-number-select-wrapper select {
  width: 65px;
  height: 100%;
  font-size: 16px;
}

.contact-us-page .hero-section .container .left form .phone-number-input-group .phone-number-select-wrapper input {
  flex: 1;
  height: 44px;
  font-size: 16px;
}

.contact-us-page .hero-section .container .left form .btns-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .cta-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 1px solid #2c6176;
  background-color: #2c6176;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .cta-btn:hover {
  background-color: transparent;
  color: #2c6176;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .cta-btn svg path {
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .cta-btn:hover svg path {
  stroke: #2c6176;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .reset-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 1px solid red;
  background-color: red;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .reset-btn:hover {
  background-color: transparent;
  color: red;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .reset-btn svg path {
  transition: all 0.2s ease;
}

.contact-us-page .hero-section .container .left form .btns-wrapper .reset-btn:hover svg path {
  stroke: red;
}

.contact-us-page .hero-section .container .right {
  display: flex;
}

.contact-us-page .hero-section .container .right iframe {
  width: 100%;
  height: 100%;
}

.contact-us-page .details-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #06242f, #2c6176);
}

.contact-us-page .details-section .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 65px;
}

@media only screen and (max-width: 1024px) {
  .contact-us-page .details-section .container {
    grid-template-columns: 1fr;
  }
}

.contact-us-page .details-section .container .left h2 {
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .details-section .container .left h2 {
    font-size: 32px;
  }
}

.contact-us-page .details-section .container .left p {
  max-width: 540px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .details-section .container .left p {
    font-size: 18px;
  }
}

.contact-us-page .details-section .container .right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-us-page .details-section .container .right .info-wrapper h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .details-section .container .right .info-wrapper h4 {
    font-size: 20px;
  }
}

.contact-us-page .details-section .container .right .info-wrapper p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .contact-us-page .details-section .container .right .info-wrapper p {
    font-size: 18px;
  }

  .packages-2-section .parts-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.managed-it-services-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-7.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .managed-it-services-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .hero-section {
    padding: 150px 0;
  }
}

.managed-it-services-page .hero-section.primary {
  background-color: #f2a413;
}

.managed-it-services-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .managed-it-services-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.managed-it-services-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .managed-it-services-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.managed-it-services-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.managed-it-services-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .hero-section .container p {
    font-size: 18px;
  }
}

.managed-it-services-page .hero-section .container .cta-btn {
  max-width: 180px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.managed-it-services-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.managed-it-services-page .text-section {
  padding: 100px 0;
}

.managed-it-services-page .text-section .container h4 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .text-section .container h4 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .text-section .container h4 {
    font-size: 24px;
  }
}

.managed-it-services-page .text-section .container p {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .text-section .container p {
    font-size: 18px;
  }
}

.managed-it-services-page .text-2-section {
  min-height: 450px;
  padding: 100px 0;
  background-image: url("../assets/images/text-section-2.png");
  background-size: cover;
  background-position: center;
}

.managed-it-services-page .needs-section {
  padding: 100px 0;
}

.managed-it-services-page .needs-section .container h2 {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .needs-section .container h2 {
    font-size: 32px;
  }

  .managed-it-services-page .needs-section .container h2 br {
    display: none;
  }
}

.managed-it-services-page .needs-section .container .top-desc {
  margin: 0 auto 35px auto;
  max-width: 900px;
  font-size: 16px;
  text-align: center;
}

.managed-it-services-page .needs-section .container .info-boxes-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .needs-section .container .info-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.managed-it-services-page .needs-section .container .info-boxes-wrapper .info-box {
  padding: 25px;
  background-color: #f5f5f5;
}

.managed-it-services-page .needs-section .container .info-boxes-wrapper .info-box h5 {
  font-size: 22px;
  font-weight: 600;
}

.managed-it-services-page .needs-section .container .info-boxes-wrapper .info-box p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
}

.managed-it-services-page .text-3-section {
  padding: 65px 0;
  background-image: url("../assets/images/text-section-3.png");
  background-size: cover;
  background-position: center;
}

.managed-it-services-page .text-3-section .container h2 {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .text-3-section .container h2 {
    font-size: 32px;
  }

  .managed-it-services-page .text-3-section .container h2 br {
    display: none;
  }
}

.managed-it-services-page .text-3-section .container .top-desc {
  margin: 0 auto 35px auto;
  max-width: 900px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.managed-it-services-page .text-4-section {
  background-color: #2c6176;
}

.managed-it-services-page .text-4-section .container {
  position: relative;
  padding: 100px 0;
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .text-4-section .container {
    padding-bottom: 0;
  }
}

.managed-it-services-page .text-4-section .container h2 {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .text-4-section .container h2 {
    font-size: 32px;
  }

  .managed-it-services-page .text-4-section .container h2 br {
    display: none;
  }
}

.managed-it-services-page .text-4-section .container .top-desc {
  max-width: 660px;
  font-size: 16px;
  color: #fff;
}

.managed-it-services-page .text-4-section .container img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .text-4-section .container img {
    position: static;
    margin-top: 25px;
    margin-left: auto;
    width: 300px;
    display: block;
  }
}

.managed-it-services-page .info-section {
  padding: 65px 0;
}

.managed-it-services-page .info-section.info-1,
.managed-it-services-page .info-section.info-3 {
  background-color: #fdfdfb;
}

.managed-it-services-page .info-section .container {
  max-width: 1100px;
}

.managed-it-services-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .managed-it-services-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.managed-it-services-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.managed-it-services-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.managed-it-services-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .managed-it-services-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.managed-server-page .hero-section {
  position: relative;
  min-height: 720px;
  background-image: url("../assets/images/hero-section-14.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .managed-server-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .managed-server-page .hero-section {
    padding: 150px 0;
  }
}

.managed-server-page .hero-section.primary {
  background-color: #f2a413;
}

.managed-server-page .hero-section .container h1 {
  position: relative;
  z-index: 2;
  font-size: 82px;
  font-weight: 700;
  line-height: 82px;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .managed-server-page .hero-section .container h1 {
    font-size: 62px;
    line-height: 62px;
  }
}

@media only screen and (max-width: 768px) {
  .managed-server-page .hero-section .container h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

.managed-server-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .managed-server-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.managed-server-page .hero-section .container h1 span {
  background: -webkit-linear-gradient(40deg, #ffd76c, #f0a212);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.managed-server-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .hero-section .container p {
    font-size: 18px;
  }
}

.managed-server-page .hero-section .container .cta-btn {
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.managed-server-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.managed-server-page .points-section {
  padding: 100px 0;
}

.managed-server-page .points-section .container h2 {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .points-section .container h2 {
    font-size: 32px;
  }

  .managed-server-page .points-section .container h2 br {
    display: none;
  }
}

.managed-server-page .points-section .container .info-boxes-wrapper {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1180px) {
  .managed-server-page .points-section .container .info-boxes-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .managed-server-page .points-section .container .info-boxes-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.managed-server-page .points-section .container .info-boxes-wrapper .info-box {
  padding: 20px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 10px;
}

.managed-server-page .points-section .container .info-boxes-wrapper .info-box h4 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .points-section .container .info-boxes-wrapper .info-box h4 {
    font-size: 18px;
  }
}

.managed-server-page .points-section .container .info-boxes-wrapper .info-box p {
  padding-left: 36px;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .points-section .container .info-boxes-wrapper .info-box p {
    font-size: 14px;
  }
}

.managed-server-page .server-section {
  padding-bottom: 100px;
}

.managed-server-page .server-section .top-part {
  padding: 65px 0;
  background-color: #f9f9f9;
}

.managed-server-page .server-section .top-part .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .server-section .top-part .container h2 {
    font-size: 32px;
  }

  .managed-server-page .server-section .top-part .container h2 br {
    display: none;
  }
}

.managed-server-page .server-section .top-part .container p {
  margin: 0 auto;
  max-width: 900px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .server-section .top-part .container p {
    font-size: 18px;
  }
}

.managed-server-page .server-section .bottom-part {
  padding-top: 100px;
}

.managed-server-page .server-section .bottom-part .tab-navs {
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1024px) {
  .managed-server-page .server-section .bottom-part .tab-navs {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .managed-server-page .server-section .bottom-part .tab-navs {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.managed-server-page .server-section .bottom-part .tab-navs div {
  padding: 35px;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.managed-server-page .server-section .bottom-part .tab-navs div.active {
  background-color: #2c6176;
}

.managed-server-page .server-section .bottom-part .tab-navs div p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.managed-server-page .server-section .bottom-part .tab-navs div h4 {
  font-size: 32px;
  font-weight: 700;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .server-section .bottom-part .tab-navs div h4 {
    font-size: 24px;
  }
}

.managed-server-page .server-section .bottom-part .tab-navs div h4 span {
  font-size: 20px;
}

.managed-server-page .server-section .bottom-part .tab-navs div.active p {
  color: #fff;
}

.managed-server-page .server-section .bottom-part .tab-navs div.active h4 {
  color: #fff;
}

.managed-server-page .server-section .bottom-part .points {
  width: 100%;
  overflow-x: auto;
}

.managed-server-page .server-section .bottom-part .points button {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.managed-server-page .server-section .bottom-part .points button svg {
  transition: all 0.2s ease;
}

.managed-server-page .server-section .bottom-part .points.active button svg {
  transform: rotate(180deg);
}

.managed-server-page .server-section .bottom-part .points .points-content {
  min-width: 1000px;
  display: none;
}

.managed-server-page .server-section .bottom-part .points .points-content div {
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.managed-server-page .server-section .bottom-part .points .points-content div p {
  font-size: 14px;
}

.managed-server-page .server-section .bottom-part .points.active .points-content {
  display: block;
  padding: 15px 30px;
}

.managed-server-page .server-section .bottom-part .tab-container {
  display: none;
}

.managed-server-page .server-section .bottom-part .tab-container.active {
  display: block;
}

.managed-server-page .info-section {
  padding: 65px 0;
  background-color: #fdfdfb;
}

.managed-server-page .info-section .container {
  max-width: 1100px;
}

.managed-server-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .managed-server-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .managed-server-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .managed-server-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.managed-server-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.managed-server-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.managed-server-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.managed-server-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.managed-server-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.managed-server-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.managed-server-page .info-section .container .parts-wrapper .content-part a {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.managed-server-page .info-section .container .parts-wrapper .content-part a:hover {
  background: transparent;
  color: #2c6176;
}

.managed-server-page .info-section .container .parts-wrapper .content-part a svg path {
  transition: all 0.2s ease;
}

.managed-server-page .info-section .container .parts-wrapper .content-part a:hover svg path {
  stroke: #2c6176;
}

.managed-server-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.managed-server-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  .managed-server-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.managed-server-page .faqs-section {
  padding: 100px 0;
}

.managed-server-page .faqs-section .container {
  max-width: 1050px;
}

.managed-server-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .managed-server-page .faqs-section .container h2 br {
    display: none;
  }
}

.managed-server-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .managed-server-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.managed-server-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .managed-server-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}


.vpn-page .hero-section {
  position: relative;
  min-height: 720px;
  background-color: #2c6176;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 1180px) {
  .vpn-page .hero-section {
    min-height: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .vpn-page .hero-section {
    padding-top: 150px;
  }
}

.vpn-page .hero-section .container h1.sub-page-title {
  font-size: 48px;
  line-height: 58px;
  max-width: 600px;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .vpn-page .hero-section .container h1.sub-page-title {
    font-size: 34px;
    line-height: 44px;
  }

  .vpn-page .hero-section .container h1.sub-page-title br {
    display: none;
  }
}

.vpn-page .hero-section .container p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  max-width: 600px;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .vpn-page .hero-section .container p {
    font-size: 18px;
  }
}

.vpn-page .hero-section .container .cta-btn {
  max-width: 185px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid #f2a413;
  background-color: #f2a413;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.vpn-page .hero-section .container .cta-btn:hover {
  background-color: transparent;
  color: #f2a413;
}

.vpn-page .hero-section img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .vpn-page .hero-section img {
    position: static;
    width: 350px;
    height: auto;
  }
}

.vpn-page .info-section.info-section-1 {
  padding: 65px 0;
}

.vpn-page .info-section .container {
  max-width: 1100px;
}

.vpn-page .info-section .container .parts-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

@media only screen and (max-width: 1024px) {
  .vpn-page .info-section .container .parts-wrapper {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .vpn-page .info-section .container .parts-wrapper {
    gap: 35px;
  }
}

@media only screen and (max-width: 1024px) {
  .vpn-page .info-section .container .parts-wrapper .content-part {
    order: 2;
  }
}

.vpn-page .info-section .container .parts-wrapper .content-part .desc-1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #f2a413;
}

.vpn-page .info-section .container .parts-wrapper .content-part h3 {
  font-size: 38px;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .vpn-page .info-section .container .parts-wrapper .content-part h3 {
    font-size: 28px;
  }
}

.vpn-page .info-section .container .parts-wrapper .content-part .desc-2 {
  margin-top: 10px;
  color: #2c6176;
}

.vpn-page .info-section .container .parts-wrapper .content-part .points-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vpn-page .info-section .container .parts-wrapper .content-part .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vpn-page .info-section .container .parts-wrapper .content-part .points-wrapper p svg {
  min-width: 20px;
}

.vpn-page .info-section .container .parts-wrapper .content-part button {
  margin-top: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 20px;
  border: 2px solid #2c6176;
  background: linear-gradient(90deg, #06242f, #2c6176);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
}

.vpn-page .info-section .container .parts-wrapper .content-part button:hover {
  background: transparent;
  color: #2c6176;
}

.vpn-page .info-section .container .parts-wrapper .content-part button svg path {
  transition: all 0.2s ease;
}

.vpn-page .info-section .container .parts-wrapper .content-part button:hover svg path {
  stroke: #2c6176;
}

.vpn-page .info-section .container .parts-wrapper .imgs-part {
  display: flex;
  justify-content: center;
}

.vpn-page .info-section .container .parts-wrapper .imgs-part img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .vpn-page .info-section .container .parts-wrapper .imgs-part img {
    max-width: 450px;
  }
}

.vpn-page .features-section .container h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

.vpn-page .info-section.info-section-2 {
  padding: 60px 0;
  background-color: #fdfdfb;
}

.vpn-page .features-section .container .top-boxes-wrapper {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media only screen and (max-width: 768px) {
  .vpn-page .features-section .container .top-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.vpn-page .features-section .container .bottom-boxes-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .vpn-page .features-section .container .bottom-boxes-wrapper {
    grid-template-columns: 1fr;
  }
}

.vpn-page .features-section .container .text-box {
  padding: 30px;
  background-color: #2C6176;
  border-radius: 10px;
  color: #ffffff;
}

.vpn-page .features-section .container .text-box.primary {
  background: #F2A413;
  color: #000000;

}

.vpn-page .features-section .container .text-box h5 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.vpn-page .features-section .container .text-box p {
  margin-top: 14px;
  font-size: 16px;
}

.vpn-page .faqs-section {
  padding: 100px 0;
}

.vpn-page .faqs-section .container {
  max-width: 1050px;
}

.vpn-page .faqs-section .container h2 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .vpn-page .faqs-section .container h2 {
    font-size: 32px;
  }

  .vpn-page .faqs-section .container h2 br {
    display: none;
  }
}

.vpn-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .vpn-page .faqs-section .container .top-desc {
    font-size: 18px;
  }

  .vpn-page .faqs-section .container .top-desc br {
    display: none;
  }
}

.vpn-page .faqs-section .container .faqs-wrapper .faq {
  padding: 25px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.vpn-page .faqs-section .container .faqs-wrapper .faq:first-child {
  padding-top: 0;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .question p {
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .vpn-page .faqs-section .container .faqs-wrapper .faq .question p {
    font-size: 18px;
  }
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .question button {
  display: flex;
  transition: all 0.2s ease;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .question button svg {
  min-width: 30px;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq.active .question button {
  transform: rotate(45deg);
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.vpn-page .faqs-section .container .faqs-wrapper .faq .answer p {
  padding-top: 15px;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .vpn-page .faqs-section .container .faqs-wrapper .faq .answer p {
    font-size: 16px;
  }
}


/*# sourceMappingURL=index.css.map */