/* Google font */

@import url('https://fonts.googleapis.com/css2?family=Gantari:wght@200;300;400;500;600;700;800;900&display=swap');

/* General */
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Gantari', sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.2px;
    width: 100%; 
    overflow-x: hidden;
    background-color: #fff;
}
::selection{
    background: #020202 !important;
    color: #fff;
}
a, *::before, *::after, img, span, input, button, .navbar, .fixedmenu {
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}
main a {
    color: #B68C91;
}
.relative {
    position: relative;
}
img {
    max-width: 100%;
    height: auto;
}
hr {
    margin-top: 0px;
    margin-bottom: 20px;
}
.h1, .h2, .h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}
p:last-child {
    margin-bottom: 0 !important;
}
table {
    width: 100%;
}
table tr th,
table tr td {
    padding: 5px 10px;
    vertical-align: top;
}
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    position: sticky;
    z-index: 2;
    display: inline-block;
    font-size: 17px;
    border: 2px solid transparent;
    letter-spacing: .5px;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-weight: 300;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out !important;
    transition: all .2s ease-in-out !important;
}

/* Navbar */
.navbar {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 35px 20px;
    z-index: 1030;
}
.header-appear .navbar {
    padding: 10px 20px;
}
.navbar .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
a.nav-link {
    color: #B68C91;
    font-size: 18px;
    font-weight: 600;
    display: block;
    position: relative;
}
a.nav-link:hover, a.nav-link:focus {
    color: #B68C91;
}
a.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #B68C91;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.75s ease-in-out;
}
a.nav-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.25s ease-in-out;
}
a.nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #D3BABD;
    transform: none;
}
.logo img {
    width: 220px;
    height: auto;
}

/* search*/
.search-icon a i {
    color: #B68C91;
    font-size: 30px;
}

/* side menu btn */
.sidemenu-btn {
    width: 40px;
    height: 30px;
    padding: 0;
    position: relative;

    display: inline-block;
}
.sidemenu-btn .line {
    position: absolute;
    width: 40px;
    background: #B68C91;
    height: 4px;
    display: block;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    right: 0;
}
.sidemenu-btn .line-1 {
    top: 0;
}
.sidemenu-btn .line-2 {
    top: 9px;
}
.sidemenu-btn .line-3 {
    top: 18px;
}
.sidemenu-btn:hover .line-1 {
    width: 40px;
}
.sidemenu-btn:hover .line-2 {
    width: 20px;
}
.sidemenu-btn:hover .line-3 {
    width: 30px;
}

/* Side Menu */
.side-menu {
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2500;
    height: 100%;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -o-transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    overflow: hidden;
}

.side-menu.side-menu-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.pul-menu .side-menu.side-menu-active {
    visibility: visible; opacity: 1;
}
.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*side close btn*/
.btn-close {
    height: 40px;
    width: 40px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 25px;
    right: 15px;
    cursor: pointer;
    z-index: 1000;
}
.before-side .btn-close{
    display: none;
}
.btn-close::before, .btn-close::after {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 40px;
    width: 4px;
    background: #B68C91;
    top: 5px;
}
.btn-close:hover::before, .btn-close:hover::after  {
    background: #888;
}
.btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.pul-menu.pushwrap .side-menu .inner-wrapper{
    padding: 3.5rem 2.5rem;
}
.side-menu .side-nav {
    margin-top: 30px;
    display: block;
}
.side-nav .navbar-nav .nav-item{
    display: block;
    margin: 10px 0; padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;

    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
}
.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}
.side-nav .navbar-nav .nav-item:nth-child(2){
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}
.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}
.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}
.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s;
}
.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s;
}
.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}
.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.side-nav .navbar-nav .nav-link {
    display: inline-table;
    padding: 2px 0 3px 0 !important;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.side-menu p {
    font-size: 13px;
    margin-top: .5rem;
    margin-bottom: 0;
}

/* Side social icons */
.social-icons-simple {
    margin-bottom: 0;
    padding-left: 0;
}
.social-icons-simple li {
    display: inline-block;
}
.social-icons-simple li a {
    display: block;
    font-size: 24px;
    line-height: 45px;
    height: 44px;
    width: 44px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    transition: background-color .5s ease;
}
.facebook-text-hvr {
    color: #4267B2;
}
.instagram-text-hvr {
    color: #C32AA3;
}
.youtube-text-hvr {
    color: #ff0000;
}
.linkedin-text-hvr {
    color: #4267B2;
}
.facebook-text-hvr:hover {
    color: #fff;
    background: #4267B2;
}
.instagram-text-hvr:hover {
    color: #fff;
    background: #C32AA3;
}
.youtube-text-hvr:hover {
    color: #fff;
    background: #ff0000;
}
.linkedin-text-hvr:hover {
    color: #fff;
    background: #0077B5;
}


/* index content */
main {
    padding-top: 150px;
}
.sub main {
        padding-top: 113px;
}
section.index {
    color: #000;
    margin-bottom: 70px;
}
.main-bg {
    background-color: #b58b91;
}
.index-holder {
    display: flex;
}
.index-left {
    display: flex;
    align-items: flex-end;
    margin-bottom: -30px;
    padding-left: 20px;
}
.index-left p {
    font-size: 15px;
    font-weight: 700;
}
.index-right {
    margin-top: -30px;
}
.index-right p {
    font-size: 28px;
    font-weight: 700;
    padding-right: 20px;
}
.index-right-one {
    margin-bottom: -30px;
}
.index-right-two {
    display: flex;
    align-items: flex-end;
    margin-bottom: -30px;
}
.mb-20 {
    margin-bottom: 20px;
}
.post {
    color: #fff;
    padding: 20px;
    height: 100%!important;
}
.post h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
}
.post p {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0;
}
.post p.extra-text {
    margin-top: 20px;
}
a.dot {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}
a.dot:hover, a.dot:focus {
    color: #fff;
    text-decoration: none;
}
a.dot span {
    padding-right: 2px;
}
a.dot:hover span.dot1 {
    padding-right: 8px;
}
a.dot:hover span.dot2 {
    padding-right: 8px;
}
.post-main, .post-reg {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%!important;
}
.post-reg .post-img, .post-reg .group {
    margin-bottom: 20px;
}
a:hover .post-img img {
    /*transform: scale(1.1);*/
    filter: sepia(50%) hue-rotate(-30deg) invert(10%);
-webkit-filter: sepia(50%) hue-rotate(-30deg) invert(10%);
-moz-filter: sepia(50%) hue-rotate(-30deg) invert(10%);
}
.post-img {
    position: relative;
    overflow: hidden;
}
.post-date {
    font-size: 28px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 0;
}
.post-date .group {
    margin-bottom: 0;
}
.group {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 200;
    margin-bottom: 40px;
}
.post-member h1 {
    line-height: 1.1;
}

/* subpage */
.page-head {
    margin-bottom: 20px;
}
.page-head-ins {
    padding: 20px;
    background-color: #b58b91;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page-head-ins h1 {
    font-weight: 600;
    margin-bottom: 0;
}
.page-head-ins a.dot {
    color: #000;
    font-size: 24px;
    padding-top: 0;
    padding-bottom: 1px;
}
.page-head-ins a.dot:hover, .page-head-ins a.dot:focus {
    color: #000;
    text-decoration: none;
}
.post-content p {
    font-weight: 500;
    line-height: 1.3;
}
.post-content p strong, .post-content p b {
    font-weight: 700;
}
.post-content a:hover,
.post-content a:focus {
    color: #B68C91;
    text-decoration: underline;
}
.text-grey-holder {
    background-color: #eee;
    padding: 20px;
    margin-bottom: 20px;
}
.text-grey-holder p:last-child,
.text-grey-holder ul {
    margin-bottom: 0;
}

/* gallery */
.gallery-item {
    margin-bottom: 60px;
}
.single-gallery-image {
    margin-bottom: 30px;
}
/*.lg-outer * {
    margin-bottom: 20px;
}*/

/* Side blocks */
.side-block {
    padding-bottom: 50px;
    margin-bottom: 20px;
}
.side-block a.dot {
    color: #000;
    padding-top: 0;
    padding-bottom: 0;
}
.side-block  h3 {
    font-weight: 600;
    margin-bottom: 15px;
}
.side-block ul {
    padding-left: 0;
    list-style: none;
}
.side-block ul li {
    font-size: 18px;
    margin-bottom: 10px;
}
.side-block ul li a {
    color: #000;
    font-weight: 500;
}

/* Footer */
.footer {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    background-color: #D3BABD;
    padding: 30px 20px;
    margin-bottom: 20px;
}
.footer p {
    margin-bottom: 0;
}
.footer a {
    color: #8c4366;
    display: block;
}
.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}
a.logo-footer {
    margin-bottom: 15px;
}
a.logo-footer img {
    width: 150px;
    height: auto;
}
a.logo-footer:hover img {
    opacity: 0.5;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
}

a.logo-footer.logo-iza {
    margin-right: 20px;
}
.footer .form-control {
    border: none;
    border-radius: 0;
    height: 48px;
    padding: 8px 16px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.btn.btn-footer {
    width: 100%;
    color: #EE9D03;
    background: #a5006f;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 15px;
}
.btn.btn-footer:hover,
.btn.btn-footer:focus {
    color: #e86057;
    background: #81320b;
}
.footer-down {
    font-size: 16px;
    font-weight: 600;
    background-color: #b58b91;
    padding: 30px 20px;
    margin-bottom: 20px;
}
.footer-down a {
    color: #000;
}
.footer-down i {
    font-size: 10px;
    margin: 0 15px;
}
.footer-social {
    display: flex;
}
.footer-social a {
    padding-right: 10px;
    margin-right: 10px;
}
.footer-social a:hover, .footer-social a:focus, .footer-social a:active {
    color: #000;
}
.footer-social a i.la-facebook {
    font-size: 16px;
    margin: 0;
}
.footer-social a i.la-instagram {
    font-size: 20px;
    margin: 0;
    vertical-align: text-bottom
}

/* Modal pop-up */
.modal-header {
    border: none;
}
.modal-content {
    border-radius: 0;
}
.modal-title {
    font-weight: 700;
    margin-top: 5px;
}
.close {
    font-size: 36px;
    opacity: 1;
}
.close:not(:disabled):not(.disabled):hover {
    color: #b58b91;
    opacity: 1;
}
.modal-backdrop {
   background-color: #000;
   opacity: 0.8 !important;
}
.modal-body a {
    color: #B68C91;
}

.credits {
    font-size: 13px;
    margin-top: 25px;
}


/* Colors */
.bg1 {
    background-color: #8c4366;
}
.bg2 {
    background-color: #ee9d03;
}
.bg3 {
    background-color: #ef3e3f;
}
.bg4 {
    background-color: #a5006f;
}
.bg5 {
    background-color: #81320b;
}
.bg6 {
    background-color: #e86057;
}
.bg7 {
    background-color: #b58b91;
}

/* Custom grid */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl,
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, 
.col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, 
.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, 
.col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, 
.col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, 
.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, 
.col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, 
.col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, 
.col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}
.row {
    margin-right: -10px;
    margin-left: -10px;
}

.grecaptcha-badge {
    visibility: hidden;
}

#newsletter-info-modal .error {
    display: none;
}
