/* Base CSS */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Poppins';
    background-color: #0F0E13;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #fff;
    font-weight: 600;
    font-size: 60px;
}

a {
    text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1400px;
}


/*-------------------- Scrollbar css start --------------------*/

::-webkit-scrollbar {
    width: 12px;
    background-color: #1D1B24;
}

::-webkit-scrollbar-thumb {
    background-color: #C8A93C;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #735C0D;
}

html {
    scrollbar-color: #C8A93C #1D1B24;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}


/*-------------------- Scrollbar css end --------------------*/


/*-------------------- Selection css start --------------------*/

::selection {
    background-color: #1D1B24;
    color: var(--border-color);
}

::-webkit-selection {
    background-color: #1D1B24;
    color: #C8A93C;
}

::-moz-selection {
    background-color: #1D1B24;
    color: #C8A93C;
}

::-ms-selection {
    background-color: #1D1B24;
    color: #C8A93C;
}

::-o-selection {
    background-color: #1D1B24;
    color: #C8A93C;
}


/*-------------------- Selection css end --------------------*/


/*-------------------- Offcanvas area css start --------------------*/

.menu-close {
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 18px;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    color: #000;
    background: #fff;
}

.offcanvas-area {
    position: fixed;
    left: -100%;
    height: 100%;
    width: 318px;
    background: #C8A93C;
    z-index: 6;
    padding-top: 35px;
    transition: .4s;
    visibility: hidden;
    top: 0;
    overflow-x: scroll;
    scrollbar-width: none;
}

.offcanvas-area.active {
    left: 0;
    visibility: visible;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    position: relative;
    top: 2px;
    margin-left: 20px;
    margin-right: 8px;
    transition: .3s;
}

.menu-open:hover {
    color: #C8A93C;
}

.offcanvas-btn {
    padding-top: 60px;
    text-align: center;
}

.offcanvas-btn a:first-child {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    transition: .3s;
}

.offcanvas-btn a:first-child:hover {
    color: #000;
}

.offcanvas-btn a:last-child {
    width: 164px;
    height: 56px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s;
    background-color: transparent;
}

.offcanvas-btn a:last-child:hover {
    background-color: #fff;
    color: #000;
}


/*-------------------- Offcanvas area css end --------------------*/


/*-------------------- Header area css start --------------------*/

.header__area {
    padding-top: 36px;
    padding-bottom: 36px;
}

.header__main__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header__logo {
    max-width: 315px;
}

.header__btn__blk {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header__btn__blk .common__btn {
    width: 126px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
}

.header__btn__blk a:first-child {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
    text-transform: uppercase;
    transition: .3s;
}

.header__btn__blk a:first-child:hover {
    color: #C8A93C;
}


/*-------------------- Header area css end --------------------*/


/*-------------------- Hero area css start --------------------*/

.hero__area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    padding-top: 240px;
    padding-bottom: 240px;
}

.common__subtitle {
    color: #C8A93C;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.hero__main__blk span {
    font-size: 24px;
}

.hero__main__blk h1 {
    margin-bottom: 18px;
    font-size: 72px;
    text-transform: uppercase;
}

.hero__main__blk p {
    font-size: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 72px;
}

.common__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 78px;
    background-color: #C8A93C;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
}

.common__btn:hover {
    background-color: #751815;
    color: #fff;
}


/*-------------------- Hero area css end --------------------*/


/*-------------------- Server area css start --------------------*/

.server__area {
    padding-top: 120px;
    padding-bottom: 120px;
}

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


.server__title span {
    margin-bottom: 12px;
}

.server__title h2 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.server__img__blk img {
    width: 100%;
}

.server__content__blk span {
    margin-bottom: 12px;
}

.server__content__blk h4 {
    margin-bottom: 18px;
    text-transform: uppercase;
}

.server__content__blk p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.server__content__blk h5 {
    font-size: 24px;
    margin-bottom: 60px;
}

.server__content__blk a {
    width: 200px;
    height: 62px;
    font-size: 20px;
}

.server__area .g-5,
.server__area .gx-5 {
    --bs-gutter-x: 5rem;
}

.server__area .g-5,
.server__area .gy-5 {
    --bs-gutter-y: 6rem;
}


/*-------------------- Server area css end --------------------*/


/*-------------------- About area css start --------------------*/

.about__area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 154px;
    padding-bottom: 154px;
}

.about__main__blk {
    max-width: 950px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about__main__blk span {
    margin-bottom: 12px;
}

.about__main__blk h2 {
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about__main__blk p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.about__main__blk a {
    margin-left: auto;
    margin-right: auto;
    width: 190px;
    height: 60px;
    font-size: 18px;
}


/*-------------------- About area css end --------------------*/


/*-------------------- Footer area css start --------------------*/

.footer__area {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 50px;
}

.footer__sp1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    max-width: 570px;
    opacity: .3;
}

.footer__sp2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 730px;
    opacity: .3;
    transform: rotate(180deg);
}

.footer__logo {
    max-width: 310px;
    margin-bottom: 33px;
}

.footer__info {
    margin-bottom: 40px;
    max-width: 85%;
}

.footer__info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.footer__socials {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer__socials a {
    width: 36px;
    height: 36px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    transition: .3s;
    background-color: transparent;
    font-size: 15px;
}

.footer__socials a:hover {
    background-color: #C8A93C;
    color: #fff;
    border-color: #C8A93C;
    /* transform: translateY(-5px); */
}

.footer__single__blk h4 {
    color: #C8A93C;
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 48px;
}

.footer__single__blk ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__single__blk ul li {
    display: block;
    margin-bottom: 20px;
}

.footer__single__blk ul li:last-child {
    margin-bottom: 0;
}

.footer__single__blk ul li a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
    display: block;
}

.footer__single__blk ul li a:hover {
    color: #C8A93C;
}

.footer__copy {
    margin-top: 80px;
}

.footer__copy span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 500;
}


/*-------------------- Footer area css end --------------------*/