/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

/* Universal CSS Start */

:root {
  --primary-color: #49af62;
  --secondary-color: #1a1a1a;
  --light-green: #e4f3e8;
  --dim-gray: #696969;
  --white: #ffffff;
  --primary-font: "Urbanist";
  --secondary-font: "Inter";
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
}

p {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
  font-family: var(--secondary-font);
}

/* Universal CSS End */

/* Hero Start */

#hero {
  padding: 70px 0;
  background-color: rgba(73, 175, 98, 0.3);
  position: relative;
  overflow: hidden;
}

.hero_content h1 {
  font-family: var(--primary-font);
  font-size: 3.6em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 50px;
}

.hero_content h1 span {
  color: var(--primary-color);
}

.hero_content p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  color: var(--dim-gray);
}

.hero_content p span {
  color: var(--primary-color);
  font-size: 1.2em;
}

.hero_content .hero_img img {
  width: 100%;
  animation: shake 3.5s infinite linear alternate;
  -webkit-animation: shake 3.5s infinite linear alternate;
}

@keyframes shake {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }

  100% {
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
  }
}

@media screen and (max-width: 1400px) {
  .hero_content h1 {
    font-size: 3em;
  }

  .hero_content p {
    margin-top: 30px;
  }
}

@media screen and (max-width: 990px) {
  .hero_content .hero_img {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hero_content h1 {
    font-size: 2.2em;
  }

  .bdix_hero_item_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

/* Hero End */

/* Pricing Plan Start */

#vps_pricing_plan {
  padding: 100px 0;
}

.pricing_plan_head .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
}

.pricing_plan_head p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  color: var(--dim-gray);
  max-width: 800px;
  margin: 30px auto 20px;
}

.price_toggle_btn {
  max-width: 350px;
  margin: 10px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price_toggle_text {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  color: var(--dim-gray);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.price_toggle_text.active {
  color: var(--primary-color);
}

#toggle_checkbox {
  display: none;
}

.price_toggle_btn label {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 28px;
  margin: 0 auto;
  cursor: pointer;
}

.price_toggle_btn label:before {
  top: 4px;
  left: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
}

.price_toggle_btn label:after {
  top: 0;
  right: 0;
  width: 60px;
  height: 28px;
  border: 2px solid var(--primary-color);
}

.price_toggle_btn label:before,
.price_toggle_btn label:after {
  content: "";
  position: absolute;
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.5s ease top, 0.5s ease left, 0.5s ease right, 0.5s ease width,
    0.5s ease height, 0.5s ease border-color, 0.5s ease background;
}

#toggle_checkbox:checked+label:before {
  top: 0;
  left: 0;
  width: 60px;
  height: 28px;
  border-color: var(--primary-color);
  background: var(--white);
}

#toggle_checkbox:checked+label:after {
  top: 4px;
  right: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
}

.pricing_card {
  border: 1px solid #e6e7e8;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: 24px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.pricing_card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price_head .package-title {
  font-family: var(--primary-font);
  font-size: 2.5em;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
}

.plan_price {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 1.8em;
  font-weight: 700;
  text-align: center;
}

.plan_price b {
  font-weight: 700;
}

.plan_price span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  vertical-align: super;
}

.price_items {
  margin-top: 30px !important;
}

.price_items li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e6e7e8;
}

.price_items li:last-child {
  border-bottom: none;
  padding-bottom: 0 !important;
}

.price_item_icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.price_item_icon img {
  width: 100%;
  height: 100%;
}

.price_items li span {
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  color: var(--dim-gray);
}

.price_btn {
  text-align: center;
  margin-top: 40px;
}

.price_btn a {
  font-family: var(--secondary-font);
  color: var(--white);
  font-weight: 500;
  font-size: 1.1em;
  display: inline-block;
  padding: 10px 45px;
  background: var(--secondary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.price_btn a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

@media screen and (max-width: 990px) {
  #vps_pricing_plan {
    padding: 60px 0;
  }

  .pricing_plan_head .sec-title {
    font-size: 2em;
  }

  .price_head .package-title {
    font-size: 2em;
  }

  .plan_price {
    font-size: 1.5em;
  }

  .plan_price span {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    vertical-align: super;
  }
}

/* Pricing Plan End */

/* Network Specs Start */
.bdix-infra-section {
  padding: 80px 0px;
  background-color: rgba(73, 175, 98, 0.3);
}

.bdix-infra-section .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.bdix-infra-section .desc {
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.bdix-infra-section .network-card {
  background: var(--white);
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #e1eee5;
  transition: transform 0.3s ease;
}

.bdix-infra-section .network-card:hover {
  transform: translateX(5px);
}

.bdix-infra-section .icon-box {
  min-width: 60px;
  height: 60px;
  background-color: #e9f5ed;
  border: 1px solid #c2e2cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdix-infra-section .icon-box i {
  font-size: 24px;
  color: var(--primary-color);
}

.bdix-infra-section .network-card .item-title {
  color: var(--secondary-color);
  font-size: 1.4rem;
}

.bdix-infra-section .network-card p {
  font-size: 16px;
}

.bdix-infra-section .map-container {
  border-radius: 20px;
}

.bdix-infra-section .map-container img {
  width: 70%;
  aspect-ratio: 13/16;
  background-size: cover;
  border-radius: 20px;
}

.bdix-infra-section .custom-float {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 990px) {
  .bdix-infra-section .sec-title {
    font-size: 2em;
  }
}

/* Network Specs End */

/* Cloud Linux Start */

#cloud_linux {
  padding: 40px 0 100px;
}

.cloud_linux_wrapper {
  background: url(../img/web-hosting/cloud_linux_bg.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  padding: 30px 0;
}

.cloud_linux_img img {
  width: 100%;
  max-width: 400px;
}

.cloud_linux_card {
  border: 1px solid #e6e7e8;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: 24px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.cloud_linux_card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cloud_linux_card .card_title {
  font-family: var(--primary-font);
  font-size: 1.4em;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
}

.cloud_linux_card ul li {
  font-family: var(--secondary-font);
  color: var(--dim-gray);
  font-size: 1em;
  text-align: center;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #e6e7e8;
}

.cloud_linux_card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cloud_linux_card ul li span {
  font-weight: 600;
}

.cloud_linux_content .sec-title {
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.cloud_linux_content .sub-title {
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 30px;
}

.cloud_linux_content .sub-title span {
  color: var(--primary-color);
}

.cloud_linux_content p {
  font-family: var(--secondary-font);
  color: var(--dim-gray);
  font-size: 1em;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 990px) {
  #cloud_linux {
    padding: 40px 0 60px;
  }

  .cloud_linux_img img {
    display: none;
  }

  .cloud_linux_content .sec-title {
    font-size: 2em;
  }

  .cloud_linux_content .sub-title {
    font-size: 1.6em;
  }
}

/* Cloud Linux End */

/* Hosting Feature Start */

#hosting_feature {
  padding: 80px 0;
  background: rgba(73, 175, 98, 0.3);
}

.hosting_feature_head .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
}

.hosting_feature_head p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  max-width: 600px;
  margin: 30px auto 50px;
  text-align: center;
  color: var(--dim-gray);
}

.hosting_feature_img {
  width: 100%;
}

.hosting_feature_img img {
  width: 100%;
  aspect-ratio: 16/16;
  background-size: cover;
}

.hosting_feature_item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: var(--light-green);
  margin: 20px 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.hosting_feature_item_icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.hosting_feature_item_icon svg {
  width: 100%;
  height: 100%;
}

.hosting_feature_item_content .sub-title {
  font-family: var(--primary-font);
  font-size: 1.8em;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.hosting_feature_item_content p {
  font-family: var(--primary-font);
  font-size: 1em;
  color: var(--dim-gray);
  margin-bottom: 0;
}

.hosting_feature_btn {
  margin-top: 10px;
}

.hosting_feature_btn a {
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 1.1em;
  color: var(--secondary-color);
  font-weight: 500;
  padding: 10px 40px;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.hosting_feature_btn a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

@media screen and (max-width: 990px) {
  #hosting_feature {
    padding: 60px 0;
  }

  #hosting_feature {
    background-image: none;
  }

  .hosting_feature_head .sec-title {
    font-size: 2em;
  }
}

@media screen and (max-width: 576px) {
  .hosting_feature_item {
    display: block;
    padding: 20px;
  }

  .hosting_feature_item_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }

  .hosting_feature_item_content .sub-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    text-align: center;
  }

  .hosting_feature_item_content p {
    text-align: center;
  }

  .hosting_feature_btn {
    text-align: center;
  }
}

/* Hosting Feature End */

/* Advanced Feature Start */

#advanced_feature {
  padding: 80px 0 0;
}

.advanced_feature_head .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
}

.advanced_feature_head p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  color: var(--dim-gray);
  max-width: 900px;
  margin: 30px auto 0;
}

.advanced_feature_card {
  margin-top: 30px;
}

.advanced_feature_card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}

.advanced_feature_card ul li:last-child {
  padding-bottom: 0;
}

.advanced_feature_icon {
  width: 20px;
  height: 20px;
  line-height: 10px;
}

.advanced_feature_icon img {
  width: 100%;
  height: 100%;
}

.advanced_feature_card ul li span {
  font-family: var(--secondary-font);
  color: var(--dim-gray);
  font-weight: 500;
}

@media screen and (max-width: 990px) {
  #advanced_feature {
    padding: 60px 0 0;
  }

  .advanced_feature_head .sec-title {
    font-size: 2em;
  }
}

/* Advanced Feature End */

/* Feature Start */

#feature {
  padding: 100px 0;
}

.feature_head .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
}

.feature_head p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  color: var(--dim-gray);
  margin-top: 30px;
}

.feature_card {
  border: 1px solid #e6e7e8;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-top: 24px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.feature_card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.feature_card_icon {
  width: 80px;
  aspect-ratio: 1/1;
  display: block;
  margin: auto;
}

.feature_card_icon img {
  width: 100%;
  height: 100%;
}

.feature_card_content .card-title {
  font-family: var(--primary-font);
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  margin: 20px 0;
}

.feature_card_content p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  color: var(--dim-gray);
  margin-bottom: 0;
}

@media screen and (max-width: 990px) {
  .feature_head .sec-title {
    font-size: 2em;
  }

  #feature {
    padding: 60px 0;
  }
}

/* Feature End */

/* FAQ Start */

#faq {
  padding-bottom: 100px;
}

.faq_head .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
}

.faq_head p {
  font-family: var(--secondary-font);
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  color: var(--dim-gray);
  max-width: 800px;
  margin: 30px auto 20px;
}

.accordion-item {
  background-color: var(--white);
  margin: 1rem 0;
  border-radius: 0.5rem;
  border: 1px solid #e6e7e8 !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.accordion-item.active {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.accordion-item-header {
  padding: 20px;
  min-height: 3.5rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
}

.accordion-item-header .que-title {
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0;
  max-width: 80%;
}

.accordion-item-header span {
  width: 15px;
  height: 15px;
  line-height: 15px;
  flex-shrink: 0;
}

.accordion-item-header span svg {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.accordion-item-header.active svg {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

.accordion-item-header.active svg path {
  fill: var(--primary-color);
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  margin-inline: 1rem;
  line-height: 1.5rem;
  font-family: var(--secondary-font);
  font-size: 1em;
  color: var(--dim-gray);
  font-weight: 500;
  padding: 20px 0;
  border-top: 1px solid #e6e7e8;
}

#faq .under_text {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 0;
  padding-top: 20px;
}

#faq .under_text a {
  color: var(--primary-color);
  font-weight: 600;
}

@media screen and (max-width: 990px) {
  #faq {
    padding-bottom: 60px;
  }

  .faq_head .sec-title {
    font-size: 2em;
  }
}

/* FAQ Start */

/* Newsletter Start */

#newsletter {
  background: linear-gradient(270deg, #1a1a1a, #0f9d87);
}

.newsletter_img {
  padding-top: 50px;
}

.newsletter_img img {
  width: 70%;
}

.newsletter_content .sec-title {
  font-family: var(--primary-font);
  font-size: 3em;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 30px;
}

.newsletter_content p {
  font-family: var(--secondary-font);
  font-size: 1em;
  color: var(--white);
}

.newsletter_items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 50px;
}

.newsletter_icon {
  width: 90px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  margin: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.newsletter_item:hover .newsletter_icon {
  background: var(--primary-color);
}

.newsletter_icon svg {
  width: 50px;
  height: 50px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.newsletter_icon svg path {
  fill: var(--primary-color);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.newsletter_item:hover path {
  fill: var(--white);
}

.newsletter_item p {
  font-family: var(--secondary-font);
  font-size: 1.1em;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  padding-top: 15px;
}

@media screen and (max-width: 1200px) {
  .newsletter_items {
    column-gap: 50px;
    row-gap: 20px;
  }

  .newsletter_icon {
    width: 70px;
  }
}

@media screen and (max-width: 990px) {
  .newsletter_items {
    justify-content: center;
    margin-bottom: 50px;
  }

  .newsletter_img {
    display: none;
  }

  .newsletter_content .sec-title {
    font-size: 2em;
    margin-top: 50px;
    text-align: center;
  }

  .newsletter_content p {
    text-align: center;
  }

  .newsletter_icon {
    width: 90px;
  }
}

/* Newsletter End */