/* ================================= */
/* ----------- General CSS --------- */
/* ================================= */
/*font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&display=swap');
body,html{
    font-family: 'Roboto', sans-serif;
    font-size:16px;
    margin:0;
	color:#001e35;
}
h1,
h2,
h3,
h4,
h5,
h6,
p{
    margin:0;
}
a,
button, span {
	-webkit-transition: ease all 0.5s;
	-o-transition: ease all 0.5s;
	-moz-transition: ease all 0.5s;
	transition: ease all 0.5s;
}
a,a:hover, a:focus,
button, button:focus {
	text-decoration:none;
	outline: none;
	color: inherit;
	background: transparent;
}
.container{
    max-width:1170px;
}
ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* ================================= */
/* ----------- Commen CSS ---------- */
/* ================================= */
/* ------ Button CSS ----- */
.btn-web{
	background: rgb(35,140,204);
	background: -moz-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: -webkit-linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: linear-gradient(122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#238ccc",endColorstr="#1e2552",GradientType=1);
	position: relative;
	display: inline-block;
	font-weight:600;
	color:#fff;
	font-size:18px;
	text-align: center;
	border:none;
	padding:14px 3rem;
    transition: 0.5s;
	border-radius:5px;
}
.btn-web:hover,
.btn-web:focus{
	color:#fff;
	background: rgb(35,140,204);
	background: -moz-linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: -webkit-linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	background: linear-gradient(-122deg, rgba(35,140,204,1) 0%, rgba(30,37,82,1) 74%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#238ccc",endColorstr="#1e2552",GradientType=1);
}

/* ------ Heading CSS ----- */
.default-heading{
	margin-bottom:50px;
}
.default-heading h2 {
	font-size: 40px;
	font-weight: bolder;
	color: #151b49;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	line-height: 45px;
}
.default-heading h3{
	font-family: 'Alex Brush', cursive;
	display: block;
	color:#238ccc;
	font-size:24px;
	font-weight: 900;
}

.sm-heading{
    font-size: 1.75rem;
    line-height: 2.8rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ================================= */
/* ------------ Header ------------- */
/* ================================= */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	padding-top:20px;
}
#header .navbar {
	padding: 0;
}
.custom-col-nav{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 86%;
	flex: 0 0 86%;
	max-width: 86%;
	width: 100%;
	padding-left:50px;
}
.custom-col-logo{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14%;
	flex: 0 0 14%;
	max-width: 14%;
	width: 100%;
}
.custom-col-logo a{
	display: block;
}
.custom-col-logo a img{
	max-width:100%;
}
.header-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: 'Oswald', sans-serif;
	color: #fff;
	font-size: 18px;
	margin: 0 0 40px 0;
}
.header-info-left p {
	display: inline-block;
	letter-spacing: 1.5px;
	margin: 0 30px 0 0;
}
.header-info-left p i{
	margin-right:5px;
}
.header-info-right{
	text-align: right;
}
.social-icon li {
	display: inline-block;
	margin: 0 0 0 20px;
}
.social-icon li a{
	display:block;
	font-size:18px;
	color:#fff;
}
.social-icon li a:hover,
.social-icon li a:focus{
	color: #238ccc;
}

/** Nav Bar **/
.navbar-brand {
	display: none;
}
#header .navbar ul {
	justify-content: space-between;
	width: 100%;
}
#header .navbar .nav-link{
	color:#fff;
	font-size:18px;
	font-weight:500;
	padding:0 2px;
	position: relative;
}
#header .navbar .nav-link::after{
	height:2px;
	width:0;
	margin:0 auto;
	content:"";
	position:absolute;
	background:#238ccc;
	bottom:-5px;
	left:0;
	right:0;
	-webkit-transition: ease all 0.5s;
	-o-transition: ease all 0.5s;
	-moz-transition: ease all 0.5s;
	transition: ease all 0.5s;
}
#header .navbar .active.nav-link::after,
#header .navbar .nav-link:hover::after,
#header .navbar .nav-link:focus::after{
	width:100%;
}

/* ================================= */
/* ------------- Banner ------------ */
/* ================================= */
.banner{
	background-color: #001e35;
	background-position: bottom left;
	background-repeat: no-repeat;
	padding: 12rem 0 9rem;
    /*background-image: url("../images/green_flame_light.webp");*/
}
.c-hero__content {
    margin: 0 auto;
    max-width: 65%;
    text-align: center;
}
.c-hero__content h1 {
    font-size: 40px;
    line-height: 50px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-style: normal;
	font-display: swap;
	font-weight: 700;
	color: #fff;
}
.c-hero__content p {
    font-size: 1.375rem;
    line-height: 2rem;
	font-family: 'Roboto', Arial, sans-serif;
	font-style: normal;
	font-display: swap;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.03125rem;
}

/* ================================= */
/* ------------ Pricing ------------ */
/* ================================= */
.pricing-section .c-hero__cards {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 10%;
    padding-bottom: 32px;
    position: relative;
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
}
.pricing-section .c-hero__card {
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(155, 155, 155, 0.2);
    box-shadow: 0 3px 6px 0 rgba(155, 155, 155, 0.2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 90px 22px 25px 22px;
    position: relative;
    text-align: center;
    width: calc(50% - 10px);
}
.pricing-section .c-hero__card:nth-child(2) {
    margin-left: 20px;
}
.pricing-section .c-hero__card_icon {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60px;
    border: solid 1px #eaeaea;
    border-radius: 50%;
    height: 141px;
    left: calc(50% - 70px);
    position: absolute;
    top: -70px;
    width: 141px;
}
.pricing-section .c-hero__card_title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-display: swap;
    font-weight: bold;
    font-size: 28px;
    line-height: 34px;
	margin-bottom:15px;
}
.pricing-section .c-hero__card_subtitle {
    -ms-flex-align: center;
    align-items: center;
    color: #3d3d3d;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1;
    flex: 1 1;
    font-size: 24px;
    font-weight: 500;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 32px;
    margin-bottom: 38px;
    max-width: 322px;
    min-height: 120px;
    position: relative;
}
.pricing-section .c-hero__card_subtitle h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-display: swap;
    font-weight: bold;
    color: #00b536;
    font-size: 53px;
    line-height: 64px;
    margin-bottom: 15px;
}
.pricing-section .c-hero__card_subtitle::after {
    background-color: #00b536;
    bottom: 0;
    content: '';
    display: block;
    height: 2px;
    left: calc(50% - 35px);
    position: absolute;
    width: 70px;
}
.pricing-section .c-hero__card_desc {
    -ms-flex: 1 1;
    flex: 1 1;
    max-width: 322px;
}
.pricing-section p {
    font-family: 'Roboto', Arial, sans-serif;
    font-style: normal;
    font-display: swap;
    font-weight: 400;
	margin-bottom:15px;
}
.pricing-section .c-hero__card_copy {
    color: #7c7c7c;
    font-size: 18px;
}
.pricing-section .c-hero__card_subtitle h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-display: swap;
    font-weight: bold;
    color: #00b536;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 15px;
	text-transform: capitalize;
}
.pricing-section a.c-cta{
    background-color: #054A91;
    border: 1px solid #fff;
    color: #fff;
    letter-spacing: 0.046875rem;
    padding: 0.875rem 1.25rem;
    text-shadow: 0 1px 2px rgba(5, 74, 145, 0.25);
    text-transform: capitalize;
	display: block;
	width:100%;
}
.pricing-section a.c-cta:focus,
.pricing-section a.c-cta:hover{
    background-color: #0064e9;
    border: 1px solid #fff;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* ================================= */
/* ---------- API Section ---------- */
/* ================================= */
.api-section {
    padding: 5rem 0;
}
.api-section-content p {
	font-family: Roboto,sans-serif;
	font-size: 1.3rem;
	line-height: 2;
	font-weight: 200;
	color: #898989;
	margin: 5px 0 0 0;
}
.api-icon{
	max-width:130px;
	margin:0 auto 30px auto;
}
.api-icon-text{
	font-size: 1.1rem;
	font-weight: 200;
	color: #898989;
}
.compare-box a{
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: Montserrat,sans-serif;
	font-size:16px;
	font-weight: 700;
	line-height: 1.29;
	color: #061f32;
	letter-spacing: -.006rem;
}
.compare-box a i{
	padding-left: .8rem;
	-webkit-transition: all .3s ease;
	-o-transition: .3s ease all;
	transition: all .3s ease;
	color: #00b536;
	font-size:2rem;
}
.compare-box a:hover i{
	-webkit-transform: translateX(.4rem);
	-ms-transform: translateX(.4rem);
	transform: translateX(.4rem);
}
.compare-box span{
	font-size: 1.6rem;
	line-height: 1.45;
	letter-spacing: .025rem;
	color: #111;
}
.compare-box p{
	margin-top:15px;
	line-height:28px;
	font-size:18px;
	color: #111;
}

/**
** Range Sliders **
**/
.range-sliders input[type=range] {
	width: 100%;
	background: linear-gradient(to right, #061f32 0%, #061f32 50%, #fff 50%, #fff 100%);
	border-radius:40px;
	height: 20px;
	outline: none;
	-webkit-appearance: none;
}
.range-sliders input[type=range]:focus {
	outline: none;
}
.range-sliders input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height:20px;
	cursor: pointer;
	box-shadow: none;
	background-color: #e6e6e6;
	border-radius:40px;
}
.range-sliders input[type=range]::-moz-range-track {
	width: 100%;
	height:20px;
	cursor: pointer;
	box-shadow: none;
	background-color: #ccc;
	border-radius:40px;
}
.range-sliders input[type=range]::-webkit-slider-thumb {
	box-shadow: none;
	height: 3rem;
	width: 3rem;
	border-color: transparent;
	border-radius:50%;
	background-color: #999;
	cursor: ew-resize;
	-webkit-appearance: none;
	margin-top: -15px;
}
.range-sliders input[type=range]::-moz-range-thumb {
	box-shadow: none;
	height: 3rem;
	width: 3rem;
	border-color: transparent;
	border-radius:50%;
	background-color: #999;
	cursor: ew-resize;
	-webkit-appearance: none;
	margin-top: -15px;
}
.range-sliders input[type=range]::-moz-focus-outer {
	border: 0;
}
.range-sliders input[type=range].range-slider-red {
	background:#efefef;
}
.range-sliders input[type=range].range-slider-red::-webkit-slider-runnable-track {
	background-color: rgba(0, 0, 0, 0.1);
}
.range-sliders input[type=range].range-slider-red::-moz-range-track {
	background-color: rgba(0, 0, 0, 0.1);
}
.range-sliders input[type=range].range-slider-red::-webkit-slider-thumb {
	background-color: #061f32;
}
.range-sliders input[type=range].range-slider-red::-moz-range-thumb {
	background-color: #061f32;
}
.range-sliders input[type=range].range-slider-green {
	background: linear-gradient(to right, #090 0%, #090 50%, #fff 50%, #fff 100%);
}
.range-sliders input[type=range].range-slider-green::-webkit-slider-runnable-track {
	background-color: rgba(0, 0, 0, 0.1);
}
.range-sliders input[type=range].range-slider-green::-moz-range-track {
	background-color: rgba(0, 0, 0, 0.1);
}
.range-sliders input[type=range].range-slider-green::-webkit-slider-thumb {
	background-color: #090;
}
.range-sliders input[type=range].range-slider-green::-moz-range-thumb {
	background-color: #090;
}
.range-sliders input[type=range].range-slider-blue {
	background: linear-gradient(to right, #00f 0%, #00f 50%, #fff 50%, #fff 100%);
}
.range-sliders input[type=range].range-slider-blue::-webkit-slider-runnable-track {
	background-color: rgba(0, 0, 255, 0.1);
}
.range-sliders input[type=range].range-slider-blue::-moz-range-track {
	background-color: rgba(0, 0, 255, 0.1);
}
.range-sliders input[type=range].range-slider-blue::-webkit-slider-thumb {
	background-color: #00f;
}
.range-sliders input[type=range].range-slider-blue::-moz-range-thumb {
	background-color: #00f;
}
.range-sliders .input-slider {
	border: 1px solid #e6e6e6;
	padding: 0.5rem;
	-moz-appearance: textfield;
}
.range-sliders .input-slider::-webkit-outer-spin-button,
.range-sliders .input-slider::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.range-slider-group {
	margin: 30px 0 40px 0;
}
.range-sliders-wrapp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.range-sliders-wrapp input.range-slider{
	width:calc(100% - 100px);
}
.range-sliders-wrapp input.input-slider {
	width: 100px;
	position: relative;
	padding: 1.2rem 2.6rem 1.2rem 1rem;
	margin-left: 2rem;
	background: #f8f8f8;
	border: 1px solid #e3e3e3;
	border-radius: 0;
}
.range-sliders .range-slider-group .range-label {
	width: 100%;
	font-size: 1.1rem;
	color: #898989;
	font-weight: 300;
}
.range-sliders-wrapp p {
	position: absolute;
	right: 14px;
	top: 10px;
	font-size: 18px;
}
.range-sliders-footer {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 132px);
}

/** **/
.c-pricing-graph__header {
	text-align:center ;
	padding: 1rem;
	background: #061f32;
}
.c-pricing-graph__img {
	max-width: 7rem;
}
.c-pricing-graph__results{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2rem 1.6rem;
}
.c-pricing-graph__results .c-heading--l3 {
	font-size: 32px;
	line-height: 1.5;
	color: #36b32f;
	font-weight: 900;
}
.c-pricing-graph__results .c-heading--l5{
	font-weight:300;
}
.c-pricing-graph {
	display: -ms-flexbox;
	display: flex;
	border-radius: .3rem;
	-ms-flex-align: end;
	align-items: flex-end;
	height: 25rem;
	padding-bottom: 5rem;
	background-image: url(../images/graph-bg.webp);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
}
.u-sr-only {
	position: absolute;
	width: .1rem;
	height: .1rem;
	padding: 0;
	margin: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
}
.c-pricing-graph__bar {
	position: relative;
	z-index: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 25%;
	height: 100%;
	text-align: center;
}
.c-pricing-graph__tooltip {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 5px 1rem;
	margin-bottom: 1rem;
	font-family: Montserrat,sans-serif;
	font-size: 14px;
	color: #fff;
	background: #111;
	border-radius: .3rem;
}
.c-pricing-graph__tooltip::after {
	position: absolute;
	bottom: -.5rem;
	left: calc(50% - .5rem);
	width: 1rem;
	height: 1rem;
	content: "";
	background: #111;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.c-pricing-graph__fill {
	position: relative;
	z-index: 3;
	width: calc(100% - 2rem);
	margin: 0 1.5rem;
	border-radius: .3rem;
	-webkit-box-shadow: -.6rem .7rem 0 0 rgba(0,0,0,.1);
	box-shadow: -.6rem .7rem 0 0 rgba(0,0,0,.1);
}
.c-pricing-graph__fill--wasabi {
	background: -webkit-gradient(linear,left top,left bottom,from(#15e8ba),to(#00ce3e));
	background: -webkit-linear-gradient(top,#15e8ba,#00ce3e);
	background: -o-linear-gradient(top,#15e8ba 0,#00ce3e 100%);
	background: linear-gradient(180deg,#15e8ba,#00ce3e);
}
.c-pricing-graph__fill--aws {
	background: -webkit-gradient(linear,left top,left bottom,from(#ffc900),to(#f90));
	background: -webkit-linear-gradient(top,#ffc900,#f90);
	background: -o-linear-gradient(top,#ffc900 0,#f90 100%);
	background: linear-gradient(180deg,#ffc900,#f90);
}
.c-pricing-graph__fill--azure {
	background: -webkit-gradient(linear,left top,left bottom,from(#60cdf5),to(#035bda));
	background: -webkit-linear-gradient(top,#60cdf5,#035bda);
	background: -o-linear-gradient(top,#60cdf5 0,#035bda 100%);
	background: linear-gradient(180deg,#60cdf5,#035bda);
}
.c-pricing-graph__fill--google {
	background: -webkit-gradient(linear,left bottom,left top,from(#dc452e),to(#f37a1a));
	background: -webkit-linear-gradient(bottom,#dc452e,#f37a1a);
	background: -o-linear-gradient(bottom,#dc452e 0,#f37a1a 100%);
	background: linear-gradient(0deg,#dc452e,#f37a1a);
}
.c-pricing-graph__logos {
	position: relative;
	z-index: 5;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	align-items: flex-end;
	padding:1rem 0;
	margin: -5rem 1rem 0;
	background: #fff;
	border-radius: .3rem;
	-webkit-box-shadow: 0 .5rem 1rem 0 rgba(0,0,0,.1);
	box-shadow: 0 .5rem 1rem 0 rgba(0,0,0,.1);
}
.c-pricing-graph__logo {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-align: center;
	align-items: center;
	width: 25%;
	padding: 0 1rem;
}
.c-pricing-graph__label {
	margin-top:.7rem;
	font-family: Montserrat,sans-serif;
	font-size: 12px;
	line-height: 1;
	color: #7b7b7b;
	text-align: center;
}


/*****/
.capacity-storage{
	background: #f8f8f8;
	padding:70px 0;
}
.capacity-storage p {
	margin-top: 15px;
	line-height: 28px;
	font-size: 18px;
	color: #111;
}
.capacity-storage a.c-cta {
	background-color: #054A91;
	border: 1px solid #fff;
	color: #fff;
	letter-spacing: 0.046875rem;
	padding:15px 50px;
	text-shadow: 0 1px 2px rgba(5, 74, 145, 0.25);
	text-transform: capitalize;
	display: inline-block;
}
.capacity-storage a.c-cta:focus,
.capacity-storage a.c-cta:hover {
	background-color: #0064e9;
	border: 1px solid #fff;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*****/
.contact-sales{
	background: #0b1e2f;
	padding:90px 0;
}
.contact-sales span{
	font-weight: 700;
	line-height: 3.5;
	color: #36b32f;
	text-transform: uppercase;
}
.contact-sales .sm-heading{
	color:#fff;
}
.contact-sales p{
	margin-top: 15px;
	line-height: 28px;
	font-size: 18px;
	color: #fff;
}
.c-contact{
	background-color: #fff;
	border-radius: .6rem;
	padding:50px;
}
.default-form .form-control{
    width: 100%;
    padding:0 .5rem;
    background-color: #f8f8f8;
    border: .1rem solid #e3e3e3;
    border-radius: .3rem;
	height:45px;
}
.default-form .form-control:focus{
    border-color:#36b32f;
	box-shadow:none;
}
.default-form textarea.form-control{
	height:90px;
}
.default-form a.c-cta {
	background-color: #054A91;
	border: 1px solid #fff;
	color: #fff;
	letter-spacing: 0.046875rem;
	padding: 15px 50px;
	text-shadow: 0 1px 2px rgba(5, 74, 145, 0.25);
	text-transform: capitalize;
	display: inline-block;
}
.default-form a.c-cta:focus,
.default-form a.c-cta:hover {
	background-color: #0064e9;
	border: 1px solid #fff;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}