@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: rgba(227, 1, 123, 1);
    --secondary-color: #000000;
    --bg-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*GENERAL STYLES*/

a {
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background-color: var(--bg-color);
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1300px;
}

.column-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.row-flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.button-primary {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: center;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2%;
    color: var(--bg-color) !important;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(227, 1, 123, 1);
    transform: skew(-15deg);
    z-index: -1;
    transition: 0.3s;
}

.button-primary:hover::before {
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Pierwsza kreska */
.button-primary::after,
.button-primary::before {
    pointer-events: none;
}

.button-primary div {
    display: inline;
}

.button-primary .line1,
.button-primary .line2 {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: white;
    transform: skew(-15deg);
    z-index: 2;
}

.button-primary .line1 {
    left: 5px;
}

.button-primary .line2 {
    left: 12px;
}

.button-primary span {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}


/*NAVBAR STYLES*/

.menu-item-has-children > a {
    position: relative;
    padding-right: 20px;
}

.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url('../../images/caret.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.navbar {
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
}

.navbar a {
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -1.5%;
    color: var(--secondary-color);
    position: relative;
}

.navbar a:hover {
    color: var(--primary-color);
}

.navbar ul,
.navbar li {
    display: inline;
    margin-right: 10px;
    position: relative;
}

menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.6em;
    margin-left: 6px;
  }
  
  .navbar .sub-menu {
    min-width: 150px;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 10px 0;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  
  .navbar .sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .navbar .sub-menu li a:hover {
    background-color: #f0f0f0;
  }

.navbar-inner {
    width: 100%;
    height: 86px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 46px;
}

.navbar-right {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.navbar-bottom-inner {
    width: 100%;
    height: 71px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.search-form {
    width: 284px;
    background: rgba(245, 245, 245, 1);
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.search-form input {
    background-color: unset;
    border: none;
    font-weight: 300;
    font-style: italic;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -1.5%;
}

.search-form button {
    border: none;
}

.section {
    width: 100%;
    display: block;
    margin: 80px 0;
}

.section .section-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: 1%;
    width: 100%;
    margin-bottom: 15px;
}

.section .section-description {
    width: 100%;
    margin: 0 0 25px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section .section-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 2%;
}

.section .section-description .col {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.section .section-content {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
    margin: 0 auto;
}

.section .section-content .content {
    width: 80%;
    margin: 0 auto;
}

.section.section-center .section-title,
.section.section-center .content {
    text-align: center;
}

.services {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.services .service {
    display: flex;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: center;
}

.services .service.more {
    justify-content: center;
    gap: 20px;
    box-shadow: unset;
}

.service .service-icon {
    width: auto;
    height: 72px;
    margin: 36px 0 16px 0;
}

.service .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1%;
}

.service .description {
    width: 60%;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2%;
    text-align: center;
    margin: 10px auto 24px auto;
}

.service .action {
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 2%;
    margin-bottom: 39px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
}

/*FOOTER STYLES*/

.footer-upper {
    width: 100%;
    height: auto;
    background: linear-gradient(64.67deg, #AEB6BD -25.21%, #FFFFFF 120.83%);
    padding: 100px 0 90px 0;
    position: relative;
    z-index: 1;
    min-height: 442px;
}

.footer-logo-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-company {
    width: 150px;
    height: auto;
}

.footer-upper a {
    font-weight: 600;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -1.5%;
    color: var(--secondary-color);
}

.footer-upper ul,
.footer-upper li {
    margin: 0;
    padding: 0;
    display: block;
}

.footer-upper-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 200px;
    align-items: flex-start;
    position: relative;
    z-index: 20;
}

.footer-bg {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-color);
}

.footer-inner {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: -1.5%;
}

.footer-inner a {
    color: var(--bg-color);
}

.footer-inner a:hover {
    color: var(--primary-color);
}

/* COMPANIES LIST */

.companies-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.companies-list a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    opacity: 0.5;
    transition: 0.3s;
}

.companies-list a:hover {
    opacity: 1;
    transition: 0.3s;
}

.companies-list img {
    width: 100%;
    height: auto;
}

/* EVENTS */

.events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.event-item {
    width: calc(25% - 12px);
    box-sizing: border-box;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.event-item .event-image,
.event-item .event-image img {
    width: 100%;
    height: auto;
}

.event-item .event-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-content .event-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 2%;
    color: var(--primary-color);
} 

.event-title a {
    color: var(--primary-color);
}

.event-content .event-description {
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
}

.event-content .event-location,
.event-content .event-date,
.event-content .event-type {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1%;
}

.event-content .event-button a {
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 2%;
    color:rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.event-content .event-button a:hover {
    color: var(--primary-color);
}

/* SLIDER */

.slider {
    width: 100%;
    height: 660px;
    position: relative;
    z-index: 1;
}

.slider-prev {
    position: absolute;
    top: calc(50% - 15px);
    left: 64px;
}


.slider-next {
    position: absolute;
    top: calc(50% - 15px);
    right: 64px;
}

.slider .slider-item {
    width: 100%;
    height: 600px;
    position: relative;
    background-image: url('../../images/slider-image.svg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.slider .slider-item .slider-image {
    position: relative;
    z-index: 1px;   
}

.slider .slider-item .slider-content {
    width: 80%;
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}

.slider-title {
    width: 60%;
    font-weight: 600;
    font-size: 86px;
    line-height: 108px;
    letter-spacing: 2%;
    color: #fff;
}

.slider-description {
    width: 60%;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 2%;
    color: #fff;
}

/* ENTRIES */

.events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.event-item {
    width: calc(25% - 12px);
    box-sizing: border-box;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.entries-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.entry-item {
    width: calc(25% - 12px);
    box-sizing: border-box;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.entry-item .entry-image {
    width: 100%;
    height: auto;
    position: relative;
}

.entry-item .entry-image img {
    width: 100%;
    height: auto;
}

.custom__blog__post__thumbnail {
	width: 100% !important;
    height: 164px !important;
    object-fit: cover;
    object-position: center center;
}

.entry-item .entry-image .image {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
}

.entry-item .entry-image .mask {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 2;
}

.entry-item .entry-image .entry-meta {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 3;
    bottom: 15px;
    left: 18px;

    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1%;
    color: #fff;
}

.entry-meta .separator {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1%;
    margin: 0 8px;
}

.entry-item .entry-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.entry-content .entry-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 1%;
}

.entry-item .entry-title a {
    color: var(--primary-color);
}

.entry-item .entry-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.entry-content .entry-description {
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 1%;
    color: #000;
}

.entry-content .entry-action a {
    font-weight: 500;
    font-size: 15px;
    line-height: 12px;
    letter-spacing: 2%;
    color: #000;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.section__about {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    margin: 100px 0;
}

.section__about--image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
    width: 40%;
    text-align: right;
    align-items: flex-end;
}

.section__about--image h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 1%;
    text-align: right;
}

.section__about--image img {
    width: 226px;
    height: auto;
}

.section__about--content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
    margin: 24px;
}

.section__cta {
    width: 100%;
    background-image: url(../../images/about-background.svg);
    padding: 90px 0;
}

.section__cta--inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 330px;
}

.section__cta--content {
    width: 60%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section__cta--content h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 1%;
	color: #fff !important;
}

.section__cta--content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
}

.page__events {
    width: 100%;
    margin: 60px 0 0 0;
}

.page__events.courses {
    margin-bottom: 100px;
}

.page__blog {
    width: 100%;
    margin: 60px 0 120px 0;
}

.page__heading {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 85px;
    margin-bottom: 50px;
}

.page__heading .page__heading--title h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 2%;
    text-align: right;
}

.page__heading .page__heading--description {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
}

.page__heading .page__heading--description p {
	margin-bottom: 10px;
}

.section__tabs {
    width: 100%;
    padding: 120px;
}

.section__tabs--inner {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section__tabs--heading,
.section__tabs--heading ul {
    display: block;
    width: 100%;
}

.section__tabs--heading a {
    display: block;
    font-weight: 500;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 6%;
    text-align: center;
    padding: 20px 54px;
    color: #fff;
    background-color: #000;
    border: 3px solid rgba(0, 0, 0, 1);
    position: relative;
}

.section__tabs--heading a.active {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 6%;
    text-align: center;
}

.section__tabs--heading a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
}

.section__tabs--heading li {
    display: inline-block;
    margin-right: 5px;
}

.section__tabs--content {
    width: 100%;
    border: 3px solid rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    padding: 45px;
}

.section__single {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
}

.section__single--content {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
}

.section__single--content p {
    margin-bottom: 25px;
}

.hidden {
    display: none;
}

.section__testimonials {
    width: 100%;
    margin-bottom: 120px;
}

.section__testimonials h3 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: 1%;
    margin-bottom: 35px;
}

.section__testimonials--inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.section__testimonials--content {
    width: 100%;
    display: block;
}

.quote-single {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px
}

.quote-single p {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 1%;
    text-align: center;

}

.quote-single .quote__author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quote-single .quote__author--avatar {
    width: 48px;
    height: auto;
}

.quote-single .quote__author--avatar img {
    width: 100%;
    height: auto;
}

.quote-single .quote__author--name {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-start;
    text-align: left;
}

.quote__author--name p {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1%;
}

.quote__author--name span {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1%;
    color: rgba(75, 75, 75, 1);
}

.section__where {
    width: 100%;
    padding: 78px 0;
    margin-bottom: 120px;
    background-image: url('../../images/where.svg');
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    color: #fff;
}

.section__where--content {
    margin-right: 50px;
}

.section__where h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: 1%;
    margin-bottom: 37px;
	color: #fff !important;
}

.section__where h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 1%;
}

.section__where li {
    width: 100%;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1%;
    gap: 5px;
    margin-bottom: 10px;
}

.event-cta {
    width: 100%;
    display: block;
    margin-top: 120px;
}

.event-cta__inner {
    width: 100%;
    height: 360px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-cta__content {
    z-index: 2;
    position: relative;
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
    letter-spacing: 1%;
    color: #fff;
}

.event-cta__inner .event-cta__image {
    position: absolute;
    z-index: 1px;
    width: 100%;
    height: 360px;
}

.menu-menu-glowne-container .menu li {
    margin-right: 50px;
}

.page__single--event {
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    display: block;
}

.page__single--event-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 115px;
}

.page__blog--inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 66px;
}

.page__blog--content {
    width: 100%;
}

.page__blog--content .entry-item {
    width: calc(33% - 12px);
}

.page__blog--sidebar {
    min-width: 269px;
}

.single__event-content {
    width: 65%;
}

.single__event-content h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 2%;
    margin: 30px 0 20px 0;
}

.single__event-content p {
    font-weight: 400;
    font-size: 16px !important;
    line-height: 28px;
    letter-spacing: 1%;
    margin: 0 0 20px 0;
}

.single__event-content a {
    color: var(--primary-color);
}

.page__single--event-image {
    width: 100%;
    position: relative;
}

.page__single--event-image .image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.page__single--event-image .shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 88.5%);
}

.single__event--meta {
    position: absolute;
    z-index: 3;
    bottom: 27px;
    left: 52px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1%;
    color: #fff;
}

.single__event--meta .separator {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 1%;
    margin: 0 8px;
}

.widget {
    width: 100%;
    margin-top: 50px;
    display: block;
}

.widget__title {
    font-weight: 600;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 1%;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.widget__content .events-list,
.widget__content .entries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget__content .events-list .event-item,
.widget__content .entries-list .entry-item {
    width: 100%;
    max-width: 300px;
}

.widget__content .socials li {
    display: inline;
    margin-right: 10px;
}

.widget__content .tag-cloud {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget__content .tag-cloud  .tag-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(65, 65, 65, 1);
    padding: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 6%;
    color: #000;
}

.widget__content .category-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget__content .category-buttons .category-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(65, 65, 65, 1);
    padding: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 6%;
    color: #000;
}

.widget__content .category-buttons .category-button:hover {
    color: var(--primary-color);
}

.contact {
    width: 100%;
    display: block;
}

.contact__heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 85px;
    margin: 85px 0 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding: 0 0 20px 0;
}

.contact__heading a {
    font-weight: 400;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 6%;
    text-align: center;
    color: #000;
}

.contact__heading a.active {
    font-weight: 700;
}

.contact__section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
}

.contact__section--content {
    width: calc(40% - 50px);
}

.contact__section--content h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 2%;
    margin-bottom: 10px;
}

.contact__section--content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1%;
    margin-bottom: 30px;
}

.contact__section--content h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 1%;
}

.contact__section--content li {
    width: 100%;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1%;
    gap: 5px;
    margin-bottom: 10px;
}

.contact__section--form {
    width: calc(60% - 50px);
}

.contact__section--form.full {
    width: 100%;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
}

.contact__section--form input[type="text"],
.contact__section--form input[type="email"],
.contact__section--form input[type="tel"],
.contact__section--form select {
    width: 100%;
    padding: 8px 17px;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1%;
    color: rgba(60, 60, 60, 1);
    border: none;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
}

.contact__section--form textarea {
    width: 100%;
    padding: 8px 17px;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1%;
    color: rgba(60, 60, 60, 1);
    border: none;
    border: 2px solid #000;
    margin-bottom: 20px;
}

.course__heading {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 85px;
    margin: 85px 0 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding: 0 0 20px 0;
}

.course__heading a {
    font-weight: 400;
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 6%;
    text-align: center;
    color: #000;
}

.course__heading a.active {
    font-weight: 700;
}

.home-products
{
    width: 100%;
    display: block;
    margin-top: 150px;
}

.home-products .product-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 88px;
}

.product-item .product-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
}

.product-content .product-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: 1%;
}

.product-content .product-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 2%;

}

.product-content .action {
font-weight: 500;
font-size: 15px;
line-height: 12px;
letter-spacing: 2%;
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    color: #000;
}

.contact-message {
    width: 100%;
    display: block;
    margin: 69px 0 100px 0;
}

.contact-message-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-message-inner h5,
.contact-message-inner p {
    font-weight: 600;
    font-size: 42px;
    line-height: 52px;
    letter-spacing: 1%;
    color: #000;
}
.contact-message-inner a {
    color: #000;
}
.contact-message-inner a:hover {
    color: var(--primary-color);
}


.contact-message-inner .line {
    width: 100%;
    height: 4px;
    display: block;
    background-color: #000;
    min-width: 400px;
}

.contact-message-inner .action {
    font-weight: 500;
    font-size: 42px;
    line-height: 12px;
    letter-spacing: 2%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.employees-list {
    width: 100%;
    display: block;
    margin: 150px 0;
}

.employees-list .department {
    width: 100%;
    margin-top: 50px;
}

.employees-list .department h3 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    letter-spacing: 2%;
    margin-bottom: 75px;
}

.department-employees {
    display: flex;
    flex-direction: row;
    flex-wrap: no-wrap;
    gap: 16px;
}

.department-employees .employee-card {
    width: calc(25% - 12px);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 50px 26px;
}

.employee-card .employee-photo {
    width: 75px;
    height: auto;
    position: absolute;
    top: -45px;
    left: 65px;
}

.employee-card .employee-photo img {
    width: 100%;
    height: auto;
}

.employee-card .employee-info h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1%;
}

.employee-card .employee-info .position {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 2%;
    color: var(--primary-color);
    margin-top: 12px;
}

.employee-card .employee-info .phone,
.employee-card .employee-info .email {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.employee-card .employee-info .phone {
    margin-top: 25px;
}

.employee-card .employee-info .email {
    margin-top: 10px;
}

.employee-card .employee-info .phone a,
.employee-card .employee-info .email a {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1%;
    color: #000;
}

.employee-card .employee-info .phone a:hover,
.employee-card .employee-info .email a:hover {
    color: var(--primary-color);
}

.send-button input {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.navbar-bottom-left li {
    margin-right: 50px;
}

.visible-mobile {
    display: none;
}

.product-menu-description li {
    display: inline;
    font-size: 14px;
    margin-left: 48px;
}

.product-menu-description li a {
    color: #000;
}

.course--single--page .wp-block-table .has-fixed-layout tr > td {
    font-size: 24px;
    border: none;
}

.course--single--page h2.wp-block-heading,
.course--single--page h3.wp-block-heading {
    font-size: 28px;
    line-height: 36px;
}

.course--single--page .wp-block-table .has-fixed-layout tr > td:first-child {
    width: 20%;
    border-right: 1px solid rgba(0, 0, 0, 1);
}

.course--single--page .wp-block-table .has-fixed-layout tr > td:last-child {
    padding-left: 40px;
}

.join-component {
    width: 100%;
    background-image: url(../../images/join-component-bg.svg);
    height: 300px;
    padding: 32px 42px 32px 188px;
    position: relative;
}

.join-component-content {
    width: 100%;
    background-color: rgba(255,255,255,0.85);
    padding: 28px 52px 28px 58px;
}

.join-component-content .component-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    
}

.join-component-content .component-content {
font-weight: 400;
font-size: 18px;
line-height: 24px;
    margin: 10px 0 17px 0;
}

.course-spis-tresci li {
    display: block;
    margin-bottom: 12px;
}

.course-spis-tresci li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000;
}

.post-navigation {
    width: 100%;
    border-top: 1px solid #000;
    margin: 50px 0 0 0;
    padding: 18px 0 50px 0;
}

.post-navigation__links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.post-navigation__text {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.post-navigation__label {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000;
}

.post-navigation__title {
font-weight: 500;
font-size: 18px;
line-height: 24px;
color: #000;
}

/* MOBILE */

@media (max-width: 767px) {
    .visible-mobile {
        display: block;
    }
    .mobile-hidden {
        display: none;
    }

    .mobile-navbar {
        background-color: #fff;
        width: 100%;
        display: block;
        padding: 25px 16px;
        box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
    }

    .mobile-navbar .mobile__navbar--content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-navbar .mobile__navbar--content .mobile-logo {
        width: auto;
        height: 37px;
    }

    .mobile-navbar .mobile__navbar--content .mobile-logo img {
        width: auto;
        height: 37px;
    }
    
    .mobile-navbar .mobile__navbar--menu {
        width: 100%;
        display: block;
        padding: 20px 0 0 0;
    }

    .mobile-navbar .mobile__navbar--menu li {
        display: block;
        padding: 10px 0;
    }

    .mobile-navbar .mobile__navbar--menu li a {
        color: #000;
        font-size: 16px;
    }

    .mobile-menu-button {
        width: 36px;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .mobile-menu-button .bar {
        width: 100%;
        height: 4px;
        background: rgba(227, 1, 123, 1);
    }

    .services {
        display: flex;
        flex-direction: column;
    } 

    .section .section-description {
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .entry-item {
        width: 100%;
    }

    .companies-list {
        flex-direction: column;
    }

    .event-item {
        width: 100%;
    }

    .home-products .product-item {
        flex-direction: column;
    }

    .home-products .product-item .product-image,
    .home-products .product-item .product-image img {
        width: 100%;
        height: auto;
    }

    .home-products .product-item .product-navigation {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .product-item .product-content {
        width: 100%;
    }

    .contact-message-inner {
        flex-direction: column;
    }

    .contact-message-inner h5, 
    .contact-message-inner p {
        font-size: 32px;
        line-height: 42px;
    }

    .contact-message-inner .action {
        font-size: 32px;
        line-height: 42px;
    }

    .footer-upper-inner {
        flex-direction: column;
        gap: 50px;
    }

    .section__about {
        flex-direction: column;
        gap: 50px;
    }

    .section__about--image {
        width: 100%;
    }

    .section__cta--inner {
        flex-direction: column;
        gap: 50px;
    }

    .section__tabs {
        margin: 50px 0;
        padding: 0;
    }

    .section__tabs--heading li {
        width: 100%;
    }   
    .section__tabs--heading a {
        width: 100%;
    }

    .section__single {
        flex-direction: column;
        gap: 50px;
    }

    .section__single--image {
        width: 100%;
        height: auto;
    }

    .section__single--image img {
        width: 100%;
        height: auto;
    }

    .section__testimonials--inner {
        flex-direction: column;
    }

    .section__where {
        flex-direction: column;
    }

    .section__where--content {
        margin: 0 20px;
    }

    .section__cta--content {
        width: 100%;
    }

    .page__heading {
        flex-direction: column;
        gap: 50px;
    }

    .page__blog--content .entry-item {
        width: 100%;
    }

    .page__blog--inner {
        flex-direction: column;
        gap: 50px;
    }

    .page__single--event-content {
        flex-direction: column;
        gap: 50px;
    }

    .single__event-content {
        width: 100%;
    }

    .slider-title {
        width: 100%;
        font-size: 42px;
        line-height: 52px;
        padding-top: 90px;
    }

    .slider-description {
        width: 100%;
        font-size: 16px;
        line-height: 26px;
    }

    .slider-prev {
        position: absolute;
        top: 20px;
        left: 10%;
    }

    .slider-next {
        position: absolute;
        top: 20px;
        right: 10%;
    }
}

.single__event-content p {
	font-size: 16px !important;
	color: #000 !important;
}

.wp-block-list li {
	margin: 10px 0 !important;
}

.single__event-content .elementor-widget-container {
	color: #000 !important;
}