@font-face {
    font-family: 'Din';
    src: url('../img/DIN.ttf') format('truetype')
}

@font-face {
    font-family: 'Din';
    font-weight: 700;
    src: url('../img/DIN-Bold.ttf') format('truetype');
}

* {
    font-family: 'Din';
}

.slide-content {
    height: 440px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
}

.swiper-button-prev {
    transform: scale(2);
    background-image: none !important;
    left: 30px;
    top: 54%;
}

.swiper-button-next {
    transform: scale(2);
    background-image: none !important;
    right: 30px;
    top: 54%;
}

.mail_url {
    color: white;
}

.mail_url:hover {
    color: white;
    text-decoration: none;
}

#footer {
    background-color: #303030;
    color: #8d898a;
    padding: 15px 30px;
    justify-content: space-between;
}

#footer > div {
    display: flex;
    justify-content: center;
}

#footer > div > div > a {
    color: #8d898a;
}

body {
    background-color: black;
    color: white;
}

img {
    max-width: 100%;
}

#banner {
    position: relative;
    background-color: #de5f34;
    z-index: 1;
}

.pt20 {
    padding-top: 20px !important;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

#header-texts > h1 {
    font-size: 7rem;
    font-weight: 700;
}

#header-texts > h2 {
    font-weight: 700;
    font-size: 2.25rem;
}

.error {
    border-color: #aa0e0e !important;
}

input[type="text"] {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 100%;
    padding: 5px 10px;
}

input[type="text"]::placeholder {
    color: white;
}

input[type="text"]:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #dd5e35 inset;
    -webkit-text-fill-color: white !important;
}

textarea {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    width: 100%;
    padding: 5px 10px;
}

textarea::placeholder {
    color: white;
}

table {
    color: black;
}

th {
    color: white;
    background-color: #1d1d1b;
    padding: 10px;
}

td {
    height: 65px;
    position: relative;
    font-weight: 700;
}

.sound-level {
    width: 60px;
    height: 60px;
}

td > div {
    position: absolute;
    top: 2px;
}

td > div > span {
    position: absolute;
    bottom: 0;
    color: #62b9af;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

td, th {
    border: 1px solid #d0d0d0;
    text-align: center;
}

td:first-child {
    background-color: #606060;
    color: white;
    width: 25%;
}

tbody > tr:nth-child(odd) {
    background-color: white;
}

tbody > tr:nth-child(even) {
    background-color: #f4f4f4;
}

tbody > tr:last-child > td {
    border-bottom: 10px solid #c7c7c7;
}

.btn-custom {
    display: block;
    text-align: center;
    background-color: #67bab0;
    padding: 5px 15px;
    border-radius: 100px;
    border: 2px solid transparent;
    color: white;
    font-weight: 700;
    margin-top: 15px;
    opacity: .8;
}

.btn-custom:hover {
    color: #ffffff;
    opacity: 1;
}

.button {
    background-color: #67bab0;
    padding: 5px;
    border-radius: 100px;
    border: 0;
    color: white;
    width: 100%;
}

.buttons {
    justify-content: center;
}

.buttons > a:first-child {
    width: 230px;
    text-align: center;
    background-color: #67bab0;
    padding: 5px 15px;
    border-radius: 100px;
    border: 2px solid transparent;
    color: white;
    font-weight: 700;
    margin-top: 15px;
}

.buttons > a:last-child {
    width: 230px;
    text-align: center;
    background-color: transparent;
    padding: 5px 15px;
    border-radius: 100px;
    border: 2px solid #67bab0;
    color: white;
    font-weight: 700;
    margin-top: 15px;
}

.swiper-slide {
    height: auto !important;
    margin: 0 auto;
}

.background-image {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/library.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

.image-lifestyle {
    background-image: url("../img/panasonic-lifestyle.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    height: 500px;
}

.swiper-button-next, .swiper-button-prev {
    width: 20px;
    height: 20px;
}

/* Cust checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid white;
    background-color: transparent;
    margin-top: 3px;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (min-width: 576px) {
    .buttons > a:last-child {
        margin-left: 15px;
    }

    #footer {
        display: flex;
    }
}

@media (min-width: 1200px) {
    #banner > div {
        position: absolute;
    }

    td > div {
        right: 16%;
    }
}

@media (min-width: 768px) {
    td > div {
        right: 15px;
    }

    .l-20 {
        left: -20px;
    }

    .padding-case-study {
        padding: 100px 0;
    }
}

@media (max-width: 1199px) {
    #banner > div > .container {
        padding: 15px;
    }
}

@media (max-width: 1300px) {
    .product {
        display: none;
    }

    .product-md {
        display: block;
    }
}

@media (min-width: 1301px) {
    .product-md {
        display: none;
    }

    td > div {
        right: 22%;
    }
}

@media (max-width: 767px) {
    td {
        text-align: left;
        padding-left: 5px;
    }

    td:first-child {
        text-align: center;
    }

    table {
        margin-top: 30px;
    }

    td > div {
        right: 15px;
    }

    .mb50 {
        margin-bottom: 50px;
    }

    .padding-case-study {
        padding: 15px 0;
    }

    .l-20 {
        left: 13px;
    }
}

@media (max-width: 575px) {
    .hide-xs {
        display: none;
    }

    #header-texts > h1 {
        text-align: center;
        font-size: 6rem;
        line-height: 90px;
    }

    .p-xs-0 {
        padding: 0;
    }
}

@media (min-width: 450px) {
    .slide-content {
        height: 440px;
    }
}

@media (max-width: 449px) {
    .slide-content {
        height: 340px;
    }
}
