/*
Theme Name: simple wp
Theme URI: 
Author: simple
Author URI: http://simpleeee
Description: Wordpress Theme
Version: 1.0
*/
html, body {
	padding: 0px;
	margin: 0px;
    font-family: "Open Sans", sans-serif;
}

ul {
	margin: 0px;
}

div {
    box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

header ul,
footer ul {
    padding: 0;
}

header ul, footer ul, header ul li, footer ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}

header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

header img {
    max-height: 69px;
    object-fit: contain;
}

.logo-link {
    display: block;
}

header .menu,
footer .menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

header .menu li.current-menu-item {
    border-bottom: 2px solid #fff;
}

header .menu a {
    color: #fff;
    font-weight: 500;
}

footer .menu a {
    color: #000;
    font-weight: 500;
}

header .menu-header-menu-container {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    border-bottom: 10px solid #eeeeeebe;
}

footer {
    background: var(--primary-color);
}

footer > div {
    text-align: center;
    margin: 0 auto;
    max-width: 1250px;
    padding: 10px 16px 5px;
}

footer .menu-footer-menu-container {
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: center;
}

.c-w {
    color: #fff;
}

h1, .h1 {
    font-size: 26px;
    margin-top: 20px;
}

h2, .h2 {
    font-size: 24px;
}

h3, .h3 {
    font-size: 22px;
}

h4, .h4 {
    font-size: 20px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 20px;
    font-weight: 600;
}
/* === TL Hero (front page) === */
.tl-hero{
  position: relative;
  min-height: clamp(380px, 52vh, 620px);
  display: grid;
  place-items: center;
  text-align: center;

  background-image: var(--tl-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.tl-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(46, 91, 201, 0.62);
}

.tl-hero__inner{
  position: relative;
  z-index: 1;
  padding: clamp(56px, 7vw, 96px) 16px;
}

.tl-hero__title{
  margin: 0 0 22px;
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.02em;
}

.tl-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #fff;
  color: #1f3dbd;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

header { 
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

header .logo-link { 
  display: none !important;
}