/* =============================================================================
   FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Kaushan+Script|Montserrat:400,700|Roboto:300i,400,400i,700&display=swap');
/* =============================================================================
   BASE
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e5e5e5;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #95e1d3;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
}
section {
	padding: 80px 0;
}
h1, h2 {
	text-align: center;
	text-transform: uppercase;
}
h2 {
  margin-bottom: 0px;
}
h3 {

}
p {
	font-family: 'Roboto', sans-serif;
	color: #999;
}
.center {
	text-align: center;
}
/* =============================================================================
   HEADER
   ========================================================================== */
header {
  background: -webkit-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: -o-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: -moz-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
}
header a {
	color: #fff;
	text-decoration: none;
}
#particles-js{
  width: 100%;
  height: 100vh;
  background-color: transparent;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.head-sec {
  position: absolute;
  display: block;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 22%;
}
.navigation {
	margin: 0 auto;
	position: absolute;
	width: 100%;
  z-index: 10;
}
.navigation-nav {
	background-color: transparent;
}
.navigation li {
	text-transform: uppercase; 
}
.logo {
	font-family: 'Kaushan Script', cursive;
	font-size: 25px;
	display: block;
	color: #fff;
}
.logo:hover {
  color: #fce38a;
}
.pre-welcome {
  font-family: 'Kaushan Script', cursive;
  font-size: 45px;
  text-align: center;
  color: #fff;
  margin:15px 0;
  display: block;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}
.welcome {
  font-family: 'Montserrat', sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin:15px 0;
  display: block;
  letter-spacing: -5px;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3);
}
.head-divider {
	content: '';
	border: 2px solid #fff;
	width: 100px;
	display: block;
	margin: 65px auto 0;
}
.divider {
	content: '';
	border: 2px solid #fff;
	width: 100px;
	display: block;
	margin: 80px auto 0;
}
section .divider, .devices .divider, .packages .divider {
	border: 2px solid #f38181;
	width: 80px;
	margin: 20px auto 30px;
}

.slider-indicators {
	position: relative;
	margin-left: 0;
	left: 0;
	width: 100%;
	text-align: left;
}
.slider-indicators .active {
	width: 25%;
	opacity: 1;
	height: 4px;
}
.sections {
	margin-top: 8%;
}
.sections .divider {
	width: 100%;
	margin: 0 auto 15px;
	background-color: #fff;
	border: none;
	height: 4px;
}
.active .divider {
	background: -webkit-linear-gradient(left, #f38181 30%, #fff 30%);
	background: -o-linear-gradient(right, #f38181 30%, #fff 30%);
	background: -moz-linear-gradient(right, #f38181 30%, #fff 30%);
	background: linear-gradient(to right, #f38181 30%, #fff 30%);
}
.op {
	cursor: pointer;
	opacity:0.6;
}
.num {
	font-size: 25px;
	color: #fff;
	font-weight: 700;
}
.step {
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
}
/* =============================================================================
   MODAL
   ========================================================================== */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.2s;
}
#form .active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.modal {
  height: 50%;
  width: 650px;
  margin: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: .4s, box-shadow .3s .4s;
  z-index: 1000;
}
.modal.hidden {
  box-shadow: none;
  transition: .4s, box-shadow 0s;
  opacity: 0;
  visibility: hidden;
}
.modal.hidden .form {
  top: 100%;
}
.modal.hidden .invite {
  top: -100%;
}
.modal.hidden .invite .close {
  height: 0;
  width: 0;
  top: 0;
  right: 0;
}
.invite {
  background: rgba(71, 71, 71, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 25px;
  position: absolute;
  top: 0;
  left: 0;
}
.invite a {
  color: #95e1d3;
}
.invite {
  -webkit-animation: slideInDown .5s;
  -moz-animation: slideInDown .5s;
  -ms-animation: slideInDown .5s;
  -o-animation: slideInDown .5s;
  animation: slideInDown .5s;
}
input {
  background: rgba(255, 255, 255, 0.15);
  width: 100%;
  padding: 8px;
  margin: 10px 0 15px;
  border: none;
  border-radius: 3px;
  outline: none;
  color: #FFF;
  font-size: 20px;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 500px #7a7a7a inset;
  -webkit-text-fill-color: #FFF;
}
label {
  color: #95e1d3;
}
.navigation-toggle {
  float: left;
}
button {
  background: transparent;
  padding: 10px 35px;
  border: 2px solid #95e1d3;
  outline: none;
  overflow: hidden;
  position: absolute;
  bottom: 10px;
  left: 10%;
  color: #95e1d3;
  font-size: 18px;
  cursor: pointer;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.invite {
  background: -webkit-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: -o-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: -moz-linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  background: linear-gradient(rgba(231,141,132,1), rgba(240,205,137,1));
  left: 0;
  color: #fff;
}
.invite .pre-heading {
  font-size: 25px;
}
.close {
  background: #474747;
  height: 30px;
  width: 30px;
  border: 3px solid #FFF;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  -webkit-transition: .4s .3s;
  -moz-transition: .4s .3s;
  transition: .4s .3s;
}
.close:before, .close:after {
  content: '';
  background: #FFF;
  height: 80%;
  width: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.open {
  background: transparent;
  padding: 0px 20px;
  position: absolute;
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  visibility: hidden;
}
.open.active {
  opacity: 1;
  visibility: visible;
}
.more-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #95e1d3;
  border: 3px solid #fff;
  padding: 10px 35px;
  display: block;
  text-align: center;
  margin: 50px auto 0;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  width: fit-content;
}
.more-btn:hover {
  color: #fff;
  cursor: pointer;
  background-color: rgba(149,225,211,0.9);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.res-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #95e1d3;
  border: 3px solid #fff;
  padding: 10px;
  text-align: center;
  margin-top: 50px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.res-btn:hover {
  color: #fff;
  cursor: pointer;
  background-color: rgba(149,225,211,0.8);
  text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}
/* =============================================================================
   IMAGE HOVER EFFECT
   ========================================================================== */
.imgwrap {
    height: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    transition: all 0.3s ease-in-out 0s;
}
.imgwrap:hover {
	box-shadow: 9px 9px 0 #95e1d3;
}
.imgwrap img {
    display: block;
    transition: all 0.3s ease-in-out 0s;
}
.imgwrap:hover img {
    display: block;
}
.imgwrap .imglink {
    background: #000 none repeat scroll 0 0;
    bottom: 0;
    color: #ffffff;
    left: 0;
    opacity: 0;
    padding: 25% 10px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    transition: all 0.4s ease-in-out 0s;
}
.imgwrap:hover .imglink {
    background: red;
    background: -webkit-linear-gradient(rgba(231,141,132,0.8), rgba(240,205,137,0.8));
    background: -o-linear-gradient(rgba(231,141,132,0.8), rgba(240,205,137,0.8));
    background: -moz-linear-gradient(rgba(231,141,132,0.8), rgba(240,205,137,0.8));
    background: linear-gradient(rgba(231,141,132,0.8), rgba(240,205,137,0.8));
    opacity: 4;
}
.imglink p, .imglink a{
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 20px;
}
.imglink a:hover {
    color: #fff;
}
/* =============================================================================
   MEDIA OBJECTS
   ========================================================================== */
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
  margin-right: 10px;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: normal;
}
.media-divider {
	content: '';
	border: 1px solid #e5e5e5;
	width: 100%;
	display: block;
	margin: 50px 0 70px;
}
/* =============================================================================
   CONTENT
   ========================================================================== */
.pre-heading {
	font-family: 'Kaushan Script', cursive;
	text-align: center;
	font-size: 20px;
	display: block;
}
.marg {
	padding: 5% 0;
}
.count-bar {
	background-color: #95e1d3;
}
.webcount {
  display: block;
  padding: 50px 0;
}
.count {
	width: 19.68%;
	border-left: 1px solid rgba(255,255,255,0.4);
	display: inline-block;
	padding: 50px 0;
}
.count:last-child {
	border-right: 1px solid rgba(255,255,255,0.4);
}
.num {
	text-align: center;
	display: block;
	font-size: 65px;
}
.count-bar p {
	color: #fff;
	text-transform: uppercase;
}
.devices {
	background-image: url('../img/feature.jpg');
	background-size: cover;
	background-position: center;
	padding-top: 80px;
	position: relative;
	background-attachment: fixed;
}
.iphone {
	position: absolute;
	top: 55%;
	right: 29%;
}
section ul {
	padding-left: 0 !important;
}
.accordion {
	max-width: 560px;
	margin: 0 auto 100px;
}
.accordion li {
	border: 1px solid #e5e5e5;
	position: relative;
	list-style: none;
	margin-bottom: 5px;
}
.accordion li img {
	float: left;
	display: inline-block;
	margin-top: 11px;
	margin-left: 11px;
}
.accordion li p {
	display: none;
	padding: 10px;
}
.accordion a {
	color: #333;
	width: 100%;
	display: block;
	cursor: pointer;
	font-weight: 600;
	line-height: 3.5;
	text-indent: 15px;
	user-select: none;
}
.accordion a:hover, .accordion a:focus {
	text-decoration: none;
}
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
}
/*
.accordion a:after {
	width: 8px;
	height: 8px;
	border-right: 1px solid #4a6e78;
	border-bottom: 1px solid #4a6e78;
	position: absolute;
	right: 10px;
	content: " ";
	top: 20px;
	transform: rotate(45deg);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
*/
.accordion p {
	font-size: 15px;
	line-height: 2;
	padding: 10px;
	height: 175px;
	overflow: auto;
	margin: 10px;
}
a.active:after {
	transform: rotate(-135deg);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.accordion .active {
	border-bottom: 1px solid #e5e5e5;
}
/* =============================================================================
   QUOTE SECTION
   ========================================================================== */
.packages {
  background-image: url('../img/feature.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  background-attachment: fixed;
}
.price {
  background-color: #fff;
  border: 2px solid #f38181;
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
}
.price h2 {
  font-size: 18px;
  color: #999;
  font-family: "Kaushan Script",cursive;
}
.price h2 span {
  font-size: 30px;
  color: #333;
  font-family: "Montserrat",sans-serif;
}
tr:nth-child(even) {
  background-color: #f6f6f6;
}
tr td{
  padding: 15px 0;
}
.btm {
	background-color: #f8f8f8;
	padding: 40px 0;
}
.btm p {
	color: #ababab;
	font-size: 25px;
	font-weight: 300;
	font-style: italic;
	margin-top: 0;
	margin-bottom: 10px;
}
.btm .divider {
	display: inline-block;
	width: 50px;
	margin: 0;
	border: 1px solid #f38181;
	margin-bottom: 8px;
}
.byline {
	font-family: 'Kaushan Script', cursive;
	font-size: 25px;
	margin-left: 5px;
}
/* =============================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #333;
  color: #eee;
  padding: 15px 0;
  text-align: center;
}
.social {
  margin:0 auto;
}
.social img {
  display: inline-block;
  margin: 0 5px;
}
/* =============================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
	.count-bar .wrapper {
		width: 100% !important;
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 1133px) {
	.count {
		width: 19.51%;
	}
	.count .num {
		font-size: 55px;
	}
	.count p {
		font-size: 13px;
	}
}
@media (max-width: 992px) {
	.pre-welcome {
		font-size: 75px;
	}
	.welcome {
		font-size: 140px;
	}
	.accordion {
		margin-top: 40px;
		margin-bottom: 0;
	}
	.btm p {
		font-size: 22px;
	}
}
@media (max-width: 768px) {
	header {
		height: auto !important;
	}
  .head-sec {
    top: 15%;
  }
  .navigation {
    background-color: rgba(151, 96, 91, 0.7);
  }
	.logo {
    position: absolute;
    left: 32%;
    margin-top: 10px;
    z-index: 20;
	}
  .more-btn {
    width: 40%;
  }
  .modal {
    width: 90%;
  }
  .form {
    width: 100%;
  }
  .navigation-nav {
    margin: 0.5px -15px;
    padding: 10px 0;
  }
}
@media (max-width: 625px) {
	.pre-welcome {
		font-size: 50px;
	}
	.welcome {
		font-size: 75px;
	}
	.accordion {
		width: auto;
	}
}
@media (max-width: 584px) {
	.btm p {
		font-size: 18px;
	}
  .invite {
    padding: 15px;
  }
  .invite h2 {
    font-size: 20px;
  }
  .modal {
      height: 70%;
  }
}
@media (max-width: 536px) {
	.count {
		width: 49%;
	}
	.count:last-child {
		border: none;
		width: 100%;
	}
	.iphone {
		right: 14%;
		top: 48%;
	}
  .media-left, .media-right, .media-body {
    display: block;
    text-align: center;
  }
  .media-object {
    margin: 0 auto;
  }
  .media-body {
    width: auto;
  }
  .media-heading {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 414px) {
	section {
    padding: 25px 0;
  }
  h1 {
    font-size: 2em;
  }
  .pre-welcome {
		font-size: 40px;
	}
	.welcome {
		font-size: 60px;
	}
	.iphone {
		right: 6%;
		top: 38%;
	}
  .invite {
    padding: 10px;
  }
  .webcount .num {
    font-size: 30px;
  }
  .more-btn {
    width: 70%;
  }
}
@media (max-width: 375px) {
  .head-sec {
    top: 15%;
  }
  .head-divider {
    margin: 40px auto 0;
  }
}
@media (max-width: 360px) {
  .pre-welcome {
    font-size: 30px;
  }
  .more-btn {
    width: 95%;
  }
}
@media (max-width: 325px) {
  .head-sec {
    top: 15%;
  }
}