@charset "utf-8";

@font-face {
    font-family: 'Amasis MT Pro';
    src: url('fonts/AmasisMTPro-Black.woff2') format('woff2'),
        url('fonts/AmasisMTPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Amasis MT Pro';
    src: url('fonts/AmasisMTPro-Medium.woff2') format('woff2'),
        url('fonts/AmasisMTPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*,*:before,*:after{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	outline:none;
}
html {overflow-y: auto; min-height:100%;}

body{
	font-family:"Amasis MT Pro", Calibri, Arial, Helvetica, sans-serif;
	font-size:14px;
	background-color: #fff;
	background-image: url(../../Images/bg-min.png);
	background-position: bottom center;
	background-size: cover;
	background-attachment: fixed;
	margin:0px;
	padding:0px;
	color:#333;
	overflow: hidden;
}

select, input, textarea{
	font-family:"Amasis MT Pro", Calibri, Arial, Helvetica, sans-serif;
}
a{
	text-decoration:none;
}
.container{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	position:relative;
}
.wow{
	visibility:hidden;
}
.hello,.forbidden{
	width:100%;
	height:auto;
	line-height:26px;
	position:fixed;
	z-index:1000;
	bottom:0;
	left:0;
	padding:30px 20px;
	margin:auto;
	text-align:center;
	font-size:18px;
	color:#fff;
	font-weight:bold;
}
.hello{
	background-color: #1c344d;
	background-image: linear-gradient(90deg, #1c344d 0%, #244e76 50%, #1c344d 100%);
}
.forbidden{background-color:#d00;}


.start-holder{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1002;
	background-color: #1c344d;
	background-image: linear-gradient(90deg, #1c344d 0%, #244e76 50%, #1c344d 100%);

	animation-name: introSlideOut;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}
@keyframes introSlideOut {
  0% {
    transform: translateY(0);
  }
	100% {
    transform: translateY(calc(-100% - 350px));
  }
}
.intro-svg-wrapper-holder{
	width: 100%;
	position: absolute;
	height: 350px;
	left: 0;
	bottom: -340px;
}
.intro-svg-wrapper{
	width: 100%;
	position: absolute;
	z-index: 1002;
	top: 0;
	left: 0;
}





.splash-holder{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: calc(-100vh - 400px);
	left: 0;
	z-index: 1000;
	background-color: #1c344d;
	background-image: linear-gradient(90deg, #1c344d 0%, #244e76 50%, #1c344d 100%);
}
.splash-holder-active{
	top: 0;
}
.splash-svg-wrapper{
	width: 100%;
	position: absolute;
	z-index: 1000;
	bottom: -35vh;
	left: 0;
}

.search-holder{
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background-color: #fff;
	position: fixed;
	top: 15px;
	right: 55px;
	z-index: 101;
	overflow: hidden;
	transition: 0.3s ease-in-out all;
}
.search-holder-open{
	width: 300px;
}
.search-btn{
	position: absolute;
	width: 30px;
	right: 0;
	top: 0;
	z-index: 10;
	cursor: pointer;
}
.search-form{
	width: 300px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 11;
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
}
.search-form-open{
	display: flex;
}
.search-input{
	width: 269px;
	height: 30px;
	border: none;
	padding: 0 8px;
	font-size: 16px;
}
.search-submit{
	width: 30px;
	height: 30px;
	border: none;
	background-color: #fff;
	border-radius: 15px;
	position: relative;
	margin: 0;
	cursor: pointer;
}
.search-submit-icon{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	left: 0;
}


.back-btn{
	position: fixed;
	top: 15px;
	right: 15px;
	width: 30px;
	z-index: 101;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------- menu ------------------------------------------------------------------------------- */
.menu-holder{
	width: 160px;
	height: 100vh;
	position: fixed;
	left: -200px;
	top: 0;
	z-index: 999;
	
	transition: 0.3s ease-in-out all;
}
.menu-holder-closed{
	transform: translateX(-500px);
}
.logo{
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-image: url(../../Images/logo.gif);
	background-position: center center;
	background-repeat: no-repeat;
	border: 2px solid #19293d;
}

.logo2 {
	position: fixed;
	z-index: 999;
	top: 40px;
	left: 30px;
	width: 100px;
}

.menu-svg-holder{
	width: 120vh;
	height: 216px;
	position: absolute;
	top: -10vh;
	left: -120vh;
	transform: rotate(-90deg);
	transform-origin: top right;
	background-color: #1c344d;
	background-image: linear-gradient(90deg, #1c344d 0%, #244e76 50%, #1c344d 100%);
}
.menu-svg-wrapper{
	width: 100%;
	position: absolute;
	top: 215px;
}
.menu-wave{
	position: absolute;
	top: 0;
	height: 100vh;
	right: -11.85vh;
}
.menu-holder:hover{
	left: 0;
}
.menu{
	width: 40px;
	height: 378px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 210px;
	transition: 0.3s ease-in-out all;
}
.menu a{
	color: #fff;
}
.menu-item{
	width: 100%;
	height: 36px;
	line-height: 36px;
	margin-bottom: 10px;
}
.menu-icon{
	width: 36px;
	float: left;
	margin-right: 10px;
	transition: 0.3s ease-in-out all;
}
.menu-text{
	opacity: 0;
	font-size: 16px;
	font-weight: 900;
	line-height: 12px;
	color: rgba(255,255,255,0.8);
	padding-top: 7px;
	text-transform: uppercase;
	transition: 0.1s ease-in-out all;
}
.menu-text-solo{
	line-height: 40px;
	padding-top: 0;
}
.menu-text font{
	font-size: 11px;
	line-height: 15px;
	font-weight: 400;
	text-transform: none;
}
.menu-holder:hover .menu{
	left: 20px;
	width: 240px;
}
.menu-holder:hover .menu-text{
	opacity: 1;
	transition: 0.3s ease-in-out all 0.3s;
}
.menu-item:hover{
	transform: scale(1.1,1.1);
	transform-origin: center left;
}
.menu-item:hover .menu-icon{
	filter: grayscale(100%) brightness(500%);
}
.menu-item:hover .menu-text{
	color: #fff;
}
.menu-social-icon{
	width: 18px;
	margin-right: 8px;
	margin-top: 4px;
}



































/* --------------------------------------------------- general styles --------------------------------------------------- */
.float-left{float: left;}
.float-right{float: right;}
.clear{clear: both;}
.center-text{text-align: center;}
.left-text{text-align: left;}
.right-text{text-align: right;}
.gray-text{color: #aaa;}
.no-border{border:none;}
.no-border-bottom{border-bottom:none;}
.no-padd{padding: 0;}
.no-background{background-color: transparent;}
.full-width{width: 100%;}
.half-width{width: 50%;}
.marg-top-25{margin-top: 25px;}
.opac-0{opacity:0;}
.inverted{filter: invert(100%);}

.hr-divider{
    border: none;
    border-bottom: 1px solid #eee;
	margin: 25px 0;
}

.flex-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
}
.flex-container-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: space-around;
}
.clear{
	clear: both;
}
.center-element{
	margin: 0 auto;
}

.blue-bg{background-color: #4fa8e7; transition: 0.3s ease-in-out background;}
.purple-bg{background-color: #ac58e6; transition: 0.3s ease-in-out background;}
.orange-bg{background-color: #e6a258; transition: 0.3s ease-in-out background;}
.red-bg{background-color: #dc4242; transition: 0.3s ease-in-out background;}
.green-bg{background-color: #8bcc7a; transition: 0.3s ease-in-out background;}

.blue-bg:hover{background-color: #008ae1;}
.purple-bg:hover{background-color: #8434bc;}
.orange-bg:hover{background-color: #d37c1e;}
.red-bg:hover{background-color: #ad0c0c;}
.green-bg:hover{background-color: #58bb3d;}

.red-hover{color: inherit;}

.orange-text{color: #e6a258;}
.green-text{color: #8bcc7a;}
.red-text,.red-hover:hover{color: #dc4242;}
.blue-text{color: #008ae1;}
.purple-text{color: #ac58e6;}

.border-bottom-3{border-bottom: 3px solid;}
.orange-border{border-color: #e6a258;}
.green-border{border-color: #8bcc7a;}
.red-border{border-color: #dc4242;}
.blue-border{border-color: #008ae1;}
.purple-border{border-color: #ac58e6;}


.cat-menu-container{
	position: -webkit-sticky;
	position: sticky;
	top: 70px;
	z-index: 11;
	padding: 0 15px;
	border-bottom: 1px solid #f9f9f9;
}

.disp-mob{display: none;}
.disp-desk{display: block;}



@media screen and (max-width: 1030px){

.disp-mob{display: block;}
.disp-desk{display: none;}


	
	
	

.search-holder{
	width: 36px;
	height: 36px;
	border-radius: 18px;
	right: 100px;
	z-index: 1000;
}
.search-holder-open{
	width: calc(100% - 110px);
}
.search-btn{
	width: 36px;
}
.search-form{
	width: 100%;
	height: 36px;
	display: flex;
	top: -100px;
}
.search-form-open{
	display: flex;
	top: 0;
}
.search-input{
	width: calc(100% - 40px);
	height: 36px;
	border: none;
	padding: 0 8px;
	font-size: 16px;
}
.search-submit{
	width: 36px;
	height: 36px;
}
.search-submit-icon{
	width: 36px;
	height: 36px;
}


.back-btn{
	position: fixed;
	top: 15px;
	right: 55px;
	width: 36px;
	z-index: 1000;
	cursor: pointer;
}

/* ------------------------------------------------------------------------------- menu ------------------------------------------------------------------------------- */
.menu-holder{
	width: 100vw;
	height: calc(100vh + 30px);
	position: fixed;
	left: 0;
	top: -100vh;
	transition: 0.8s ease-in-out all;
}
.menu-holder-open{
	top: 0;
}
.logo{
	transform: scale(0.7,0.7);
	transform-origin: top left;
	top: 10px;
	left: 10px;
}
.menu-btn{
	position: fixed;
	top: 15px;
	right: 10px;
	z-index: 100;
	width: 36px
}
.menu-svg-holder{
	width: 110vw;
	height: calc(100vh + 30px);
	position: absolute;
	top: 0;
	left: -5vw;
	transform: rotate(0deg);
}
.menu-svg-wrapper{
	top: calc(100vh + 20px);
}
.menu-wave{
	position: absolute;
	top: 0;
	height: 100vh;
	right: -11.85vh;
}
.menu-holder:hover{
	left: 0;
}
.menu{
	width: 240px;
	left: 40px;
	top: -60px;
}
.menu-holder:hover .menu{
	left: 40px;
}
.menu-text{
	opacity: 1;
	color: #fff;
}
.menu-item{
	transform: scale(1.1,1.1);
}
.menu-icon{
	filter: grayscale(100%) brightness(500%);
}