.sliderLayout.twoRows {
    float: left;
    width: 100%;
    margin: 20px 0 120px;
}
.sliderLayout.twoRows .title {
    float: left;
    width: 100%;
    margin-bottom: 90px;
}
.sliderLayout.twoRows .titleBlue {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
}
.sliderLayout.twoRows .titleYellow {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: #FACE4A;
    line-height: 1.2;
}
.sliderLayout.twoRows .images {
    float: left;
    width: 100%;
}
.sliderLayout.twoRows .image {
    aspect-ratio: 232/182;
    border: 1px solid #E0EDF4;
    box-sizing: border-box;
    margin: 10px;
    width: calc(100% - 20px) !important;
    padding: 15px;
}
.sliderLayout.twoRows .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sliderLayout.twoRows .image.grayscale img {
    filter: grayscale(1);
}
.sliderLayout.twoRows .arrows {
    float: left;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    margin-top: 40px;
}
.sliderLayout.twoRows .arrows .previousArrow {
    margin-right: 10px;
}
.sliderLayout.twoRows .arrows .slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: default;
}
.sliderLayout.twoRows .arrows .slick-arrow {
    cursor: pointer;
}
.sliderLayout.twoRows .arrows .slick-arrow.slick-disabled {
    cursor: default;
}
.sliderLayout.twoRows .dots {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.sliderLayout.twoRows .dots.inactive {
    display: none;
}
.sliderLayout.twoRows .dots ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sliderLayout.twoRows .dots li {
    float: left;
    width: auto;
    margin: 0 5px;
}
.sliderLayout.twoRows .dots li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.1);
    position: relative;
    display: block;
}
.sliderLayout.twoRows .dots li.slick-active:before {
    background-color: #FCCE4A;
}
.sliderLayout.twoRows .dots li button {
    display: none;
}
.sliderLayout.twoRows .inquiry {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 90px;
    z-index: 2;
}
@media (max-width: 1200px) {
    .sliderLayout.twoRows .titleBlue,
    .sliderLayout.twoRows .titleYellow {
        font-size: 40px;
    }
}
@media (max-width: 900px) {
    .sliderLayout.twoRows .title {
        margin-bottom: 60px;
    }
}
@media (max-width: 600px) {
    .sliderLayout.twoRows .arrows {
        display: none;
    }
}
@media (max-width: 500px) {
    .sliderLayout.twoRows .titleBlue,
    .sliderLayout.twoRows .titleYellow {
        font-size: 35px;
    }
    .sliderLayout.twoRows .title {
        margin-bottom: 30px;
    }
    .sliderLayout.twoRows .image {
        margin: 5px;
        width: calc(100% - 10px) !important;
        padding: 10px;
    }
    .sliderLayout.twoRows {
        margin: 20px 0 90px;
    }
}