@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/*
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
*/

*{
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

*, *::before, *::after{
  box-sizing: border-box;
}

html{
	-webkit-text-size-adjust: 100%;
  	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
	margin: 0px;
	padding: 0px;
	font-family: "Lato", sans-serif;
}

body.active{
	overflow-y: hidden;
}

[tabindex="-1"]:focus:not(:focus-visible){
	outline: 0 !important;
}

.container{
	max-width: 1240px;
	width: 100%;
	margin: 0px auto;
	padding: 0px 20px;
	box-sizing: border-box;
}

.flex-row{
	display: flex;
}

.flex-justify-content-space-between{
	justify-content: space-between;
}

.flex-align-items-center{
	align-items: center;
}

.flex-cols-4{
	flex: 0 0 33.333333%;
}

.flex-cols-5{
	flex: 0 0 41.666666%;
}

.flex-cols-6{
	flex: 0 0 50%;
}

.flex-cols-7{
	flex: 0 0 58.333333%;
}

.flex-cols-8{
	flex: 0 0 66.666666%;
}

.flex-cols-12{
	flex: 0 0 100%;
}

.grid-row{
	display: grid;
}

.grid-cols-5{
	grid-template-columns: repeat(5,1fr);
}

.grid-cols-4{
	grid-template-columns: repeat(4,1fr);
}

.grid-cols-3{
	grid-template-columns: repeat(3,1fr);
}

.grid-gap-50{
	grid-gap: 50px;
}

.grid-gap-30{
	grid-gap: 30px;
}

.grid-gap-20{
	grid-gap: 20px;
}

#header{
	width: 100%;
	margin: 0px;
	padding: 10px 0px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;
	transition: all 0.2s ease-in-out;
}

#header.sticky{
	padding: 5px 0px;
	background-color: #fff;
	box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.2);
}

.header-left{
	text-align: left;
	flex: 1 1;
}

.header-left .img1{
	width: 100%;
	max-width: 100px;
	transition: all 0.2s ease-in-out;
}

.header-left .img2{
	width: 100%;
	max-width: 80px;
	display: none;
	transition: all 0.2s ease-in-out;
}

#header.sticky .header-left .img1{
	display: none;
}

#header.sticky .header-left .img2{
	display: block;
}

.header-middle{
	text-align: right;
	padding: 0px 0px 0px 0px;
}

.header-middle ul{
	display: inline-block;
	list-style-type: none;
	margin: 0px;
	padding: 0px 0px 0px 0px;
}

.header-middle ul li{
	display: inline-block;
	margin: 0px 0px 0px 20px;
	cursor: pointer;
	position: relative;
}

.header-middle ul li:hover > ul{
	opacity: 1;
	visibility: visible;
}

.header-middle ul li a{
	display: flex;
	text-decoration: none;
	line-height: 28px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	align-items: center;
	padding: 20px 0px;
}

.header-middle ul li a i{
	font-size: 12px;
	padding: 0px 0px 0px 5px;
}

#header.sticky .header-middle ul li a{
	color: rgba(102,102,102,088);
}

.header-middle ul li a:after{
	content: '';
	position: absolute;
	bottom: 20px;
	left: 0px;
	width: 0%;
	height: 2px;
	background-color: #ffffff;
	transition: 0.2s ease-in-out;
}

#header.sticky .header-middle ul li a:after{
	background-color: #7e0ea2;
}

.header-middle ul li a.selected:after{
	width: 100%;
}

.header-middle ul li a:hover:after{
	width: 100%;
}

.header-middle ul ul{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0px;
	width: auto;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	border-top: 3px solid #0bac93;
	padding: 10px 0px;
}

.header-middle ul ul li{
	width: 100%;
	text-align: left;
	margin: 0px;
}

.header-middle ul ul li a{
	padding: 10px 20px;
	color: rgba(102, 102, 102, 088);
	white-space: nowrap;
}

.header-middle ul ul li a:after{
	content: none;
}

.header-right{
	padding: 0px 0px 0px 25px;
}

.header-right a{
	display: block;
	background-color: #0bac93;
	border: 2px solid #0bac93;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 21px;
	letter-spacing: 0.5px;
	transition: all 0.2s ease-in-out;
}

.header-right a:hover{
	background-color: #ffffff;
	border: 2px solid #ffffff;
	color: #0bac93;
}

#header.sticky .header-right a:hover{
	background-color: #ffffff;
	border: 2px solid #0bac93;
	color: #0bac93;
}

#banner{
	width: 100%;
	position: relative;
	background-color: #f1f1f1;
	z-index: 1;
}

#banner #video{
	width: 100%;
	height: 100%;
	min-height: 500px;
    object-fit: cover;
	object-position: center;
}

#banner:after{
	content: '';
	z-index: 2;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.2);
}

.banner-text{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 1200px;
	transform: translate(-50%,-50%);
	text-align: center;
}

.banner-text h2{
	font-size: 62px;
	font-weight: 600;
	color: #fff;
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}

.banner-text h3{
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin: 0px;
	padding: 0px;
	text-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}

#banner-pause{
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding: 15px 20px;
	z-index: 999;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
    background: none;
    outline: none;
    border: none;
	cursor: pointer;
}

#footer-top{
	width: 100%;
	margin: 0px;
	padding: 60px 0px;
	background-color: #7e0ea1;
}

.footer-top-col{
	text-align: left;
}

#footer-top img{
	max-width: 100px;
}

#footer-top p{
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 20px 0px 0px 0px;
	line-height: 26px;
}

#footer-top ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#footer-top ul li{
	width: 100%;
}

#footer-top ul li a{
	display: block;
	line-height: 28px;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
}

#footer-top h3{
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 0px 0px 20px 0px;
}

#footer-bottom{
	width: 100%;
	margin: 0px;
	padding: 30px 0px;
	background-color: #7e0ea1;
	border-top: 1px solid #9c1ac5;
}

.footer-bottom-left{
	text-align: left;
}

.footer-bottom-right{
	text-align: right;
}

.footer-bottom-right ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.footer-bottom-right ul li{
	display: inline-block;
	margin: 0px 0px 0px 20px;
}

.footer-bottom-right ul li a{
	display: block;
	font-size: 22px;
	color: #fff;
}

#footer-bottom p{
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin: 0px;
	padding: 0px;
}

.section{
	width: 100%;
	margin: 0px;
}

.mt-20{
	margin-top: 20px;
}

.pt-40{
	padding-top: 40px;
}

.pt-60{
	padding-top: 60px;
}

.pt-80{
	padding-top: 80px;
}

.pt-115{
	padding-top: 140px;
}

.pt-100{
	padding-top: 100px;
}

.pb-40{
	padding-bottom: 40px;
}

.pb-60{
	padding-bottom: 60px;
}

.pb-80{
	padding-bottom: 80px;
}

.pb-100{
	padding-bottom: 100px;
}

.pr-50{
	padding-right: 50px;
}

.pr-20{
	padding-right: 20px;
}

.pl-50{
	padding-left: 50px;
}

.pl-20{
	padding-left: 20px;
}

.ac{
	text-align: center;
}

.ar{
	text-align: right;
}

.section-grey{
	background-color: #f6f5f8;
}

h2.hl{
	font-size: 32px;
    font-weight: 500;
    color: #7f0ca7;
    margin: 0px;
    padding: 0px;
    line-height: 42px;
    padding-bottom: 10px;
}

h2.hm{
	font-size: 22px;
	font-weight: 500;
	color: #011627;
	margin: 0px;
	padding: 0px;
	line-height: 32px;
}

h2.hl.pb-20{
	padding-bottom: 20px;
}

h3.hm{
	font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #09ad96;
    margin: 0px;
    padding: 0px;
}

h3.hs{
	font-size: 22px;
	line-height: 32px;
	font-weight: 400;
	color: #0bac93;
	margin: 0px;
	padding: 0px;
	font-style: italic;
}

h3.hs.pb-10{
	padding-bottom: 10px;
}

h4.hm{
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: #011627;
	margin: 0px;
	padding: 0px;
}

p.hm{
	font-size: 18px;
	line-height: 30px;
	font-weight: 300;
	color: #666666;
	margin: 0px;
	padding: 0px;
}

p.hs{
	font-size: 14px;
	line-height: 22px;
	font-weight: 300;
	color: #666666;
	margin: 0px;
	padding: 0px;
}

p.pt-15{
	padding-top: 15px;
}

p.hm.pb-20{
	padding-bottom: 20px;
}

.bg-50{
	position: relative;
}

/*
.bg-50:before{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	width: 50%;
	background-color: #800ca4;
}
*/

.bg-50:after{
	content: '';
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	background-color: #07ad95;
}

.card{
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: 1px solid #dbdbdb;
	border-radius: 8px;
	overflow: hidden;
}

.card-top{
	width: 100%;
	height: 220px;
	background-color: #f1f1f1;
}

.card-top img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-image{
	width: 100%;
    height: 200px;
    cursor: pointer;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-color: #f1f1f1;
}

.card-bottom{
	width: 100%;
	padding: 25px 30px;
	box-sizing: border-box;
	background-color: #fff;
	text-align: center;
}

.card-bottom h3{
	font-size: 22px;
	font-weight: 600;
	color: #011627;
	margin: 0px;
	padding: 0px 0px 15px 0px;
}

.card-bottom p{
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin: 0px;
	padding: 0px 0px 0px 0px;
	line-height: 22px;
}




.card-body{
	width: 100%;
	padding: 20px 20px;
	text-align: left;
}

.card-body-has-footer{
	padding: 20px 20px 80px 20px;
}

.card-body h3{
	font-size: 18px;
	font-weight: 500;
	color: #353535;
	margin: 0px 0px 5px 0px;
}

.card-line-clamp{
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-body a.link{
	font-size: 14px;
	color: #353535;
}

.card-body h3 a{
	color: #353535;
	text-decoration: none;
}

.card-body h4{
	font-size: 14px;
	font-weight: 400;
	color: #353535;
	margin: 0px 0px 5px 0px;
}

.card-body p{
	font-size: 14px;
	font-weight: 400;
	color: #353535;
	margin: 0px 0px 5px 0px;
}

.card-footer{
	padding: 0px 20px 20px 20px;
}



.box{
	width: 100%;
	background-color: #fff;
	position: relative;
	box-shadow: 0 1rem 3rem -1rem rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	overflow: hidden;
}

.box img{
	width: 100%;
}

.box4{
	width: 100%;
	padding: 40px;
	background-color: rgba(255,255,255,0.93);
	position: relative;
	z-index: 3;
	border-radius: 4px;
}

.gallery{
	position: relative;
	z-index: 1;
}

.gallery .overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 3;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
}

.gallery:hover .overlay{
	opacity: 1;
	visibility: visible;
}

.gallery .overlay i{
	color: #fff;
	font-size: 32px;
}

.gallery .overlay h3{
	color: #fff;
}

.gallery img{
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.btn{
	display: inline-block;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	padding: 18px 25px;
	letter-spacing: 0.5px;
	transition: all 0.2s ease-in-out;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-full{
	display: block;
	width: 100%;
	text-align: center;
}

.btn-purple{
	background-color: #7e0ea1;
}

.btn-green{
	background-color: #07ad96;
}

.btn-green2{
	background-color: #07ad96;
	padding: 16px 21px;
	border: 2px solid #07ad96;
}

.btn-white{
	background-color: transparent;
	border: 2px solid #fff;
}

.btn-purple:hover{
	background-color: #ffffff;
	color: #7e0ea1;
}

.btn-green:hover{
	background-color: #ffffff;
	color: #07ad96;
}

.btn-green2:hover{
	background-color: #ffffff;
	color: #07ad96;
	border: 2px solid #07ad96;
}

.btn-white:hover{
	background-color: #ffffff;
	color: #7e0ea1;
}

#mobile-icon{
	display: none;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	z-index: 1002;
	cursor: pointer;
}

#mobile-icon span{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 2px;
	background-color: #ffffff;
	transform: translate(-50%,-50%);
	transition: all 0.2s ease-in-out;
}

#mobile-icon span:before{
	content: '';
	position: absolute;
	top: -9px;
	left: 0px;
	width: 32px;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.2s ease-in-out;
}

#mobile-icon span:after{
	content: '';
	position: absolute;
	top: 9px;
	left: 0px;
	width: 32px;
	height: 2px;
	background-color: #ffffff;
	transition: all 0.2s ease-in-out;
}

#header.sticky #mobile-icon span{
	background-color: #7e0ea1;
}

#header.sticky #mobile-icon span:before{
	background-color: #7e0ea1;
}

#header.sticky #mobile-icon span:after{
	background-color: #7e0ea1;
}

#header.sticky #mobile-icon.active span:before{
	background-color: #ffffff;
}

#header.sticky #mobile-icon.active span:after{
	background-color: #ffffff;
}

#mobile-icon.active span{
	background-color: transparent!important;
}

#mobile-icon.active span:before{
	transform: rotate(-45deg);
	top: 0px;
}

#mobile-icon.active span:after{
	transform: rotate(45deg);
	top: 0px;
}

#mobile-overlay{
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,0.2);
	z-index: 1000;
	transition: all 0.2s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

#mobile-overlay.active{
	opacity: 1;
	visibility: visible;
}

#mobile-navigation{
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 320px;
	z-index: 1001;
	transform: translateX(100%);
	transition: all 0.2s ease-in-out;
	background-color: #0aad93;
	overflow-y: auto;
}

#mobile-navigation.active{
	transform: translateX(0%);
}

.mobile-navigation-top{
	width: 100%;
	padding: 15px 20px;
}

.mobile-navigation-top img{
	max-width: 60px;
	width: 100%;
}

.mobile-navigation-middle{
	width: 100%;
	padding: 15px 0px;
}

.mobile-navigation-middle ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.mobile-navigation-middle ul li{
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	position: relative;
}

.mobile-navigation-middle ul li a{
	display: block;
	padding: 15px 20px;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	cursor: pointer;
}

.mobile-navigation-middle ul li a i{
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 12px;
	color: #fff;
}

.mobile-navigation-middle ul li a:hover{
	background-color: rgba(255,255,255,0.3);
}

.mobile-navigation-middle ul ul{
	display: none;
}

.mobile-navigation-middle ul ul li{
	border-top: 1px solid rgba(255,255,255,0.3);
	border-bottom: 0px;
}

.mobile-navigation-middle ul ul li a{
	padding: 15px 40px;
}

.mobile-navigation-bottom{
	width: 100%;
	padding: 15px 20px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.contact-box{
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2); 
	width: 100%; 
	margin: 0px auto;
	max-width: 600px;
	background-color: #ffffff; 
	padding: 40px 40px; 
	text-align: left;
}




/* input styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

input, button, select, textarea{
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.form-control{
	display: block;
	width: 100%;
	padding: 0.90rem 0.75rem;
	font-size: 14px;
	font-weight: 400;
	line-height: inherit;
	color: #7e7e7e;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, padding 0.2s ease-out;
}

select.form-control{
	padding: 0.75rem 0.75rem 0.75rem 0.5rem;
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #7e7e7e;
}

.form-control:focus {
  color: #7e7e7e;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control.is-invalid{
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.form-control::placeholder {
  color: #7e7e7e;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-group{
  margin-bottom: 1rem;
}

.form-text{
  display: block;
  margin-top: 0.25rem;
}

.form-row{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col, .form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-control-wrapper{
	position: relative;
}

.form-control-label{
	font-size: 12px;
    font-weight: normal;
    position: absolute;
    top: 0;
	color: #7e7e7e;
	left: 0;
    width: 100%;
    margin-top: 8px;
    margin-left: 1px;
    padding: 0px 0.75rem;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
	transition: all 0.2s ease-out;
	text-align: left;
}

.form-control-label.active{
	opacity: 1;
	-webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.form-control.active{
	padding: 1.30rem 0.75rem 0.50rem 0.75rem;
}

select.form-control.active{
	padding: 1.30rem 0.75rem 0.20rem 0.5rem;
}

.form-control-validation-message{
	font-size: 14px;
	width: 100%;
	margin: 0px;
	padding: 0.5rem 0px 0px 0px;
	color: #dc3545;
	opacity: 0;
	visibility: hidden;
	display: none;
}

.form-control-validation-message-white{
	color: #ffffff!important;
}

.form-control-validation-message.active{
	opacity: 1;
	visibility: visible;
	display: block;
	text-align: left;
}

/* end input styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

/* modal styles ------------------------------------------------------------------------------------------------------------------------------------------------- */

.modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1001;
	visibility: hidden;
	opacity: 0;
}

.modal.active{
	opacity: 1;
	visibility: visible;
	transition: opacity .15s linear;
}

.modal-dialog{
	position: relative;
	width: auto;
	max-width: 500px;
	margin: 30px auto;
	padding: 0px 15px;
	transition: transform .3s ease-out;
	transform: translate(0,-50px);
	pointer-events: none;
}

.modal.active > .modal-dialog{
	transform: none;
}

.modal-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

.modal-header{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.modal-title{
	font-size: 20px;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
    color: #7e7e7e;
}

.modal-close{
    box-sizing: content-box;
    width: 16px;
	height: 16px;
    padding: 0px;
    color: #000;
    background-image: url('../images/modal-close.svg');
	background-position: center center;
	background-repeat: no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
    margin: 0px;
	cursor: pointer;
}

.modal-body{
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-body p{
	color: #7e7e7e;
    line-height: 22px;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
}

.modal-footer{
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.modal-backdrop{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: opacity .15s linear;
}

.modal-backdrop.active{
	opacity: 0.2;
	visibility: visible;
}

/* modal styles ------------------------------------------------------------------------------------------------------------------------------------------------- */


@media (max-width: 1400px){

}

@media (max-width: 1200px){
	.header-middle{
		display: none;
	}
	 .header-right{
		display: none;
	}
	#mobile-icon{
		display: block;
	}
}

@media (max-width: 992px){
	.section-gallery .grid-cols-4{
		grid-template-columns: repeat(2,1fr);
	}
	.section-genres .grid-cols-4{
		grid-template-columns: repeat(3,1fr);
	}	
	.section-gallery-albums .grid-cols-4{
		grid-template-columns: repeat(3,1fr);
	}

	#footer-top .grid-cols-3{
		grid-template-columns: repeat(1,1fr);
	}
	.footer-top-col {
		text-align: center;
	}
	#footer-bottom .flex-row{
		flex-wrap: wrap;
	}
	.footer-bottom-left{
		flex: 0 0 100%;
		text-align: center;
		padding: 0px 0px 20px 0px;
	}
	.footer-bottom-right{
		flex: 0 0 100%;
		text-align: center;
	}
	.footer-bottom-right ul li{
		display: inline-block;
		margin: 0px 10px 0px 10px;
	}
}

@media (max-width: 768px){
	.pb-80{
		padding-bottom: 40px;
	}
	.pt-80{
		padding-top: 40px;
	}
	.pb-60{
		padding-bottom: 40px;
	}
	.pt-60{
		padding-top: 40px;
	}
	.pt-115{
		padding-top: 110px;
	}
	.banner-text h2{
		font-size: 42px;
	}
	.banner-text h3{
		font-size: 22px;
	}
	.section-welcome .flex-row{
		flex-wrap: wrap;
	}
	.section-welcome .flex-cols-7{
		flex: 0 0 100%;
		padding: 0px;
		padding: 0px 0px 30px 0px;
	}
	.section-welcome .flex-cols-5{
		flex: 0 0 100%;
		padding: 0px;
	}
	.section-info{
		padding: 0px;
	}
	.section-info:before{
		content: none;
	}
	.section-info:after{
		content: none;
	}
	.section-info .flex-row-info{
		flex-wrap: wrap;
	}
	.section-info .flex-cols-6-info{
		flex: 0 0 100%;
	}
	.section-info .flex-col-bg1{
		background-color: #7e0ea1;
		padding: 30px 20px;
	}
	.section-info .container{
		padding: 0px;
	}
	.section-info .flex-col-bg2{
		background-color: #0aad93;
		padding: 30px 20px;
	}
	.section-genres .grid-cols-4{
		grid-template-columns: repeat(2,1fr);
	}
	.section-gallery-albums .grid-cols-4{
		grid-template-columns: repeat(2,1fr);
	}
}

@media (max-width: 576px){
	.section-genres .grid-cols-4{
		grid-template-columns: repeat(1,1fr);
	}
	.card-top{
		width: 100%;
		height: 500px;
	}	
	.card-image{
		height: 500px;
	}
	.section-gallery .grid-cols-4{
		grid-template-columns: repeat(1,1fr);
	}
	.section-gallery-albums .grid-cols-4{
		grid-template-columns: repeat(1,1fr);
	}
	.contact-box {
		box-shadow: none;
		padding: 0px;
	}

}