/* =====================================
   Fonts
   ===================================== */
@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* =====================================
   Base / Reset
   ===================================== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
	background-color: #958875;
	color: #ffffff;
	font-size: 16px;
    line-height: 23px;
}

/* =====================================
   Page Overrides: Apply Page
   ===================================== */
.apply-page {
	background-color: #fbf7f1;
	color: #000000;
}

.apply-page .separator {
	background-color: #000000;
}

.apply-page .language-switcher a {
	color: #000000;
}

.apply-page .button {
	color: #ffffff; /* keep button text white */
}

/* =====================================
   Components: Language Switcher & Links
   ===================================== */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 0%;
    font-size: 16px;
}

.language-switcher a, .link-white {
    color: #ffffff;
    text-decoration: none;
    padding: 0 5px;
}

.language-switcher a:hover, .link-white:hover {
    text-decoration: underline;
}

.link-dark {
    color: #000000;
    text-decoration: none;
    padding: 0 5px;
}

.link-dark:hover {
    text-decoration: underline;
}

/* =====================================
   Layout: Container & Header
   ===================================== */
.container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	margin-left: 12%;
	margin-right: 12%;
}

header {
	padding: 0 0 0 20px;
    text-align: center;
    box-sizing: border-box;	

    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center;     /* Centers the image vertically (optional) */
    flex-direction: column; 
}

/* =====================================
   Typography
   ===================================== */
h2 {
	font-family: 'Work Sans', sans-serif;
    font-size: 26px;
    line-height: 40px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
}

h1.not-found-title {
	font-size: 120px;
	line-height: 1.2;
	margin-top: 40px;
	margin-bottom: 0;
}

h2.not-found-text {
	font-size: 60px;
	line-height: 1.2;
	margin-bottom: 40px;
    margin-top: 0;
}

/* =====================================
   Components: Buttons & Separators
   ===================================== */
.button {
    /* Layout */
    display: inline-block;
    position: relative;
    width: auto;
    height: 47px;
    line-height: 47px;
    padding: 0 29px;
    margin: 0;
    margin-top: 10px;
    margin-right: 10px;
    white-space: nowrap;

    /* Typography */
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    text-align: left;
    text-transform: capitalize;
    text-decoration: none;
    text-shadow: none;
    letter-spacing: 1px;
    color: #fff;

    /* Visual */
    background-color: #001c46;
    border: 2px solid #303030;
    border-radius: 30px;
    box-sizing: initial !important;

    /* Interactive */
    cursor: pointer;
    outline: 0;
    transition: color .1s linear, background-color .1s linear, border-color .1s linear;
}

.button_insagram {
    background-color: #e1306c;
    border: 2px solid #e1306c;
}

.button_telegram {
    background-color: #0088cc;
    border: 2px solid #0088cc;
}

.separator {
    background-color: #ffffff;
	height: 1px;
	width: 57px;
}

/* =====================================
   Components: Logos
   ===================================== */
.logo {
    max-width: 700px;
    height: auto;
    display: block;
    margin-top: 80px;
}

.logo-small {
    max-width: 240px;
    height: auto;
    display: block;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .logo {
        max-width: 100%; /* Allow the image to be as wide as the container on smaller screens */
    }
}

/* =====================================
   Layout: Main Content & Columns
   ===================================== */
.main-content {
    display: flex;
    flex: 1;
    flex-direction: row;
    padding: 20px;
}

.column {
    flex: 1;
}

#left-column {
	padding: 10px;
}

#right-column {	
    margin-left: 10px;
	padding: 10px;
}

.sub-columns {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.sub-column {
    flex: 1;
}

#text-column {
	justify-content: left;
    align-items: left;
}

@media (max-width: 768px) {
    #text-column {
        justify-content: center;
        align-items: center;
    }
}

#image-column {
    justify-content: left;
    align-items: left;
}

@media (max-width: 768px) {
    #image-column {
        justify-content: center;
        align-items: center;
    }
}

/* =====================================
   Layout: Footer
   ===================================== */
footer {
    text-align: center;
    padding: 10px;
}

/* =====================================
   Page: Apply Header & HubSpot Form
   ===================================== */
#apply-header {
	margin-left: 0;
	text-align: center;
    line-height: 0;
    margin-bottom: 50px;
}

.hubspot-form-container {
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

/* =====================================
   Responsive
   ===================================== */
@media (max-width: 768px) {
	header {
		margin-top: 30px;	
	}

	.container {
		margin-left: 5%;
		margin-right: 5%;
	}

    .main-content {
        flex-direction: column;
    }

    #right-column {
        margin-left: 0;
    }

	.sub-columns {
        flex-direction: column;
    }
}
