@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/*
font-family: "Ubuntu", sans-serif;

font-family: "Roboto", sans-serif;
font-optical-sizing: auto;
font-variation-settings: "wdth" 100;
*/

:root {
	--font-content: 'Roboto', sans-serif;
	--font-title: 'Ubuntu', sans-serif;
	--main-color: #03045a; 
	--sub-color: #2855bf;
	--third-color: #ff0000;
}

.bg-main { background-color: var(--main-color); }
.bg-sub { background-color: var(--sub-color); }
.bg-third { background-color: var(--third-color); }

.txt-main { color: var(--main-color); }
.txt-sub { color: var(--sub-color); }
.txt-third { color: var(--third-color); }

.brdr-main { border-color: var(--main-color); }
.brdr-sub { border-color: var(--sub-color); }
.brdr-third { border-color: var(--third-color); }

.br { margin-bottom: 10px; }

html, body { width: 100%; height: 100%; margin:0; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-optical-sizing: auto;
	letter-spacing: 0.025em;
	font-style: normal;
	font-weight: 500;
	margin: 0;
	transition: .5s;
	line-height: 1.2;
}
h1 { font-size: 45px; }
h2 { font-size: 40px; }
h3 { font-size: 33px; }
h4 { font-size: 27px; }
h5 { font-size: 23px; }
h6 { font-size: 18px; }

p {
	font-family: var(--font-content);
	font-style: normal;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.8;
	margin: 0;
}

ol, li, ul {
	font-family: var(--font-content);
	font-style: normal;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.8;
}

li { margin-bottom: 5px; }

a, a:visited {
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	color: var(--main-color);

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		 -ms-transition: all 0.2s;
		  -o-transition: all 0.2s;
			  transition: all 0.2s;
}
a:hover, a:focus, a:active { text-decoration: underline; color: var(--blue-light); outline: none; }



/* CUST_AMINATION
============================================================================================================================== */

@-webkit-keyframes floating { 0% { transform: translate(0, 0px); } 50% { transform: translate(0, 15px); } 100% { transform: translate(0, -0px); } }
@keyframes floating { 0% { transform: translate(0, 0px); } 50% { transform: translate(0, 15px); } 100% { transform: translate(0, -0px); } }

@keyframes ripple-wave {
	0% { opacity: 0.8; -webkit-transform: scale(0.9); transform: scale(0.9); }
	100% { opacity: 0; -webkit-transform: scale(2); transform: scale(2); }
}

@keyframes pulse-gold {
	0% { box-shadow: 0 0 0 0 rgba(244, 165, 1, 0.7); }
	70% { box-shadow: 0 0 0 50px rgba(244, 165, 1, 0); }
	100% { box-shadow: 0 0 0 0 rgba(244, 165, 1, 0); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

/* .fadeIn { animation: fadeIn 1s ease-in-out forwards; }
.fadeOut { animation: fadeOut 1s ease-in-out forwards; } */



/* HEADER
============================================================================================================================== */

.card-hdr {
	position: relative;
	margin-top: -30px;
	background-color: var(--third-color);
	color: #FFF;
	border: 0;
	border-radius: 0 0 20px 20px;
}

.card-hdr .icon-i { font-size: 25px; color: #FFF; }
.header-logo-icon { width: 30px; margin-top: -12px; margin-right: 5px }

.sub-header {
	background:linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../imgs/BGs/BG-1.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* NAVBAR
============================================================================================================================== */

.nav-main {  background-color: #FFF; }

.nav-main .navbar-nav .nav-link {
	font-family: var(--font-title);
	font-style: normal;
	font-size: 20px;
	font-weight: 600;
	color: var(--main-color);
	margin-left: 10px;
	margin-right: 10px;

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		 -ms-transition: all 0.2s;
		  -o-transition: all 0.2s;
			  transition: all 0.2s;
}
.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { text-decoration: none; color: var(--sub-color); }
@media only screen and (max-width: 1399.50px) { .nav-main .navbar-nav .nav-link { font-size: 20px; margin-left: 5px; margin-right: 5px; } }
@media only screen and (max-width: 1199.50px) { .nav-main .navbar-nav .nav-link { font-size: 17px; margin-left: 3px; margin-right: 3px; } }

.nav-main .dropdown-menu { background-color: var(--main-color); padding: 0; border: 0; }
.nav-main .dropdown-item {
	font-family: var(--font-title);
	font-optical-sizing: auto;
	letter-spacing: 0.04em;
	font-style: normal;
	font-size: 20px;
	font-weight: 500;
	color: #FFF;
}
.nav-main .dropdown-item:focus, .dropdown-item:hover { text-decoration: none; background-color: var(--sub-color); }

.navbar-toggler { border: 5px solid var(--sub-color); color: var(--sub-color); margin-right: 30px; margin-top: 10px; margin-bottom: 10px }
.wrap-logo { margin-left: 0; width: 100px; }
.nav-main .offcanvas-header .close-btn {
	margin: 10px 10px 10px auto;
	transform: scale(0.8);

	-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		 -ms-transition: all 0.2s;
		  -o-transition: all 0.2s;
			  transition: all 0.2s;
} .nav-main .offcanvas-header .close-btn:hover { transform: scale(1.0); }
@media only screen and (max-width: 991.50px) {
	.nav-main .offcanvas { background-color: #FFF; }
	.nav-main .navbar-nav .nav-link { color: var(--main-color); font-size: 20px; }
	.nav-main .navbar-nav .nav-link:focus, .nav-main .navbar-nav .nav-link:hover { padding-left: 10px; color: var(--sub-color); }
	.nav-main .navbar-nav .nav-item.active { padding-left: 15px; margin-top: 10px; }
	.nav-main .dropdown-menu { background-color: #FFF; border: 0; margin-left: 10px; }
	.nav-main .dropdown-item { text-decoration: none; color: var(--main-color); }
	.nav-main .dropdown-item:focus, .dropdown-item:hover { background-color: #FFF; text-decoration: none; color: var(--sub-color); }
}



/* CAROUSEL
============================================================================================================================== */



/* FORMS
============================================================================================================================== */

.form-control, .form-select {
	font-family: var(--font-title);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	color: #000;
	border: 3px solid var(--main-color);
	background-color: #FFF;
	border-radius: 20px;
	padding: 10px 15px 10px 15px;

  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
       -o-transition: all 0.2s;
      -ms-transition: all 0.2s;
          transition: all 0.2s;
}
.form-control.medium, .form-select.medium {
	padding: 5px 15px 5px 15px;
	font-size: 16px;
}

.form-control-sml, .form-select-sml {
	font-family: var(--font-title);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.7;
	color: #000;
	border: 3px solid var(--main-color);
	background-color: #FFF;
	border-radius: 20px;
	padding: 5px 15px 5px 15px;
}



/* BUTTONS
============================================================================================================================== */

.btn-main {
	font-family: var(--font-title);	
	letter-spacing: 0.04em;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
	font-size: 16px;
	outline: none;
	color: #FFF;
	padding: 15px 30px 15px 30px;
	border: 0;
	border-radius: 25px;
	background-color: var(--main-color);
	transition: .1s ease-in-out, .4s color;
}
.btn-main:hover { color: #FFF; background-color: var(--sub-color); }
.btn-main:active { transform: translateY(0.15em); }
.btn-main.full { width: 100%; }

.btn-main.green { color: #FFF; background-color: #1a9611; }
.btn-main.green:hover { color: #FFF; background-color: var(--sub-color); }

.play-btn {
	color: #FFF;
	font-size: 100px;
	width: 100px; /* Need a specific value to work */
	border-radius: 50%;
	animation: pulse-gold 2s infinite;
	-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		 -ms-transition: all 0.4s ease-in-out;
		  -o-transition: all 0.4s ease-in-out;
			  transition: all 0.4s ease-in-out;
}
.play-btn:hover { color: #f4a501; animation: pulse-gold 2s infinite; }



/* HOME
============================================================================================================================== */

.bg-1 {
	background:linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../imgs/BGs/BG-3.jpg');
	background-size:cover; background-position: center center;
}

.card-alert {
	position: relative;
	border: 0;
	border-radius: 20px;
	margin-top: 50px;
	margin-bottom: -100px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	padding-top: 20px;
	padding-bottom: 20px;
}

.photo-chair {
	border-radius: 50%;
	border: 10px solid var(--main-color);
}

.workshop-img-1 {
	border-radius: 50%;
	border: 10px solid var(--sub-color);
}

.workshop-date {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding-top: 27%;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.6);
}



/* FOOTER
============================================================================================================================== */

footer {
	background: url('../imgs/BGs/BG-2.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 50px;
}

.footer-logo-wrap {
	background-color: rgba(255, 255, 255, 0.75);
	padding: 20px;
	border-radius: 30px;
	position: relative;
	margin-top: -80px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

footer p { color: #FFF; }
footer h5 { color: #FFF; }
footer .icon-i { font-size: 25px; color: #FFF; }
footer .logo-icon { width: 27px; margin-top: -12px; margin-right: 5px }
footer a { color: #FFF; text-decoration: underline; }



/* OTHERS
============================================================================================================================== */

.ol-lower-roman { list-style-type: lower-roman; }
.bdr-radius-200 { border-radius: 200px }
.txt-orange { color: #db6405; }
.txt-brown { color: #6d1d2a; }
.txt-light-green { color: #7bba10; }

.countdown-item {
	border-radius: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	margin: 0 auto;
	text-align: center;
	background: #FC226A; background: linear-gradient(180deg, rgba(252, 34, 106, 1) 0%, rgba(154, 77, 238, 1) 100%);
	/* background: #03045A; background: linear-gradient(0deg, rgba(3, 4, 90, 1) 0%, rgba(40, 85, 191, 1) 100%); */
}
.countdown-item span { font-family: var(--font-title); font-size:50px; font-weight:500; color: #FFF; }
.countdown-item p { font-size: 16px; margin-top: -10px; color: #FFF; }

.img-2 {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 570px;

	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 1199.50px) { .img-2 { height: 500px; bottom: -20px } }
@media only screen and (max-width: 991.50px) { .img-2 { height: 570px; bottom: 0 } }


.nav-tabs .nav-link { background-color: #f4f2ee; border: 0; color: #000; margin-right: 10px; }
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active { background-color: #231e60; border: 0; color: #FFF; }
.tab-content .tab-pane { border: 20px solid var(--main-color); padding: 30px 40px 30px 40px; }


.table-cstm { width: 100%; border: 1px solid var(--main-color); }
.table-cstm thead tr th, .table-cstm tbody tr td, .table-cstm tfoot tr th {
	font-family: var(--font-content);
	font-style: normal;
	font-size: 18px;
	font-weight: normal;
	margin: 0;
	padding: 20px;
	vertical-align: top;
	border: 1px solid var(--main-color);
}
/* .table-cstm tbody tr td:first-child { text-align: center; width: 150px; } */


.google-map { width: 100%; height: 450px; border: 0; margin-bottom: -5px; margin-top: -50px; }


.floating-div {
	position: fixed;
	top: 80%;
	right: 0;
	transform: translateY(-50%);
	width: 230px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	border-radius: 30px 0 0 30px;
	z-index: 1000;
}


.card-sponsors {
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 30px;
	border: 4px solid #000;
}

.card-sponsors.gold {
	background: url('../imgs/BGs/BG-Gold.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}
.card-sponsors.platinum {
	background: url('../imgs/BGs/BG-Silver.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.card-sponsors.exhibitor { 
	background: #020024;
	background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

