/**
 * @tableofcontents
 *
 * 1. Global Css variable
 * 2. Cloud Flare Banner Section
 * 3. CloudFlare with Cloudways: Advantages
 * 4. Video Demos
 * 5. cloudFlare Pricing Section 
 * 6. Testomonial Section
 * 7. Safe Updates Landing Page
 * 8. Revamp Video Sec
 *
 */
/* @Section 1. Global Css variable */
:root {
  --heading_color: #020637;
  --para_color: #42526E;
  --color_blue: #2f39bf;
  --color_yellow: #FBD808;
  --color_white: #ffffff;
  --bg_light_gray: #f8f9fb;
  --color_green: #09EBAF;
}

.bgWhite {
  background-color: var(--color_white);
}

.bgBlue {
  background-color: var(--color_blue);
}

.bgGray {
  background-color: var(--bg_light_gray);
}

.bgGreen {
  background-color: var(--color_green);
}

.textGray {
  color: var(--para_color);
}

.textWhite {
  color: var(--color_white);
}
.textWhite * {
  color: var(--color_white);
}

.textBlue {
  color: var(--color_blue);
}

h1 {
  font-size: 54px;
  color: var(--heading_color);
  margin: 0 0 15px;
  font-weight: 800;
}

h2 {
  font-size: 36px;
  color: var(--heading_color);
  margin: 0 0 15px;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  color: var(--heading_color);
  margin: 0 0 15px;
  font-weight: 700;
}

p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

/*@Section 2. Cloud Flare Banner Section*/
.CloudFlareBannerSec {
  background: rgb(2, 0, 109);
  background: linear-gradient(128deg, rgb(2, 0, 109) 0%, rgb(69, 0, 76) 54%, rgb(128, 0, 35) 100%);
  padding: 220px 0 120px;
  text-align: center;
  position: relative;
}
.CloudFlareBannerSec::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../../img/partner/cloudflare-bnr-bg.jpg) no-repeat bottom;
  background-size: cover;
}
.CloudFlareBannerSec .cloudFlareBnrContent {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}
.CloudFlareBannerSec .cloudFlareBnrContent h1 {
  margin: 0;
}
.CloudFlareBannerSec .cloudFlareBnrContent p {
  margin: 25px 0 0;
}
.CloudFlareBannerSec .cloudFlareBnrCTA {
  margin-top: 50px;
  position: relative;
}
.CloudFlareBannerSec .cloudFlareBnrCTA .cw-glb-btn {
  margin-right: 15px;
}

/* @Section 3. CloudFlare with Cloudways: Advantages*/
.cfAdvantagesSec {
  padding: 100px 0;
}
.cfAdvantagesSec .cfAdvMainWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cfAdvantagesSec .cfAdvMainWrap .cfContentWrap {
  max-width: 600px;
  padding-right: 50px;
}
.cfAdvantagesSec .cfAdvMainWrap .cfContentWrap P {
  color: var(--para_color);
  margin-bottom: 30px;
}
.cfAdvantagesSec .cfAdvMainWrap .cfContentWrap P:nth-last-of-type(1) {
  margin-bottom: 0;
}
.cfAdvantagesSec .cfAdvMainWrap .cfContentWrap .cfAdvCta {
  margin-top: 50px;
}
.cfAdvantagesSec .cfAdvMainWrap.inverse {
  flex-direction: row-reverse;
}
.cfAdvantagesSec .cfAdvMainWrap.inverse .cfContentWrap {
  padding: 0;
  padding-left: 50px;
}

/* @Section 4. Video Demos */
.CFvideoDemosSec {
  padding: 80px 0;
}
.CFvideoDemosSec .topTxt {
  max-width: 850px;
  margin: 0 auto 70px;
}
.CFvideoDemosSec .tabsMainWrap {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  max-width: 850px;
  margin: 0 auto;
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(66, 82, 110, 0.14);
  justify-content: space-between;
  margin-bottom: 50px;
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li {
  margin: 0 6px;
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li a {
  font-weight: 500;
  font-size: 18px;
  padding: 15px 4px;
  letter-spacing: -0.03em;
  color: var(--para_color);
  background: transparent !important;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li a:hover {
  color: var(--color_blue);
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: auto;
  bottom: -1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  height: 0;
  border-radius: 10px 10px 0px 0px;
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li.active a {
  color: var(--color_blue);
}
.CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li.active::before {
  background-color: var(--color_blue);
  height: 3px;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap {
  flex: 6;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  text-align: center;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox i {
  padding: 26px;
  background-color: var(--color_white);
  color: var(--color_blue);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 9;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox.pause .fa-play {
  display: block;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox.pause .fa-pause {
  display: none;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox.play {
  opacity: 0;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox.play .fa-play {
  display: none;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox.play .fa-pause {
  display: block;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox::before, .CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color_white);
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  z-index: 1;
  animation: play infinite 2s linear both;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox .videoControlBox::after {
  animation-delay: 1.3s;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .videoBox:hover .videoControlBox.play {
  opacity: 1;
}
.CFvideoDemosSec .tabsMainWrap .tabsContentWrap .tab-pane {
  transition: none;
  animation: fadeIn 0.6s linear both;
}
.CFvideoDemosSec .ctaWrap {
  margin-top: 50px;
}
.CFvideoDemosSec .ctaWrap a i {
  color: inherit;
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}
.CFvideoDemosSec .ctaWrap a:hover i {
  transform: translateX(8px);
}

/* @Section 5. cloudFlare Pricing Section */
.cloudflarePricingSection {
  padding: 80px 0;
}
.cloudflarePricingSection .cloudflarePricingHeadWrap {
  text-align: center;
  margin-bottom: 70px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap {
  padding-right: 40px;
  flex: 1;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
  padding: 35px 30px;
  background-color: var(--color_white);
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  margin-top: 20px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard:first-child {
  margin-top: 0;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains img {
  margin-right: 15px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .domainPricing h3 {
  margin: 0;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .domainPricing p {
  font-size: 16px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap {
  background: #FFFFFF;
  border: 1px solid rgba(66, 82, 110, 0.15);
  border-radius: 6px;
  padding: 40px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap h3 {
  margin-bottom: 25px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul {
  list-style-type: none;
  padding-left: 25px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  color: var(--para_color);
  position: relative;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li::before {
  content: "\f00c";
  color: #09EBAF;
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: -25px;
  top: 4px;
}
.cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap p {
  margin-top: 25px;
  color: var(--para_color);
  opacity: 0.7;
  font-size: 16px;
  text-align: right;
}
.cloudflarePricingSection .cloudflarePricingCTA {
  margin-top: 60px;
  text-align: center;
}

/* @Section 6. Testomonial Section */
.testomonialSldrWrap {
  padding: 80px 0;
}
.testomonialSldrWrap .testomonialSldrTltBox {
  max-width: 850px;
  margin: 0 auto 70px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox {
  margin: 0 12px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialContent p {
  color: var(--para_color);
  font-size: 18px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialDetails {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialDetails .userImg {
  max-width: 44px;
  max-height: 44px;
  margin-right: 15px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialDetails .userImg img {
  border-radius: 50px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialDetails .userDetails h3 {
  margin: 0;
  font-size: 18px;
}
.testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox .tesmonialDetails .userDetails P {
  font-size: 16px;
}

.faqSec#glb-nfaq-wrap {
  padding: 80px 0;
}
.faqSec#glb-nfaq-wrap #prc-faq_content {
  max-width: 900px;
  margin: 0 auto;
}

/* @Section 7. Safe Updates Landing Page */
.safeUpdates .lnd-agncy-ftr-txt h2 {
  font-weight: 800;
  margin-bottom: 20px;
  color: #0E134F;
}
.safeUpdates .lnd-agncy-ftr-txt p {
  font-size: 18px;
}
.safeUpdates .lnd-agncy-ftr-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0E134F;
}
.safeUpdates .lnd-agncy-ftr-box p {
  font-size: 18px;
}
.safeUpdates .lnd-agncy-ftr-txt {
  max-width: 750px;
  margin: 0 auto 70px;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap {
  flex-direction: column;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 0 50px;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard:first-child, .safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
  width: calc(50% - 21px);
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
  margin-top: 0;
  background: #f8f9fb;
  border: 2px solid rgba(66, 82, 110, 0.15);
  box-shadow: none;
  transition: all 0.4s ease-in-out;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap {
  background: #f8f9fb;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap h3 {
  margin-bottom: 25px;
  text-align: center;
  margin-top: -50px;
  background: #f8f9fb;
  display: inline-block;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0 20px;
  font-size: 20px;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul {
  list-style-type: none;
  padding-left: 25px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  color: var(--para_color);
  position: relative;
  flex: 0 0 33.33%;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap {
  align-items: center;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
  padding-left: 25px;
}
.safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li::before {
  left: 0;
}
.safeUpdates .CloudFlareBannerSec {
  background: linear-gradient(0deg, #0E134F, #0E134F), linear-gradient(270deg, #0A1F76 0%, #1728D0 100%);
}
.safeUpdates .CloudFlareBannerSec::before {
  background: url(../../img/alternatives/cw-alternatives-new-bg.png) no-repeat bottom;
  background-size: cover;
}
.safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap ul {
  margin-top: 10px;
}
.safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap ul li {
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;
  position: relative;
  list-style-type: none;
  color: var(--para_color);
}
.safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap ul li::before {
  content: "\f00c";
  color: #39dcb1;
  font-size: 18px;
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: -37px;
  top: 5px;
}
.safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap P {
  margin-bottom: 25px;
}
.safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap p b {
  font-weight: 700;
}
.safeUpdates .lnd-agncy-ftr-txt {
  max-width: 850px;
}
.safeUpdates .owl-carousel .owl-nav button.owl-next, .safeUpdates .owl-carousel .owl-nav button.owl-prev, .safeUpdates .owl-carousel button.owl-dot {
  position: absolute;
  height: 100%;
  top: -280px;
}
.safeUpdates .owl-carousel .owl-nav button.owl-next span, .safeUpdates .owl-carousel .owl-nav button.owl-prev span, .safeUpdates .owl-carousel button.owl-dot span {
  font-size: 80px;
  color: #2f39bf;
}
.safeUpdates .owl-carousel .owl-nav button.owl-next {
  right: 20px;
}
.safeUpdates .owl-carousel .owl-nav button.owl-prev {
  left: 20px;
}
.safeUpdates .owl-nav {
  position: relative;
  z-index: 999;
}
.safeUpdates .testomonialOwlSldrWrap .owl-carousel {
  position: relative;
}
.safeUpdates .testomonialOwlSldrWrap .owl-carousel::after {
  position: absolute;
  top: 0;
  left: -30px;
  bottom: 0;
  content: "";
  width: 30px;
  box-shadow: 0px 0 100px 120px #f8f9fb;
  z-index: 9;
}
.safeUpdates .testomonialOwlSldrWrap .owl-carousel::before {
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  content: "";
  width: 30px;
  box-shadow: 0px 0 100px 120px #f8f9fb;
  z-index: 9;
}

.safeUpdateTestiSec {
  padding: 100px 0;
}
.safeUpdateTestiSec .safeUpdateTestiHeadWrap {
  text-align: center;
}
.safeUpdateTestiSec .safeUpdateTestiHeadWrap h2 {
  font-weight: 800;
  font-size: 36px;
  text-transform: capitalize;
  color: #0E134F;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap {
  margin-top: 70px;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard {
  max-width: 30%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px 30px 115px;
  position: relative;
  margin: 0 30px 30px 0;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardContentWrap p {
  font-weight: 400;
  font-size: 20px;
  color: #42526E;
  margin: 0;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardUserInfoWrap {
  position: absolute;
  bottom: 30px;
  right: 10px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardUserInfoWrap .userInfoImgWrap {
  margin-right: 15px;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardUserInfoWrap .userInfoImgWrap img {
  max-width: 44px;
  border-radius: 50%;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardUserInfoWrap .userInfoDetailsWrap h4 {
  font-weight: 700;
  font-size: 18px;
  color: #0E134F;
  margin: 0;
}
.safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard .testiCardUserInfoWrap .userInfoDetailsWrap p {
  font-weight: 400;
  font-size: 16px;
  color: #0E134F;
  margin: 0;
}

.safeUpdatesRevamp23 .CloudFlareBannerSec, .safeUpdatesRevamp23 .CloudFlareBannerSec::before {
  background: none;
  padding: 0;
}
.safeUpdatesRevamp23 .CloudFlareBannerSec .cloudFlareBnrCTA {
  margin-top: 40px;
  text-align: left;
}
.safeUpdatesRevamp23 .suBnrSec {
  padding: 180px 0 0;
  background: linear-gradient(106.8deg, #0E134F 7.26%, rgba(14, 19, 79, 0) 100.28%), linear-gradient(180deg, #000DA8 0%, #081069 100%);
  position: relative;
}
.safeUpdatesRevamp23 .suBnrSec::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(https://www.cloudways.com/wp-content/uploads/2023/03/su-revamp-bg.png) no-repeat center;
  background-size: cover;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap {
  max-width: 400px;
  text-align: left;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap h1 {
  font-weight: 800;
  font-size: 56px;
  color: #FFFFFF;
  margin: 0;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap p {
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  margin: 16px 0 0;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec {
  padding: 0;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap {
  width: 500px;
  position: relative;
  border: 1px solid #7e94dd;
  border-radius: 0 0 8px 8px;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap::before {
  content: "";
  position: absolute;
  background: url(https://www.cloudways.com/wp-content/uploads/2023/03/su-hero-vid-frame.png) no-repeat;
  top: -32px;
  bottom: 10px;
  left: -1px;
  right: -1px;
  width: 503px;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap .videoBox {
  border-radius: 0 0 8px 8px;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap {
  margin-top: 95px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) -46.52%, rgba(0, 0, 0, 0) 148.81%);
  border-radius: 14.69px 14.69px 0px 0px;
  padding: 35px 0 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem {
  width: 33.33%;
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 45px;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem:last-child {
  border: 0;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem .suBnrStripItemLeft {
  margin-right: 15px;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem .suBnrStripItemRight h3 {
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  margin: 0;
}
.safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem .suBnrStripItemRight p {
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  margin: 5px 0 0;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li {
  display: flex;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li img {
  filter: brightness(0);
  margin: 0 10px 1px 0;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li.active img {
  filter: brightness(0) invert(1);
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsNavWrap {
  max-width: 360px;
  margin: 0 auto;
  border: 0;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsNavWrap ul {
  margin: 0;
  background: #F2F4F9;
  border: 1px solid #E2E8F2;
  border-radius: 10px;
  padding: 5px;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsNavWrap ul li {
  margin: 0;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsContentWrap {
  margin-top: 30px;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li a {
  border-radius: 10px !important;
  color: #0E134F;
  padding-left: 28px;
  padding-right: 28px;
  display: flex;
  align-items: center;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li.active a {
  background: #2F39BF !important;
  color: #fff;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li::before {
  display: none;
}
.safeUpdatesRevamp23 .lnd-agncy-ftr-box {
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 30px 30px 50px;
  min-height: 292px;
}
.safeUpdatesRevamp23 .safeUpdates .lnd-agncy-ftr-box h4 {
  font-weight: 700;
  font-size: 20px;
  color: #0E134F;
  margin: 20px 0 0;
}
.safeUpdatesRevamp23 .safeUpdates .lnd-agncy-ftr-box p {
  font-weight: 400;
  font-size: 14px;
  color: #42526E;
  margin: 8px 0 0;
}
.safeUpdatesRevamp23 .safeUpdates .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap P {
  font-size: 18px;
  margin-bottom: 32px;
}
.safeUpdatesRevamp23 .CFvideoDemosSec .topTxt p, .safeUpdatesRevamp23 .cloudflarePricingHeadWrap p, .safeUpdatesRevamp23 .safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap h3 {
  font-size: 18px;
}
.safeUpdatesRevamp23 .glb_footer_signup_new .hm-new-sgnup-cta-wrap .hm-new-sgnup-cta-txt h2 {
  font-size: 36px;
}
.safeUpdatesRevamp23 .numberOfDomains p {
  font-weight: 600;
}

.suWorkflowSec {
  padding: 80px 0;
}
.suWorkflowSec .suWorkflowHeader {
  text-align: center;
}
.suWorkflowSec .suWorkflowHeader h2 {
  font-weight: 800;
  font-size: 36px;
  color: #0E134F;
  margin: 0;
}
.suWorkflowSec .suWorkflowHeader p {
  font-weight: 400;
  font-size: 16px;
  color: #42526E;
  margin: 16px 0 0;
}
.suWorkflowSec .suWorkflowBody {
  margin-top: 60px;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard {
  width: calc(33.33% - 15px);
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 35px;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardHead {
  min-height: 50px;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody {
  margin-top: 30px;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody h3 {
  font-weight: 700;
  font-size: 20px;
  color: #0E134F;
  margin: 0;
}
.suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody p {
  font-weight: 400;
  font-size: 16px;
  color: #42526E;
  margin: 8px 0 0;
}

/* @Section 8. Revamp Video Section */
.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap h2 {
  font-weight: 800;
  font-size: 36px;
  color: #0E134F;
  margin: 0;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap p {
  font-weight: 400;
  font-size: 18px;
  color: #42526E;
  margin: 20px 0 0;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap .active .cwPlatCardWrap {
  border: 0.5px solid rgba(66, 82, 110, 0.2);
  background: #fff;
  box-shadow: none;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap .cwPlatCardWrap {
  border: 0.5px solid rgba(66, 82, 110, 0.2);
  background: #fff;
  box-shadow: none;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap .cwPlatCardWrap .platCardHeadWrap h3 {
  color: #0E134F;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li.active {
  overflow: hidden;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li a {
  position: relative;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li a .beforeElement {
  visibility: hidden;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(66, 82, 110, 0.1);
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li a .afterElement {
  visibility: hidden;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0px;
  height: 4px;
  background: #2F39BF !important;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li.active a .beforeElement {
  visibility: visible;
}

.cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li.active a .afterElement {
  visibility: visible;
  animation: videoPlayTimeIndicator 5s forwards;
  animation-play-state: paused;
}

@keyframes videoPlayTimeIndicator {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes play {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.cloudflareVideoSec .CROtesting .homePageB .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap .lnd-aft-bnr-vdo-box {
  background: url(https://www.cloudways.com/wp-content/uploads/2023/04/Video-frame.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 9px;
  padding: 42px 1px 1px;
  max-width: 678px;
}

.cloudflareVideoSec .CROtesting .homePageB .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap .lnd-aft-bnr-vdo-box .embed-responsive {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cloudflareVideoSec .CROtesting .homePageB .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap {
  max-width: 692px;
  min-height: auto;
}

.cloudflareVideoSec .hstngForAgncies .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatLeftWrap ul li a {
  max-height: initial;
}

.cloudFlarerRevamp23 p {
  font-size: 18px;
  line-height: 26px;
}
.cloudFlarerRevamp23 h2 {
  color: #0E134F;
}
.cloudFlarerRevamp23 .CloudFlareBannerSec::before {
  background: url(https://www.cloudways.com/wp-content/uploads/2023/06/Mask-group.png) no-repeat bottom #180474;
  background-size: cover;
}
.cloudFlarerRevamp23 .CloudFlareBannerSec {
  padding: 0;
  /* margin: 49px 0 0; */
}
.cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec {
  background: transparent;
  padding: 185px 15px 0;
}
.cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap {
  padding: 35px 0 19px;
  background-image: url(https://www.cloudways.com/wp-content/uploads/2023/06/Rectangle-328.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 110px;
}
.cloudFlarerRevamp23 .suBnrStripWrap .suBnrStripItemRight {
  text-align: left;
}
.cloudFlarerRevamp23 .suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard {
  margin-bottom: 20px;
  padding: 30px 30px 52px;
}
.cloudFlarerRevamp23 .suWorkflowSec .suWorkflowHeader p {
  font-size: 18px;
}
.cloudFlarerRevamp23 .suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.cloudFlarerRevamp23 .suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody {
  margin-top: 22px;
}
.cloudFlarerRevamp23 .suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard .workflowCardBody h3 span {
  color: #FFFFFF;
  font-size: 11px;
  background: #2F39BF;
  border-radius: 4.75px;
  font-weight: 400;
  line-height: initial;
  padding: 3px 8px;
  display: inline-block;
  vertical-align: top;
}
.cloudFlarerRevamp23 .CROtesting .homePageB .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap .lnd-aft-bnr-vdo-box::before {
  background: none;
}
.cloudFlarerRevamp23 .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap .lnd-aft-bnr-vdo-box .embed-responsive {
  min-height: 380px;
}
.cloudFlarerRevamp23 .glb-nfaq-wrap-new .glb-nfaq-ttl p {
  font-size: 18px;
}
.cloudFlarerRevamp23 .testomonialSldrWrap .testomonialOwlSldrWrap .testomonialOwlSldrContentBox {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  margin-bottom: 15px;
}
.cloudFlarerRevamp23 .planBenefitsWrap li.bold {
  font-weight: 500 !important;
}
.cloudFlarerRevamp23 .planBenefitsWrap li span {
  padding: 3px 9px;
  color: white;
  background: linear-gradient(180deg, #2F39BF -46.52%, #2F39BF 148.81%);
  border-radius: 4.75px;
  font-weight: 400;
  font-size: 12px;
  line-height: initial;
}
.cloudFlarerRevamp23 .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li::before {
  color: #2F39BF;
  font-size: 16px;
}
.cloudFlarerRevamp23 .numberOfDomains p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #42526E;
}
.cloudFlarerRevamp23 .domainPricing p {
  font-weight: 400;
  font-size: 16px !important;
  line-height: 16px;
  letter-spacing: -0.03em;
  color: rgba(66, 82, 110, 0.7);
  margin-bottom: 4px;
}
.cloudFlarerRevamp23 .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
  padding: 54px 30px;
}
.cloudFlarerRevamp23 .CloudFlareBannerSec .cloudFlareBnrCTA .cw-glb-btn {
  background: #FBD808;
  border-color: #FBD808;
  color: #0E134F !important;
}
.cloudFlarerRevamp23 .CloudFlareBannerSec .cloudFlareBnrCTA .cw-glb-btn:hover {
  background: #ffe966 !important;
  border-color: #ffe966 !important;
}

@media (min-width: 1600px) {
  .safeUpdates .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .CloudFlareBannerSec {
    padding: 100px 0 60px;
  }
  .cfAdvantagesSec,
  .testomonialSldrWrap,
  .cloudflarePricingSection,
  .CFvideoDemosSec {
    padding: 60px 0;
  }
  .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap,
  .cfAdvantagesSec .cfAdvMainWrap .cloudflareImgWrap {
    flex: 1;
  }
  /*Safe Updates Page Styling*/
  .safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
    flex: 0 0 50%;
  }
  .safeUpdateTestiSec .safeUpdateTestiHeadWrap h2 {
    font-size: 28px;
  }
  .safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard {
    max-width: 45%;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap {
    flex-direction: column;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap {
    max-width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .safeUpdatesRevamp23 .CloudFlareBannerSec .cloudFlareBnrCTA {
    text-align: center;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap {
    flex-direction: column;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap {
    padding: 15px 0;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem .suBnrStripItemLeft {
    margin: 0 0 15px;
  }
  .safeUpdatesRevamp23 .suBnrSec {
    padding-top: 100px;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap h1 {
    font-size: 36px;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrLeftWrap p, .suWorkflowSec .suWorkflowHeader p {
    font-size: 16px;
  }
  .suWorkflowSec .suWorkflowHeader h2 {
    font-size: 28px;
  }
  .suWorkflowSec, .safeUpdatesRevamp23 .faqSec#glb-nfaq-wrap {
    padding: 60px 0;
  }
  .cw-hdr-wrap_new_white_bg .cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after,
  .cd-morph-dropdown .nav-trigger span::before {
    background: #fff !important;
  }
  .cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap {
    background-position: center bottom;
    align-items: center;
  }
  .cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem {
    flex-direction: initial;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    width: 85%;
  }
  .cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec .suBnrStripWrap .suBnrStripItem .suBnrStripItemLeft {
    margin: 0 15px 0 0;
  }
  .cloudFlarerRevamp23 .cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap h2 {
    font-size: 28px;
  }
  .cloudFlarerRevamp23 .cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap p {
    font-size: 16px;
  }
  .cloudFlarerRevamp23 .cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap p br {
    display: none;
  }
  .cloudFlarerRevamp23 .glb-nfaq-ttl h2, .cloudFlarerRevamp23 .glb-nfaq-ttl h3 {
    font-size: 28px;
  }
  .cloudFlarerRevamp23 .glb-nfaq-wrap-new .glb-nfaq-ttl p {
    font-size: 16px;
  }
  .cloudFlarerRevamp23 #glb-nfaq-wrap.glb-nfaq-wrap-new .wt-faq-que .btn {
    font-size: 18px;
  }
  .cloudFlarerRevamp23 .CloudFlareBannerSec {
    margin: 0;
  }
  .cloudFlarerRevamp23 .testomonialSldrWrap .testomonialSldrTltBox {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li a {
    font-size: 14px;
  }
  .cfAdvantagesSec .cfAdvMainWrap {
    flex-direction: column-reverse;
    text-align: center;
  }
  .cfAdvantagesSec .cfAdvMainWrap.inverse {
    flex-direction: column-reverse;
  }
  .cfAdvantagesSec .cfAdvMainWrap.inverse .cfContentWrap {
    padding: 0;
  }
  .cfAdvantagesSec .cfAdvMainWrap .cfContentWrap {
    margin-top: 40px;
    padding: 0;
    max-width: 100%;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap {
    flex-direction: column;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap {
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
    width: calc(50% - 15px);
    margin: 0 0 15px;
    flex-direction: column;
    padding: 15px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains {
    justify-content: center;
    padding: 0;
    flex-direction: column;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains img {
    margin: 0;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains p {
    margin-top: 10px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .domainPricing {
    text-align: center;
    margin-top: 10px;
  }
  .cloudflarePricingSection .cloudflarePricingHeadWrap {
    margin-bottom: 40px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap {
    margin-top: 15px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap h3 {
    text-align: center;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
    margin: 0;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
    width: calc(50% - 10px);
    font-size: 16px;
    margin: 0 0 10px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap p {
    font-size: 14px;
    margin-top: 20px;
  }
  .cloudflarePricingSection .cloudflarePricingCTA {
    margin-top: 40px;
  }
  .safeUpdateTestiSec .safeUpdateTestiContentWrap .safeUpdatesTestiCardsWrap .safeUpdateTestiCard {
    max-width: 100%;
    margin-right: 0;
  }
  .safeUpdates .testomonialOwlSldrWrap .owl-carousel::before {
    right: -130px;
  }
  .safeUpdates .testomonialOwlSldrWrap .owl-carousel::after {
    left: -130px;
  }
  .suWorkflowSec .suWorkflowBody .suWorkflowCardsMainWrap .suWorkflowCard {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .cloudFlarerRevamp23 .safeUpdatesRevamp23 .suBnrSec {
    padding: 140px 15px 0;
  }
  .cloudFlarerRevamp23 .cloudflareVideoSec .CROtesting .cwPlatformSection .cwPlatSecHeadWrap h2 br {
    display: none;
  }
  .cloudFlarerRevamp23 .CROtesting .cwPlatformSection .cwPlatMainWrap .cwPlatRightWrap .lnd-aft-bnr-vdo-box .embed-responsive {
    min-height: auto;
  }
}
@media (max-width: 550px) {
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul {
    flex-wrap: wrap;
    border: none;
    align-items: center;
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li {
    width: 50%;
    margin: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li::before {
    display: none;
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li:nth-child(2n) {
    border: 0;
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li:nth-child(n+3) {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .CFvideoDemosSec .tabsMainWrap .tabsNavWrap ul li.active a {
    font-weight: 800;
  }
  .CloudFlareBannerSec .cloudFlareBnrCTA .btn {
    width: 100%;
  }
  .CloudFlareBannerSec .cloudFlareBnrCTA .cw-glb-btn {
    margin: 0 0 15px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
    width: 100%;
    flex-direction: row;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains {
    flex-direction: row;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains p {
    margin: 0 0 0 8px;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap {
    margin: 0;
    width: 100%;
    max-width: none;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .cloudflarePricingSection .cloudflarePricingMainWrap .planBenefitsWrap ul li {
    width: 100%;
    font-size: 14px;
  }
  .safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard:first-child, .safeUpdates .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard {
    width: 100%;
  }
  .safeUpdatesRevamp23 .lnd-agncy-ftr-box {
    min-height: unset;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap {
    width: 350px;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap::before {
    display: none;
  }
  .safeUpdatesRevamp23 .suBnrSec .suBnrMainWrap .suBnrRightWrap .CFvideoDemosSec .tabsContentWrap {
    border: 0;
  }
  .cloudFlarerRevamp23 .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .numberOfDomains p {
    max-width: 114px;
    font-size: 19px;
  }
  .cloudFlarerRevamp23 .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard .domainPricing p {
    font-size: 14px !important;
  }
  .cloudFlarerRevamp23 .cloudflarePricingSection .cloudflarePricingMainWrap .pricingCardsWrap .pricingCard:nth-child(2) .numberOfDomains p {
    max-width: 90px;
  }
}/*# sourceMappingURL=page_cloudflare.css.map */