@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap');
/* CSS RESET */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
		font-family: "Montserrat", sans-serif;
	color:#fff;
	  font-size:16px;
      line-height: 1.6;
    }
    ul {
      list-style: none;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
    }



#header {
	background-image:url(./images/header.webp);
	background-position:center center;
	background-size:cover;
	padding-top:220px;
	padding-bottom:50px;
	min-height:100vh;
	display:flex;
	flex-wrap:wrap;
	align-content:space-between;
}
.relative {
	position:relative;
}
.container {
	width:100%;
	max-width:1280px;
	margin:0 auto;
	padding:0 15px;
}

.navbar {
	position:fixed;
	top:0;
	width:100%;
	padding:32px 0;
    z-index: 10;
    transition: background-color 0.4s ease;
}
.navbar.scrolled {
    background-color: rgb(0 0 0 / 90%);
}
.navbar .container {
    align-items: center;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}

.menu ul {
	display:flex;
	flex-wrap:wrap;
}

.menu li a {
	color:#fff;
}
.menu li {
	margin: 0 15px;
}


.hero {
	width:60%;
	display:grid;
	gap:48px;
	margin-bottom:50px;
}
.hero-title {
  font-family: "Unbounded", sans-serif;
  font-size:48px;
  line-height:1.4em;
  font-weight:100;
}
.hero-subtitle {
  font-size:24px;
  line-height:1.4em;
}

.hero-buttons {
}
.hero-buttons .btn {
	margin-right:15px;
}

.btn {
  font-family: "Unbounded", sans-serif;
  font-size:14px;
  text-transform:uppercase;
  color:#031416;
  background-color:#A18E5C;
	border:1px solid #A18E5C;
    padding: 25px 45px;
  display:inline-block;
}
.btn-transparent {
	background-color:transparent;
	border:1px solid #A18E5C;
	color:#A18E5C;
}
.btn-big {
	border:1px solid #fff;
	font-size:18px;
	background-color:transparent;
	color:#fff;
	letter-spacing:1.8px;
    white-space: pre;
    padding: 20px 25px;
} 


.header-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
	padding:32px;
	display:flex;
	width:75%;
}
.disclaimer-logo {
	margin-right:20px;
	min-width:50px;
}
.disclaimer-content {
	margin-right:20px;
}
.disclaimer-content h3 {
  font-family: "Unbounded", sans-serif;
  font-size:18px;
  text-transform:uppercase;
    font-weight: normal;
}
.disclaimer-content p {
  font-size:16px;
    font-weight: normal;
}


.section-title {
  font-family: "Unbounded", sans-serif;
  font-size:40px;
  font-weight:300;
  color:#182C2E;
		line-height:1.4em;
		margin-bottom:20px;
}
.col-5-5 {
	width:50%;
}
.col-2-3 {
	width:70%;
}
.col-1-3 {
	width:30%;
}

#why-choose-us {
	background-image:url(./images/why-we.webp);
	background-position:left center;
	background-size:cover;
	padding-top:120px;
	padding-bottom:120px;
	position:relative;
}
#why-choose-us:before {
	content:'';
	width:100%;
	height:100%;
	background-color:#000;
    opacity: 0.7;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

#why-choose-us .container {
	display:flex;
	flex-wrap:wrap;
	position:relative;
	z-index:2;
}

#why-choose-us .col-5-5 {
    /*display: flex;
    flex-wrap: wrap;
    align-content: center;*/
}
#why-choose-us .text-normal, #why-choose-us .section-title, 
#why-choose-us .benefit-title, #why-choose-us .benefit-text {
	color:#fff;
}
#why-choose-us .benefit-title:before {
	background-color:#fff;
}
	
	.text-normal {
		font-size:24px;
		color:#242424;
		line-height:1.4em;
	}
	.text-center {
		text-align:center;
	}
	.text-white {
		color:#fff;
	}
	
.benefits-list {
    margin: 0 auto;
	padding-left:100px;
}
.benefit-item {
	background-position:right top;
	background-repeat:no-repeat;
	min-height:96px;
	padding-right:100px;
	margin-bottom:40px;
	width:100%;
}
.benefit-item.benefit1 {background-image:url(./images/benefit1.png);}
.benefit-item.benefit2 {background-image:url(./images/benefit2.png);}
.benefit-item.benefit3 {background-image:url(./images/benefit3.png);}
.benefit-item.benefit4 {background-image:url(./images/benefit4.png);}
.benefit-item.benefit5 {background-image:url(./images/benefit5.png);}
.benefit-title {
  font-family: "Unbounded", sans-serif;
  font-size:18px;
  text-transform:uppercase;
  font-weight:500;
  color:#182C2E;
  margin-bottom:10px;
  position:relative;
}
.benefit-title:before {
	content:'';
	width:9px;
	height:9px;
	background-color:#242424;
	position:absolute;
	left:-30px;
    top: 10px;
	border-radius:50%;
}
.benefit-text {
  font-size:16px;
  font-weight:normal;
  color:#969696;
}
	
#why-choose-us .benefits-title {
	width:100%;
	text-align:center;
	margin-bottom:70px;
}

	
#planning {
	background-image:url(./images/planning.webp);
	background-position:left center;
	background-size:cover;
	padding-top:120px;
	padding-bottom:120px;
}
	
	
	.plan-cards {
		margin-top:15px;
	}
	.plan-card {
		background-color:#fff;
		padding:24px 24px 24px;
	}
	.flat-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
	margin-bottom:10px;
	}
	.flat-section {
    font-size: 16px;
	color:#000;
	}
	
	.flat-tags {
    display: flex;
    flex-wrap: wrap;
	justify-content:center;
	}
	.flat-tag {
    font-size: 14px;
	letter-spacing:0.5px;
    border-radius: 15px;
    border: 1px solid #BFD2D9;
    padding: 4px 7px;
	margin:10px 4px 4px;
	color:#000;
	
	}
	
	.flat-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	margin-bottom:10px;
	}
	.flat-bottom-group {
		text-align:center;
		margin:5px;
	}
	.flat-bigchars {
		font-size:25px;
		font-weight:bold;
	color:#000;
	}
	.flat-minchars {
		font-size:16px;
	color:#969696;
	}
	.plan-card .btn {width:100%;text-align:center;}
	
	
		.owl-dots {
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		margin:15px 0;
	}
	.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #0C0F09 !important;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.20;
	}
	.owl-dots .owl-dot.active {
    opacity: 1;
	}
	
	
#bg {
	background-image:url(./images/bg.webp);
	background-position:left center;
	background-size:cover;
	padding-top:170px;
	padding-bottom:130px;
}


#infrastructure {
	margin-top:35px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	margin-bottom:130px;
}
#infrastructure .col-2-3 {
	padding-right:25px;
}
.info-list {
	
}
.info-item {
  font-family: "Unbounded", sans-serif;
  font-size:18px;
  font-weight:300;
  color:#fff;
  line-height:1.5;
  padding:32px;
  border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.info-item:last-child {
	border:none;
}
.info-item.active {
    background-color: #fff;
    font-weight: 500;
    color: #182C2E;
    text-transform: uppercase;
    position: relative;
    padding-left: 55px;
}
.info-item.active:before {
    content: '';
    width: 9px;
    height: 9px;
    background-color: #242424;
    position: absolute;
    left: 32px;
    top: 50%;
    margin-top: -4.5px;
    border-radius: 50%;
}


.grid {
  display: flex;
  margin-left: -10px;
  flex-wrap: wrap;
}
.grid-item {
  width: 33.3%;
  padding-left: 10px;
  margin-bottom: 10px;
}
.grid-item img {
  width: 100%;
  display: block;
}



#reviews {
	background-image:url(./images/reviews.webp);
	background-position:left center;
	background-size:cover;
	padding-top:170px;
	padding-bottom:130px;
}

.reviews-carousel {
	margin-top:70px;
}
.review {
	background-color:#fff;
	padding:48px;
	display:flex;
}
.review-icon {
	padding-right:50px;
    flex-shrink: 0;
}
.review-icon img {
	width:156px !important;
}
.review-title {
	font-size:24px;
	font-weight:bold;
	color:#000;
    display: flex;
	margin-bottom:20px;
}
.review-title:before {
	content:'';
	background-image:url(./images/quotes.webp);
	width:32px;
	height:32px;
	display:block;
	margin-right:10px;
}
.review-text {
	font-size:18px;
	color:#1E1E1E;
}

.review-bottom {
	margin-top:80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.review-author {
	color:#000;
	font-size:18px;
	font-weight:bold;
	text-transform:uppercase;
}
.review-reting {
	display:flex;
	flex-wrap:wrap;
}
.star {
	width:24px;
	height:25px;
	display:block;
}
.star1 {
	background-image:url(./images/star1.png);
}
.star0 {
	background-image:url(./images/star0.png);
}




#steps {
	background-image:url(./images/steps.webp);
	background-position:center center;
	background-size:cover;
	padding-top:170px;
	padding-bottom:130px;
}

.steps-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
	justify-content:space-between;
	padding-left:70px;
}
.step-item {
	background-position:right top;
	background-repeat:no-repeat;
    padding-top: 70px;
	margin-bottom:30px;
	width:100%;
}
.step-item:last-child {margin-bottom:0;}

.step-item.step1 {background-image:url(./images/01.png);}
.step-item.step2 {background-image:url(./images/02.png);}
.step-item.step3 {background-image:url(./images/03.png);}
.step-item.step4 {background-image:url(./images/04.png);}
.step-item.step5 {background-image:url(./images/05.png);}
.step-title {
  font-family: "Unbounded", sans-serif;
  font-size:18px;
  text-transform:uppercase;
  font-weight:500;
  color:#fff;
  margin-bottom:10px;
  position:relative;
}
.step-title:before {
	content:'';
	width:9px;
	height:9px;
	background-color:#fff;
	position:absolute;
	left:-30px;
    top: 10px;
	border-radius:50%;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.steps-left {
    display: flex;
	flex-wrap:wrap;
	align-content:space-between;
}




#form {
	background-image:url(./images/form-bg.webp);
	background-position:center center;
	background-size:cover;
	padding-top:170px;
	padding-bottom:130px;
}
.form-container {
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.form {
	max-width:540px;
	padding:64px;
	background-color:#fff;
    box-shadow: 0 0 29px 0px #5c5c5c;
}
.form-input {
	border:1px solid #EAEAEA;
	padding:32px;
	font-size:18px;
	color:#031416;
	width:100%;
	margin-bottom:20px;
}
.form .btn {width:100%;margin-bottom:25px;}
.form p {
	margin:0;
	color:#969696;
	font-size:18px;
	line-height:1.5;
}
.form-container .section-title {
	max-width:650px;
}



#footer {
	background-color:#031416;
}
#footer .footer-container {
	padding:80px 15px;
    display: flex;
    flex-wrap: wrap;
	justify-content:space-between;
}

.footer-widget {
	width:28%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.footer-widge-long {
	width:65%;
}

.footer-text {
  font-family: "Unbounded", sans-serif;
	font-size:32px;
	margin-bottom:15px;
}

.footer-widget-long {
	display:grid;
	grid-template-columns: repeat(2, 1fr); 
	grid-template-rows: repeat(2, auto);
	gap: 30px;
    width: 65%;
}
.info-block {
	
}
.big-text {
	font-size:20px;
	font-weight:600;
	line-height:1.5;
	margin-bottom:5px;
}
.small-text {
	font-size:14px;
	color:rgba(255, 255, 255, 0.7);
	line-height:1.5;
}
.cpr {
	background-color:rgba(255, 255, 255, 0.03);
	padding:20px 15px;
	font-size:18px;
	color:rgba(255, 255, 255, 0.7);
}

.social-link {
	width:64px;
	height:64px;
	display:block;
	margin-right:10px;
}


.socials {
	display:flex;
	flex-wrap:wrap;
}
.social-link.telegram {
	background-image:url(./images/telegram.png);
}
.social-link.viber {
	background-image:url(./images/viber.png);
}
.social-link.whatsapp {
	background-image:url(./images/whatsapp.png);
}


.social-link-min {
	width:21px;
	height:20px;
	display:block;
	margin-right:20px;
}

.socials-min {
	display:flex;
	flex-wrap:wrap;
	margin-top:30px;
}
.social-link-min.instagram {
	background-image:url(./images/instagram-min.png);
}
.social-link-min.facebook {
	background-image:url(./images/facebook-min.png);
}
.social-link-min.tiktok {
	background-image:url(./images/tiktok-min.png);
}



.tabs {
	margin-top:30px;
}
.tabs ul {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
.tab-link {
	margin:0 5px;
	display:block;
	font-size:16px;
	color:#0C0F09;
	border:1px solid #0C0F09;
	padding:16px;
	margin-bottom:20px;
}
.tab-link.active {
	background-color:#0C0F09;
	color:#fff;
}


.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 29px;
    background-size: cover;
    background-image: url(./images/menu.webp);
}
.mobile-menu {
    display: none;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
    border-top: 1px solid #fff;
    background-color: rgb(0 0 0 / 90%);
    text-align: center;
}


@media(max-width:1300px) {
	.logo img {
		max-width:185px;
	}
}

@media(max-width:1200px) {
	.hero {
		width: 100%;
	}
	.header-disclaimer {
		width:auto;
	}
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
	.menu {
        display: none;
    }
}

@media (max-width: 992px) {
	.col-5-5 {
		width:100%;
	}
	.benefits-list {
		margin-top:30px;
		padding-left:30px;
	}
	.steps-top {
		width:100%;
		margin-bottom:30px;
	}
	.steps-left .btn {
		margin-bottom:30px;
	}
	.steps-list {
		padding-left:30px;
	}
	.form-container .section-title {
		max-width:100%;
		margin-bottom:30px;
	}
	.form-container {
		flex-wrap: wrap;
	}
	.form {
		max-width:100%;
	}
	.footer-text {
		font-size:20px;
	}
	.social-link {
		width: 32px;
		height: 32px;
		background-size: cover;
	}
	#infrastructure .col-2-3 {
		width:100%;
		margin-bottom:30px;
		min-height:300px;
		padding-right:0;
	}
	#infrastructure .col-1-3 {
		width:100%;
	}
}

@media (max-width: 768px) {
	.footer-widget {
		width: 100%;
		margin-bottom:30px;
        justify-content: space-between;
	}	
	.footer-widget-long {
		width:100%;
	}
	.hero-title {
		font-size:32px;
	}
	.hero-subtitle {
		font-size:20px;
	}
	.hero-buttons .btn {
		margin-bottom:15px;
	}
	.header-disclaimer {
		padding:15px;
	}
	.section-title {
		font-size:25px;
	}
	.text-normal {
		font-size:20px;
	}
	.benefit-title {
		font-size:16px;
	}
	.step-item {
		padding-top: 50px;
		background-size: 50px;
	}
	.review {
		flex-wrap: wrap;
	}
	.review-icon {
		width: 100%;
		margin-bottom:20px;
	}
	.review-content {
		width: 100%;
	}
	.header-disclaimer {
		flex-wrap:wrap;
	}
	.disclaimer-logo {
		margin-bottom:15px;
	}
	.disclaimer-content {
		margin-bottom:15px;
		margin-right:0;
	}
	.disclaimer-content h3 {
		font-size:16px;
	}
	.disclaimer-content p {
		font-size: 14px;
	}
	.cpr {
		font-size:14px;
	}
	.benefit-item {
		background-image:none !important;
		padding-right:0;
	}
}


@media (max-width: 500px) {
	.form {
		padding: 15px;
	}
	.form-input {
		padding:15px;
	}
	.btn {
		padding:15px 15px;
	}
	.footer-widget-long {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, auto);
	}
}



.review-content {
	width:100%;
}
    .modal-overlay {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(0,0,0,.55);
      visibility: hidden;
      opacity: 0;
      transition: opacity .25s ease;
      z-index: 100;
    }
    .modal-overlay.show {
      visibility: visible;
      opacity: 1;
    }
    .modal {
      width: 90%;
      max-width: 420px;
      background: #515050;
      border-radius: 1rem;
    padding: 10px;
      text-align: center;
      position: relative;
      animation: pop .3s ease;
	  color:#fff;
    }
    @keyframes pop {
      from { transform: scale(.85); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }
    .modal h2   { margin-top: 0;margin-bottom:10px; }
    .modal .close-btn {
      position: absolute;
      top: .6rem; right: .6rem;
      border: none;
      background: none;
      font-size: 1.4rem;
      cursor: pointer;
      color: #7f8ea3;
    }
    .modal .close-btn:hover { color: #00387a; }
	
	
	.modal .form {
    padding: 15px;
    background-color: transparent;
    box-shadow: none;
	}
	
	
	
	
	
	
	
	
	