:root
{
    --color-pink:#9673A6;
    --color-yellow:#D6A560;
    --color-white:#F0F1F1;
    --color-black: #151A20;
    --color-blue:#60A7D6;
    --color-dark-blue:#0D2230;
    --color-green:#80B34D;
    --color-red:#D66062;
    --color-title:#000;
    --color-brown:#4adbce;
    --border-radius:12px;
    --title-size:28px;
    --text-size:24px;
}
*
{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    text-decoration: none;
    font-family: "Ubuntu";
    
}
::selection {
  background: #1d272e;  
  text-shadow: none;
}
body
{
    background-color: var(--color-black);
    margin: 0 auto;
    color: var(--color-white);   
}
a
{
    color: var(--color-white);
}
#app
{
    max-width: 1214px;
    margin: auto;
    padding: 0px 40px;
}
header
{
    padding: 16px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:40px;
    margin-bottom: 80px;
}
h1
{
    font-size: 40px;
    text-transform: uppercase;
}
h2
{
    font-size: var(--title-size);
    text-transform: capitalize;
    font-weight: 500;
}

main
{
    display: flex;
    flex-direction: column;
    gap:76px;
}
section
{
    display: flex;
    flex-direction: column;
    gap:32px;
}
.title
{
    padding: 14px 24px;
    border-radius: var(--border-radius); 
    align-self: baseline;  
}
.title h2
{
    color: var(--color-title);
    opacity: 0.65;
}
.yellow
{
    color: var(--color-yellow);
}
.pink
{
    color: var(--color-pink);
}
.white
{
    color: var(--color-white);
}
.green
{
    color: var(--color-green);
}
.blue
{
    color: var(--color-blue);
}
.red
{
    color:var(--color-red);
}
.brown
{
    color: var(--color-brown);
}
.yellow-bg
{
    background-color: var(--color-yellow);
}
.pink-bg
{
    background-color: var(--color-pink);
}
.white-bg
{
    background-color: var(--color-white);
}
.green-bg
{
    background-color: var(--color-green);
}
.blue-bg
{
    background-color: var(--color-blue);
}
.red-bg
{
    background-color:var(--color-red);
}
.brown-bg
{
    background-color: var(--color-brown);
}
.logo
{
    width: 98px;
    height: 98px;
    object-fit: contain;
}
.width-content
{
    width: 100%;
}
.section-content
{
   padding-left: 24px;
   font-size: var(--text-size);
   font-weight: 500;
   line-height: 140%;
   
}
.section-group
{
    display: flex;
    gap:40px;
}
.item-container
{
    display: flex;
    gap:18px;
    flex-direction: column;
}
.item-container .item
{
    display: flex;
    gap:20px;
    align-items: center;
}
.item-container .adress
{
    align-items: flex-start;
}
.icon
{
    display: block;
    min-width: 28px;
    height: 28px;
}
.participants .title
{
    align-self: center;
}
.address
{
    min-width: 380px
}

.participants .section-content
{
    padding: 0px;
    display: grid;
    gap:22px;
    grid-template-columns: repeat(2,1fr);
}
.participant-card
{
    border-radius: var(--border-radius);
    background-color: var(--color-dark-blue);
    display: flex;
    gap:18px;
    padding: 18px;
}
.participant-card:nth-child(2n)
{
    flex-direction: row-reverse;
}
.participant-card .card-description-container
{
    display: flex;
    flex-direction: column;
    gap:2px;
}
.participant-card .profile-img
{
    width: 200px;
    height: 200px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-black);
}
.participant-card .card-description-container .description
{
    font-size: 20px;
    line-height: 130%;
    margin-top: 10px;
}
.participant-card .card-description-container .city
{
    font-size: 18px;
}
.led
{
    grid-column-start: 2;
}
.led .section-content
{
    display: flex;
    flex-direction: column;
}
footer
{
    margin-top: 76px;
    border-top: 2px solid #28303A;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-size);
}
.footer-content
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:12px;
}
.footer-mol
{
    font-weight: 700;
    font-size: 32px;
}
.btn
{
    padding: 16px;
    border: 1px solid var(--color-green);
    border-radius: 8px;
    text-align: center;
}
.led .title
{
    align-self: flex-end;
}
@media(max-width:1200px) 
{
   .participants .section-content
   {
    grid-template-columns: repeat(1,100%);
   }
   .led
    {
        grid-column-start: auto;
    }
}
@media(max-width:1000px) 
{
 #app
 {
    padding: 0px 20px;
 }   
}
@media(max-width:900px)
{
    h1
    {
        font-size: 32px;
    }
    :root
    {
        --title-size:24px;
        --text-size:20px;
    }
    .address
    {
        min-width: auto;
    }
    .section-group
    {
        flex-direction: column;
        gap:76px;
    }
    .participants .title
    {
        align-self: flex-start;
    }
    .participant-card .card-description-container .description
    {
        font-size: 18px;
        margin-top: 6px;
    }
    .participant-card .card-description-container .city
    {
        font-size: 16px;
    }
    .title
    {
        padding: 10px 20px;
    }
    section
    {
        gap:28px;
    }
}
@media(max-width:550px)
{
    h1
    {
        font-size: 28px;
    }
    :root
    {
        --title-size:20px;
        --text-size:18px;
    }
    .section-content
    {
        padding: 0px;
    }
    .participant-card .profile-img
    {
        width: 150px;
        height: 150px;
    }
    .participant-card .card-description-container .description
    {
        font-size: 16px;
        margin-top: 4px;
    }
    .participant-card .card-description-container .city
    {
        font-size: 14px;
    }
    main
    {
        gap:60px;
    }
    footer
    {
        margin-top: 60px;
    }
    .title
    {
        padding: 8px 16px;
    }
    .icon
    {
        min-width: 24px;
        height: 24px;
    }
    section
    {
        gap:24px;
    }
    .footer-mol
    {
        font-size: 24px;
    }
    .section-group
    {
        gap: 60px;
    }
    header
    {
        margin-bottom: 60px;
    }
}
@media(max-width:470px)
{
    h1
    {
        font-size: 24px;
    }
    :root
    {
        --title-size:18px;
        --text-size:16px;
    }
    .participant-card .profile-img
    {
        width: 120px;
        height: 120px;
    }
     .participant-card .card-description-container .description
    {
        font-size: 14px;
    }
    .participant-card .card-description-container .city
    {
        font-size: 12px;
    }
    main
    {
        gap:40px;
    }
    footer
    {
        margin-top: 40px;
    }
    section
    {
        gap:20px;
    }
    .footer-mol
    {
        font-size: 20px;
    }
    .section-group
    {
        gap: 40px;
    }
    header
    {
        margin-bottom: 40px;
    }
}
@media(max-width:390px)
{
    h1
    {
        font-size: 22px;
    }
    .participant-card .profile-img
    {
        width: 90px;
        height: 90px;
    }
    .participant-card
    {
        flex-direction: column;
    }
    .participant-card:nth-child(2n)
    {
        flex-direction: column;
    }
    section
    {
        gap:18px;
    }
    .footer-mol
    {
        font-size: 16px;
    }
   
    
}