/*.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
*/
  
:root {
    --color-primary: #B9CB39;
    --color-black: #000;
    --color-white: #FFF;
}
.text-primary {
    color: var(--color-primary);
}
.text-white {
    color: var(--color-white);
}
.text-black {
    color: var(--color-black);
}
.fw-regular {
    font-weight: 400;
}
.fw-medium {
    font-weight: 500;
}

b, strong,
.fw-semibold {
    font-weight: 600;
}
html,
body { 
    background-color: var(--color-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    font-size: 21px;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    margin: 0;
}
h1 {
    font-size: 36px;
    line-height: 1.5em;
    margin-bottom: 10px;
}
h2 {
    font-size: 24px;
    line-height: 1.5em;
}
h3 {
    font-size: 30px;
    line-height: 1.5em;
    margin-bottom: 20px;
}
.col-lt {
    width: 50%;
}

.header {
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
}

.header .col-rt {
    text-align: end;
}
.container {
    max-width: 1240px;
    padding: 20px;
    margin: 0 auto;
}
.contacts {
    width:100%;
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom:40px;
}
.btn {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 6px 20px 6px 8px;
    border-radius: 35px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size:24px;
}
.btn:hover {
    text-decoration: underline;
}
.btn .icon {    
    padding: 5px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn .icon svg {  
    width: 80%;
    fill: var(--color-white);
    height: auto;
}
.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.image {
    width: 100%;
    height: auto;
    max-width: 551px;
}
.info p {
    margin-top: 50px;
}
.address {
    text-align:center;
    width:100%;
    padding-top:20px;
}
.image.mobile {
    display:none;
}
@media (max-width:1024px) {
    .header {
        flex-direction:column;
        align-items:center;
        justify-content: center;
        gap:60px;
    }
    .header .col-lt,
    .header .col-rt,
    .contents {
        text-align: center;
    }
    .col-lt {
        width: 100%;
    }
    .image.mobile {
        display: block;
        margin: 0 auto 50px;
    }
    .wrapper .col-rt {
        display:none;
    }
    .contacts {
        justify-content: center;
    }
}
@media (max-width:768px) {
    html,
    body { 
        font-size: 18px;
    }
    .container {
        padding:30px 10px;
    }
    .contacts {
        flex-direction:column;
        align-items: center;
        margin-bottom:20px;
    }
    .btn {
        font-size:16px;
    }
    .btn .icon {  
        width:30px;
        height:30px;
    }
    .btn .icon svg {  
        width: 90%;
    }
}