@font-face {
    font-family: centurygo;
    src: url(./../assets/fonts/centurygo.ttf);
}

@font-face {
    font-family: vivaldigo;
    src: url(./../assets/fonts/vivaldigo.ttf);
}

:root {
    --main-color: #f4cb0b;
    --main-font: centurygo, "Century Gothic", CenturyGothic, AppleGothic, "Libre Franklin", sans-serif;
    --second-font: vivaldigo;
}

html,
body {
    background: #191919;
    height: 100%;
    font-family: var(--main-font) !important;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.vivaldigo {
    font-family: var(--second-font) !important;
    letter-spacing: 0.03cm;
    font-weight: lighter !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #111111;
    font-weight: 400;
    font-family: var(--main-font) !important;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 16px;
    font-family: var(--main-font) !important;
    color: #b3b3b3;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #fff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.arrows-content {
    position: relative;
}

.arrows-position {
    position: absolute;
    bottom: 5px;
    right: 15px;
    background-color: #111111;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1;
    font-size: 16px;
    padding: 5px;
    opacity: 0.3;
}

.hidden {
    display: none;
}

.paddingTopLeft {
    padding: 1px 2.1px;
}

.paddingTopRight {
    padding: 1px;
}


/*---------------------
  Helper CSS
-----------------------*/

.robe-title {
    /* text-align: center; */
}

.robe-title span {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 45px;
    color: #ffffff;
    font-weight: 700;
    margin-top: 14px;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}

.bottom-desc {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
}

.bottom-desc-button {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}


/* .bottom-desc-button:hover {
    background: #ddd;
    color: black;
} */

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.spad-2 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}


/* buttons */

.primary-btn {
    font-size: 16px;
    color: #ffffff;
    background: var(--main-color);
    display: inline-block;
    font-weight: 700;
    padding: 12px 30px 10px;
}

.site-btn {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 34px;
    display: inline-block;
    background: var(--main-color);
    border: 1px solid var(--main-color);
}


/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}


/*---------------------
  Header
-----------------------*/

.header-section {
    background: #191919;
}

.logo {
    padding: 24px 0 30px;
}

.logo a {
    display: inline-block;
}

.main-menu {
    text-align: right;
}

.main-menu ul li {
    display: inline-block;
    list-style: none;
    margin-left: 35px;
    position: relative;
}

.main-menu ul li .dropdown {
    position: absolute;
    width: 180px;
    background: #ffffff;
    z-index: 99;
    left: 0;
    top: 90px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.main-menu ul li .dropdown li {
    display: block;
    margin-right: 0;
    text-align: left;
    margin-left: 0;
}

.main-menu ul li .dropdown li a {
    padding: 8px 20px;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-transform: capitalize;
    color: #191919;
}

.main-menu ul li .dropdown li a:hover {
    color: var(--main-color);
}

.main-menu ul li.active a {
    color: var(--main-color);
}

.main-menu ul li:hover>a {
    color: var(--main-color);
}

.main-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 70px;
}

.main-menu ul li a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    display: inline-block;
    padding: 25px 0 30px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.slicknav_menu {
    display: none;
}


/*---------------------
  About Us Section
-----------------------*/

.about-us-section {
    background: #191919;
}

.as-pic img {
    min-width: 100%;
}

.as-text {
    padding-top: 30px;
    padding-left: 20px;
}

.as-text.ap-text {
    padding-top: 14px;
}

.as-text .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.as-text p {
    color: #b3b3b3;
}

.as-text p.f-para {
    margin-bottom: 10px;
}

.as-text p.s-para {
    margin-bottom: 37px;
}

.as-text .about-counter .ac-item {
    float: left;
    margin-right: 48px;
    position: relative;
}

.as-text .about-counter .ac-item:after {
    position: absolute;
    right: -20px;
    top: 8px;
    height: 65px;
    width: 1px;
    background: #393939;
    content: "";
}

.as-text .about-counter .ac-item:last-child {
    margin-right: 0;
    padding-right: 0;
}

.as-text .about-counter .ac-item:last-child:after {
    display: none;
}

.as-text .about-counter .ac-item h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.as-text .about-counter .ac-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}


/*---------------------
  robes Section
-----------------------*/

.section-background {
    background: #222222;
    padding-bottom: 0;
}

.section-background .section-title {
    margin-bottom: 100px;
}

.robes-item {
    height: 393px;
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.robes-item:hover:after {
    opacity: 1;
}

.robes-item:hover .pi-hover a.search-icon {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.robes-item:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    content: "";
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.robes-item.large-item {
    height: 786px;
}

.robes-item .pi-hover a {
    display: inline-block;
    width: 66px;
    height: 66px;
    background: var(--main-color);
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    line-height: 66px;
    margin-right: 15px;
}

.robes-item .pi-hover a:last-child {
    margin-right: 0;
}

.robes-item .pi-hover a.search-icon {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
    position: relative;
    bottom: -20px;
}


/*---------------------
  Footer
-----------------------*/

.footer-section {
    background: #191919;
    padding-top: 80px;
    padding-bottom: 50px;
}

.footer-option {
    margin-bottom: 30px;
}

.footer-option .fo-logo {
    margin-bottom: 30px;
}

.footer-option .fo-logo a {
    display: inline-block;
}

.footer-option ul {
    margin-bottom: 12px;
}

.footer-option ul li {
    list-style: none;
    font-size: 16px;
    color: #b3b3b3;
    line-height: 30px;
}

.footer-option .fo-social a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    width: 41px;
    height: 41px;
    background: #303030;
    border-radius: 50%;
    text-align: center;
    line-height: 41px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 3px;
}

.footer-option .fo-social a:hover {
    background: var(--main-color);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget.fw-links {
    padding-left: 35px;
}

.footer-widget h5 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget ul li {
    list-style: none;
}

.footer-widget ul li a {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 36px;
}

.footer-widget p {
    margin-bottom: 18px;
}


/*-------------------------------- Responsive Media Styles --------------------------------*/

@media only screen and (min-width: 1600px) {
    .section-background .container {
        max-width: 1570px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}


/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .as-text .about-counter .ac-item {
        margin-right: 12px;
    }
    .as-text .about-counter .ac-item:after {
        right: -7px;
    }
    .arrows-position {
        position: absolute;
        bottom: 4px;
        right: 4px;
        background-color: #111111;
        color: rgb(255, 255, 255);
        text-align: center;
        line-height: 1;
        font-size: 14px;
        padding: 4px;
        opacity: 0.3;
    }
}

@media only screen and (max-width: 991px) {
    .as-text {
        padding-left: 0;
    }
    .footer-widget.fw-links {
        padding-left: 0;
    }
    .as-text.ap-text {
        padding-top: 30px;
    }
    .arrows-position {
        position: absolute;
        bottom: 2px;
        right: 2px;
        background-color: #111111;
        color: rgb(255, 255, 255);
        text-align: center;
        line-height: 1;
        font-size: 12px;
        padding: 3px;
        opacity: 0.3;
    }
}


/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
    .main-menu {
        text-align: right;
        display: none;
    }
    .slicknav_btn {
        margin: 0;
        border-radius: 0;
        background-color: #666;
        position: absolute;
        right: 15px;
        top: 20px;
        display: inline-block;
        float: none;
    }
    .slicknav_nav {
        background: #666;
        display: block;
    }
    .slicknav_menu {
        display: block;
        background: transparent;
        padding: 0;
    }
    .header-section .container {
        position: relative;
    }
    .slicknav_nav .slicknav_row,
    .slicknav_nav a {
        padding: 8px 30px;
        margin: 0;
    }
    .slicknav_nav ul {
        margin: 0;
    }
    .slicknav_nav a:hover {
        border-radius: 0;
        background: var(--main-color);
        color: #ffffff;
    }
    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: var(--main-color);
        color: #ffffff;
    }
    .breadcrumb-text {
        text-align: left;
    }
    .as-text .about-counter .ac-item {
        margin-right: 20px;
    }
    .as-text .about-counter .ac-item:after {
        right: -11px;
    }
    .arrows-position {
        position: absolute;
        bottom: 4px;
        right: 2px;
        background-color: #111111;
        color: rgb(255, 255, 255);
        text-align: center;
        line-height: 1;
        font-size: 12px;
        padding: 3px;
        opacity: 0.3;
    }
}