/*
* LittleLink
* https://littlelink.io
* Free to use under the MIT license
* http://www.opensource.org/licenses/mit-license.php
*/

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
	font-size:16px;
}

/* Grid
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .container {
	position:relative;
	width:100%;
	max-width:37.5rem;     				/* 600px */
    text-align:center;
	margin:0 auto;
	padding:3rem 1.25rem 0 1.25rem;
	box-sizing:border-box;
}
.container-left {
	position:relative;
	width:100%;
	max-width:37.5rem;
	text-align:left;
	margin:0 auto;
	padding:0 1.25rem;
	box-sizing:border-box;
}
.container-left p {
	margin-bottom: 1rem;  				/* 16px space between paragraphs */
  }
.column {
	position:center;
	width:100%;
	float:center;
	box-sizing:border-box;
}
/* For devices larger than 400px */
  @media (min-width:25rem) {            /* 400px */
    .container {
	width:85%;
	padding-left:0;
	padding-right:0;
}
}/* For devices larger than 550px */
  @media (min-width:34.375rem) {        /* 550px */
    .container {
	width:80%;
}
.column,.columns {
	margin-left:0;
}
.column:first-child,.columns:first-child {
	margin-left:0;
}
}

/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  body {
	margin:0;
	padding:0;
	background-color:#ffffff;
	color:#1a1a1a;
	font-family:"Open Sans",system-ui;
	font-size:1.125rem;     				/* 18px */
    font-weight:400;
	line-height:1.6;
}

/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  h1 {
	margin:0 0 0.5rem 0;
	font-size:3rem;         		/* 48px */
    font-weight:800;
	line-height:1;
	letter-spacing:0;
	word-wrap:break-word;
	overflow-wrap:break-word;
	hyphens:auto;           		/* Delete this to remove automatic hyphen on line break */
}
.container p {
	margin:0 0 2rem 0;
}

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Base size - 16px browser default */
:root {
  font-size:16px;           /* Using a 1.25 modular scale for typography */
  --scale-0:1rem;           /* 16px */
  --scale-1:1.25rem;        /* 20px */
  --scale-2:1.563rem;       /* 25px */
  --scale-3:1.953rem;       /* 31px */
  --scale-4:2.441rem;       /* 39px */
  --scale-5:3.052rem;       /* 49px */

  /* Spacing units */
  --spacing-xs:0.5rem;      /* 8px */
  --spacing-s:1rem;         /* 16px */
  --spacing-m:1.5rem;       /* 24px */
  --spacing-l:2rem;         /* 32px */
  --spacing-xl:3rem;        /* 48px */
  --spacing-xxl:4rem;       /* 64px */
}

/* Avatar */
.avatar {
	width: 8rem;             /* 128px */
	height: 8rem;
	border-radius: 50%;
	object-fit: cover;
	background-position: center;
	margin-bottom: var(--spacing-l);
	margin-left: auto;
	margin-right: auto;
	display: block;
  }

/* Typography Scale */
h1 {
	margin:0 0 var(--spacing-m) 0;
	font-size:var(--scale-5);           /* ~49px */
  	font-weight:800;
	line-height:1.1;
	letter-spacing:-0.02em;
	word-wrap:break-word;
	overflow-wrap:break-word;
}
body {
	font-size:var(--scale-1);           /* 20px */
  	line-height:1.6;
}
.container p {
	margin:0 0 var(--spacing-xl) 0;
	font-size:var(--scale-1);
	line-height:1.6;
}

/* Compact bio details */
.container small p {
	margin:0 0 var(--spacing-s) 0;   /* Tight spacing: 1rem (16px) */
	font-size:var(--scale-0);        /* Smaller: 16px instead of 20px */
	line-height:1.5;                 /* Compact line height */
	opacity:0.65;                    /* De-emphasize as secondary content */
}

/* Last paragraph in small - no bottom margin */
.container small p:last-child {
	margin-bottom:0;
}

/* Bio section divider */
.bio-divider {
	width:4rem;                      /* 64px centered line */
	height:2px;
	background-color:#1a1a1a;
	border:none;
	opacity:0.2;
	margin:var(--spacing-xl) auto;   /* 3rem top and bottom */
}

/* Subheading refinement */
.container > p:first-of-type {
	letter-spacing:0.01em;
}

/* Scroll indicator chevron */
.scroll-indicator {
	display:block;
	text-align:center;
	font-size:1.25rem;
	opacity:0.4;
	margin:var(--spacing-m) auto var(--spacing-l);
	animation:bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% { transform:translateY(0); }
	50% { transform:translateY(6px); }
}

/* Container spacing */
.container {
	padding:var(--spacing-xl) var(--spacing-m) 0 var(--spacing-m);
	text-align:center;
}

/* Footer */
footer {
	margin:var(--spacing-xxl) 0;            /* 4rem (64px) top and bottom */
	font-size:0.875rem;                     /* 14px - smaller than scale-0 */
	color:#6b7280;                          /* Grey color for light theme */
}

/* Responsive adjustments */
@media (max-width:34.375rem) {              /* 550px */
  h1 {
	font-size:var(--scale-4);
}
body {
	font-size:var(--scale-0);
}
.container p {
	font-size:var(--scale-0);
}
.avatar {
	margin-bottom:var(--spacing-m);
}
footer {
	margin:var(--spacing-xl) 0;         	/* 3rem (48px) top and bottom */
}
}

/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  a {
	color:#2457F5;
	text-decoration:underline;
}
a:hover {
	color:#083BDA;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,button {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:18.75rem;             	/* 300px */
 	min-height:3rem;                /* 48px */
  	padding:0.75rem 1rem;         	/* 12px ; 16px */
  	font-size:1.125rem;           	/* 18px */
  	font-weight:700;
	text-decoration:none;
	white-space:normal;
  	background-color:var(--button-background,transparent);
	color:var(--button-text,#000000);
	border:var(--button-border,none);
	border-radius:0.5rem;
	cursor:pointer;
	box-sizing:border-box;
	hyphens:auto;               	/* Delete this to remove automatic hyphen on line break */
  	margin-bottom:1rem;
	text-align:center;
	line-height:1.3;
}

/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
	width:1.25rem;
	height:1.25rem;
	margin-right:0.5rem;
	flex-shrink:0;
}

/* Avatar
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.avatar {
	width: 8rem;             /* 128px */
	height: 8rem;
	object-fit: cover;
	background-position: center;
	margin-bottom: var(--spacing-l);
  }

   /* Modifier for no avatar rounding */
   .avatar--none {
	border-radius: 0%;
  }

  /* Modifier for rounded avatar */
  .avatar--rounded {
	border-radius: 50%;
  }

  /* Modifier for slightly rounded corners */
  .avatar--soft {
	border-radius: 0.5rem;   /* 8px rounded corners */
  }

/* Theme System
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Light theme is default above */

/* Dark theme */
:root.theme-dark {
	color-scheme:dark;
}
:root.theme-dark :focus-visible {
	outline: 2px solid #4899F7;
	outline-offset: 2px;
  }
:root.theme-dark body {
	background-color:#121212;
	color:#ffffff;
}
:root.theme-dark a:not(.button) {
	color:#4899F7;
}
:root.theme-dark a:not(.button):hover {
	color:#7AB8FF;
}
:root.theme-dark footer {
	color:#9ca3af;
}
:root.theme-dark .bio-divider {
	background-color:#ffffff;
	opacity:0.3;
}

/* Auto theme */
:root.theme-auto {
	color-scheme:light dark;
}
@media (prefers-color-scheme:dark) {
	:root.theme-auto body {
	background-color:#121212;
	color:#ffffff;
}
:root.theme-auto :focus-visible {
    outline: 2px solid #4899F7;
    outline-offset: 2px;
  }
:root.theme-auto a:not(.button) {
	color:#4899F7;
}
:root.theme-auto a:not(.button):hover {
	color:#7AB8FF;
}
:root.theme-auto footer {
	color:#9ca3af;
}
	:root.theme-auto .bio-divider {
		background-color:#ffffff;
		opacity:0.3;
	}
}

/* Button Text Color Override
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
    .button:hover,button:hover {
	color:var(--button-text);
}

/* Modal Contact Form
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Modal Container */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
	opacity: 1;
	visibility: visible;
}

/* Modal Backdrop */
.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* Modal Content */
.modal-content {
	position: relative;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	background-color: #ffffff;
	border-radius: 0.75rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	overflow-y: auto;
	transform: scale(0.95);
	transition: transform 0.3s ease;
	margin: 1rem;
}

.modal.active .modal-content {
	transform: scale(1);
}

/* Prevent body scroll when modal is open */
body.modal-open {
	overflow: hidden;
}

/* Modal Header */
.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
}

/* Close Button */
.modal-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	color: #6b7280;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
	background-color: #f3f4f6;
	color: #1a1a1a;
}

.modal-close:focus-visible {
	outline: 2px solid #2457F5;
	outline-offset: 2px;
}

/* Modal Body */
.modal-body {
	padding: 1.5rem;
	color: #374151;
	line-height: 1.6;
	font-size: var(--scale-0);
}

.modal-body .cv-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-body .cv-list li {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.modal-body .cv-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #2457F5;
	font-weight: bold;
	font-size: 1.25rem;
}

.modal-body .cv-list li:last-child {
	margin-bottom: 0;
}

/* Form Styling */
#contact-form {
	padding: 1.5rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
}

.required {
	color: #D32F2F;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	color: #1a1a1a;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2457F5;
	box-shadow: 0 0 0 3px rgba(36, 87, 245, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Error States */
.form-group.error input,
.form-group.error textarea {
	border-color: #D32F2F;
}

.form-group.error input:focus,
.form-group.error textarea:focus {
	border-color: #D32F2F;
	box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.error-message {
	display: none;
	margin-top: 0.375rem;
	font-size: 0.875rem;
	color: #D32F2F;
}

.form-group.error .error-message {
	display: block;
}

/* Submit Button */
.submit-button {
	width: 100%;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	background-color: #2457F5;
	border: none;
	border-radius: 0.375rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
}

.submit-button:hover {
	background-color: #1d4ed8;
	color: #ffffff;
}

.submit-button:focus-visible {
	outline: 2px solid #2457F5;
	outline-offset: 2px;
}

.submit-button:disabled {
	background-color: #6b7280;
	cursor: not-allowed;
	opacity: 0.8;
}

/* Loading Spinner */
.button-loader {
	display: none;
	width: 1rem;
	height: 1rem;
	border: 2px solid #ffffff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

.submit-button.loading .button-loader {
	display: block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Status Messages */
.form-status {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	display: none;
}

.form-status.visible {
	display: block;
}

.form-status.success {
	background-color: #d4edda;
	color: #2E7D32;
	border: 1px solid #c3e6cb;
}

.form-status.error {
	background-color: #f8d7da;
	color: #D32F2F;
	border: 1px solid #f5c6cb;
}

/* Dark Theme Overrides */
:root.theme-dark .modal-content {
	background-color: #1f2937;
}

:root.theme-dark .modal-header {
	border-bottom-color: #374151;
}

:root.theme-dark .modal-header h2 {
	color: #ffffff;
}

:root.theme-dark .modal-close {
	color: #9ca3af;
}

:root.theme-dark .modal-close:hover {
	background-color: #374151;
	color: #ffffff;
}

:root.theme-dark .modal-close:focus-visible {
	outline-color: #4899F7;
}

:root.theme-dark .form-group label {
	color: #e5e7eb;
}

:root.theme-dark .form-group input,
:root.theme-dark .form-group textarea {
	color: #ffffff;
	background-color: #111827;
	border-color: #4b5563;
}

:root.theme-dark .form-group input:focus,
:root.theme-dark .form-group textarea:focus {
	border-color: #4899F7;
	box-shadow: 0 0 0 3px rgba(72, 153, 247, 0.1);
}

:root.theme-dark .form-group.error input,
:root.theme-dark .form-group.error textarea {
	border-color: #ef4444;
}

:root.theme-dark .form-group.error input:focus,
:root.theme-dark .form-group.error textarea:focus {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

:root.theme-dark .error-message {
	color: #fca5a5;
}

:root.theme-dark .submit-button {
	background-color: #4899F7;
}

:root.theme-dark .submit-button:hover {
	background-color: #2563eb;
}

:root.theme-dark .submit-button:disabled {
	background-color: #4b5563;
	opacity: 0.9;
}

:root.theme-dark .submit-button:focus-visible {
	outline-color: #4899F7;
}

:root.theme-dark .form-status.success {
	background-color: #064e3b;
	color: #6ee7b7;
	border-color: #065f46;
}

:root.theme-dark .form-status.error {
	background-color: #7f1d1d;
	color: #fca5a5;
	border-color: #991b1b;
}

:root.theme-dark .modal-body {
	color: #d1d5db;
}

/* Auto Theme Dark Mode */
@media (prefers-color-scheme: dark) {
	:root.theme-auto .modal-content {
		background-color: #1f2937;
	}

	:root.theme-auto .modal-header {
		border-bottom-color: #374151;
	}

	:root.theme-auto .modal-header h2 {
		color: #ffffff;
	}

	:root.theme-auto .modal-close {
		color: #9ca3af;
	}

	:root.theme-auto .modal-close:hover {
		background-color: #374151;
		color: #ffffff;
	}

	:root.theme-auto .modal-close:focus-visible {
		outline-color: #4899F7;
	}

	:root.theme-auto .form-group label {
		color: #e5e7eb;
	}

	:root.theme-auto .form-group input,
	:root.theme-auto .form-group textarea {
		color: #ffffff;
		background-color: #111827;
		border-color: #4b5563;
	}

	:root.theme-auto .form-group input:focus,
	:root.theme-auto .form-group textarea:focus {
		border-color: #4899F7;
		box-shadow: 0 0 0 3px rgba(72, 153, 247, 0.1);
	}

	:root.theme-auto .form-group.error input,
	:root.theme-auto .form-group.error textarea {
		border-color: #ef4444;
	}

	:root.theme-auto .form-group.error input:focus,
	:root.theme-auto .form-group.error textarea:focus {
		border-color: #ef4444;
		box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
	}

	:root.theme-auto .error-message {
		color: #fca5a5;
	}

	:root.theme-auto .submit-button {
		background-color: #4899F7;
	}

	:root.theme-auto .submit-button:hover {
		background-color: #2563eb;
	}

	:root.theme-auto .submit-button:disabled {
		background-color: #4b5563;
		opacity: 0.9;
	}

	:root.theme-auto .submit-button:focus-visible {
		outline-color: #4899F7;
	}

	:root.theme-auto .form-status.success {
		background-color: #064e3b;
		color: #6ee7b7;
		border-color: #065f46;
	}

	:root.theme-auto .form-status.error {
		background-color: #7f1d1d;
		color: #fca5a5;
		border-color: #991b1b;
	}

	:root.theme-auto .modal-body {
		color: #d1d5db;
	}
}

/* Mobile Responsive (Bottom Sheet) */
@media (max-width: 34.375rem) {
	.modal {
		align-items: flex-end;
	}

	.modal-content {
		width: 100%;
		max-width: 100%;
		max-height: 85vh;
		border-radius: 1rem 1rem 0 0;
		margin: 0;
		transform: translateY(100%);
	}

	.modal.active .modal-content {
		transform: translateY(0);
	}
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	.modal,
	.modal-content,
	.submit-button,
	.modal-close,
	.form-group input,
	.form-group textarea {
		transition: none;
	}

	.button-loader,
	.scroll-indicator {
		animation: none;
	}
}

/* Responsive Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  @media (max-width:34.375rem) {            /* 550px */
    h1 {
	font-size:1.75rem;                      /* 28px */
	}
	body {
	font-size:1rem;                    		/* 16px */
	}
}

/* Privacy Page Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
nav {
	margin:var(--spacing-l) 0;
	text-align:left;
}
section {
	margin:var(--spacing-xl) 0;
	text-align:left;
}
h2 {
	font-size:var(--scale-3);
	font-weight:700;
	margin-bottom:var(--spacing-m);
}
h3 {
	font-size:var(--scale-2);
	font-weight:600;
	margin:var(--spacing-l) 0 var(--spacing-s) 0;
}
ul {
	list-style:none;
	padding:0;
	margin:0 0 var(--spacing-m) 0;
}
ul li {
	margin-bottom:var(--spacing-xs);
}

/* Privacy page specific responsive adjustments */
  @media (max-width:34.375rem) {
	h2 {
	font-size:var(--scale-2);
	}
	h3 {
	font-size:var(--scale-1);
	}
	section {
	margin:var(--spacing-l) 0;
	}
}

/* Language Switcher
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.lang-switcher {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 100;
}

.lang-option {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.375rem 0.625rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: #1a1a1a;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid #e5e7eb;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lang-option:hover {
	background-color: #ffffff;
	border-color: #d1d5db;
	color: #1a1a1a;
}

.lang-option:focus-visible {
	outline: 2px solid #2457F5;
	outline-offset: 2px;
}

.lang-option img {
	width: 1.25rem;
	height: auto;
	border-radius: 2px;
}

/* Dark theme language switcher */
:root.theme-dark .lang-option {
	color: #ffffff;
	background-color: rgba(31, 41, 55, 0.9);
	border-color: #4b5563;
}

:root.theme-dark .lang-option:hover {
	background-color: #374151;
	border-color: #6b7280;
	color: #ffffff;
}

:root.theme-dark .lang-option:focus-visible {
	outline-color: #4899F7;
}

/* Auto theme dark mode language switcher */
@media (prefers-color-scheme: dark) {
	:root.theme-auto .lang-option {
		color: #ffffff;
		background-color: rgba(31, 41, 55, 0.9);
		border-color: #4b5563;
	}

	:root.theme-auto .lang-option:hover {
		background-color: #374151;
		border-color: #6b7280;
		color: #ffffff;
	}

	:root.theme-auto .lang-option:focus-visible {
		outline-color: #4899F7;
	}
}

/* Mobile adjustments for language switcher */
@media (max-width: 34.375rem) {
	.lang-switcher {
		top: 0.75rem;
		right: 0.75rem;
	}

	.lang-option {
		padding: 0.25rem 0.5rem;
		font-size: 0.75rem;
	}

	.lang-option img {
		width: 1rem;
	}
}

/* Font Face Definitions
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:400;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:600;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:700;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.svg#OpenSans') format('svg');
}
@font-face {
	font-display:swap;
	font-family:'Open Sans';
	font-style:normal;
	font-weight:800;
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot');
	src:url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot?#iefix') format('embedded-opentype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff2') format('woff2'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff') format('woff'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.ttf') format('truetype'),url('../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.svg#OpenSans') format('svg');
}
