/* ========================================================================================================================================
                                                               Start Font Conenctivty
===========================================================================================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-800 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */
       url('../fonts/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* ========================================================================================================================================
                                                               End Font Conenctivty
===========================================================================================================================================*/

/* =======================================================================================================================================
                                                            Default Css
==========================================================================================================================================*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif !important;
}
:root{
  --themeColor: #01acff;
  --blackColor: #121b20;
  --nblueColor: #142149;
  --txt: #5C5C5C;
  --whiteColor: #fff;
}
.container{
  width: 1368px;
  margin: 0 auto;
  padding: 0 30px;
}
h1,h2,h3,h4,h5,h6,p{
  margin: 0;
  padding: 0;
}
p{
  font-size: 14px;
}
ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
}
.p_relative{
  position: relative;
}
.d-flex{
  display: flex;
}
.align-items-center{
  align-items: center;
}
.justify-content-end{
  justify-content: end;
}
.justify-content-center{
  justify-content: center;
}
.justify-content-between{
  justify-content: space-between;
}
.justify-content-evenly{
    justify-content: space-evenly;
}
.flex_warp{
  flex-wrap: wrap;
}
.spacerY{
  padding: 90px 0;
}
.spacerB{
  padding-bottom: 90px;
}
.spacerT{
  padding-top: 90px;
}
.fw-600{
  font-weight: 600 !important;
}
.fs-13{
  font-size: 13px !important;
}
.fs-14{
  font-size: 14px !important;
}
.fs-17{
  font-size: 17px !important;
}
.mt-40{
  margin-top: 40px;
}
.ps-8{
  padding-left: 8px;
}
.mt-0{
  margin-top: 0;
}
.white{
  color: var(--whiteColor) !important;
}
.black{
  color: var(--blackColor) !important;
}
.txt{
  color: var(--txt) !important;
}
.blue{
  color: var(--themeColor) !important;
}
.btn_light a{
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--blackColor);
  border-radius: 7px;
  font-size: 14px;
  color: var(--blackColor);
}
.btn_light_banner a:hover{
  background-color: var(--themeColor);
  border: 1px solid transparent;
}
.btn_theme a{
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--themeColor);
  color: var(--whiteColor);
  border-radius: 7px;
  font-size: 16px;
  transition: .3s;
}
.btn_theme a:hover{
  background-color: var(--nblueColor);
}
.main_banner_section .btn_theme a:hover{
  background-color: #01175f;
   color: #ffffff;
}
.btn_theme_1{
  padding-left: 10px;
}
.btn_theme_1 a{
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
  border-radius: 7px;
  font-size: 16px;
  transition: .3s;
}
.btn_theme_1 a:hover{
  background-color: var(--themeColor);
  border: 1px solid transparent;
}
.btn_advantages a{
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--blackColor);
  border-radius: 5px;
  color: var(--blackColor);
  transition: .2s;
}
.btn_advantages a:hover{
  background-color: var(--themeColor);
  border: 1px solid transparent;
  color: var(--whiteColor);
}
.main_banner_button li a{
  display: inline-block;
  font-size: 16px;
  color: var(--whiteColor);
  font-weight: normal;
  border-radius: 6px;
  padding: 12px 20px;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  transition: .1s;
  cursor: pointer;
}
.main_banner_button li a:hover{
  background-color: var(--themeColor);
  border: 1px solid transparent;
}
.btn_price a{
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--nblueColor);
  color: var(--whiteColor);
  font-weight: normal;
  border-radius: 5px;
  transition: .2s;
  text-align: center;
}
.btn_price a:hover{
  background-color: var(--themeColor);
}
.btn_price_1 a{
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--themeColor);
  color: var(--whiteColor);
  font-weight: normal;
  border-radius: 5px;
  transition: .3s;
  text-align: center;
}
.btn_price_1 a:hover{
  background-color: #fff;
  color: #142149;
}
.list_table_content .btn_price_1 a:hover
{
	background-color:#000836;
	color:#fff;
}
.business_challenge_title{
  margin-bottom: 20px;
}
.business_challenge_title h6{
  font-size: 17px;
  font-weight: 500;
  color: var(--blackColor);
}
.business_challenge_title h2{
  font-size: 45px;
  font-weight: 700;
  color: var(--themeColor);
}
.business_challenge_title p{
  color: var(--blackColor);
  margin: 12px 0;
}

/* ========================================================================================================================================
                                                               Start Header Css
===========================================================================================================================================*/

.main_header_section{
  position: relative;
  background-color: var(--whiteColor);
}
.logo_side{
  width: 35%;
}
.menu_side{
  width: 45%;
}
.btn_side{
  width: 20%;
}
.main_menu li a{
  display: block;
  padding: 30px 12px;
  color: var(--blackColor);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.main_menu li a::after{
  content: '';
  height: 5px;
  width: 100%;
  background-color: var(--themeColor);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.main_menu li a::before{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--themeColor);
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
}
.main_menu li:hover a{
  color: var(--themeColor);
}
.main_menu li:hover a::before, .main_menu li:hover a::after{
  opacity: 1;
}
.mob_main_menu{
  width: calc(100% - 30px);
  margin: 0 15px;
  background-color: var(--whiteColor);
  box-shadow: 0 10px 13px 0 rgba(0,0,0,.15);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
}
.mob_main_menu li a{
  display: block;
  padding: 10px 20px;
  color: var(--blackColor);
}
.btn_side .btn_theme{
  padding-left: 10px;
}
.toggle{
  font-size: 28px;
}
.main_header_section .btn_theme a{
  padding: 10px 20px !important;
}

/* ========================================================================================================================================
                                                               End Header Css
===========================================================================================================================================*/

/* ========================================================================================================================================
                                                               Start Footer Css
===========================================================================================================================================*/

.main_footer_section{
  background-color: var(--nblueColor);
}
.border_bottom{
  width: 50px;
  height: 3px;
  background-color: var(--themeColor);
  margin-top: 7px;
  margin-bottom: 10px;
}
.footer_menu li a{
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--whiteColor);
  transition: .3s;
}
.footer_menu li a:hover{
  color: var(--themeColor);
}
.btn_monthly a{
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--themeColor);
  color: var(--themeColor);
  font-weight: 500;
  border-radius: 5px;
  transition: .2s;
  cursor: pointer;
}
.btn_monthly a:hover{
  background-color: var(--themeColor);
  color: var(--whiteColor);
  border: 1px solid transparent;
}
.main_footer_section{
  padding-bottom: 15px;
}
.single_footer_section{
  width: calc(18% - 30px);
  margin: 15px;
}.footer_menu li a{
  padding-left: 0 !important;
}
.list_sec_footer:last-child{
  margin-top: 25px !important;
}
.single_footer_section:last-child{
  width: calc(28% - 30px);
  margin: 15px;
}
.list_contact i{
  padding-top: 3px;
  padding-right: 10px;
}
.mt-10{
  margin-top: 5px
}
.contact_footer_contact p{
  margin-top: 5px;
}
.contact_footer_contact p:first-child{
  margin-top: 0 !important;
}
.footer_logo_section{
  margin-top: 100px;
}
.brand{
  width: calc(33.33% - 30px);
  margin: 15px;
}
.brand p{
  padding-right: 10px;
}
.footer_logo_section .btn_price_1{
  padding-right: 12px;
}
.footer_logo_section .btn_price_1 a{
  padding: 10px 25px !important;
}
.footer_copy_right{
  padding: 5px 0;
  background-color: #000410;
}
.copy_right{
  width: calc(50% - 30px);
  margin: 15px;
}
.copy_right .footer_menu li a{
  padding: 10px !important;
}
.list_sec_footer h3
{
  font-weight: 500;
}
/* ========================================================================================================================================
                                                               End Footer Css
===========================================================================================================================================*/

/*=========power of datacenter section===========*/

#tabs .tab {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index:5;
    }

    #tabs .tabContent {
        position: relative;
        top: -1px;
        z-index:1;
        border-radius: 0 0 3px 3px;
    }
	.datac_powe_in h4 {
		margin-bottom: 10px;
		font-size: 22px;
		font-weight: 600;
	}

	.datac_powe_in p {
		font-size: 16px;
		color: #939292;
	}
    .datac_powe_tabs {
        display: flex;
		flex-wrap:wrap;
    }

	.network_tabs .datac_powe_in {
		width:calc(33.3% - 20px);
		 padding:20px;
		box-shadow:0 1px 12px rgb(0 0 0 / 16%);
		margin:10px;
		background:#fff;
		border-radius:6px;
		min-height: 230px;
		position: relative;
		z-index: 9;
		overflow: hidden;
	}


	body .Datacenter_Power 
	.tab.whiteborder {
		background: #01acff !important;
		color: #fff !important;
		border-bottom: 2px solid #000 !important;
	}
.datac_powe_in:hover {
    background: #142149;
    color: #fff;
}
.datac_powe_in:hover p{
    color: #fff;
}

.Datacenter_Power 
 .business_challenge_title {
    text-align: center;

}
.Datacenter_Power {
    background: url(../image/data-center-shape.png);
    background-repeat: no-repeat;
	background-size: contain;
	position:relative;
}
.Datacenter_Power:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 3%;
    background: url('../image/Rectangle8.png');
    height:100%;
    width:100%;
    background-repeat:no-repeat;
    background-position:right bottom;
    animation:top-to-bottom 5s linear infinite alternate;
}
@keyframes top-to-bottom{
    0% {
    transform: translateY(25px);
}

50% {
    transform: translateY(0%);
}
100% {
    transform: translateY(25px);
}
}
.datac_powe_in:after {
    content: '';
    height: 70px;
    width: 70px;
    right: -30px;
    bottom: -30px;
    background: #63b6e869;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
/*==========location-css==========*/

.serverwala-location {
    padding: 80px 0;
    background-color: #F5F7FB;
    position: relative;
}
.sl-map-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.main-sl {
    position: relative;
}
/*.main-sl:before {
    content: 'LOCATION';
    position: absolute;
    top: -70px;
    left: 0;
    font-size: 140px;
    color: #aab8e1;
    font-weight:700;
    z-index: 0;
    opacity: 0.1;
}*/
.new-dc-content {
    color: #00C0F7;
    font-size: 16px;
    /*font-family: 'Poppins-Regular';*/
    display: flex;
    align-items: center;
}
.new-dc-content-line {
    width: 50px;
    height: 2px;
    display: block;
    background-color: #00C0F7;
    margin-right: 8px;
}
.new-dc-title {
    color: #202020;
    /*font-family: 'Poppins-Bold';*/
    font-size: 48px;
    margin-bottom: 50px;
}
.sl-content {
    color: #202020;
    font-size: 16px;
    /*font-family: 'Poppins-Regular';*/
    margin: 20px 0;
    width: 50%;
}
.sl-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.sl-filter-left {
    display: flex;
    align-items: center;
}
.filter-title {
    font-size: 18px;
    color: #202020;
   font-weight: 500;
    margin-right: 10px;
}
.select {
    position: relative;
    display: flex;
    width: 250px;
    height: 3em;
    line-height: 3;
    background: #fff;
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.09);
    overflow: hidden;
    border-radius: .25em;
}
.new-location-list-box:nth-child(4) {
    border-right: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0!important;
    background: #fff;
    background-image: none;
    flex: 1;
    padding: 0 15px;
    color: #202020;
    cursor: pointer;
    font-size: 14px;
}
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #fff;
    color: #202020;
    cursor: pointer;
    pointer-events: none;
    transition: .25s all ease;
}
.sl-filter-right {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.filter-title {
    font-size: 18px;
    color: #202020;
    /*font-family: 'Poppins-Medium';*/
    margin-right: 10px;
}
.location-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    height: 350px;
    overflow: auto;
}
.new-location-list-box {
    border-right: 1px solid #ddd;
    width: calc(25% - 20px);
    margin-right: 20px;
}
.new-location-name {
    margin-top: 30px;
}
.location-head {
    color: #142149;
    font-size: 20px;
    /*font-family: 'Poppins-SemiBold';*/
    margin-bottom: 10px;
	font-weight: 600;
    text-decoration: underline;
}
.ll-list {
    color: #142149;
    font-size: 16px;
    /*font-family: 'Poppins-Regular';*/
    margin-bottom: 15px;
    display: block;
}
.sl-filter .sl-filter-left .select.co-select {
    display: none;
}
.location-list::-webkit-scrollbar {
    background-color: #142148;
    width: 8px;
    border: 2px solid #F5F7FB;
}
.location-list::-webkit-scrollbar-thumb {
    background-color: #00C0F7;
    width: 5px;
    border-radius: 20px;
}
.main_banner_section  .content_main_banner {
    width: 50%;
}

.main_banner_section .content_main_banner img {
    width: 100%;
}
.main_banner_section  .content_main_banner > p{
    width: 90%;
	color:#000 !important;
}
.single_business_challenge_box:hover {
    transform: translateY(-8px);
}
.datac_powe_in:hover {
    transform: translateY(-10px) !important;
}

.busi_chalng:before {
    position: absolute;
    right: 3%;
    bottom: 5%;
    width: 100%;
    height: 100%;
    background: url(../image/rect_shape1.png);
    content: '';
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: rotate 4s ease-in infinite alternate;
    z-index: -1;
    background-position: bottom right;
}
#support:after{
	position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: url(../image/case_study_left_bg_shape2.png);
    content: '';
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
}
.main_case_study_section{
background:#F5F7FB;	
}
#support{
position:relative;	
}
#support:before {
    position: absolute;
    left: 3%;
    bottom: 8%;
    width: 100%;
    height: 100%;
    background: url('../image/rect_shape1.png');
    content: '';
	background-repeat: no-repeat;
    opacity: 0.3;
	animation:rotate 4s ease-in infinite alternate;
	background-position: left bottom;
	z-index:-1;
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-3deg); }
}
.main_services_section  {
    background: url(../image/bus_ch_shape1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-position: right;
}
.main_services_section:after {  
    content: '';
    position: absolute;
    left: 3%;
    bottom: 3%;
    background: url(../image/Rectangle8.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    animation: top-to-bottom 5s linear infinite alternate;
	z-index:-1;
}
.main_case_study_section {
	position:relative;
}
.busi_chalng {
    background: url(../image/data-center-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
	background-position: left;
}
	  
.mob_main_menu {
    width: calc(100% - 30px);
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 10px 13px 0 rgb(0 0 0 / 15%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
}	  
.toggle {
    display: none;
}
.business_challenge_title p {
    width: 70%;
}


/*media - start*/


@media (max-width:575px){
	.logo_side img {
    width: 100%;
}
   .container{
		max-width:373px !important;
	       padding: 0 15px;
	}
    .logo_side {
    width: 80%;
}
    .menu_side {
    width: 4%;
}
    .main_menu {
    display: none !important;
}
    .btn_side {
    width: 16%;
}
    .btn_side .btn_light, .btn_side .btn_theme {
    display: none !important;
}
	.single_footer_section {
    width: calc(100% - 20px) !important;
}

.main_footer_section  .d-flex.flex_warp.spacerB {
    flex-wrap: wrap;
}
	.mob_main_menu a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
}
.toggle {
    display: block !important;
}
.mob_main_menu {
    margin: 0px 15px !important;
}
	.copy_right_section .d-flex.align-items-center.flex_warp {
    flex-wrap: wrap;
    text-align: center;
}

.copy_right_section .copy {
    width: 100%;
}
.content_main_banner p.white {
    width: 100%;
}
.copy_right_section .footer_social_icon {
    width: 100%;
}
.business_challenge_title p {
    width: 100%;
}
.copy_right_section .payment {
    width: 100%;
    justify-content: center !important;
}
	.main_header_section {
    padding: 10px 0px;
}

	.main_banner_section .content_main_banner {
    width: 100%;
}

	.main_banner_section .content_main_banner > p {
    width: 100% !important;

}
	.sl-filter-left {
    flex-direction: column;
	width:100%;
}
	.sl-map-img {
    position: absolute;
    width: 100%;
}
	.sl-content{
	width:100%;
	}
	.sl-filter{
	flex-wrap:wrap;
	flex-direction: column;
	}
	.filter-title{
	font-size:15px;
	margin-bottom:14px;
}
	.select{
		width: 100%;
}
	.sl-filter-right{
	margin-top:20px;
	margin-left:0;
	flex-direction: column;
	width:100%;
}
	.new-location-list-box {
    width: 100%;
    border-right: 0;
}
	.network_tabs .datac_powe_in {
    width: 100%;
}
	.main_services_section:after {
    left: 0%;
    background-position: right bottom;
}
	#support:before {
    display:none;
}
	.busi_chalng:before {
    display:none;
}
	.main_services_section{
	background-position:top;
}
	
}
.fs_16{
	font-size:16px !important;
}
.single_business_challenge_box p {
    min-height: 200px;
}
.single_business_challenge_box:hover img{
    filter:brightness(0) invert(1);
}

