@font-face {
    font-family: Grotesque;
    src: url('fonts/ITCAvantGardePro-Bk.otf') format('opentype');
}

body {
    font-family: Grotesque, Arial, sans-serif;
    margin: 0;
}

.product-container {
    display: flex;
    max-width: 1440px;
    margin: auto;
    justify-content: center;
}

@media (max-width: 800px) {
    .product-container {
        flex-direction: column;
    }
}

.product-container .product-body-wrapper {
    border-top: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 800px) {
    .product-container .product-body-wrapper {
        border-left: 1px solid #d7d7d7;
    }
}

.product-container .product-body-wrapper .color {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d7d7d7;
    background: #f7f9fb;
    background: -moz-linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    background: -webkit-linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f9fb", endColorstr="#ffffff", GradientType=1);
}

.product-container .product-body-wrapper .color svg {
    width: 100%;
}

.product-container .product-body-wrapper .color h1 {
    padding-left: 30px;
}

.product-container .product-header {
    width: 40%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #d7d7d7;
    justify-items: center;
    align-items: center;
    align-content: center;
    padding: 40px 0;
    max-width: 500px;
    border-right: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    background: #F7F9FB;
}

@media (min-width: 800px) {
    .product-container .product-header {
        height: calc(100vh - 81px);
    }
}

@media (max-width: 800px) {
    .product-container .product-header {
        max-width: 100%;
        width: 100%;
    }
}

.product-container .product-header .img-container {
    max-width: 280px;
    margin: 0 auto;
    padding: 10px;
    height: fit-content;
    width: fit-content;
}

@media (max-width: 800px) {
    .product-container .product-header .img-container {
        max-width: 200px;
    }
}

.product-container .product-header .img-container img {
    width: 100%;
    box-shadow: 0 0 20px 0 gray;
    border-radius: 14px;
    border: 1px solid #d7d7d7;
}

.product-container .product-header .product-heading {
    margin: 10px 0;
    text-align: center;
}

.product-container .product-header .icons-header {
    border-top: 1px solid #d7d7d7;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    justify-items: center;
    align-content: center;
    padding-top: 40px;
    margin-top: 20px;
}

.product-container .product-header .product-description {
    color: gray;
    margin: 10px 0;
}

.product-container .product-body {
    border-bottom: 1px solid #d7d7d7;
    background: white;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: start;
    justify-items: center;
    padding: 20px;
}

@media (min-width: 800px) {
    .product-container .product-body {
        max-width: 100%;
        width: 100%;
    }
}

.product-container .product-body .multiple-items {
    width: 100%;
    padding-left: 10px;
}

.product-container .product-body .product-body-item {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-left: 10px;
    border-radius: 4px;
    border-left: 2px solid gray;
}

.product-container .product-body .product-body-item .body-item-header {
    margin: 0;
}

.product-container .product-body .product-body-item .information-item {
    margin: 0;
    color: gray;
}

.product-container .cta-section {
    margin: 10px auto;
}

.product-container .cta-section .btn-problem, .product-container .cta-section .btn {
    background: #177ee5;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    border: 0 solid;
    margin: 30px auto;
    max-width: 300px;
    font-size: 18px;
}

.product-container .cta-section .btn {
    background: #000000;
}

.product-container .cta-section .btn-problem a, .product-container .cta-section .btn a {
    text-decoration: none;
    color: white;
}

.product-container .cta-section .btn-problem a:visited, .product-container .cta-section .btn a:visited {
    color: white;
}

