* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-image: url(./img/background.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.background {
    height: 100%;
    width: 100%;
    background-color: #333333a0;
}

.navigator {
    height: 80px;
    width: 100%;
    background-color: #242424a0;
}

.n1 {
    float: left;
    height: 80px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items:center;
    margin-right: 50px;
    background-color: rgba(250, 235, 215, 0.189);
    /* background-color: rgba(255, 238, 200, 0.189); */
    text-decoration: none;
    font-size: 35px;
    color: rgb(209, 158, 63);
    font-family: LiSu;
    /* background-color: rgb(215, 250, 215); */
}

/* .logo {
    background-color: rgba(250, 235, 215, 0.189);
} */
.n2 {
    float: left;
    height: 80px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    font-size: 20px;
    margin-right: 20px;
    /* background-color: rgb(34, 27, 244); */
}

.n2 a {
    display: block;
    height: 80px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: aliceblue;
    font-size: 20px;
}

.n2:hover {
    background-color: rgba(250, 235, 215, 0.5);
}

.n3 {
    float: left;
    height: 80px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    font-size: 10px;
    margin-left: 20px;
    /* background-color: rgb(34, 27, 244); */
}

.n3 a {
    display: block;
    height: 80px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: aliceblue;
    font-size: 15px;
}

.n3 a:hover {
    color: rgb(252, 148, 11);
}

.container1 {
    height: 80%;
    width: 100%;
    /* background-color: #0b79e1a0; */
}

.center {
    margin: auto;
    height: 100%;
    width: 1200px;
    /* background-color: #e1840ba0; */
    /* text-align: center; */
}



@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i');

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

body {
    background-color: #eaeaea;
}

.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    /* max-width: 900px; */
    max-height: 550px;
    overflow: hidden;
    position: relative;
    top: 5%;
}

.carousel-item {
    visibility: visible;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    position: relative;
    background-color: #eaeaea61;
    ;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    position: absolute;
    z-index: 0;
    transition: 0.6s all linear;
}

.carousel-item_info {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;

    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-flex-direction: column;

    order: 1;
    left: 0;
    margin: auto;
    padding: 0 40px;
    width: 40%;

}

.carousel-item_image {
    width: 60%;
    height: 100%;
    order: 2;
    align-self: flex-end;
    flex-basis: 60%;

    -webkit-order: 2;
    -webkit-align-self: flex-end;
    -webkit-flex-basis: 60%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transform: translateX(100%);
    transition: 0.6s all ease-in-out;
}

.carousel-item_subtitle {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    color: #7E7E7E;
    font-weight: 300;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease-in-out;
}

.carousel-item_title {
    margin: 15px 0 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 3px;
    font-weight: 300;
    color: #2C2C2C;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}

.carousel-item_description {
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
    margin-top: 35px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #7e7e7e;
    line-height: 22px;
    margin-bottom: 35px;
}

.carousel-item--1 .carousel-item_image {
    background-image: url('img/1.jpg');
}


.carousel-item--2 .carousel-item_image {
    background-image: url('img/2.jpg');
}

.carousel-item--3 .carousel-item_image {
    background-image: url('img/3.jpg');
}

.carousel-item--4 .carousel-item_image {
    background-image: url('img/4.jpg');
}

.carousel-item--5 .carousel-item_image {
    background-image: url('img/background.jpg');
}

.carousel-item_btn {
    width: 35%;
    color: #2C2C2C;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    width: 35%;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
}

.carousel_nav {
    position: absolute;
    right: 0;
    z-index: 2;
    background-color: #eaeaeaad;
    bottom: 0;
}

.carousel_icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    fill: #5d5d5d;
}

.carousel_arrow {
    cursor: pointer;
    display: inline-block;
    padding: 11px 15px;
    position: relative;
}

.carousel_arrow:nth-child(1):after {
    content: '';
    right: -3px;
    position: absolute;
    width: 1px;
    background-color: #b0b0b0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
}

.active {
    z-index: 1;
    display: flex;
    visibility: visible;
}

.active .carousel-item_subtitle,
.active .carousel-item_title,
.active .carousel-item_description,
.active .carousel-item_btn {
    transform: translateY(0);
    opacity: 1;
    transition: 0.6s all ease-in-out;
    visibility: visible;
}

.active .carousel-item_image {
    transition: 0.6s all ease-in-out;
    transform: translateX(0);
}