@charset "UTF-8";

/* ----------------------------
            setting
 ----------------------------- */


/* import */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");

/* setting */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "raleway", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #28364b;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    outline: 0;
    border: 0;
}

button {
    outline: 0;
    border: 0;
}

button:focus {
    outline: 0;
    border: 0;
}

img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}


/* ----------------------------
            Home Page
 ----------------------------- */


/* global */

.box {
    padding-top: 80px;
    margin-bottom: 60px;
}

.box-title {
    margin-bottom: 50px;
}


/*------- Header ---------*/

#header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.top-header {
    justify-content: space-between;
    position: relative;
    z-index: 10;
    padding-top: 85px;
    padding-bottom: 50px;
}

.top-header-left .follow-us {
    color: #cebd88;
    font-size: 14px;
    font-weight: 700;
}

.top-header-left ul.list-social li {
    display: inline-block;
    padding: 0 10px;
}

.top-header-left ul.list-social li:first-child {
    padding-left: 20px;
}

.top-header .logo {
    width: 11%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-header-right {
    display: flex;
}

.top-header-right div {
    padding: 0 15px;
}

.top-header-right .search-bar i.fa-search {
    cursor: pointer;
}

.top-header-right .search-bar #search {
    display: none;
}

.top-header-right .cart {
    position: relative;
}

.top-header-right .cart span {
    width: 18px;
    height: 18px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -3px;
    border-radius: 18px;
    background-color: #f06e18;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-header i.fa,
.top-header i.fab,
.top-header #search {
    font-size: 16px;
    color: #fff;
}

.main-menu {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    background-color: #fff;
}

.main-menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #a09f9f;
}

.main-menu.active-res {
    transform: translateX(0);
    transition: all 0.3s linear;
}

.menu-bar {
    position: absolute;
    top: 20%;
    right: 60px;
    z-index: 11;
    color: #fff;
    font-size: 30px;
}

.logo-mobile {
    width: 16%;
    text-align: center;
    margin: 20px auto;
}

.menu-close {
    position: absolute;
    top: 5%;
    right: 60px;
    color: #fff;
    font-size: 30px;
}

.menu-bar:hover {
    color: #cebd88;
}

.menu {
    text-align: center;
    margin: 0 auto;
}

.menu li.active a {
    color: #cebd88;
}

li.menu-item {
    display: inline-block;
    padding: 22px 22px;
    position: relative;
}

li.menu-item:hover a.title-menu {
    color: #cebd88;
}

li.menu-item:hover i.icon-rotate {
    transform: rotate(90deg);
    transition: transform 0.1s;
}

li.menu-item:hover .drop-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
    transition: all 0.5s ease;
    z-index: 12;
}

li.menu-item a {
    font-family: "Playfair Display";
    font-size: 18px;
    font-weight: 500;
    color: #28364b;
    text-transform: capitalize;
    text-decoration: none;
}

li.menu-item a i.fa-angle-right {
    font-size: 14px;
}

li.menu-item.show .drop-menu {
    display: block;
}

.drop-menu {
    width: 260px;
    position: absolute;
    left: -50%;
    background-color: #fff;
    box-shadow: 0px 0px 1px 0px #dad6d6;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.drop-menu.page-menu {
    width: 1024px;
    left: auto;
    right: -100%;
    display: flex;
    justify-content: start;
    padding: 30px 25px;
}

.drop-menu.page-menu li {
    flex: 25%;
    text-align: left;
    margin-bottom: 20px;
}

.drop-menu.page-menu p {
    font-family: "Playfair Display";
    font-size: 16px;
    padding-left: 10px;
    cursor: pointer;
}

.drop-menu li.list-item {
    text-align: left;
    padding: 15px 0 15px 25px;
}

.drop-menu li.list-item:hover {
    background-color: #cebd88;
}

.drop-menu li.list-item a {
    color: #28364b;
    font-size: 16px;
    font-weight: 400;
}

.drop-menu li.active a {
    color: #cebd88;
}

li .sub-menu a {
    display: block;
    color: #28364b;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 10px 10px 10px;
}

li .sub-menu a i {
    color: #cebd88;
    min-width: 25px;
}

li .sub-menu a:hover {
    background-color: #cebd88;
    color: #fff;
}

li .sub-menu a:hover i {
    color: #fff;
}


/* ---- banner -----*/

.banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slider.owl-carousel .banner-img {
    position: relative;
    overflow: hidden;
}

.banner-slider.owl-carousel .banner-img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 5;
    background-color: #28364b;
    opacity: 0.6;
}

.banner-slider.owl-carousel .banner-img img {
    height: 900px;
}

.banner-slider.owl-theme .owl-nav {
    z-index: 14;
}

.banner-slider.owl-theme .owl-nav .owl-prev,
.banner-slider.owl-theme .owl-nav .owl-next {
    color: #fff;
    background-color: gray;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.banner-slider.owl-theme .owl-nav .owl-prev:focus,
.banner-slider.owl-theme .owl-nav .owl-next:focus {
    outline: none;
}

.banner-slider.owl-theme .owl-nav .owl-prev:hover,
.banner-slider.owl-theme .owl-nav .owl-next:hover {
    background-color: #cebd88;
    opacity: 1;
}

.banner-slider.owl-theme .owl-nav .owl-prev span,
.banner-slider.owl-theme .owl-nav .owl-next span {
    font-size: 30px;
    padding: 22px;
}

.banner-slider.owl-theme .owl-nav .owl-prev {
    left: 80px;
}

.banner-slider.owl-theme .owl-nav .owl-next {
    right: 80px;
}

.zoomOut-img {
    animation: zoomOut 25s linear infinite;
}

@-webkit-keyframes zoomOut {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.4, 1.4);
    }
}

@-moz-keyframes zoomOut {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.4, 1.4);
    }
}

@-ms-keyframes zoomOut {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.4, 1.4);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.4, 1.4);
    }
}

.banner-caption {
    width: 76%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 6;
    margin-top: -80px;
}

.btn-custom {
    display: inline-block;
    margin-top: 30px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #cebd88;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1.2px;
    outline-color: #cebd88;
    overflow: hidden;
}

.btn-custom:hover {
    outline-color: #fff;
}

.btn-custom a.btn-hover {
    background-color: #cebd88;
    color: #28364b;
    padding: 22px 54px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom a.btn-hover:hover {
    background: transparent;
}

.btn-custom a.btn-hover:hover::before {
    background-color: #fff;
    transform: scale3d(1, 1, 1);
    transition: all 0.3s ease;
}

.btn-custom a.btn-hover::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    -webkit-transform: scale(0.1);
    transform: scale3d(0.1, 0.1, 0.1);
}

.box-title h4,
.box-title h2,
.box-title p {
    text-align: center;
    color: #28364b;
}

.box-title h4 {
    color: #cebd88;
    font-family: "Pinyon Script";
    font-size: 30px;
    margin-bottom: -8px;
}

.box-title h2 {
    font-family: "Playfair Display";
    font-weight: normal;
    font-size: 50px;
    margin-bottom: 40px;
    position: relative;
}

.box-title h2 ::before {
    content: "∿";
    height: 10px;
    width: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.box-title p {
    width: 80%;
    margin: 0 auto;
}

.box-title.banner-title h4 {
    font-size: 48px;
    color: #cebd88;
    margin-bottom: -22px;
}

.box-title.banner-title h2 {
    color: #fff;
    font-size: 80px;
    margin-bottom: 50px;
}

.box-title.banner-title p {
    margin-bottom: 50px;
    color: #fff;
}

.overlay-line {
    position: relative;
    z-index: 8;
    background: url(../images/rope.png);
    height: 20px;
    background-repeat: repeat-x;
    margin-top: -10px;
}

.see-anchor {
    position: absolute;
    bottom: -50px;
    right: 60px;
    z-index: 20;
}


/* Club-service */

.club-service {
    background-color: #f1f0e8;
    background-image: url(../images/services-bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 20px;
}

.club-service .club-service-content {
    padding-bottom: 30px;
}

.service-slide {
    margin-bottom: 50px;
}

.service-slide .item {
    background-color: #fff;
    padding: 28px;
    position: relative;
    height: 560px;
}

.service-slide .item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background-color: #cebd88;
    display: none;
}

.service-slide .item:hover::before {
    display: block;
}

.service-slide .item:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.service-slide .service-img {
    margin-bottom: 30px;
    overflow: hidden;
}

.service-slide .service-img img {
    transition: all 0.5s ease;
}

.service-slide .service-desc {
    padding-bottom: 20px;
}

.service-slide .service-desc a.sub-title {
    font-size: 30px;
    font-family: "Playfair Display";
    display: block;
    text-align: center;
    padding-bottom: 15px;
    cursor: pointer;
}

.service-slide .service-desc a.sub-title:hover {
    color: #cebd88;
}

.service-slide .service-desc p {
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-slide .owl-nav {
    margin-top: 30px;
}

.service-slide .owl-next:focus,
.service-slide .owl-prev:focus {
    outline: 0;
}

.service-slide .owl-next:hover span,
.service-slide .owl-prev:hover span {
    background-color: #cebd88;
    outline-color: #cebd88;
}

.service-slide .owl-next span,
.service-slide .owl-prev span {
    color: #28364b;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #fff;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1.2px;
    outline-color: #fff;
}

.btn-custom.btn-main:hover {
    outline-color: #28364b;
}

.btn-custom.btn-main a.btn-hover {
    padding: 10px 30px;
    font-size: 14px;
    color: #fff;
}

.btn-custom.btn-main a.btn-hover:hover::before {
    background-color: #28364b;
}


/* ---- About ---- */

.about {
    background-image: url(../images/countup-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about .about-title {
    margin-top: 20px;
}

.about .about-content .col-lg-4 {
    padding: 0 10px 0 10px;
}

.about .about-content .box-title h4 {
    font-size: 110px;
    font-family: "Playfair Display";
    margin-bottom: 20px;
}

.about .about-content .box-title h2 {
    font-size: 30px;
}


/* --- watch video --- */

.watch-video {
    position: relative;
    background-image: url(../images/video-section-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 1000px;
    padding-bottom: 20px;
}

.life-buoy {
    position: absolute;
    top: 14px;
    left: 0;
    transform: translateY(-50%);
}

.watch-video-title.box-title {
    text-align: left;
    padding-top: 30px;
}

.watch-video-title.box-title h4,
.watch-video-title.box-title h2,
.watch-video-title.box-title p {
    text-align: left;
}

.watch-video-title.box-title h2 {
    color: #fff;
    font-size: 48px;
}

.watch-video-title.box-title p {
    color: #fff;
    margin: 0;
    width: 100%;
}

.btn-custom.btn-view-gallery {
    left: 0;
    transform: translateX(0);
}

.btn-custom.btn-view-gallery:hover {
    outline-color: #fff;
}

.btn-custom.btn-view-gallery .btn-hover {
    opacity: 0.8;
}

.watch-video-content {
    margin-top: 180px;
    margin-bottom: 180px;
}

.watch-video-content .w-video-wp {
    position: relative;
}

.watch-video-content .w-video-wp .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/video-bg.jpg);
}

.watch-video-content .w-video-wp .bg-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #28364b;
    opacity: 0.5;
}

.watch-video-content .w-video-wp span.play-stop {
    width: 130px;
    height: 130px;
    border-radius: 130px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.watch-video-content .w-video-wp span.play-stop:hover i.fas.fa-play::before {
    transform: translate(-50%, -50%) scale(1.3);
    transition: all 0.3s ease;
}

.watch-video-content .w-video-wp span.play-stop i.fas.fa-play {
    background-color: #28364b;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95px;
    height: 95px;
    border-radius: 95px;
}

.watch-video-content .w-video-wp span.play-stop i.fas.fa-play::before {
    color: #fff;
    font-size: 25px;
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s;
}

.parallax-wp .container {
    position: relative;
    background-image: url(../images/parallax_lamaro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 50px;
}

.parallax-wp .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #28364b;
    opacity: 0.7;
}

.parallax-wp .container .parallax-bg {
    padding: 80px 0;
}

.parallax-wp .container .parallax-title {
    margin-bottom: 0;
    padding-left: 80px;
}

.parallax-wp .container .parallax-title .title-top {
    flex: 40%;
    padding-left: 40px;
}

.parallax-wp .container .parallax-title .title-bottom {
    flex: 60%;
}

.parallax-wp .container .parallax-title h4 {
    text-align: left;
}

.parallax-wp .container .parallax-title h2 {
    color: #fff;
    font-size: 40px;
    text-align: left;
    margin-bottom: 0;
}

.parallax-wp .container .parallax-title p {
    color: #fff;
    opacity: 1;
    text-align: left;
    line-height: 1.6;
}

.parallax-wp .container .btn-custom {
    left: 0;
    transform: translate(0);
    margin-top: 0;
}

.parallax-wp .container .btn-custom:hover {
    outline-color: #fff;
}


/* --- Overlay video ---- */

.overlay-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.overlay-video a {
    width: 75%;
    height: 80%;
}

.overlay-video .close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    opacity: 1;
}

.overlay-video.show {
    visibility: visible;
}


/* --- travel-with-us ---*/

.travel-with-us .trip-img {
    flex-basis: 40%;
    padding: 20px;
    background-color: #f1f0e8;
    height: 220px;
    width: 220px;
    margin-right: 10px;
}

.travel-with-us .trip-img:hover {
    background-color: #f3f3f3;
}

.travel-with-us .trip-img img {
    height: 100%;
    width: 100%;
}

.travel-with-us .col-lg-6 {
    margin-bottom: 100px;
}

.travel-with-us .box-desc {
    flex-basis: 60%;
    margin-left: 10px;
}

.travel-with-us .box-desc .box-desc-top {
    padding-bottom: 20px;
}

.travel-with-us .box-desc .box-desc-top p {
    font-family: "Playfair Display";
    font-size: 30px;
    color: #28364b;
    margin-bottom: 0;
}

.travel-with-us .box-desc .box-desc-top p i {
    font-size: 22px;
    color: #e14c38;
    margin-right: 8px;
}

.travel-with-us .box-desc .box-desc-top p>span {
    font-family: "raleway";
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
}

.travel-with-us .box-desc .box-desc-center {
    font-family: "raleway";
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #28364b;
    opacity: 0.9;
    width: 85%;
}

.travel-with-us .box-desc .box-desc-bottom p {
    color: #28364b;
    font-family: "Playfair Display";
    font-size: 18px;
    margin-bottom: 0;
}

.travel-with-us .box-desc .box-desc-bottom p>span {
    color: #cebd88;
    color: #cebd88;
}

.travel-with-us .box-desc .btn-custom {
    left: 0;
    transform: translate(0);
}

.travel-with-us .box-desc .btn-custom a.btn-hover {
    font-size: 14px;
    padding: 8px 24px;
}


/* --- Benefits ---  */

.Benefits {
    background: linear-gradient(to right, #f1f0e8 0%, #f1f0e8 65%, #28364b 65%, #28364b 100%);
}

.Benefits .Benefits-img {
    padding: 30px;
    background-color: #fff;
}

.Benefits .container {
    margin-top: 80px;
}

.Benefits-title.box-title {
    text-align: left;
}

.Benefits-title.box-title h4,
.Benefits-title.box-title h2,
.Benefits-title.box-title p {
    text-align: left;
}

.Benefits-title.box-title h2 {
    color: #28364b;
    font-size: 48px;
}

.Benefits-desc .col-md-6 {
    margin-bottom: 50px;
}

.Benefits-desc-left {
    font-size: 50px;
    width: 150px;
    height: 50px;
    margin-right: 12px;
    color: #cebd88;
}

.Benefits-desc-left img {
    vertical-align: top;
}

.Benefits-desc-right {
    margin-left: 12px;
    font-family: "Playfair Display";
}

.Benefits-desc-right p {
    font-size: 18px;
    font-family: "Playfair Display";
}

.Benefits-desc-right p:nth-child(2) {
    font-weight: normal;
    font-size: 14px;
    font-family: "raleway";
}


/* -- our team ---s */

.our-team {
    padding-bottom: 60px;
}

.btn-custom.btn-viewmore {
    background-color: #28364b;
    outline-color: #28364b;
}

.btn-custom.btn-viewmore:hover {
    outline-color: #cebd88;
}

.btn-custom.btn-viewmore a.btn-hover {
    padding: 20px 60px;
    color: #fff;
    background-color: #28364b;
}

.btn-custom.btn-viewmore a.btn-hover:hover {
    background-color: transparent;
}

.btn-custom.btn-viewmore a.btn-hover:hover::before {
    background-color: #cebd88;
}

.our-team-content {
    padding-top: 20px;
    margin-bottom: 10px;
}

.our-team-content .content-item {
    flex-basis: 30%;
}

.our-team-content .content-item-desc {
    margin-top: 30px;
}

.our-team-content .content-item-desc a.person {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #28364b;
    font-size: 30px;
    font-family: "Playfair Display";
}

.our-team-content .content-item-desc a.person:hover {
    color: #cebd88;
}

.our-team-content .content-item-desc p {
    text-align: center;
    padding-top: 10px;
    font-weight: 600;
    color: #cebd88;
    font-size: 14px;
}

.our-team-content .content-item-desc .person-social {
    display: flex;
    justify-content: center;
}

.our-team-content .content-item-desc .person-social li {
    padding: 0 10px;
}

.our-team-content .content-item-desc .person-social li a {
    color: #28364b;
    opacity: 0.4;
    transition: all 0.3s linear;
}

.our-team-content .content-item-desc .person-social li a:hover {
    opacity: 1;
    transition: all 0.3s linear;
}

.our-team-content .content-item-img {
    display: inline-block;
    background-image: url(../images/ramka.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 85px;
}

.our-team-content .content-item-img img {
    transition: all 0.3s linear;
}

.our-team-content .content-item-img:hover img {
    transform: scale(1.1);
    transition: all 0.3s linear;
}


/* ----Testimonials ----*/

.Testimonials {
    background-image: url(../images/testimonials-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 20px;
}

.Testimonials-title {
    margin-top: 20px;
}

.Testimonials-content {
    margin-bottom: 80px;
}

.Testimonials-content .owl-nav {
    margin-top: 30px;
}

.Testimonials-content .owl-next:focus,
.Testimonials-content .owl-prev:focus {
    outline: 0;
}

.Testimonials-content .owl-next:hover span,
.Testimonials-content .owl-prev:hover span {
    background-color: #28364b;
    outline-color: #28364b;
    color: #fff;
}

.Testimonials-content .owl-next span,
.Testimonials-content .owl-prev span {
    color: #28364b;
    font-size: 20px;
    padding: 15px 20px;
    background-color: #fff;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1.2px;
    outline-color: #fff;
}

.Testimonials-content .testerminal-item {
    background-color: #fff;
    font-family: "Playfair Display";
    height: 60%;
    padding: 0 60px 60px 60px;
    height: 360px;
}

.Testimonials-content .testerminal-item span {
    display: block;
    text-align: center;
    color: #cebd88;
    font-size: 150px;
    height: 110px;
}

.Testimonials-content .testerminal-item p {
    font-family: "Playfair Display";
    font-style: italic;
    color: #28364b;
    font-size: 18px;
    opacity: 0.9;
    line-height: 2;
}

.Testimonials-content .testerminal-item p:last-child {
    font-style: normal;
    opacity: 1;
    font-weight: 600;
}


/* ---- partner-img ----- */

.partner-img-wp {
    background-color: #28364b;
    padding: 60px 0 60px 0;
    margin-bottom: 0;
}

.partner-item {
    height: 115px;
    overflow: hidden;
    display: flex;
    text-align: center;
    position: relative;
}

.partner-item:hover .partner-img {
    transform: translateY(0);
    transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), -moz-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), -o-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375);
}

.partner-item .partner-img {
    transform: translateY(-100%);
    transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), -moz-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), -o-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.375);
}

.partner-item .partner-img img {
    height: 115px;
}


/* --blog-post --- */

.blog-post {
    padding-bottom: 20px;
}

.blog-post-content {
    margin-bottom: 20px;
}

.blog-post-content .blog-post-img {
    padding: 15px;
    background-color: #f1f0e8;
    margin-bottom: 30px;
}

.blog-post-content .blog-post-desc i.fas,
.blog-post-content .blog-post-desc i.far {
    padding-right: 6px;
    color: #cebd88;
    font-size: 12px;
}

.blog-post-content .blog-post-desc span {
    font-size: 12px;
    color: #28364b;
    opacity: 0.8;
}

.blog-post-content .box-desc-top {
    margin-bottom: 20px;
}

.blog-post-content .box-desc-top p {
    display: inline-block;
    margin-bottom: 0;
}

.blog-post-content .box-desc-top p span {
    border-right: 1px solid #28364b;
    padding-right: 10px;
    margin-right: 10px;
}

.blog-post-content .box-desc-top a {
    text-decoration: none;
}

.blog-post-content .box-desc-top a:hover span {
    color: #28364b;
}

.blog-post-content .box-desc-top a span {
    color: #cebd88;
    font-weight: 700;
    opacity: 1;
    font-family: "raleway";
}

.blog-post-content p.box-desc-center {
    margin-bottom: 20px;
    font-size: 24px;
    color: #28364b;
    font-family: "Playfair Display";
}

.blog-post-content p.box-desc-center a {
    color: #28364b;
    text-decoration: none;
}

.blog-post-content p.box-desc-center a:hover {
    color: #cebd88;
}

.blog-post-content .box-desc-bottom p {
    display: inline-block;
}

.blog-post-content .box-desc-bottom p:first-child {
    padding-right: 20px;
}


/* --- Subscribe --- */

.Subscribe {
    background-color: #f1f0e8;
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
}

.Subscribe .overlay-line {
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.sub-bar input[type="text"] {
    flex-basis: 45%;
    color: #28364b;
    padding: 20px 30px;
    border: 0;
    box-sizing: content-box;
}

.sub-bar input[type="text"]:focus {
    outline: 0;
}

.btn-Sub.btn-custom {
    position: static;
    left: 0;
    transform: translate(0);
    margin-top: 0;
    outline: 0;
}

.btn-Sub.btn-custom .btn-hover {
    color: #fff;
    font-size: 18px;
    padding: 22px 68px;
}

.btn-Sub.btn-custom .btn-hover:hover {
    background: transparent;
}

.btn-Sub.btn-custom .btn-hover:hover::before {
    background-color: #28364b;
}

.top-header-left.Subscribe-left ul,
.top-header-left.Subscribe-left p {
    margin-bottom: 0;
}

.top-header-left.Subscribe-left p {
    color: #28364b;
}

.top-header-left.Subscribe-left ul.list-social li.social-item {
    background-color: #fff;
    padding: 0;
    margin: 5px;
}

.top-header-left.Subscribe-left ul.list-social li.social-item:first-child {
    margin-left: 20px;
}

.top-header-left.Subscribe-left ul.list-social li.social-item:hover {
    background-color: #cebd88;
}

.top-header-left.Subscribe-left ul.list-social li.social-item:hover a {
    color: #fff;
}

.top-header-left.Subscribe-left ul.list-social li.social-item a {
    display: inline-block;
    color: #28364b;
    text-align: center;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


/* ---- footer ----- */

#footer {
    background-image: url(../images/footer-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #28364b;
}

#footer.box {
    margin-bottom: 0;
}

#footer .container {
    margin-top: 20px;
    padding-bottom: 50px;
}

#footer h3 {
    font-size: 30px;
    font-family: "Playfair Display";
    color: #fff;
    margin-bottom: 30px;
}

#footer a {
    text-decoration: none;
    color: #fff;
}

#footer a i {
    color: #cebd88;
    margin-right: 6px;
}

#footer ul li {
    margin-bottom: 20px;
}

#footer ul li:hover a {
    color: #cebd88;
}

#footer ul.list-ex {
    padding-right: 50px;
}

#footer ul.list-ex .ex-item {
    display: inline-block;
    padding-right: 50px;
    width: 145px;
}

#footer ul.list-ex .ex-item a {
    font-size: 18px;
}

#footer ul.list-contact .contact-item a>i {
    margin-right: 15px;
}

#copy-right {
    background-image: url(../images/copyright.png);
    padding: 12px 0;
    margin-top: 80px;
}

#copy-right .container {
    padding-bottom: 0;
}

#copy-right p.copy-text {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

#copy-right p.copy-text a {
    display: inline-block;
    color: #cebd88;
    font-weight: 500;
}

#copy-right p.copy-text a:hover {
    color: #fff;
}


/* ----------------------------
         andiamo page product
 ----------------------------- */


/* ---- style ---- */

.btn-product {
    position: relative;
    display: inline-block;
    background-color: #28364b;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1px;
    outline-color: #28364b;
    overflow: hidden;
}

.btn-product:hover {
    outline-color: #cebd88;
}

.btn-product a.btn-link {
    position: relative;
    background-color: #28364b;
    color: #fff;
    padding: 22px 54px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.btn-product a.btn-link:hover {
    background: transparent;
}

.btn-product a.btn-link:hover::before {
    background-color: #cebd88;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.btn-product a.btn-link::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scale(0.1);
}

#product-content .nav-tab-wp {
    background-color: #f1f0e8;
    margin-bottom: 60px;
}

#product-content .nav-tab-wp .nav-tabs {
    border-bottom: 0;
    background-color: #fff;
}

#product-content .nav-tab-wp .nav-tabs .nav-item {
    margin-bottom: 0;
}

#product-content .nav-tab-wp .nav-tabs .nav-item:first-child {
    border-right: 2px solid #fff;
}

#product-content .nav-tab-wp .nav-tabs .nav-item:last-child {
    border-left: 2px solid #fff;
}

#product-content .nav-tab-wp .nav-tabs .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #cebd88;
    color: #fff;
    font-family: "Playfair Display";
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
}

#product-content .nav-tab-wp .nav-tabs .nav-link.active {
    background-color: #f1f0e8;
    color: #28364b;
}

#product-content .nav-tab-wp .tab-content {
    font-family: "raleway";
}

#product-content .nav-tab-wp .tab-content .tab-content-item {
    padding: 30px 40px 40px 40px;
    /* Idle State of the stars */
    /* Hover state of the stars */
    /* Selected state of the stars */
}

#product-content .nav-tab-wp .tab-content .tab-content-item ul.list-info {
    padding-left: 10px;
}

#product-content .nav-tab-wp .tab-content .tab-content-item ul.list-info li p {
    display: inline-block;
    min-width: 200px;
    font-weight: bold;
}

#product-content .nav-tab-wp .tab-content .tab-content-item h3 {
    font-family: "Playfair Display";
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: normal;
}

#product-content .nav-tab-wp .tab-content .tab-content-item p {
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .rating-stars ul>li.star {
    display: inline-block;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .rating-stars ul>li.star>i.fa {
    font-size: 14px;
    /* Change the size of the stars */
    color: #ccc;
    /* Color on idle state */
}

#product-content .nav-tab-wp .tab-content .tab-content-item .rating-stars ul>li.star.hover>i.fa {
    color: #FFCC36;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .rating-stars ul>li.star.selected>i.fa {
    color: #FF912C;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .btn-product.btn-submit {
    text-align: center;
}

#product-content .nav-tab-wp .tab-content .tab-content-item .btn-product.btn-submit .btn-link.submit-link {
    padding: 18px 80px;
}

.product-detail-box {
    padding-top: 60px;
    padding-bottom: 50px;
}

.product-detail-box .product-detail-thumb h3 {
    font-family: "Playfair Display";
    font-size: 36px;
    margin-bottom: 20px;
}

.product-detail-box .product-detail-thumb span.product-price {
    display: inline-block;
    color: #cebd88;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-detail-box .product-detail-thumb p.product-desc {
    font-weight: bold;
    opacity: 0.8;
    margin-bottom: 30px;
}

.product-detail-box .input-group {
    margin-bottom: 30px;
}

.product-detail-box .input-group input[type=number]::-webkit-inner-spin-button,
.product-detail-box .input-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail-box .input-group input[type=number] {
    -moz-appearance: textfield;
}

.product-detail-box .input-group input {
    width: 92px;
    height: 44px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    border: 1px solid #eee;
    background-color: #f1f0e8;
    font-size: 18px;
}

.product-detail-box .input-group input:focus {
    outline: 0;
}

.product-detail-box .input-group .quantity-nav {
    float: left;
    position: relative;
    height: 42px;
    margin-right: 20px;
}

.product-detail-box .input-group .quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid #eee;
    width: 30px;
    text-align: center;
    color: #333;
    font-size: 13px;
    outline: 0;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.product-detail-box .input-group .quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    border-bottom: 2px solid #fff;
    font-size: 18px;
}

.product-detail-box .input-group .quantity-button.quantity-down {
    position: absolute;
    bottom: -1px;
    height: 50%;
    font-size: 18px;
}

.product-detail-box .input-group .btn-add-cart.btn-product .add-cart-link.btn-link {
    padding: 14px 54px;
}

.product-detail-box .Categorie {
    margin-bottom: 10px;
}

.product-detail-box .Categorie span {
    font-size: 14px;
    font-weight: 500;
}

.product-detail-box .Categorie a {
    font-size: 14px;
    font-weight: bold;
    color: #cebd88;
    text-decoration: none;
}

.product-detail-box .Categorie a:hover {
    color: #28364b;
}

.Related-product h3.Related-product-title {
    font-family: "Playfair Display";
    font-size: 30px;
    margin-bottom: 30px;
}

.Related-product .item:hover a.img-parrent img {
    opacity: 0.1;
}

.Related-product .product-img {
    position: relative;
    margin-bottom: 20px;
}

.Related-product .product-img a.img-parrent {
    display: block;
    background-color: #f1f0e8;
    padding: 15px;
}

.Related-product .product-img a.img-parrent img {
    height: 220px;
}

.Related-product .product-img .Related-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.Related-product .product-img .Related-btn .btn-product {
    margin: 5px;
}

.Related-product .product-img .Related-btn .btn-product a.btn-link {
    padding: 10px 30px;
    font-size: 12px;
}

.Related-product .product-img .Related-btn .btn-product.btn-add-cart {
    background-color: #28364b;
    outline-color: #28364b;
}

.Related-product .product-img .Related-btn .btn-product.btn-add-cart:hover {
    outline-color: #061a3b;
}

.Related-product .product-img .Related-btn .btn-product.btn-add-cart a.btn-link.add-cart-link {
    background-color: #28364b;
}

.Related-product .product-img .Related-btn .btn-product.btn-add-cart a.btn-link.add-cart-link:hover::before {
    background-color: #061a3b;
}

.Related-product .product-img .Related-btn .btn-product.btn-read-more {
    background-color: #cebd88;
    outline-color: #cebd88;
}

.Related-product .product-img .Related-btn .btn-product.btn-read-more:hover {
    outline-color: #a1905b;
}

.Related-product .product-img .Related-btn .btn-product.btn-read-more a.btn-link.read-more-link {
    background-color: #cebd88;
}

.Related-product .product-img .Related-btn .btn-product.btn-read-more a.btn-link.read-more-link:hover::before {
    background-color: #a1905b;
}

.Related-product .product-img .sale-icon,
.Related-product .product-img .new-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Related-product .product-img .sale-icon {
    background-color: #e14c38;
}

.Related-product .product-img .new-icon {
    background-color: #cebd88;
}

.Related-product .product-desc h2 a {
    font-size: 26px;
    font-family: "Playfair Display";
    margin-bottom: 30px;
    color: #28364b;
}

.Related-product .product-desc h2 a:hover {
    color: #cebd88;
}

.Related-product .product-desc .Related-price del,
.Related-product .product-desc .Related-price p,
.Related-product .product-desc .Related-price span {
    color: #cebd88;
    font-weight: bold;
    font-size: 18px;
}

.Related-product .product-desc .Related-price del.price-del {
    color: #28364b;
    margin-right: 10px;
    opacity: 0.8;
}

.Related-product .product-desc .Related-price del.price-del span {
    color: #28364b;
}

.Related-product .product-desc .Related-price p.price-sale {
    color: #e14c38;
}

.Related-product .product-desc .Related-price p.price-sale span {
    color: #e14c38;
}


/* ---responsive --- */

@media (max-width: 991px) {
    .product-detail-img {
        margin-bottom: 30px;
    }
    .Related-product-page .item {
        margin-bottom: 30px;
        height: 420px;
    }
    .Related-product-page .item:hover a.img-parrent img {
        opacity: 1;
    }
    .Related-product-page .product-img .Related-overlay {
        top: auto;
        bottom: -70%;
        transform: translate(-50%, 0);
    }
    .product-detail-img img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .Related-product-page .product-img a.img-parrent img {
        width: 100%;
    }
    #product-content .nav-tab-wp .nav-tabs .nav-link {
        font-size: 16px;
        padding: 14px 9px;
    }
    #product-content .nav-tab-wp .nav-tabs .nav-item {
        border: 0 !important;
    }
    #product-content .nav-tab-wp .tab-content .tab-content-item {
        padding: 30px 10px 20px 10px;
        background-color: #fff;
    }
}

@media (max-width: 350px) {
    #product-content .nav-tab-wp .tab-content .tab-content-item ul.list-info li p {
        min-width: 120px;
    }
    .product-detail-box .input-group .btn-add-cart.btn-product .add-cart-link.btn-link {
        padding: 14px 50px;
    }
}


/* ----------------------------
         Shop page 
 ----------------------------- */


/* ----- style -------- */


/* banner page */

.banner-page {
    position: relative;
    width: 100%;
    height: 95vh;
    background-image: url(../images/inner_header-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-page::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: "";
    background-color: #28364b;
    opacity: 0.6;
}

.banner-page .overlay-line {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
}

.banner-page .banner-content {
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
    color: #fff;
    font-family: "Playfair Display";
}

.banner-page .banner-content h2 {
    font-size: 60px;
}

.banner-page .banner-content a {
    color: #cebd88;
}

.banner-page .banner-content .breadcrumb-page {
    text-align: center;
    margin: 0 auto;
}

.banner-page .banner-content li {
    display: inline-block;
}

.banner-page .banner-content li.active a {
    color: #fff;
}

.banner-page .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}


/* shop-wp-content */

.btn-shop {
    position: relative;
    display: inline-block;
    background-color: #28364b;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1px;
    outline-color: #28364b;
    overflow: hidden;
}

.btn-shop:hover {
    outline-color: #cebd88;
}

.btn-shop a.shop-link {
    position: relative;
    background-color: #28364b;
    color: #fff;
    padding: 22px 54px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.btn-shop a.shop-link:hover {
    background: transparent;
}

.btn-shop a.shop-link:hover::before {
    background-color: #cebd88;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.btn-shop a.shop-link::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scale(0.1);
}

.shop-wp-content {
    padding-top: 80px;
    margin-bottom: 60px;
    /* --- sider-bar ---*/
    /* side-bar-search */
    /* side-bar-cart */
    /* shop-filter */
    /* side-bar-categorie */
    /* side-bar-tag */
    /* --- shop-content --- */
}

.shop-wp-content .sidebar-box {
    padding: 40px 30px 50px;
    margin-bottom: 30px;
    background-color: #f1f0e8;
}

.shop-wp-content .side-bar-search {
    display: flex;
    justify-content: center;
}

.shop-wp-content .side-bar-search input {
    padding: 14px 20px;
    border: 0;
    outline: 0;
    width: 84%;
}

.shop-wp-content .side-bar-search .btn-shop {
    outline: 0;
}

.shop-wp-content .side-bar-search .btn-shop .shop-link {
    padding: 16px 18px;
}

.shop-wp-content .side-bar-search .btn-shop .shop-link i.fa-search {
    font-size: 16px;
}

.shop-wp-content .shop-title {
    text-align: center;
    font-size: 30px;
    color: #28364b;
    font-family: "Playfair Display";
    margin-bottom: 40px;
}

.shop-wp-content .side-bar-cart .product-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.shop-wp-content .side-bar-cart .product-item a {
    display: inline-block;
    width: 35%;
}

.shop-wp-content .side-bar-cart .product-item .product-desc {
    width: 65%;
    margin-left: 20px;
}

.shop-wp-content .side-bar-cart .product-item p i.fa-times {
    cursor: pointer;
    font-size: 18px;
}

.shop-wp-content .side-bar-cart .product-item p i.fa-times:hover {
    color: #e14c38;
}

.shop-wp-content .side-bar-cart span {
    font-size: 18px;
    font-family: "raleway";
    font-weight: 700;
    color: #cebd88;
}

.shop-wp-content .side-bar-cart p.price-total {
    text-align: center;
    font-size: 18px;
    font-family: "raleway";
    font-weight: 700;
    margin-bottom: 25px;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart,
.shop-wp-content .side-bar-cart .btn-shop.btn-checkout {
    width: 100%;
    text-align: center;
    outline: 0;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart .shop-link,
.shop-wp-content .side-bar-cart .btn-shop.btn-checkout .shop-link {
    width: 100%;
    transition: all .3s ease;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart .shop-link:hover,
.shop-wp-content .side-bar-cart .btn-shop.btn-checkout .shop-link:hover {
    color: #28364b;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart .shop-link:hover::before,
.shop-wp-content .side-bar-cart .btn-shop.btn-checkout .shop-link:hover::before {
    background-color: #fff;
    transition: all .3s ease;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart .shop-link::before,
.shop-wp-content .side-bar-cart .btn-shop.btn-checkout .shop-link::before {
    transform: scale(1);
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart {
    background-color: #cebd88;
}

.shop-wp-content .side-bar-cart .btn-shop.btn-view-cart .shop-link {
    background-color: #cebd88;
}

.shop-wp-content .side-bar-filter .btn-shop.btn-filter {
    margin-bottom: 30px;
}

.shop-wp-content .side-bar-filter .btn-shop.btn-filter .shop-link {
    padding: 10px 50px;
}

.shop-wp-content .side-bar-filter p {
    font-family: "Playfair Display";
    font-size: 20px;
    font-weight: normal;
}

.shop-wp-content .side-bar-categorie li.categorie-item a {
    color: #28364b;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.shop-wp-content .side-bar-categorie li.categorie-item a:hover {
    color: #cebd88;
}

.shop-wp-content .side-bar-categorie li.categorie-item a i {
    font-size: 8px;
    color: #cebd88;
}

.shop-wp-content .side-bar-tag li.tag-item {
    display: inline-block;
    margin: 0 8px 10px 5px;
    padding-bottom: 10px;
}

.shop-wp-content .side-bar-tag li.tag-item a {
    color: #28364b;
    padding: 4px 20px;
    border: 2px solid #cec7c7;
    text-decoration: none;
    opacity: 0.6;
    font-weight: bold;
    font-size: 14px;
}

.shop-wp-content .side-bar-tag li.tag-item a:hover {
    opacity: 1;
}

.shop-wp-content .asRange {
    width: 100%;
    margin-bottom: 30px;
}

.shop-wp-content .asRange-tip {
    display: block !important;
}

.shop-wp-content .asRange .asRange-selected {
    background-color: #28364b;
}

.shop-wp-content .asRange .asRange-pointer::before {
    background-color: #28364b;
}

.shop-wp-content .filter-tab {
    background-color: #f1f0e8;
    padding: 6px 26px;
}

.shop-wp-content .filter-tab p {
    font-family: "Playfair Display";
    font-weight: 600;
    opacity: 0.9;
}

.shop-wp-content .filter-tab select {
    border: 0;
    background: transparent;
    padding: 15px;
}

.shop-wp-content .shop-content .list-product {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.shop-wp-content .shop-content .item {
    flex-basis: 48.2%;
    margin-bottom: 30px;
}

.shop-wp-content .shop-content .item:hover a.img-parrent img {
    opacity: 0.1;
}

.shop-wp-content .shop-content .product-img {
    position: relative;
    margin-bottom: 20px;
}

.shop-wp-content .shop-content .product-img a.img-parrent {
    display: block;
    background-color: #f1f0e8;
    padding: 15px;
}

.shop-wp-content .shop-content .product-img a.img-parrent img {
    height: 220px;
    width: 100%;
}

.shop-wp-content .shop-content .product-img .sale-icon,
.shop-wp-content .shop-content .product-img .new-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-wp-content .shop-content .product-img .sale-icon {
    background-color: #e14c38;
}

.shop-wp-content .shop-content .product-img .new-icon {
    background-color: #cebd88;
}

.shop-wp-content .shop-content .product-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.shop-wp-content .shop-content .product-btn .btn-shop {
    margin: 5px;
}

.shop-wp-content .shop-content .product-btn .btn-shop a.shop-link {
    padding: 10px 30px;
    font-size: 12px;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-add-cart {
    background-color: #28364b;
    outline-color: #28364b;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-add-cart:hover {
    outline-color: #061a3b;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-add-cart a.shop-link.add-cart-link {
    background-color: #28364b;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-add-cart a.shop-link.add-cart-link:hover::before {
    background-color: #061a3b;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-read-more {
    background-color: #cebd88;
    outline-color: #cebd88;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-read-more:hover {
    outline-color: #a1905b;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-read-more a.shop-link.read-more-link {
    background-color: #cebd88;
}

.shop-wp-content .shop-content .product-btn .btn-shop.btn-read-more a.shop-link.read-more-link:hover::before {
    background-color: #a1905b;
}

.shop-wp-content .shop-content .product-desc h3 a {
    font-size: 26px;
    font-family: "Playfair Display";
    padding-bottom: 20px;
    margin-bottom: 0;
    /* border-bottom: 1px solid #f1f0e8; */
    color: #28364b;
    text-decoration: none;
}

.shop-wp-content .shop-content .product-desc h3 a:hover {
    color: #cebd88;
}

.shop-wp-content .shop-content .product-desc .product-price del,
.shop-wp-content .shop-content .product-desc .product-price p,
.shop-wp-content .shop-content .product-desc .product-price span {
    color: #cebd88;
    font-weight: bold;
    font-size: 18px;
}

.shop-wp-content .shop-content .product-desc .product-price del.price-del {
    color: #28364b;
    margin-right: 10px;
    opacity: 0.8;
}

.shop-wp-content .shop-content .product-desc .product-price del.price-del span {
    color: #28364b;
}

.shop-wp-content .shop-content .product-desc .product-price p.price-sale {
    color: #e14c38;
}

.shop-wp-content .shop-content .product-desc .product-price p.price-sale span {
    color: #e14c38;
}

.shop-wp-content .shop-content .product-desc ul.list-info li {
    text-align: center;
    border-bottom: 1px solid #f1f0e8;
    padding: 10px 0 10px 0;
}

.shop-wp-content .shop-content .product-desc ul.list-info li:first-child {
    border-top: 1px solid #f1f0e8;
}

.shop-wp-content .shop-content .product-desc ul.list-info li p {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0;
}

.shop-wp-content .shop-content .product-desc .line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-wp-content .page-link {
    padding: 14px 20px;
    margin-left: 10px;
    color: #28364b;
    border-radius: 0;
    font-size: 16px;
}

.shop-wp-content .page-link.active {
    background-color: #f1f0e8;
}

.shop-wp-content .page-link:hover {
    background-color: #cebd88;
    color: #fff;
    border: 1px solid #dee2e6;
}

.shop-wp-content .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.shop-wp-content .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/* --- responsive ---- */

@media (max-width: 991px) {
    .shop-wp-content .shop-content .item {
        margin-bottom: 20px;
    }
    .shop-wp-content .shop-content .product-img a.img-parrent img {
        height: auto;
    }
    .shop-wp-content .row {
        flex-direction: column-reverse;
    }
    .shop-wp-content .side-bar-cart .btn-shop.btn-view-cart,
    .shop-wp-content .side-bar-cart .btn-shop.btn-checkout {
        width: 48.2%;
    }
}

@media (max-width: 767px) {
    .shop-wp-content .shop-content .item {
        margin-bottom: 20px;
        flex-basis: 100%;
    }
    .shop-wp-content .btn-shop a.shop-link {
        padding: 12px 24px;
    }
    .shop-wp-content .filter-tab select {
        padding: 5px;
        font-size: 14px;
    }
}

@media (max-width: 479px) {
    .shop-wp-content .filter-tab {
        flex-direction: column;
        justify-content: start;
        padding: 15px 26px;
    }
    .shop-wp-content .filter-tab p {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .shop-wp-content .filter-tab select {
        padding: 15px;
        font-size: 16px;
    }
}


/* ----------------------------
         Gallery page 
 ----------------------------- */


/* Style */

.gallery-wp {
    margin-bottom: 60px;
}

.gallery-wp .gallery-img a {
    display: inline-block;
    padding: 15px;
    background-color: #f1f0e8;
    margin-bottom: 30px;
    border-radius: 4px;
    position: relative;
}

.gallery-wp .gallery-img:hover span.search-bg {
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: all .2s linear;
}

.gallery-wp .gallery-img span.search-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    background-color: black;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: all .2s linear;
    visibility: hidden;
    cursor: pointer;
}

.gallery-wp .gallery-img span.search-bg i.fa-search {
    color: #fff;
    font-size: 20px;
}


/* ----------------------------
         Form example page 
 ----------------------------- */


/* style */

.form-example-wp .btn-submit {
    position: relative;
    display: inline-block;
    background-color: #cebd88;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1px;
    outline-color: #cebd88;
    overflow: hidden;
}

.form-example-wp .btn-submit:hover {
    outline-color: #28364b;
}

.form-example-wp .btn-submit a.submit-link {
    position: relative;
    background-color: #cebd88;
    color: #fff;
    padding: 22px 100px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.form-example-wp .btn-submit a.submit-link:hover {
    background: transparent;
}

.form-example-wp .btn-submit a.submit-link:hover::before {
    background-color: #28364b;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.form-example-wp .btn-submit a.submit-link::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scale(0.1);
}

.form-example-wp h3 {
    font-family: "Playfair Display";
    font-size: 36px;
    font-weight: normal;
}

.form-example-wp input[type="text"].form-control,
.form-example-wp textarea {
    padding: 10px 25px;
}

.form-example-wp input,
.form-example-wp select,
.form-example-wp textarea {
    border: none;
}

.form-example-wp input:focus,
.form-example-wp select:focus,
.form-example-wp textarea:focus {
    outline: none;
    box-shadow: none;
}

.form-example-wp label.fw-bold {
    font-weight: 600;
}

.form-example-wp .custom-checkbox,
.form-example-wp .custom-radio {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-example-wp .form-left input,
.form-example-wp .form-left select,
.form-example-wp .form-left textarea {
    background-color: #f1f0e8;
}

.form-example-wp .custom-control-label {
    padding-top: 3px;
}

.form-example-wp .form-right form {
    background-color: #f1f0e8;
    padding: 45px 45px;
}


/* responsive */

@media (max-width: 767px) {
    .form-example-wp .form-right form {
        padding: 45px 20px;
    }
}


/* ----------------------------
         blog page 
 ----------------------------- */

.blog-content-wp {
    margin-bottom: 60px;
    /* pagination */
}

.blog-content-wp .btn-blog {
    position: relative;
    display: inline-block;
    background-color: #cebd88;
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 1px;
    outline-color: #cebd88;
    overflow: hidden;
}

.blog-content-wp .btn-blog:hover {
    outline-color: #28364b;
}

.blog-content-wp .btn-blog a.blog-link {
    position: relative;
    background-color: #cebd88;
    color: #fff;
    padding: 22px 54px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    z-index: 1;
}

.blog-content-wp .btn-blog a.blog-link:hover {
    background: transparent;
}

.blog-content-wp .btn-blog a.blog-link:hover::before {
    background-color: #28364b;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.blog-content-wp .btn-blog a.blog-link::before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    right: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: scale(0.1);
}

.blog-content-wp .blog-content-item {
    margin-bottom: 70px;
}

.blog-content-wp .blog-content-item.item-feature {
    border: 2px solid #cebd88;
    padding: 30px;
}

.blog-content-wp .blog-content-item:hover img {
    transform: scale(1.1);
    transition: all .3s linear;
}

.blog-content-wp .blog-post-img {
    background-color: #f1f0e8;
    margin-bottom: 30px;
    padding: 15px;
}

.blog-content-wp .blog-post-img a {
    display: inline-block;
    overflow: hidden;
}

.blog-content-wp .blog-post-img img {
    transition: all 0.3s linear;
}

.blog-content-wp .blog-post-desc i.fas,
.blog-content-wp .blog-post-desc i.far {
    padding-right: 6px;
    color: #cebd88;
    font-size: 12px;
}

.blog-content-wp .blog-post-desc span {
    font-size: 12px;
    color: #28364b;
    opacity: 0.8;
}

.blog-content-wp .box-desc-top {
    margin-bottom: 20px;
}

.blog-content-wp .box-desc-top p {
    display: inline-block;
    margin-bottom: 0;
}

.blog-content-wp .box-desc-top p span {
    border-right: 1px solid #28364b;
    padding-right: 10px;
    margin-right: 10px;
}

.blog-content-wp .box-desc-top a {
    text-decoration: none;
}

.blog-content-wp .box-desc-top a:hover span {
    color: #28364b;
}

.blog-content-wp .box-desc-top a span {
    color: #cebd88;
    font-weight: 700;
    opacity: 1;
    font-family: "raleway";
}

.blog-content-wp p.box-desc-center {
    margin-bottom: 20px;
    font-size: 36px;
    color: #28364b;
    font-family: "Playfair Display";
}

.blog-content-wp p.box-desc-center a {
    color: #28364b;
    text-decoration: none;
}

.blog-content-wp p.box-desc-center a:hover {
    color: #cebd88;
}

.blog-content-wp .box-desc-bottom p {
    display: inline-block;
}

.blog-content-wp .box-desc-bottom p:first-child {
    padding-right: 20px;
}

.blog-content-wp .page-link {
    padding: 14px 20px;
    margin-left: 10px;
    color: #28364b;
    border-radius: 0;
    font-size: 16px;
}

.blog-content-wp .page-link.active {
    background-color: #f1f0e8;
}

.blog-content-wp .page-link:hover {
    background-color: #cebd88;
    color: #fff;
    border: 1px solid #dee2e6;
}

.blog-content-wp .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.blog-content-wp .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/* --- blog - sidebar ---*/

.blog-sidebar .blog-box {
    background-color: #f1f0e8;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.blog-sidebar .blog-title {
    text-align: center;
    font-size: 26px;
    color: #28364b;
    font-family: "Playfair Display";
    margin-bottom: 40px;
}


/*blog-categorie */

.blog-categorie li.categorie-item a {
    color: #28364b;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.blog-categorie li.categorie-item a:hover {
    color: #cebd88;
}

.blog-categorie li.categorie-item a i {
    font-size: 8px;
    color: #cebd88;
}

.blog-categorie li.categorie-item a span {
    opacity: 0.8;
}


/* blog-search */

.blog-search {
    display: flex;
    justify-content: center;
}

.blog-search input {
    padding: 14px 20px;
    border: 0;
    outline: 0;
    width: 84%;
}

.blog-search .btn-blog {
    outline: 0;
}

.blog-search .btn-blog a.blog-link {
    padding: 16px 18px;
}

.blog-search .btn-blog a.blog-link i.fa-search {
    font-size: 16px;
}


/* blog-Popular-posts */

.blog-Popular .blog-img {
    flex-basis: 35%;
    padding-right: 6px;
}

.blog-Popular .blog-desc {
    flex-basis: 65%;
    padding-left: 6px;
}

.blog-Popular .blog-desc i.fas,
.blog-Popular .blog-desc i.far {
    padding-right: 6px;
    color: #cebd88;
    font-size: 12px;
}

.blog-Popular .blog-desc span {
    font-size: 12px;
    color: #28364b;
    opacity: 0.8;
}

.blog-Popular .box-desc-top {
    margin-bottom: 10px;
}

.blog-Popular .box-desc-top p span {
    border-right: 0;
}

.blog-Popular p.box-desc-center {
    margin-bottom: 10px;
    font-size: 16px;
    color: #28364b;
    font-family: "Playfair Display";
}

.blog-Popular p.box-desc-center a {
    color: #28364b;
    text-decoration: none;
}

.blog-Popular p.box-desc-center a:hover {
    color: #cebd88;
}

.blog-Popular .box-desc-bottom p {
    display: inline-block;
}

.blog-Popular .box-desc-bottom p:first-child {
    padding-right: 20px;
}

.blog-Popular .btn-blog.btn-all-post a.blog-link {
    padding: 10px 20px;
}

.blog-post-item {
    margin-bottom: 30px;
    width: 100%;
}


/* blog comment */

.blog-comment-item p {
    font-family: "Playfair Display";
    opacity: 0.8;
    margin-bottom: 10px;
}

.blog-comment-item p a {
    color: #28364b;
    text-decoration: none;
}

.blog-comment-item p a:hover {
    color: #cebd88;
}

.blog-comment-item p i {
    color: #cebd88;
}

.blog-comment-item p.name {
    font-weight: 500;
}


/* blog -tag */

.blog-tag li.tag-item {
    display: inline-block;
    margin: 0 8px 10px 5px;
    padding-bottom: 10px;
}

.blog-tag li.tag-item a {
    color: #28364b;
    padding: 4px 20px;
    border: 2px solid #cec7c7;
    text-decoration: none;
    opacity: 0.6;
    font-weight: bold;
    font-size: 14px;
}

.blog-tag li.tag-item a:hover {
    opacity: 1;
}


/* responsive */

@media (max-width: 600px) {
    .blog-post-item {
        flex-direction: column;
    }
    .blog-Popular .blog-img {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .blog-content-wp p.box-desc-center {
        font-size: 26px;
    }
}


/*# sourceMappingURL=main.css.map */