/*!
Theme Name: pmi

Author: Sergey Tadevosyan
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6

 */

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body, h2, p {
    margin: 0;
    padding: 0;
    color: #ffffff;
}

h2 {
    font-size: 2em;
    margin: 1.5em 0;
}

p {
    margin: 0.5em 0;
    font-size: 1.2em;
    font-weight: 400;
}

ul {
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
}

.external-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #ffffff47;
    transition: box-shadow .2s ease;
}

.external-link-btn:hover {
    box-shadow:  0px 0px 8px 0px #ffffff6e, inset 0 0 3px 0 white;
}

section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.pmi-section {
    width: 100%;
    min-height: 100vh;
}

section.pmi-section .main-container {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 30px;
    white-space: break-spaces;
}

.main-container img {
    width: 100%;
    margin: 4em 0;
}

.pmi-separator {
    width: 100%;
    background-size: contain;
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
}

.row.row-reversed {
    flex-direction: row-reverse
}

.row img {
    margin: 2em 0;
}

@media  (max-width: 721px) {
    .row {
        flex-direction: column;
    }

    .row.row-reversed {
        flex-direction: column-reverse;
    }

    .row img {
        margin: 4em 0;
    }
}


