/*!
Theme Name: AMALT
Theme URI: http://underscores.me/
Author: whhroo
Author URI: https://www.linkedin.com/company/stellar-solutions-md
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: amalt
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

AMALT is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

.single-body iframe{
    width: 100%;
    height: 440px;
    margin: 30px 0;
}

.single-image {
	object-fit: contain;
}

.footer__row .socials img{
    width: 32px;
    height: 32px;
}

main.gallery{
    padding-bottom: 50px;
}

.objectives{
    margin-bottom: 50px;
}

.members__post h6{
    line-height: 150%;
    font-size: 16px;
}

.wpcf7-response-output{
    grid-column: 3 span;
    margin: 0 !important;
}

form.invalid .wpcf7-response-output{
    border-radius: 6px;
    padding: 12px;
    background-color: #FEB903;
    border-color: #FEB903 !important;
}

form.sent .wpcf7-response-output{
    border-radius: 6px;
    padding: 12px;
    background-color: #62D344;
    border-color: #62D344 !important;
    color: #fff !important;
}

.members__block:not(.members-post__grid):not(.title__mobile){
    font-weight: 500;
    font-size: 18px;
    text-align: justify;
    padding-right: 40px;
}

.breadcrumb li:hover a{
    color: #8F00FF;
}

.news__container h2:is(.not-found){
    text-align: center;
    margin: 60px 0;
}

@media (max-width: 992px){
    .members__block:not(.members-post__grid):not(.title__mobile){
        padding-right: 20px;
    }
	.members__block.members-post__grid{
		margin-left: 20px;
		gap: 14px;
	}
}

@media (max-width: 767px){
	.members__grid{
		display: flex !important;
		flex-direction: column;
		gap: 24px;
	}
	.members__block.members-post__grid{
		margin-left: 0
	}
	.members__block:not(.members-post__grid):not(.title__mobile){
		padding: 0 !important;
		border: none;
	}
	.members__block.title__mobile{
		margin-top: 28px;
	}
	.home .members__logos{
		margin-top: 20px;
	}
	.opportunity_title {
		margin-left: 0!important;
	}
	.members-post__grid {
		margin-left: 0!important;
	}
}


.search .posts__grid{
    margin: 80px 0;
}

.founders-card{
    position: relative;
}

.founders-card::after{
    content: '';
    position: absolute;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    inset: 0;
}

.founders-card * {
    z-index: 3;
}

.title__mobile {
	display: none;
}

@media (max-width: 992px){
	.mobile-hide {
		display: none;
	}
	.title__mobile {
		display: block;
	}
}

.stlightbox-gallery__slide img, .stlightbox-gallery__slide video{
	max-width: calc(100vw - 40px) !important;
}

.gallery-controls__arrow{
	background-color: #FBFBFB !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px !important;
    border-radius: 4px;
}

.breadcrumb{
	white-space: nowrap;
	text-overflow: ellipsis;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overflow-x: auto;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.single-body blockquote{
  margin-bottom: 30px;
}

.single-body blockquote em{
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 1px solid #8F00FF;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
	display: block
}

.single-body blockquote cite{
	font-size: 18px;
	font-weight: 600;
	text-align: right;
	display: block;
}

@media (max-width: 1300px) {
  .single-body blockquote {
    line-height: calc(28px + 4 * (100vw - 320px) / 980);
  }
}

.post img{
	height: 210px;
	object-fit: cover
}

.single-body a{
	text-decoration: underline;
	color: #8F00FF
}

@media (max-width: 61.99875rem) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #fff;
    height: 100%;
    z-index: 4;
    padding-top: 40px;
    padding-left: 40px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 60%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .header__nav.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .header__nav .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__nav .mobile__language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__languages {
    display: none;
  }

  .burger {
    display: block;
    margin-left: auto;
    position: relative;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }

  .burger span,
  .burger::before,
  .burger::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #232323;
    border-radius: 5px;
  }

  .burger::before {
    top: 2px;
  }

  .burger::after {
    bottom: 2px;
  }

  .burger span {
    top: calc(50% - 1px);
  }

  .burger.active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .burger.active::before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .burger.active::after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: calc(50% - 1px);
  }

   .members__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

 .members__block:first-of-type > h2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
  }

  .members__block:first-of-type {
    gap: 30px;
    border-bottom: 1px solid #EDEDED;
    border-right-width: 0;
    padding-bottom: 30px;
  }
	
  .home .gallery .page__gallery-slider .gallery-slider__body .gallery-slider__slider .slider-gallery-controls__arrows .slider-arrow__prev {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .home .gallery .page__gallery-slider .gallery-slider__body .gallery-slider__slider .slider-gallery-controls__arrows .slider-arrow__next {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .about .objectives__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .contacts__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts__grid > img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 450px;
	  object-fit: cover
  }
}

.aderare__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 40%;
  grid-template-columns: 350px 40%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  gap: 30px;
  padding: 50px 0;
}

.aderare__body img,
.aderare__body source {
  width: 100%;
  height: 100%;
}

.aderare__body img {
  border: 1px solid #EDEDED;
}

.aderare__content p {
  display: block;
  margin: 12px 0;
}

@media (max-width: 47.99875rem) {
	  .aderare__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: 100%;
  }
}

.space-y-6 > * + * {
	--tw-space-y-reverse: 0;
	margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
	margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.opportunity_title {
	text-align: left !important; 
}

.opportunity_text {
	margin-block: 32px;
	font-size: 18px;
}

.members__images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 32px;
}
