* {
    font-family: 'Exo 2';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::after,
*::before{
    box-sizing: border-box;
}
li {
    display: block;
}
ul,li,ol{list-style: none;}
main {
    margin: 80px auto 0 auto;
    max-width: 1920px;
}
main > *{
    padding: 45px 0;
}
img{
    max-width: 100%;
}
p{
    font-size: 16px;
    text-align: justify;
    line-height: 23px;
    color: #000;
    margin: 0 0 15px 0;
}
p:last-child{
    margin-bottom: 0;
}
.main-title{
    font-size: 40px;
    line-height: 1em;
    color: #000;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -6px;
}
.sub-title{
    font-size: 20px;
    line-height: 1.2em;
    color: #00c2e7;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 4px;
}
.heading-area{
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
}
.heading-area.center > *{
    display: block;
    text-align: center;
}
.heading-area.white > *{
    color: #fff;
}.heading-area > p{
    margin: 5px 0 0 0 ;
}
.btn__div{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}
.common-btn {
    background-color: #37c2e8;
    font-size: 20px;
    line-height: 1em;
    text-transform: capitalize;
    font-weight: 600;
    padding: 13px 20px 15px 20px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}
.common-btn:hover {
    background-color: #0173a0;
    color: #fff;
}
.btn-color1 {
    background-color: #FE9B00;
}
.btn-color1:hover,
.btn-color1:focus {
    background-color: #c07a24;
}
.btn-color2 {
    background-color: #0fb158;
}
.btn-color2:hover,
.btn-color2:focus {
    background-color: #0a8d45;
}
/* ===================================================================== */
.banner {
    background-image: -moz-linear-gradient(-20deg, rgb(250, 253, 255) 0%, rgb(218, 240, 250) 38%, rgb(180, 227, 246) 68%, rgb(180, 227, 246) 100%);
    background-image: -webkit-linear-gradient(-20deg, rgb(250, 253, 255) 0%, rgb(218, 240, 250) 38%, rgb(180, 227, 246) 68%, rgb(180, 227, 246) 100%);
    background-image: -ms-linear-gradient(-20deg, rgb(250, 253, 255) 0%, rgb(218, 240, 250) 38%, rgb(180, 227, 246) 68%, rgb(180, 227, 246) 100%);
}
.banner-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.banner-left {
    width: 48%;
}
.banner-left h1{
    font-size: 45px;
    line-height: 1em;
    color: #37c2e8;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-weight: bold;
}
.banner-left strong{
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    display: block;
    margin: 0 0 10px 0;
    line-height: 1.2em;
}
.banner-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width:1700px) and (max-width:1920px) {
    .banner-right img {
        max-width: 36vw;
    }
}
/* ===================================================================== */
.features-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.features ul li{
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    min-height: 100%;
}
.features ul .icon-box{
	position:relative;
	width:90px;
	height:90px;
	color:#37c2e8;
	font-size:46px;
	border-radius:50px;
	text-align:center;
	line-height:90px;
	border:1px dashed #002176;
}
.features ul .icon-box .circle{
	position: absolute;
	left:0px;
	top:0px;
	width:90px;
	height:90px;
	border-radius:50px;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}
.features ul .icon-box .circle:before{
	position: absolute;
	content:'';
	left:6px;
	bottom:12px;
	width:10px;
	height:10px;
	border-radius:50px;
	background-color:#37c2e8;
}
.features ul .icon-box .circle:after{
	position: absolute;
	content:'';
	right:6px;
	top:12px;
	width:10px;
	height:10px;
	border-radius:50px;
	background-color:#37c2e8;
}
.features ul li:hover .icon-box .circle{
	transform:rotate(360deg);
}
.features ul strong{
	color:#000;
	font-size:20px;
	font-weight:bold;
	line-height:1em;
	margin:15px 0 10px 0;
    display: block;
    text-transform: capitalize;
}
.features ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
/* ===================================================================== */
.perfect-script {
    background: #edfcff;
}
.perfect-script-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
    position: relative;
}
.perfect-script-left {
    width: 60%;
}
.perfect-script-right {
    width: 38%;
}
.green-part-inner {
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
}
.green-part-inner ul li {
    font-size: 16px;
    line-height: 23px;
    padding-left: 45px;
    color: #000;
    font-weight: 400;
    position: relative;
    text-align: justify;
    min-height: 30px;
    display: inline-flex;
    width: 100%;
    flex-direction: column;
    margin: 0 0 10px 0;
}
.green-part-inner ul li strong{
    text-transform: capitalize;
}
.green-part-inner ul li:last-child{
    margin-bottom: 0;
}
.green-part-inner ul li::after {
    position: absolute;
    content: "→";
    width: 30px;
    height: 30px;
    background: #25a2db;
    top: 0;
    left: 0;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    color: #fff;
    line-height: 24px;
}
/* ============================================================ */
.pricing-inner {
    margin: 0 auto;
    max-width: 1310px;
    text-align: center;
    padding: 0 15px;
}
.pricing .get-quote {
    font-size: 22px;
    line-height: 1em;
    background-color: #37c2e8;
    font-weight: 600;
    color: #ffffff;
    padding: 17px 40px;
    min-width: 264px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.pricing .get-quote:hover {
    background-color: #1882a0;
    color: #fff;
}
.pricing .btn__div{
    justify-content: center;
    margin-top: 5.5%;
}
.torn-pricing {
    position: relative;
}
.torn-pricing::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 45.3%;
}
.torn-pricing img{
    position: absolute;
    left: 0;
    top: 0;
}
.torn-pricing:after {
    content: '';
    position: absolute;
    top: 100%;
    width: auto;
    height: 60px;
    background-image: url(torn-paper-8.png);
    left: 14px;
    right: 0;
    background-size: 39%;
    background-repeat: repeat-x;
    z-index: 0;
    margin-top: -1px;
    pointer-events: none;
}
/* ============================================================ */
.demolinks{
    background-color: #37c2e8;
}
.demolinks-inner{
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px;
}
.demolinks ul{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    gap: 10px;
    max-width: 910px;
    margin: auto;
}
.demolinks ul li{
    display: block;
    position: relative;
}
.demolinks ul li::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 32.1%;
}
.demolinks ul li img{
    position: absolute;
    left: 0;
    top: 0;
}
/* ============================================================ */
.screen {
    background-color: #edfcff;
}
.screen-inner {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.TABROW {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 15px 0;
    width: 100%;
    gap: 15px;
}
.TABROW .TAB {
    min-width: 197px;
    padding: 15px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 18px;
    line-height: 1em;
    text-transform: uppercase;
    color: #000;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border: 1px solid #ddd;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.TABROW .TAB.active {
    color: #fff;
    background: #37c2e8;
    border-color: #37c2e8;
}
.screen ul {
    display: none;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    row-gap: 20px;
    margin: 0 0 15px 0;
}
.screen ul.active {
    display: flex;
}
.screen ul li {
    width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}
.screen ul li img {
    max-width: 100%;
    outline: 1px solid #ddd;
}
.screen  .btn__div{
    justify-content: center;
}
.screen-flow-btn{
    font-size: 22px;
    background-color: #37c2e8;
    font-weight: 600;
    color: #ffffff;
    padding: 14px 40px 17px 40px;
    min-width: 264px;
    box-sizing: border-box;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
    text-transform: capitalize;
}
.screen-flow-btn:hover {
    background-color: #1882a0;
    color: #fff;
}
/*===================================================== */
.provide-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.provide .left-part {
    width: 48%;
}
.provide .right-part{
    width: 48%;
}
.provide ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
    line-height: 1.4em;
    color: #000;
    font-size: 16px;
    text-align: justify;
}
.provide ul li strong{
    display: block;
    text-transform: capitalize;
}
.provide ul li:after {
    position: absolute;
    top: 8px;
    left: 0;
    background: #37c2e8;
    content: "";
    width: 9px;
    height: 9px;
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}
/*===================================================== */
.business{
    background-color: #edfcff;
}
.business-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.business .left-part {
    width: 48%;
}
.business .right-part{
    width: 48%;
}
/*===================================================== */
.reviews-inner {
    max-width: 1310px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}
.reviews ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
}
.reviews ul li {
    width: 25%;
    padding: 0 10px;
}

.reviews ul li a {
    position: relative;
    display: block;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
    border-radius: 25px;
    overflow: hidden;
    border: 8px solid #fff;
}
.reviews ul li:not(:last-child) a::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 71%;
}
.reviews ul li img {
    width: 100%;
    border-radius: 18px;
    vertical-align: top;
    position: absolute;
    left: 0;
    top: 0;
}
.reviews ul li a::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
    background-image: url(play-video-16.svg);
    background-repeat: no-repeat;
    background-size: 39px;
    z-index: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 50%;
    background-position: center;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
}
.reviews ul li.morereview a {
    height: 100%;
    font-size: 28px;
    font-weight: bold;
    line-height: 34px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #37c2e8;
    color: #fff;
    padding: 15px;
    text-align: center;
    flex-direction: column;
}
.reviews ul li.morereview a:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 20px 0 0 0;
    -webkit-border-radius: 20px 0 0 0;
    -moz-border-radius: 20px 0 0 0;
    -ms-border-radius: 20px 0 0 0;
    -o-border-radius: 20px 0 0 0;
    background-image: none;
    background-color: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.reviews ul li.morereview a:after {
    content: '';
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #fff;
    background-image: none;
    background-color: transparent !important;
    box-shadow: none;
    border-radius: 0 0 20px 0;
    -webkit-border-radius: 0 0 20px 0;
    -moz-border-radius: 0 0 20px 0;
    -ms-border-radius: 0 0 20px 0;
    -o-border-radius: 0 0 20px 0;
}
.reviews li.morereview a:hover {
    background-color: #1882a0;
}
/*===================================================== */
.about-section-of {
    padding: 0;
}
.about-section-of-inner {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center;
}
.about-section-of h5 {
    padding: 20px;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #37c2e8;
    display: inline-block;
    border-radius: 25px 25px 0 0;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}
.about-section-of h5:after {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    display: inline-block;
    margin: 0 0 0 10px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.about-section-of h5.active:after {
    transform: rotatex(180deg);
    -webkit-transform: rotatex(180deg);
    -moz-transform: rotatex(180deg);
    -ms-transform: rotatex(180deg);
    -o-transform: rotatex(180deg);
}
.about-section-of-data {
    text-align: initial;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f8f8f8;
    display: none;
}
.about-section-of-data .about-section-of-inner {
    text-align: unset;
}
.about-section-of h6 {
    font-size: 23px;
    text-transform: unset;
    font-weight: 600;
    margin: 0 0 15px 0;
}
.box-rows ul {
    list-style: none;
    padding: 0;
}
.box-rows ul li {
    margin-bottom: 14px;
    font-size: 16px;
    color: #000;
    padding: 0 0 0 18px;
    font-weight: 500;
    position: relative;
    text-align: justify;
}
.box-rows ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background-color: #00abdb;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.box-rows h6 {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    background: #a9ecff;
    padding: 10px 15px;
    margin-top: 25px;
    color: #000;
    text-transform: capitalize;
}
.box-rows .sub-boxess h6 {
    font-size: 18px;
    margin-bottom: 10px;
    background: no-repeat;
    padding: 0px 0px 0px 20px;
    margin-top: 10px;
    position: relative;
}
.box-rows .sub-boxess h6::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background-color: #00abdb;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}


@media (max-width:1199px) {
    .reviews ul li.morereview a {
        font-size: 2.5vw;
        line-height: 3.2vw;
    }
}

@media (max-width:991px) {
    .main-title{
        font-size: 30px;
    }

    .banner-inner{
        flex-direction: column-reverse;
    }
    .banner-left{
        width: 100%;
    }
    .banner-left h1 {
        font-size: 37px;
    }
    .banner-left strong{
        font-size: 22px;
    }
    .banner-right{
        width: 100%;
        text-align: center;
        margin: 0 0 30px 0;
    }
    .features ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .perfect-script-inner{
        flex-direction: column-reverse;
    }
    .perfect-script-left{
        width: 100%;
    }
    .perfect-script-right{
        width: 100%;
        text-align: center;
        margin: 0 0 30px 0;
    }
    .screen ul li {
        width: 33.33%;
    }
    .provide-inner{
        flex-direction: column-reverse;
    }
    .provide .left-part{
        width: 100%;
    }
    .provide .right-part{
        width: 100%;
        text-align: center;
        margin: 0 0 30px 0;
    }
    .business .left-part{
        width: 100%;
        margin: 0 0 30px 0;
    }
    .business .right-part{
        width: 100%;
    }
    .reviews ul li {
        width: 33.33%;
    }
}

@media (max-width:630px) {
    main > * {
        padding: 40px 0;
    }
    .main-title{
        font-size: 28px;
        margin-top: -4px;
    }
    .sub-title {
        font-size: 16px;
    }
    .banner-left h1 {
        font-size: 30px;
    }
    .banner-left strong {
        font-size: 20px;
    }
    .features ul {
        grid-template-columns: 1fr;
    }
    .screen ul li{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .screen-flow-btn {
        font-size: 18px;
        padding: 12px 15px;
        min-width: inherit;
    }
    .demolinks ul {
		grid-template-columns: 1fr 1fr;
		grid-auto-flow: row;
		gap: 10px;
	}
    .pricing .get-quote {
        font-size: 18px;
        padding: 12px 15px;
        min-width: inherit;
    }
    .reviews ul li{
        width: 50%;
        padding: 0 7px;
    }
    .reviews ul li a {
        box-shadow: none;
        -webkit-box-shadow: none;
        border-radius: 8px;
        overflow: hidden;
        border:0;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
    .reviews ul li a img{
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
    }
    .reviews ul li a::after {
        width: 35px;
        height: 35px;
        background-size: 29px;
        top: 5px;
        right: 10px;
    }
    .reviews ul li.morereview a {
        font-size: 4.5vw;
        line-height: 5.2vw;
    }
    .reviews ul li.morereview a:before {
        width: 40px;
        height: 40px;
        border-radius: 10px 0 0 0;
        -webkit-border-radius: 10px 0 0 0;
        -moz-border-radius: 10px 0 0 0;
        -ms-border-radius: 10px 0 0 0;
        -o-border-radius: 10px 0 0 0;
    }
    .reviews ul li.morereview a:after {
        width: 40px;
        height: 40px;
        border-radius: 0 0 10px 0;
        -webkit-border-radius: 0 0 10px 0;
        -moz-border-radius: 0 0 10px 0;
        -ms-border-radius: 0 0 10px 0;
        -o-border-radius: 0 0 10px 0;
    }
    .about-section-of h5 {
        padding: 15px;
        font-size: 19px;
        border-radius: 8px 8px 0 0;
    }
    .box-rows h6 {
        font-size: 18px;
        padding: 5PX;
        margin:15PX 0;
    }
}