:root {
    --gold: rgb(215, 200, 160);
    --plum: rgb(62, 57, 69);
    --lightGold: rgb(248, 248, 248);
}

.gold-line {
    content: "";
    height: 3px;
    background-color: var(--gold);
    width: 15%;
    margin: 0%;
} 
.white-line {
    content: "";
    height: 3px;
    background-color: white;
    width: 15%;
    margin: 20px 0;
} 

.logo {
     width: 320px;
    padding-top: 15px;
}

/*----- MAIN PAGE -----*/


.main-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    align-content: center;
/*    height: 100vh;*/
    height: 100%;
    background-image: url("statics/bmm-background-warsaw.png");
    background-size: cover;
}

.main-top-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    padding-left: 10%;
    padding-right: 10%;
    height: 100%;
    width: 100%;
}
.main-wrapper {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;

}

.main-left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.main-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.main-h {
    padding-top: 30px;
    font-weight: 900;
    font-size: 34px;
    line-height: 1.3;
    color: var(--plum);
}

.main-p {
    margin-top: 10px;
    color: rgba(0,0,0,0.5);
    font-weight: 100;
    font-size: 20px;
    line-height: 1.3;
}
.link-no{
    text-decoration: none;
}
.main-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    
}

.main-row-item p{
    color: white;
    font-size: 1.3rem;
    line-height: 1.5
}

.main-row-item{
    width: 100%;
    min-height: 160px;
    padding: 20px 20px 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);

}

.main-item-1{
    background-image: url("statics/main-item1.png");
    background-size: cover;
    background-position: bottom;
    color: white;
}


.main-item-2{
    background-image: url("statics/main-item2.png");
    background-size: cover;
    background-position: bottom;
}


.main-item-3{
    background-image: url("statics/main-item3.png");
    background-size: cover;
    background-position: bottom;
}

@media (max-width: 50rem) {
    .main-section{
        min-height: 10%;
        background-repeat: repeat-y;
    }
    .main-top-part{
        padding: 50px 20px; 
    }
    .main-wrapper {
       height: 55vh;
    }
    .main-left{
        width: 100%;
    }
    .main-right{
        width: 0%;
        display: none;
    }
    .main-row{flex-direction: column; height: 100%;}
    .main-row-item{min-height: 150px;}
    .logo{
        padding-top: 34px;
         width: 280px;
    }
    .main-h {
        font-size: 28px;
        line-height: 1.3;
    }
    .main-p {
/*        font-size: 28px;*/
        line-height: 1.3;
    }
    
}


/*PRODUCTION SECTION*/
.products-section{
    padding: 80px 10% 0px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.products-header{
    font-size: 42px;
    font-weight: bold;
    padding: 20px 0;
    text-align: center;
    
}
.products-desc{
    font-size: 1.2rem;
    text-align: center;
    padding: 20px 0;
    color: rgba(0,0,0,0.75);
    
}

.products-grid{
/*    border: 1px solid black;*/
    display: grid;
    grid-row-gap: 20px;
    align-items: start;
    grid-template-columns: 1fr 1fr;
}

.product-item{
/*    border: 1px solid grey;*/
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 5%;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.product-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: black;
    padding: 10px 0;
}
.product-text{
    font-size: 18px;
    color: rgba(0,0,0,0.7);
    text-align: center;
    
}

.product-img{
    width: 20%;
}

.onas-h{
    font-size: 1.2rem;
    color: var(--gold);
    text-align: left;
}

.onas-p{
    color: grey;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 2px solid var(--gold);
}

@media (max-width: 50rem) {

    .products-section{
        padding: 90% 5% 0px 5%;
    }
    .products-grid{
        grid-template-columns: 1fr;
    }
    
}

/*///EXTRA SECTION /////*/

.extra-section{
    padding: 80px 10%;
    width: 100%;
    display: flex;
    
    flex-direction: column;
    align-items: center;
/*    min-height: 100%;*/
}

.color-box{
    width: 100%;
    background-color: var(--lightGold);
    padding: 50px;
    border-radius: 15px;
    margin: 30px;
    
}

.extra-header{
    font-size: 36px;
    color: var(--gold);
    padding-bottom: 20px;
}
@media (max-width: 50rem) {

    .extra-section{
        padding: 20px 3%;
    }
    .color-box{
        padding: 30px 20px;
    }
    .extra-header{
        font-size: 30px;
        line-height: 1.3;
    }
}

/*TEAM SECTION*/

.why-row-wrapper {
   height: 100%;
   display: flex;
   flex-direction: row;
    gap: 20px;
   justify-content: center;
   align-items: flex-start;
    align-self: flex-start;
}

.why-text-single-col {
    width: 32%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-start;
}

.team-section{
    display: flex;
    flex-direction: column;
    padding: 80px 10%;
    
    align-items: center;
    min-height: 100%;
    background-color: var(--plum);
}

.team-header{
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: white;
}
.team-desc{
    font-size: 18px;
    color: white;
    text-align: center;
    padding: 0px 20% 40px 20%;;
}

.person-card{
/*    max-width: 400px;*/
    display: flex;
    flex-direction: column;
}

.person-card-img {
    background-color: rgb(30, 30, 30);
}
.person-img {
    height: 300px;
    width: 300px;
}
.person-info {
    border: solid 0px grey;
    padding: 14px;
    background-color: white;
}
.person-info-header{
   
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    
    
}
.fa-icon i {
    font-size: 22px;
    color: grey;
    
}
.fa-icon i:hover {
    font-size: 22px;
    color: black;
    
}

.person-name{
    font-weight: bold;
    font-size: 18px;
}

.person-position{
    font-size: 10px;
    font-weight: bold;
    color: grey;
}
.person-bio{
    padding-top: 15px;
    font-size: 12px;
    color: black;
    min-height: 190px;
/*    text-align: justify;*/
}



@media (max-width: 50em) {
    .team-header{font-size: 36px;}
    .why-row-wrapper {
        
        flex-direction: column;
        
        min-height: 100%;
        padding: 30px 0;
        
    }
    .why-text-single-col{
        width: 100%;
        height: 100%;
        
    }
    .team-desc{
    padding: 0;
}
}


/*INVEST SECTION*/

/*??IPRIORITY SECTION ???*/




.invest-section {
    display: flex;
    flex-direction: row;
    
    padding: 100px 40px;
}

.invest-section-left{
    width: 50%;
}
.invest-section-left img{
    
    width: 90%;
    padding-right: 40px;
}

.invest-section-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.priority-header{
    font-size: 30px;
    font-weight: bold;
    color: black;
    padding-bottom: 40px;
}

.priority-para-div{
    padding-left: 20px;
    border-left: solid 3px var(--gold);
}

.priority-para{
    color: grey;
}
@media (max-width: 50em) {
    .invest-section {flex-direction:column-reverse;}
    .invest-section-left{
        width: 100%;
    }
    .invest-section-left img{
        width: 100%;
        padding: 0px;
    }
    .invest-section-right{
        width: 100%;
    }
}


/* FOOTER */

footer{
    background-color: var(--plum);
    padding: 40px 10%;
    color: white;
    
}

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

.footer-info-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}


.footer-col{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-h{
    font-size: 14px;
    font-weight: bold;
}
.footer-name{
    color: white;
    font-size: 16px;
    font-weight: bold;
}


footer .right{
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

footer .right p {
    text-align: end;
}

.footer-row{
    display: flex;
    flex-direction: row;
    
}

.right .footer-row{
    column-gap: 20px;
}

.footer-col{
    display: flex;
    flex-direction: column;
    width: 50%
}

.left p{
    padding-top: 20px
}

.footer-hr{
    display: none;
    color: rgba(255, 255, 255, 0.5);
    width: 100%;
    margin: 10px 0 0 0;
    padding: 0;
    
}

@media (max-width: 50em) {
    .footer-row{
        flex-direction: column-reverse;
        gap: 30px;
    }
    .footer-col{width: 100%;}
    footer .right p {
        text-align: start;
    }
    .footer-info-row{
        width: 100%;
        justify-content: flex-start;
        column-gap: 10px;

    }
    .footer-name{
        width: 100%;
    }
    .footer-h{
        width: 100%;
    }
    .footer-hr{
        display: block;
    }
}


/*NEW*/
.extra-subheader{
    font-size: 1.5rem;
}
/*
.overlay{ 
    opacity:0.8; 
    animation:pulse 4.2s 1;
}

@keyframes pulse
{
    0%   {opacity:0}
    100%   {opacity:0.8}
}
*/

.container1 {
    background-color:transparent;
    margin-left:10px;
    margin-right:10px;
    transition: all 2s ease;
    overflow: hidden;
    cursor: pointer;
/*    height: 65px;*/
    }

.container1expanded {
    height: 280px;
    transition: all 2s ease;
    line-height: normal;
    }


#container1p {
    display: none;
    transition: all 2s ease;
    }

.hr-gold {
  border: none;
  border-top: 3px solid var(--gold);
  color: white;
  background-color: transparent;
  height: 1px;
  width: 100%;
  margin: 5px;
}
.expand_title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.arrow{
    font-size: 50px;
    color: var(--gold);
}
.expand_title h1{
    color: black;
    font-size: 1.4rem;
    line-height: 1.2;
}
.expand_title p{
    font-size: 40px;
/*    padding-right: 20px;*/
}

.info-div{
    margin: auto;
    padding: 20px 0;
}



.oferta-para{
    margin-top: 15px;
    padding-left: 15px;
    margin-left: 5px;
    border-left: 1px solid var(--gold);
    margin-bottom: 30px;
    font-size: 1rem;
}

#infoContent1{
    display: none;
    padding-left: 32px;
}
#infoContent2{
    display: none;
    padding-left: 32px;
}
#infoContent3{
    display: none;
    padding-left: 32px;
}

.expand_title div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    
}
.oferta-title{
    font-size: 22px;
    font-weight: bold;
    color: var(--gold);
}

@media (max-width: 50em) {
    .expand_title h1{font-size: 1rem;}
    .arrow{font-size: 30px;}
    #infoContent1{
    padding-left: 0px;
    }
    #infoContent2{
        padding-left: 0px;
    }
    #infoContent3{
        padding-left: 0px;
    }
    .container1 span{1.0rem;}
    .extra-subheader{
        font-size: 1.1rem;
        line-height: 1.3
    }
    .oferta-para{font-size: 12px;}
    .oferta-title{font-size: 16px;}
}