@import url("../../../global/css/main.css");

section {
    position: relative;
    width: 100%;
}

.section-1 {
    position: relative;
    margin-top: 5rem;
    height: 25rem;
    overflow: hidden;
    background-color: white;
}

.owl-carousel {
    position: relative;
    height: 25rem;
}

.owl-carousel .owl-item {
    position: relative;
    height: 25rem;
    display: flexbox;
}

img {
    position: absolute;
    bottom: 0;

}

.owl-nav {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-nav .owl-next {
    position: absolute;
    right: 0;
    width: 3rem;
    height: 23rem;
    line-height: 23rem;
    background-color: transparent !important;
    transition: .3s;
}

.owl-nav .owl-next:hover {
    background-color: rgba(233, 133, 18, 0.466) !important;
}

.owl-nav .owl-next i {
    font-size: 2rem;
}

.owl-nav .owl-prev {
    position: absolute;
    left: 0;
    width: 3rem;
    height: 23rem;
    line-height: 23rem;
    background-color: transparent !important;
    transition: .3s;
}

.owl-nav .owl-prev:hover {
    background-color: rgba(233, 133, 18, 0.466) !important;
}

.owl-nav .owl-prev i {
    font-size: 2rem;
}

.section-2 {
    height: 45rem;
}

.section-2 .image-box {
    position: absolute;
    top: 20%;
    left: 7%;
    width: 50%;
    height: 60%;
    overflow: hidden;
}

.section-2 .image-box img {
    position: relative;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    object-position: -6rem 0;
}

.section-2 .text-box {
    position: absolute;
    top: 10%;
    left: 55%;
    width: 40%;
    height: 80%;
    overflow: hidden;
}

.section-2 .text-box .main-headline {
    position: relative;
    text-align: start;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary);
}

.section-2 .text-box p {
    position: relative;
    /* margin-left: 10%; */
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 100%;
    font-size: 1.2rem;
}

.section-2 .text-box .sub-headline {
    position: relative;
    text-align: center;
    top: 1rem;
    font-weight: 500;
    color: var(--secondary);
}

.section-3 {
    height: 35rem;
}

.section-3 .text-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.section-3 .text-box .main-headline {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    font-size: 2.3rem;
    color: var(--primary);
}

.section-3 .text-box table{
    position: relative;
    margin-top: 4rem;
    left: 15%;
    width: 70%;
    border-collapse: collapse;
    background-color: bisque;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
}

.section-3 .text-box table tr {
    height: 3rem;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
}

.section-3 .text-box table tr:hover {
    cursor: pointer;
    background-color: rgb(255, 214, 164);
    height: 3.5rem;
    font-size: 1.4rem;
}

.section-3 .text-box table tr:hover table {
    margin-top: 4.5rem;
}

.section-3 .text-box table td {
    text-align: center;
    font-size: 1.2rem;
    border: 2px solid white;
}

.section-3 .text-box table .col-left {
    background-color: rgb(255, 196, 124);
    color: white;
}

.section-3 .text-box .termin-btn {
    position: absolute;
    bottom: 3rem;
    left: 35%;
    width: 30%;
    height: 3rem;
    border: none;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background-color: var(--primary);
    color: white;
    font-size: 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
}

.section-3 .text-box .termin-btn:hover {
    cursor: pointer;
    background-color: var(--primary-dark);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.section-3 .image-box {
    position: absolute;
    top: 5%;
    left: 55%;
    width: 40%;
    height: 90%;
    overflow: hidden;
}

.section-3 .image-box img {
    position: relative;
    width: 100%;
    object-fit: contain;
    /* object-position: left bottom; */
    object-position: 0 -7rem;
}