@-ms-viewport { 
	width: device-width; 
}

body {
    position: absolute;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    line-height: 24px;
    /* overscroll-behavior: none; */
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
    transition: background-color 1s;
    display: flex;
    justify-content: center;
}

.light{
    color: #1B4150;
    background-color: #ffffff;
}

.dark{
    color: #fff;
    background-color: #1B4150;
}

.banner{
    width: 100%;
    display: flex;
    justify-content: center;
}

.page{
    /* padding: 30px; */
    padding-top: 30px;
    /* height: 100%; */
    /* overflow-y: scroll;
    scroll-behavior: smooth; */
    position: absolute;
    /* overflow-x: auto; */
    top: 80px;
}


.page.noScroll{
    overflow: hidden;
}


.mobile .page{
    padding-left: 0px;
    padding-right: 0px;
}

a {
	text-decoration: none;
    /* transition: color 1s; */
}
.light a {
	/* color: #1B4150; */
	color: #3399ff;
}
.dark a {
	color: white;
}



.shortLineBreak{
    width: 10%;
}

a.active {
	color: #F86401;
}

.menuBar{
    /* position: absolute; */
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    width: 98%;
    /* z-index: 10; */
    /* height: 80px; */
    /* top: 0px; */
    /* left: 0px; */
    justify-content: space-between;
    transition: background-color 1s;
}

.light .menuBar{
    background-color: #ffffff;
}
.dark .menuBar{
    background-color: #1B4150;
}

.mobile .menuBar{
    grid-template-columns: auto auto;
    justify-content: space-between;
}

header {
    position: fixed;
    height: 80px;
    width: 100%;
    z-index: 10;
    transition: background-color 1s;
}

.light header{
    background-color: #ffffff;
}
.dark header{
    background-color: #1B4150;
}

.mobile header {
    grid-template-columns: auto 36px;
    align-items: center;
    /* width: 90%; */
    margin: auto;
}

.homeLogo > img{
    position: relative;
    max-width: 160px;
    left: 9px;
    top: 9px;
}

.aboutUsLogo{
    width: 150px;
    /* max-width: 400px; */
}

.logoTxt{
    font-size: x-large;
}

.menu{
    text-transform: uppercase;
    display: grid;
    width: 470px;
    font-size: 14px;
    grid-template-columns: auto auto auto auto 130px;
    bottom: 12px;
    position: relative;
    justify-content: space-around;
    align-items: center;
    text-align: right;
}

.menu > a:hover{
    text-decoration: underline;
    color:#F86401;
}

.mobile .menu{
    display: none;
}

.menuMobileBtn{
    display: none;
}

.menuMobileBtn > span{
    font-size: 36px;
}

.mobile .menuMobileBtn{
    display: block;
}

.mobile .menuMobileBtn .nonVisible{
    display: none;
}

.menuMobile{
    display: none;
}

.menuMobile > a:hover{
    text-decoration: underline;
    color:#F86401;
}

.mobile .menuMobile{
    display: flex;
    visibility: hidden;
    /* text-transform: uppercase; */
    width: 250px;
    font-size: 26px;
    transition: right 0.3s linear;
    flex-direction: column;
    position: fixed;
    right: -215px;
    text-align: right;
    padding-right: 15px;
    height: 200px;
    z-index: 10;
    background-color: darkslategrey;
    justify-content: space-evenly;
    align-items: flex-end;
}

.mobile .menuMobile.visible{
    visibility: visible;
    right: 1%;
    top: 80px;
}
.videoContainer{
    position: relative;
    border-radius: 10px;
    /* width: 650px; */
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    margin: auto;
}

.pageVideo{
    position: relative;
    /* top: 70px; */
    /* left: calc(50% - 384px); */
    width: 100%;
    /* padding-top: 30px; */
}

/* .mobile .pageVideo, 
.mobile .pageVideo.homeVideo{
    width: 112%;
    left: -6%;
} */

.mobile .videoContainer{
    width: 100%;
    /* left: -6%; */
}

.pageVideo.homeVideo{
    width: 85%;
    max-width: 900px;
    /* left: calc(50% - 540px); */
    /* padding-bottom: 30px; */
    border: inset;
    border-radius: 10px;
    padding: 5px;
}

.pageContent{
    position: relative;
    top: 30px;
    text-align: center;
    width: 90%;
    margin: auto;
    min-height: 100%;
    height: fit-content;
}

.mobile .pageContent{
    width: 87%;
}

.pageContent > h1{
    font-size: 32px;
    font-weight: 400;
    color: #663399;
    line-height: 40px;
}

.mobile .pageContent > h1{
    font-size: 27px;
}

.pageContent > h2{
    color: #3399ff;
}

.pageContent .h1Spe{
    color: #3399ff;
    margin-top: 0;
}

.pageContent > p{
    /* font-family: sans-serif; */
    font-size: 18px;
    /* font-weight: 400; */
    transition: color 1s;
}


.dark .pageContent > p{
    color: #ffffffbd;
}
.light .pageContent > p{
    color: #000000;
}

.pageContentItem{
    display: none;
}

.pageContentItem.active{
    display: block;
}

.colorEmph{
    background-color: #fff8e5;
    font-size: larger;
}

.listing{
    text-align: justify;
    font-size: large;
    color: #ffffffbd;
}

.listing > li{
    margin-bottom: 5px;
}

.listing > li > u{
    color: #fff;
    font-size: larger;
}

.tryNow{
    width: 300px;
    border-radius: 10px;
    height: 63px;
    font-size: 22px;
    color: white;
    background-color: #28A745;
    font-family: 'Josefin Sans';
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tryNow:hover{
    background-color: #218838;
}

.tryNow.launch{
    width: 300px;
    margin: 20px;
    height: 50px;
}

.makerDiv{
	display: none;
	width: 100vw;
	position: absolute;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	height: 100%;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.7);
	overflow: hidden;
}

.makerDiv.visible{
	display: block;
	z-index: 20;
}

#hideMakerBtn{
	position: absolute;
	right: 5%;
	top: 1.5%;
	color: darkslategray;
	width: 70px;
	background: lightgray;
	font-size: 15px;
	padding: inherit;
	z-index:20;
	border-radius: 10px;
	cursor: pointer;
}

#hideMakerBtn:hover{
    background-color: #a0f4b2;
}

.makerFrame{
	position: absolute;
	width: 90%;
	height: 580px;
	top: 5%;
	left: 5%;
	overflow: hidden;
}


.makerFrame.unloaded{
	display: none;
}

footer{
    position: relative;
    height: 50px;
    color: #3399ff;
    text-align: center;
    padding-top: 70px;
}

footer > a{
    text-decoration: underline;
}

.billSwitch{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto auto;
    grid-column-gap: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #ccc; */
    background-color: #2196F3;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    /* left: 4px; */
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(-26px);
    -ms-transform: translateX(-26px);
    transform: translateX(-26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.terms{
    text-align: justify;
    font-size: medium;
}

.terms > h2 {
    text-align: center;
}

.terms .effDate {
    text-align: right;
}

.boxRow{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.mobile .boxRow{
    flex-direction: column;
    row-gap: 30px;
}

/* .boxRow4{
    grid-template-columns: 23% 23% 23% 23%;
} */

.boxRowItem{
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 23%; */
    height: 100%;
    color: #fff;
    background-color: #00B2D4;
    border-radius: 5px;
    font-size: 24px;
    background-size: 110%;
    background-position: center;
    background-blend-mode: multiply;
}

.boxRowItem:hover{
    cursor: default;
    background-blend-mode: normal;
	background-size: 130%;
	transition: background-size 1s ease;
}

.boxRowItem.service:hover{
    cursor: pointer;
    background-color: #f86401cc;
}

.mobile .boxRowItem{
    height: 100%;
}

.active > .boxRowItem{
    background-color: #F86401;
}


/* .serviceBlock{
    background-color: #00B2D4;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23%;
    height: 100px;
}

.serviceBlock > p{
    width: 98%;
}

.mobile .serviceBlock{
    width: 80%;
    height: 200px;
} */

/* .mobile .boxRow4{
    grid-template-rows: 23% 23% 23% 23%;
} */


.domainBtn{
    width: 23%;
    height: 200px;
}

.serviceBtn{
    width: 32%;
    height: 250px;
}

.mobile .domainBtn, 
.mobile .serviceBtn{
    width: 80%;
}

.active.domainBtn, 
.active.serviceBtn{
    color: #fff;
}

.domainTxt,
.serviceTxt{
    display: none;
    position: relative;
    top: 10px;
    height: 300px;
    background-color: #00b2d4;
    margin: auto;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    color: #ffffffbd;
    padding: 20px;
}

.domainTxt >b,
.serviceTxt >b{
    color: #fff;
    font-size: larger;
}

.mobile .domainTxt,
.mobile .serviceTxt{
    width: 80%;
    height: fit-content;
}

.serviceTxt.mob{
    display: none;
}
.mobile .serviceTxt.desk{
    display: none;
}


.lightModeBtnMenu{
    width: 20px;
    height: 24px;
}

.lightModeBtnMenu > span{
    font-size: 20px;
}

.light #lightModeBtn{
    display: none;
}
.dark #darkModeBtn{
    display: none;
}

/* #bimBtn{
    background-image: url("../../media/bim.png");
}
#gisBtn{
    background-image: url("../../media/gis.png");
}
#iotBtn{
    background-image: url("../../media/iot.png");
}
#cgBtn{
    background-image: url("../../media/cg.png");
} */

/* #rnd{
    background-image: url("../../media/rnd.png");
}
#advs{
    background-image: url("../../media/consul.png");
}
#upsk{
    background-image: url("../../media/upsk.png");
} */

.howSAHelpsBtn,
.whyNoOneCaresBtn{
    position: relative;
    margin: auto;
    align-content: center;
    /* width: 400px; */
    font-size: 18px;
    background-color: #6633994d;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px;
    cursor: pointer;
}

.howSAHelps,
.whyNoOneCares{
    display: none;
    font-size: 18px;
    text-align: left;
    background-color: #d1c1e0;
    padding: 20px;
    /* border-radius: 20px; */
    /* margin-top: 20px; */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* .howToItems1{
    background-image: url("../media/pr1.png");
    background-size: contain;
}
.howToItems2{
    background-image: url("../media/pr2.png");
    background-size: contain;
}
.howToItems3{
    background-image: url("../media/pr3.png");
    background-size: contain;
} */

.howToItemsBox{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 400px;
    row-gap: 20px;
    background-color: #3399ff85;
    padding: 20px 15px 30px 15px;
    border-radius: 20px;
}

.howToItems{
    width: 200px;
    border-radius: 20px;
}

.howToItemTxt{
    width: 300px;
    font-size: 18px;
    text-align: center;
}






/* PRICING TABLE */

.subsDetails{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subsDetailsContent{
    display: flex;
    text-align: center;
    column-gap: 2%;
    justify-content: space-between;
}

#mySubs{
    flex-direction: column;
}

.mobile .subsDetailsContent{
    flex-direction: column;
    row-gap: 18px;
    align-items: center;
    margin: auto;
}

.subsDetailsContent > button{
    cursor: pointer;
    border-radius: 5px;
    width: 200px;
    margin: auto;
}

.pricingTableItem > button{
    cursor: pointer;
    border-radius: 5px;
    /* width: 200px; */
    background-color: #7a4da6;
    color: white;
}

.pricingTableItem{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #3399ff47;
    padding: 9px;
    border-radius: 9px;
    height: 221px;
}

.mobile .pricingTableItem{
    width: 100%;
    height: 205px;
}

.pricingTableItem > label{
    color: #000000;
}

.pricingTableItem > hr{
    width: 100%;
    margin: 0;
}

.planTitle, 
.planPrice{
    font-size: 18px;
    font-weight: 500;
}

.planTitle{
    height: 15%;
    padding: 2px;
}
.planDescription{
    /* height: 30%; */
}
.planPrice{
    height: 17%;
}
.planPriceDetail{
    height: 10%;
}
.planBtn{
    height: 15%;
}

.freePlanTxt{
    text-align: center;
    padding-bottom: 18px;
}

.material-icons.in{
    color: green;
}
.material-icons.out{
    color: red;
}




.plansTable{
    position: relative;
    display: flex;
    padding-top: 30px;
    width: 100%;
    justify-content: space-around;
    /* left: calc(50% - 450px); */
    column-gap: 15px;
}

.mobile .plansTable{
    width: 100%;
    padding-top: 0px;
    left: 0%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.aPlan{
    position: relative;
    width: 100%;
    /* height: 400px; */
    background-color: #66339954;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
    padding: 10px;
}

.mobile .aPlan{
    height: 450px;
    padding-bottom: 20px;
}

.mobile .aPlan.visible{
    display: flex;
    width: 100%;
    font-size: large;
    padding-top: 10px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.planName{
    font-size: xx-large;
    font-weight: 500;
    padding-top: 20px;
}

.mobile .planName{
    /* display: none; */
}

.aPlan .planImg{
    font-size: xxx-large;
}

.planPrice{
    font-size: xx-large;
    font-weight: 500;
    position: relative;
    top: 30px;
}

.planOpts {
    display: flex;
    flex-direction: column;
    width: 80%;
    padding-top: 7%;
    /* padding-bottom: 10%; */
    font-size: medium;
    /* height: 200px; */
}

.planOpts > label{
    border-bottom: solid;
}

/* .mobile .planOpts {
    padding-top: 15%;
    padding-bottom: 15%;
} */

/* .planOpts > span{
    color: green;
} */

.planItem{
    display: grid;
    justify-items: start;
    text-align: left;
    grid-template-columns: 20% auto;
}

.planItem .pro,
.planItem > span{
    /* color: green; */
    color: white;
}

.planItem .lim{
    color: orange;
}

.planItem .no{
    color: red;
}

.planBtn{
    width: 150px;
    border-radius: 20px;
    height: 40px;
    font-size: larger;
    color: black;
    background-color: #7bdcb5;
    /* font-family: 'Josefin Sans'; */
    cursor: pointer;
    position: relative;
    top: -10px;
    /* font-weight: bold; */
}

.mobile .planBtn{
    top: 20px;
    width: 200px;
    height: 45px;
    top: -10px;
}


.plansMenuMobile{
    display: none;
}

.mobile .plansMenuMobile{
    display: grid;
    width: 100%;
    grid-template-columns: auto auto auto;
    margin-top: 20px;
    height: 40px;
}

.mobile .plansMenuMobile{
    /* font-family: 'Josefin Sans', sans-serif; */
    font-weight: 300;
}

.mobile .plansMenuMobile .selected{
	/* border-bottom: none; */
	font-weight: bold;
	background-color: #ffffff;
	border-color: white;
	border-block-width: 0px;
}

/* #freePlan{
    background-color: #006e8763;
}
#premPlan{
    background-color: #006e8799;
}
#proPlan{
    background-color: #006e87c9;
} */

.emphP{
    background-color: #006e8726;
    border-radius: 10px;
}

.billP{
    /* position: relative; */
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
    color: #3d3d3d;
    /* font-weight: 600; */
}

.pricingBtn{
    width: 180px;
    margin-bottom: 12px;
}

.lineBreak.pricing{
    width: 81%;
    color: #000000;
}




/* ---------------------------------- */
/*           Contact Form             */
/* ---------------------------------- */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.mobile .contact-form input,
.mobile .contact-form select,
.mobile .contact-form textarea {
    margin-bottom: 0;
}

.contact-form select{
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea{
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #3399ff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 100%;
    width: 70%;
    justify-content: space-evenly;
    position: relative;
    left: calc(15% - 15px);
    background-color: #6633994f;
    padding: 40px 30px 40px 30px;
    border-radius: 10px;
}

.mobile .contact-form{
    height: 100%;
    row-gap: 9px;
}


/* ---------------------------------- */
/*               OkModal              */
/* ---------------------------------- */
.okModal{
    display: none;
    /* background-color: rgba(255, 255, 255, 0.5); */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    position: fixed; /* Stay in place */
    z-index: 110; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
}
  
.okModalPanel{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    text-align: center;
    /* max-height: 300px; */
    /* height: 250px; */
    border-radius: 10px;
    margin-top: 35vh;
    color: black;
    background-color: aliceblue;
    font-size: large;
}

.okModalPanel label{
    color: #000000;
}
  
.okModalPanelBtn{
    display: flex;
    justify-content: space-evenly;
    width: 200px;
    margin: auto;
}
  
.okModalPanelBtn > input{
    border-radius: 5px;
    cursor: pointer;
    width: 70px;
    height: 30px;
}
  
.mobile .okModalPanel{
    width: 80%;
}
  
#okModalOkBtn{
    background-color: rgba(255, 99, 71, 0.479);
}


/* ---------------------------------- */
/*               Loader               */
/* ---------------------------------- */
.loaderModal {
    width: 100%;
    height: 100%;
    background-color: #ffffffab;
    z-index: 120;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-block;
    border-top: 7px solid #3399ff;
    border-right: 7px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
    /* bottom: 234px; */
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border-left: 7px solid #673499;
    border-bottom: 7px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}