/* font-family: 'Playfair Display', serif; */
/* body {
    background-color: rgb(203, 203, 165);
} */

a {
    text-decoration: none;
}

header {
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid white;
    position: absolute;
    z-index: 10;
}
nav {
    max-width: 88%;
    min-height: 78px;
    margin: auto;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .left {
    display: flex;
    align-items: center;
}

nav .right {
    display: flex;
    align-items: center;
}

nav .right button {
    margin-right: 20px;
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid white;
    font-size: 12px;
    color: white;
    font-family: 'Playfair Display', serif;
    transform: translateX(0);
    transition: transform 0.5s;
}

nav .right button.fly-out {
    transform: translateX(100px);
}  

nav .right button:hover {
    background-color: white;
    color: rgb(90, 89, 89);
    transition: 0.7s;
}

nav .leftul, .rightul {
    list-style-type: none;
    margin-bottom: 0px;
}

nav .leftul {
    display: flex;
    padding: 0px;
}

nav .leftul li {
    margin: 10px 25px 10px 10px;
}

nav .leftul li a {
    font-family: 'Bacasime Antique', serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
}

nav .leftul li a:hover {
    color: #ccc;
}

.search-container {
    display: flex;
}
  
.search-container input[type=text] {
    font-size: 16px;
    border: 1px solid white;
    background-color: transparent;
}

.search-container input::placeholder {
    color: #ccc;
    font-size: 14px;
    padding: 5px;
}

.search-container button {
    font-size: 17px;
    border: none;
    cursor: pointer;
}
  
.search-container button:hover {
    background: #ccc;
}

nav .rightul {
    padding: 0px;
}

nav .rightul li a i {
    font-size: 25px;
    color: #ccc;
}

nav .rightul li a i:hover {
    color: white;
}

.left .search-container button i {
    color: rgb(90, 89, 89);
}

main .carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel .carousel-item {
    transition-duration:2s;
}

main .carousel .carousel-item img {
    height: 900px;
    object-fit: cover;
}

main .banner-area {
    position: absolute;
    top: 50%;
    left: 25%;
    /* background-color: transparent; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .banner-area h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 50px;
    color: white;
}

main .banner-area p {
    font-family: 'Bacasime Antique', serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
}

main .banner-area button {
    margin: 20px;
    padding: 15px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Playfair Display', serif;
}

main .banner-area button:hover {
    background-color: white;
    color: rgb(90, 89, 89);
    transition: 0.7s;
}

main .second-block {
    height: 565px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

main .second-block .leftaside {
    width: 50%;
    background-color: #6d6d6d;
}

main .second-block .leftaside img {
    width: 370px;
    height: auto;
    display: flex;
    margin: auto;
}

main .second-block .rightaside {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .second-block .rightaside .about {
    width: 330px;
    padding: 30px;
}

main #fly-in {
    position: relative;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes fly-in {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

#fly-in.show {
    animation: fly-in 2s forwards;
}

main .second-block .rightaside .about h1 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: #414141;
    font-weight: 400;
    margin-bottom: 0px;
}

main .second-block .rightaside .about p {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 20px;
} 

main .second-block .rightaside .about .thicker {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 400;
    line-height: 23px;
} 

main .second-block .rightaside .about button {
    width: 130px;
    height: 40px;
    margin-top: 35px;
    background-color: transparent;
    border: 1px solid rgb(90, 89, 89);
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    font-weight: 400;
    color: rgb(90, 89, 89)
}

main .second-block .rightaside .about button:hover {
    background-color: rgb(90, 89, 89);
    color: white;
    transition: 0.7s;
}

main .third-block {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    display: flex;
}

main .third-block .leftq {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .third-block .right {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #414141;
}

main .third-block .right h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
}

.photo {
    position: absolute;
    height: 400px;
    width: 300px;
    transition: transform 1s ease-in-out;
}

.photo:first-child {
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(0);
}

.photo:last-child {
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(0);
}

.right:hover .photo:first-child {
    transform: translateX(calc(100% + 150px));
}

.right:hover .photo:last-child {
    transform: translateX(calc(-100% - 150px));
}


main .third-block .leftq .quote {
    width: 300px;
    height: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .third-block .leftq .quote h1 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #414141;
    font-weight: 400;
    margin-bottom: 0px;
}

main .third-block .leftq .quote p {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 300;
}

main .post-area {
    width: 100%;
}

main .post-area .cards-list {
    width: 45%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

main .post-area .title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #414141;
    font-weight: 400;
    margin: 50px 0px 30px 0px;
} 

main .post-card .img {
    height: auto;
}

main .post-card .img img {
    width: 345px;
}

main .post-card .right {
    width: 50%;
}

main .post-card {
    display: flex;
    margin-bottom: 50px;
}

main .cards-list a {
    text-decoration: none;
}

 main .right .right-text {
    padding: 0px 30px;
 }

main .right .date p {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 300;
}

main .right .date p:hover {
    color: #928e8e;
}

main .right .text-area h1 {
    font-family: 'Bacasime Antique', serif;
    font-size: 25px;
    color: #414141;
    font-weight: 300;
    margin: 12px 0px;
}

main .right .text-area h1:hover {
    color: #928e8e;
}

main .right .text-area p {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 300;
}

main .right .text-area p:hover {
    color: #928e8e;
}

main .right .comments {
    width: 100%;
    height: 20px;
    border-top: 1px solid #cecdd0;
    margin-top: 50px;
}

main .right .comments p {
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #414141;
    font-weight: 300;
}

footer {
    display: flex;
    background-color: #6d6d6d;
}

footer .leftf {
    width: 60%;
}

footer .rightf {
    width: 40%;
}

footer .right-text {
    width: 500px;
    margin: auto;
}

footer .rightf .title-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: white;
    font-weight: 400;
    margin: 45px 0px 0px 0px;
}

footer .rightf .title-area p {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: white;
    font-weight: 300;
    margin: 2px 0px 0px 0px;
    letter-spacing: 1px;
}

footer .input-area {
    width: 40%;
    height: 200px;
    margin-top: 50px;
}

footer .input-area input {
    width: 220px;
    height: 30px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
}

footer .asides {
    display: flex;
    width: 500px;
}

footer .big-input {
    width: 100%;
    display: flex;
    flex-direction: column;
}

footer .big-input input {
    width: 475px;
}

footer label {
    padding-top: 20px;
    font-family: 'Bacasime Antique', serif;
    font-size: 17px;
    color: #ccc;
    font-weight: 300;
}

footer .full {
    width: 50%;
    height: 80px;
    float: left;
    display: flex;
    flex-direction: column;
}

footer .email {
    width: 50%;
    height: 80px;
    float: right;
    display: flex;
    flex-direction: column;  
}

footer .right-text button {
    width: 130px;
    height: 40px;
    background-color: transparent;
    border: 1px solid white;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: white;
    font-weight: 400;
    float: right;
    margin: 0px 20px 40px 0px;
}

footer .right-text button:hover {
    background-color: white;
    color: rgb(90, 89, 89);
    transition: 0.7s;
}

footer .leftf .inner {
    width: 180px;
    margin-top: 50px;
    margin-left: 110px;

}

footer .inner a {
    text-decoration: none;
    font-size: 17px;
    color: white;
    margin-right: 10px;
}

footer .inner a:hover {
    color: #ccc;
}

footer .inner h1 {
    color: white;
    font-size: 25px;
    margin: 5px 0px 0px 0px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

footer .inner span {
    color: white;
    margin: 2px 0px;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}

footer .inner p {
    color: white;
    margin: 7px 0px;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
}


