:root {
  --blue:#007bff;
  --indigo:#6610f2;
  --purple:#6f42c1;
  --pink:#e83e8c;
  --red:#dc3545;
  --orange:#fd7e14;
  --yellow:#ffc107;
  --green:#28a745;
  --teal:#20c997;
  --cyan:#17a2b8;
  --white:#fff;
  --gray:#6c757d;
  --gray-dark:#343a40;
  --primary:#007bff;
  --secondary:#6c757d;
  --success:#28a745;
  --info:#17a2b8;
  --warning:#ffc107;
  --danger:#dc3545;
  --light:#f8f9fa;
  --dark:#343a40;
  --breakpoint-xs:0;
  --breakpoint-sm:576px;
  --breakpoint-md:768px;
  --breakpoint-lg:992px;
  --breakpoint-xl:1200px;
  --font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI", Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; }
  
body{
	margin: 0 auto;
	font-family: 'Montserrat', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	color: #000;
}
.row:after, .row:before {
    content: " ";
    display: table;
}
.row:after {
    clear: both;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
	font-weight: 800;
	color: #000;
}
a{
	text-decoration: none;
	color: #000;
}
a:hover{
	text-decoration: none;
	color: #000;
}	
#coming-soon_section {
	padding: 10% 0;
    height: 100vh;
	min-height: 960px;
	background: #fff url('../imgs/bg-section.webp') no-repeat center center;
	background-size: cover;
}
/*.coming-soon_row {
	align-items: center;
}*/
.site-branding {
    margin: 0 0 3rem 0;
}
.site-logo {
    width: auto;
    max-width: 100%;
    height: auto;
}
#coming-soon_section .section_heading {
    margin: 0 0 2rem 0;
    font-size: 96px;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 4px 3px rgba(0, 0, 0, .85);
	color: #fff;
}
.btn_link {
    display: inline-flex;
	align-items: center;
    gap: .5rem;
    padding: 2rem 2.25rem;
    background: #BDFD48;
	background: linear-gradient(90deg, rgba(1,223,254,1) 0%, rgba(189,253,72,1) 100%);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    border-radius: 0 70px 0 70px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s ease;
}
.btn_link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.btn_link:before {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: rgba(255,255,255,0.3);
	border-radius: 0 70px 0 70px;
	transition: all 2s ease;
}
.btn_link:hover:before {
	width: 100%;
	border-radius: 0 75px 0 75px;
}
.btn_link .icon{
	font-size: 1.25em;
}
#coming-soon_section .navbar-nav{
	position: relative;
	z-index: 5;
}
#coming-soon_section .navbar-nav::before{
	content: '';
	display: block;
	position: absolute;
	top: -130px;
    left: -45px;
    background: transparent url(../imgs/bg-menu.webp) no-repeat center;
    background-size: contain;
    width: 550px;
    height: 800px;
    z-index: -1;
}
#main-menu{
    list-style: none;
    margin: 0;
    padding: 5rem 2rem 0 3rem;
    width: 90%; 
}
#main-menu li:not(:last-child){
	padding-bottom: 2.25rem;
}
#main-menu li .nav-txt,
#main-menu li .nav-link{
	font-size: 62px;
    font-size: 3.875rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
	background: -webkit-linear-gradient(-90deg, rgba(1,223,254,1) 25%, rgba(189,253,72,1) 85%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s ease;
}
#main-menu li .nav-link:hover,
#main-menu li .nav-link:focus{
	background: -webkit-linear-gradient(-90deg, rgba(1,223,254,1) 0%, rgba(69,232,255,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer_row {
    margin-top: 20%;
    position: relative;
    z-index: 5;
}
.footer-contacts_block {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.footer-contacts_block,
.footer-contacts_block a{
	font-size: 15px;
    line-height: 1.25;
    color: rgba(255, 255, 255, .65);
}
.footer-contacts_block a:hover{
	text-decoration: underline;
}
.contacts_block {
    display: flex;
    align-items: center;
	column-gap: 2rem;
	justify-content: flex-end;
}
.company_address,
.company_email{
    display: flex;
    align-items: center;
    column-gap: .75rem;
}
.company_address .icon,
.company_email .icon{
	font-size: 1.25em;
}
.modal-dialog {
	max-width: 60%;
}
.modal-content{
    background-color: rgba(255, 255, 255, 1);
}
.modal-header{
	padding: 1.5rem 1rem .5rem 1.75rem;
	border-bottom: 0;
}
.btn-close{
	width: 1.5em;
    height: 1.5em;
	background-size: 1.5em auto;
	border-radius: 0;
    opacity: 1;
}
.modal-title {
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #212121;
}
.modal-body{
	padding: 2rem 1.75rem 4rem 1.75rem;
}
.address-program_block {
    margin-bottom: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dcdcdc;
}
.address-program_heading,
.presetation_heading{
	margin: 0 0 1.25rem 0;
	font-size: 22px;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.25;
    color: #212121;
}
.presetation_heading{
	font-size: 20px;
    font-size: 1.25rem;
}
/*.presetation_block{
	text-align: center;
}*/
.dwnl-btn {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .5rem;
	padding: 1rem 1.75rem;
    background: #BDFD48;
	background: linear-gradient(90deg, rgba(1,223,254,1) 0%, rgba(189,253,72,1) 100%);
	border-radius: 0 50px 0 50px;
	font-size: 16px;
    line-height: 1;
	color: #000;
	transition: all 0.5s ease;
}
.dwnl-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.dwnl-btn .icon {
    font-size: 1.5em;
}
@media(max-width: 1600px){
	
}
@media(max-width: 1536px){
	#coming-soon_section .section_heading {
		font-size: 94px;
		font-size: 5.875rem;
	}
	#coming-soon_section .navbar-nav::before{
		left: -70px;
		height: 780px;
	}
	#main-menu {
		padding: 5rem 2rem 0 1.35rem;
	}
}
@media(max-width: 1440px){
	#coming-soon_section .section_heading {
        font-size: 90px;
        font-size: 5.625rem;
    }
	#coming-soon_section .navbar-nav::before {
        left: -58px;
        width: 500px;
	}
	#main-menu {
        padding: 5rem 2rem 0 0.5rem;
    }
	.modal-dialog {
		max-width: 70%;
	}
}
@media(max-width: 1366px){
	#coming-soon_section .section_heading {
        font-size: 88px;
        font-size: 5.5rem;
    }
	.btn_link{
		padding: 1.5rem 2rem;
		font-size: 24px;
	}
	#coming-soon_section .navbar-nav::before{
		top: -115px;
        left: -30px;
        width: 450px;
        height: 730px;
    }
	#main-menu {
        padding: 4.5rem 2rem 0 2rem;
    }
	#main-menu li .nav-txt, 
	#main-menu li .nav-link {
		font-size: 56px;
		font-size: 3.5rem;
	}
	#main-menu li:not(:last-child) {
		padding-bottom: 2rem;
	}
	
}
@media(max-width: 1280px){
	#coming-soon_section .section_heading {
        font-size: 84px;
        font-size: 5.25rem;
    }
	#coming-soon_section .navbar-nav::before {
        top: -115px;
        left: -30px;
        width: 415px;
        height: 680px;
    }
	#main-menu {
        padding: 4.5rem 2rem 0 1.5rem;
    }
	.modal-dialog {
		max-width: 80%;
	}
}
@media(max-width: 1200px){
	
}
@media(max-width: 1180px){
	.site-logo {
		width: 45%;
	}
	#coming-soon_section .section_heading {
        font-size: 72px;
        font-size: 4.5rem;
    }
	#coming-soon_section .navbar-nav::before {
        top: -56px;
        left: -18px;
        width: 380px;
        height: 640px;
    }
	#main-menu {
        padding: 7.75rem 2rem 0 1.75rem;
    }
	#main-menu li:not(:last-child) {
        padding-bottom: 1.5rem;
    }
	#main-menu li .nav-txt, 
	#main-menu li .nav-link {
        font-size: 52px;
        font-size: 3.25rem;
    }
	.contacts_block{
		flex-wrap: wrap;
		gap: .35rem;
	}
	.footer_row {
		margin-top: 28%;
	}
}
@media(max-width: 1080px){
	.modal-dialog {
        max-width: 85%;
    }
}
@media(max-width: 1024px){
	.modal-dialog {
        max-width: 90%;
    }
	.footer_row {
        margin-top: 23%;
    }
}
@media(max-width: 960px){
	#main-menu li .nav-txt, 
	#main-menu li .nav-link {
        font-size: 48px;
        font-size: 3rem;
    }
	#coming-soon_section .navbar-nav::before {
        top: -18px;
        left: -25px;
        width: 380px;
        height: 540px;
    }
	#main-menu{
		width: 100%;
	}
	.footer-contacts_block{
		grid-template-columns: 1fr;
	}
	.company_block {
		margin: 0 0 .5rem 0;
		text-align: center;
	}
	.contacts_block{
		flex-direction: column;
		justify-content: center;
	}
}
@media(max-width: 921px){
	.presetation_block{
		width: 50%;
		margin-bottom: 2rem;
	}
}
@media(max-width: 880px){
	#coming-soon_section .navbar-nav::before {
        top: -18px;
        left: -44px;
	}
	#main-menu {
        padding: 7.75rem 2rem 0 0.75rem;
    }
	#main-menu li .nav-txt, #main-menu li .nav-link {
        font-size: 46px;
        font-size: 2.875rem;
    }
}
@media(max-width: 768px){
	#coming-soon_section .navbar-nav::before {
        top: 7px;
        left: -12px;
        width: 320px;
        height: 490px;
    }
	#main-menu {
        padding: 8.5rem 2rem 0 1.75rem;
    }
	#main-menu li .nav-txt,
	#main-menu li .nav-link {
        font-size: 44px;
        font-size: 2.75rem;
    }
	#main-menu li:not(:last-child) {
        padding-bottom: 1rem;
    }
}

@media(max-width: 767px){
	#coming-soon_section{
		background-position: 94% 50%;
	}
	.coming-soon-left_col,
	.coming-soon-right_col{
		width: 100%;
	}
	.site-branding {
		margin: 0 0 2rem 0;
	}
	.site-branding,
	#coming-soon_section .section_heading,
	.section-btn_warp{
		text-align: center;
	}
	#coming-soon_section .section_heading {
        font-size: 64px;
        font-size: 4rem;
    }
	#coming-soon_section .navbar-nav::before {
        top: 25px;
        left: 72px;
        width: 350px;
        height: 430px;
    }
	#main-menu {
        padding: 8.5rem 2rem 0 8.75rem;
    }
	#main-menu li .nav-txt, #main-menu li .nav-link {
        font-size: 36px;
        font-size: 2.25rem;
    }
	.footer_row {
        margin-top: 32%;
    }
	.contacts_block{
		gap: .25rem;
	}
}
@media(max-width: 600px){
	#coming-soon_section {
        background-position: 87% 50%;
    }
	#coming-soon_section .section_heading {
        font-size: 60px;
        font-size: 3.75rem;
    }
	#coming-soon_section .navbar-nav::before {
        top: 36px;
	}
	#main-menu {
        padding: 9.5rem 2rem 0 8.75rem;
    }
	.modal-dialog {
        max-width: 95%;
    }
	.modal-body {
		padding: 2rem 1.75rem 1.5rem 1.75rem;
	}
	.modal-title {
		font-size: 34px;
		font-size: 2.125rem;
	}
	.modal-header .btn-close{
		margin: -2.5rem -.5rem -.5rem auto;
	}
	.presetation_block {
        width: 100%;
	}
	.footer-contacts_block, .footer-contacts_block a {
		font-size: 14px;
	}
	
}
@media(max-width: 560px){
	
}
@media(max-width: 480px){
	#coming-soon_section {
        background-position: 77% 50%;
    }
	.footer_row {
        margin-top: 38%;
    }
}
@media(max-width: 430px){
	#coming-soon_section .section_heading {
        font-size: 52px;
        font-size: 3.25rem;
    }
	#coming-soon_section .navbar-nav::before{
		left: 28px;
        height: 430px;
	}
	#main-menu {
        padding: 10rem 2rem 0 5.75rem;
    }
	.footer_row {
        margin-top: 42%;
    }
	.company_address {
		width: 82%;
		align-items: flex-start;
	}
	.company_address .address_txt {
		text-align: center;
	}
}
@media(max-width: 414px){
	#coming-soon_section .navbar-nav::before {
        left: 24px;
	}
	.modal-header .btn-close {
        margin: -4.5rem -.5rem -.5rem auto;
    }
}
@media(max-width: 390px){
	#coming-soon_section {
        background-position: 76% 50%;
    }
	#coming-soon_section .section_heading {
        font-size: 48px;
        font-size: 3rem;
    }
	#coming-soon_section .navbar-nav::before {
        left: 6px;
    }
	#main-menu {
        padding: 10.5rem 2rem 0 4.25rem;
    }
	.footer_row {
        margin-top: 45%;
    }
	.company_address {
        width: 86%;
	}
}
@media(max-width: 375px){
	
}
@media(max-width: 360px){
	#coming-soon_section {
        background-position: 75.5% 50%;
    }
	#coming-soon_section .navbar-nav::before {
        left: 3px;
        width: 330px;
    }
	#main-menu {
        padding: 10.5rem 2rem 0 3.25rem;
    }
	.company_address {
        width: 90%;
    }
}
@media(max-width: 320px){
	#coming-soon_section {
        background-position: 73.5% 50%;
    }
	#coming-soon_section .navbar-nav::before {
        left: 5px;
        width: 286px;
    }
	.site-logo {
        width: 55%;
    }
	#coming-soon_section .section_heading {
        font-size: 40px;
        font-size: 2.5rem;
    }
	.btn_link {
        font-size: 20px;
    }
	#main-menu {
        padding: 10.5rem 2rem 0 2.75rem;
    }
	.footer_row {
        margin-top: 55%;
    }
	.modal-title {
        font-size: 32px;
        font-size: 2rem;
        line-height: 1.2;
    }
	.dwnl-btn {
		display: flex;
	}
}