/* #Font-Face
================================================== */
/* @font-face {
    font-family: 'Athena';
    src: url('../fonts/Athena-Regular.woff2') format('woff2'),
         url('../fonts/Athena-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
} */
@font-face {
    font-family: 'AthenaBlock';
    src: url('../fonts/Athena.eot');
    src: local('../fonts/Athena'), local('Athena-Regular'),
        url('../fonts/Athena-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Athena-Regular.woff2') format('woff2'),
        url('../fonts/Athena-Regular.woff') format('woff'),
        url('../fonts/Athena-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: block;
} 
@font-face {
    font-family: 'Athena';
    src: url('../fonts/Athena.eot');
    src: local('../fonts/Athena'), local('Athena-Regular'),
        url('../fonts/Athena-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Athena-Regular.woff2') format('woff2'),
        url('../fonts/Athena-Regular.woff') format('woff'),
        url('../fonts/Athena-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
} 
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.eot');
    src: local('../fonts/Raleway'), local('Raleway-Regular'),
        url('../fonts/Raleway-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Raleway-Regular.woff2') format('woff2'),
        url('../fonts/Raleway-Regular.woff') format('woff'),
        url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Medium.eot');
    src: local('../fonts/Raleway Medium'), local('Raleway-Medium'),
        url('../fonts/Raleway-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Raleway-Medium.woff2') format('woff2'),
        url('../fonts/Raleway-Medium.woff') format('woff'),
        url('../fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Italic.eot');
    src: local('Playfair Display Italic'), local('PlayfairDisplay-Italic'),
        url('../fonts/PlayfairDisplay-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Italic.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* @font-face {
	font-family: 'Raleway';
	src: url('../fonts/Montserrat-Medium.eot');
	src: local('../fonts/Montserrat Medium'), local('Montserrat-Medium'),
		url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Montserrat-Medium.woff') format('woff'),
		url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
    font-display: swap;
} */
.first-block .container .left-side .main-title {
    font-family: "AthenaBlock", sans-serif !important;
}
	body, html {
	    font-family: 'Raleway';
	}
    
/* #Reset & Basics 
================================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* #Links
================================================== */
	a, 
    a:visited,
    a:hover, 
    a:focus {  
       text-decoration: none;     
	   outline: none;
    }

/* #Lists
================================================== */
	li, ul {
        /* list-style-type: none; */
    }    

/* #Forms
================================================== */
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 0 5px;
		outline: none;
		max-width: 100%;
		display: block;
		background: #fff;
	}
	
	form textarea {
		min-height: 60px;
        resize: none;
		overflow: auto; 
	}
            
	input[type="checkbox"],
    input[type="radio"] {
		display: inline-block;
		margin-right:5px; 
	}
        
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {	
	  text-decoration: none;
      text-transform: none;
	  cursor: pointer;
      border: none;
	  line-height: normal;
      cursor: pointer;  
	}  	

/* #Other
================================================== */
	:focus   { 
        outline: none; 
    }
    
