@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;700&family=Sen:wght@300;400;500;600;700;800&family=Saira+Condensed:wght@200;300;400;500;600;700&display=swap');

:root {
  --main-clr-light: #268cbf;
  --main-clr: #217aa6;
  --main-clr-dark: #1c678c;
  --dark-bg: #0f4666;
  --ff-secondary: Saira Condensed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: Sen;
  font-size: 1.6rem;
  color: #555;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ############### UTILITY CLASSES ############### */

.container {
  max-width: 1200px;
  width: 95%;
  margin: auto;
}

a,
p,
li {
  font-size: 1.6rem;
  text-decoration: none;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--ff-secondary);
  font-weight: 600;
  letter-spacing: .05rem;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.2rem;
}

hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #eee;
}

.bg2 {
  background-color: #2471A3 !important;
}

.bg3 {
  background-color: #3d5c80 !important;
}

.intro-txt {
  color: var(--main-clr-dark);
}

/* ############### FONT AWESOME ###############  */

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* ############### HEADER STYLING ############### */

input,
.ham-btn,
.ca-mob,
.toggle {
  display: none;
}

nav {
  background: rgba(255, 255, 255, 0.99);
  position: fixed;
  z-index: 999;
  width: 100%;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 17.5rem;
}

.main-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.main-menu li a {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
  color: #555;
  padding: 2.3rem 2rem;
  display: flex;
  align-items: center;
}

.main-menu li:hover {
  background: var(--main-clr);
}

.main-menu li:hover a {
  color: #fff;
}

.main-menu li:hover .sub-menu {
  display: block;
}

.main-menu li a::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin-left: .5rem;
}

.main-menu li a:only-child::after {
  content: '';
  background: none;
  height: 0;
  width: 0;
  margin-left: 0;
}

.sub-menu {
  position: absolute;
  top: 6.5rem;
  display: none;
  background: #fff;
  z-index: 1;
  border-radius: .3rem;
  width: 25rem;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.25);
}

.sub-menu li {
  border-bottom: 1px solid #f5f5f5;
}

.sub-menu li a {
  color: #555 !important;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.3rem 2rem;
}

.sub-menu li:first-child {
  border-radius: 3px 3px 0 0;
}

.sub-menu li:last-child {
  border-bottom: none;
  border-radius: 0 0 3px 3px;
}

.sub-menu li:hover {
  background: #eee;
}

.ca-btn {
  font-size: 1.3rem;
  color: #fff;
  background: var(--main-clr);
  padding: 1.2rem;
  border-radius: .3rem;
  transition: all .3s;
}

.ca-btn::before {
  content: '\f406';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  margin-right: .6rem;
  position: relative;
  top: -1px;
}

.ca-btn:hover {
  background: var(--main-clr-light);
}

.ca-btn:active {
  background: var(--main-clr-dark);
}

/* ############### HEADING WRAPPER ############### */

.pp-wrapper {
  text-align: center;
  color: #ddd;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../img/bg.webp');
  height: 27rem;
  background-position: cover;
  background-size: cover;
  object-fit: cover;
  display: flex;
}

.pp-textarea {
  width: 95%;
  margin: 12.5rem auto;
}

.pp-textarea h1 {
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: .5rem;
  word-spacing: .2rem;
}

.pp-wrapper span {
  font-size: 3rem;
}

/* ############### PRODUCT STYLING ############### */

.pro-container {
  padding: 2.5rem 0 5rem;
  z-index: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
}

.pro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product {
  text-align: center;
  margin: 2.5rem auto;
  transition: transform .2s;
  background: #fff;
  width: 30rem;
  box-shadow: 0 0 .2rem rgba(0, 0, 0, .2);
}

.product:hover {
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
}

.pro-header {
  background: var(--main-clr);
}

.product h3 {
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .price {
  padding: 1rem 0;
  font-weight: 700;
  color: #fff;
}

.product .price h1 {
  font-family: Sen;
  font-size: 4.5rem;
  display: inline-block;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
}

.product .price p {
  font-size: .8rem;
  text-transform: uppercase;
  margin-bottom: -.5rem;
}

.product .price b {
  font-size: 3rem;
  top: -10px;
  position: relative;
}

.product span {
  font-size: 3rem;
}

.product .price i {
  font-size: 1.1rem;
  font-style: normal;
}

.product .content {
  margin: 2rem auto;
  list-style: none;
}

.product .content li {
  font-size: 1.3rem;
  line-height: 3.8rem;
  border-bottom: 1px dashed #f5f5f5;
}

.product .content li:last-child {
  border-bottom: none;
}

.product .pro-btn {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  background: var(--main-clr);
  padding: 1.5rem;
  transition: all .3s;
}

.product .pro-btn:hover {
  opacity: .9;
}

.product .pro-btn:active {
  opacity: 1;
  box-shadow: 0 0 0 5rem rgba(0, 0, 0, .15) inset;
}

.product .pro-btn::after {
  content: '\00276F';
  font-size: 1.2rem;
  margin-left: 1rem;
}

.product .rdp::before {
  content: '';
  background: url(../img/win.svg) no-repeat;
  background-size: 1.4rem;
  margin-right: .8rem;
  height: 1.5rem;
  width: 1.5rem;
}

.product .vps::before {
  content: '';
  background: url(../img/vps.svg) no-repeat;
  background-size: 1.5rem;
  margin-right: .8rem;
  height: 1.5rem;
  width: 1.5rem;
}

.product .dedi::before {
  content: '';
  background: url(../img/dedi.svg) no-repeat;
  background-size: 1.5rem;
  margin-right: .8rem;
  height: 1.6rem;
  width: 1.5rem;
}

/* ############### PLANS STYLING ############### */

.plans-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: .5rem;
}

.plan {
  text-align: center;
  margin: 2.5rem auto;
  transition: all .2s;
  background: #fff;
  width: 30rem;
  box-shadow: 0 0 2px rgba(0, 0, 0, .2);
}

.five-plans {
  width: 24rem !important;
}

.plan:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1rem rgba(0, 0, 0, .2)
}

.plan .title {
  padding: 1.2rem 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--ff-secondary);
  color: #fff;
  background: var(--dark-bg);
}

.plan .price {
  padding: 1.2rem 0;
  font-weight: 700;
  color: #fff;
  background: var(--main-clr);
}

.plan .price p {
  font-size: .9rem;
  margin-top: -.2rem;
  padding-bottom: .5rem;
  text-transform: uppercase;
}

.plan .price b {
  font-size: 3.5rem;
  top: -8px;
  position: relative;
}

.plan .price h1 {
  font-family: Sen;
  font-size: 5rem;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
}

.plan .price span {
  font-size: 3.5rem;
}

.plan .content {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  list-style: none;
  border-bottom: 1px solid #f7f7f7;
}

.plan .content li {
  font-size: 1.3rem;
  line-height: 3.5rem;
}

.plan .plan-btn {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background: var(--main-clr);
  padding: .8rem 1.5rem;
  border-radius: .3rem;
  margin: 2rem auto;
  transition: all .2s ease-in-out;
}

.plan .plan-btn:hover {
  background: var(--main-clr-light);
}

.plan .plan-btn:active {
  background: var(--main-clr-dark);
}

.plan .plan-btn::after {
  content: '\00276F';
  font-size: 1rem;
  margin-left: .6rem;
}

/* ############### FEATURES STYLING ############### */

.features-wrapper {
  background: #f0f0f0;
  padding-top: 4rem;
}

.features-wrapper .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fbox-wrapper {
  margin-bottom: 5rem;
  max-width: 370px;
  width: 95%;
}

.fbox-wrapper h2 {
  margin-left: .5rem;
  font-size: 2.1rem;
  font-family: var(--ff-secondary);
}

.fbox {
  margin-top: 2rem;
  padding: 0 3rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 275px;
}

.fbox li {
  line-height: 3.8rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.fbox1 li::before {
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  margin-right: 1.2rem;
  color: var(--main-clr);
}

.fbox2 li::before {
  content: '\f005';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  margin-right: 1.2rem;
}

.serv-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 275px;
}

.serv-box {
  padding: 1.8rem 2.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  display: flex;
}

.serv-box img {
  display: inline-block;
  margin-right: 2rem;
}

.serv-box h3 {
  font-family: var(--ff-secondary);
  letter-spacing: 1px;
  font-size: 1.6rem;
}

.serv-box p {
  margin-top: .5rem;
  font-size: 1.4rem;
}

.serv-box img {
  height: 40px;
  position: relative;
  top: 5px;
}

/* ############### FOOTER STYLING ############### */

.footer {
  background: var(--dark-bg);
}

.footer-wrapper .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.footer-links {
  margin: 3rem auto 0;
  width: 30rem;
  padding: 0 1.5rem;
}

.footer-links h3 {
  color: #fcfcfc;
  font-family: var(--ff-secondary);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links li {
  padding-bottom: 1rem;
}

.footer-links li a {
  color: #ccc;
  font-size: 1.4rem;
  transition: all .5s;
}

.footer-links li a:hover {
  color: #fff;
}

.live-chat-btn {
  display: inline-block;
  font-family: var(--ff-secondary);
  border-radius: 5px;
  padding: 1.5rem 3.5rem;
  background: #111 url(../img/live-chat.png) no-repeat;
  background-size: 50px;
  background-position: 25px;
}

.live-chat-btn:hover h2 {
  color: #ccc;
}

.live-chat-btn h2 {
  font-weight: 500;
  font-size: 2.5rem;
  margin-left: 6rem;
  margin-top: -.5rem;
  color: var(--main-clr);
  transition: all .5s;
}

.live-chat-btn p {
  margin-top: -5px;
  font-size: 1.2rem;
  color: #ccc;
  word-spacing: 1px;
}

/* ############### FOOTER 2ND WRAPPER ############### */

.footer-wrapper-2 {
  color: #ddd;
  background: rgba(0, 0, 0, 0.1);
}

.footer-wrapper-2 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
}

.social-icons a {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 .7rem;
}

.social-icons a:hover {
  color: #aaa;
}

.accepted-payments {
  display: flex;
  align-items: center;
}

.accepted-payments h3 {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--ff-secondary);
  width: 7rem;
  line-height: 1.6rem;
}

.accepted-payments img {
  width: 25rem;
}


/* ############### FOOTER 3RD WRAPPER ############### */

.footer-wrapper-3 {
  background: rgba(0, 0, 0, 0.25);
  padding: 3rem 0;
  text-align: center;
  color: #aaa;
}

.footer-wrapper-3 p {
  font-size: 1.4rem;
}

/* ############### PAGE STYLING ############### */

.breadcrumb-wrapper {
  background: #222;
  padding: 1.5rem 0;
  color: #eee;
  font-size: 14px;
}

.breadcrumb-wrapper .bc-text {
  line-height: 2rem;
}

.breadcrumb-wrapper a {
  color: #eee;
  font-size: 1.4rem;
  transition: all .2s;
}

.breadcrumb-wrapper p::before {
  content: '» ';
  color: #eee;
}

.breadcrumb-wrapper p {
  display: inline-block;
  font-size: 1.4rem;
  color: #aaa;
}

.breadcrumb-wrapper a:hover {
  color: #bbb;
}

.page-wrapper {
  margin-top: 0;
  padding: 4rem 0;
}

.page-wrapper>p,
.page-wrapper>li {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.page-wrapper>li::before {
  content: '•  ';
  font-size: 1.6rem;
  position: relative;
  top: .1rem;
}

.txt-only-pg p,
.txt-only-pg li {
  font-size: 1.5rem;
}

/* ############### FAQS STYLING ############### */

.faqs-wrapper {
  background: #f0f0f0;
}

.faqs-wrapper h2 {
  font-family: var(--ff-secondary);
  text-align: center;
  font-size: 3.2rem;
  padding: 4rem 0 2rem;
}

.faqs-wrapper .container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.faq-item {
  width: 48.5%;
  margin: 1rem auto;
}

.faq-link {
  color: #fff;
  font-family: Saira Condensed;
  font-weight: 500;
  word-spacing: 1px;
  font-size: 1.5rem;
  text-transform: uppercase;
  background: var(--main-clr-dark);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.answer {
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s;
  border: 0 0 1px 1px solid red;
  box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.answer p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 1.5rem;
}

.faq-link .fa-plus {
  transition: transform .3s;
}

input:checked~.answer {
  max-height: 20rem;
}

input:checked~label .fa-plus {
  transform: rotate(45deg);
}

/* ############### */

.pro-title {
  text-align: center;
  color: var(--main-clr-dark);
  line-height: 0;
  padding: 3rem 0 1.5rem;
}

.pro-title::before,
.pro-title::after {
  content: '';
  display: inline-block;
  height: .1rem;
  width: 25%;
  background: var(--main-clr-dark);
  vertical-align: middle;
}

.pro-title::before {
  margin-right: 1.5rem;
}

.pro-title::after {
  margin-left: 1.5rem;
}