@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");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&display=swap");
:root {
    --white: #fff;
    --black: #000;
    --primary: #cbc16a;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #010101;
    overflow-x: hidden;
    height: 100%;
    font-family: "Jost", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1440px;
    }
}


/* How to add New font */

@font-face {
    font-family: "trajanBold";
    src: url("../fonts/TrajanPro-Bold.otf");
}

@font-face {
    font-family: "trajanReg";
    src: url("../fonts/TrajanPro-Regular.ttf");
}

section {
    position: relative;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #d2d2d2;
}

h1,
h2,
h3 {
    font-family: "trajanBold";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* loader */


/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
    border-top: 1px solid #ababab;
    border-bottom: 1px solid #ababab;
}

.navbar-nav {
    align-items: center;
    gap: 1rem;
    border-left: 1px solid #ababab;
    height: 115px;
    border-right: 1px solid #ababab;
    padding: 0 3rem;
}

.navbar-nav .nav-item .nav-link {
    color: var(--white);
    text-transform: uppercase;
    font-weight: lighter;
    padding: 8px 10px;
    display: inline-block;
    position: relative;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    transition: 0.5s;
    transform: scaleY(2);
    opacity: 0;
}

.navbar-nav .nav-item .nav-link:hover:before {
    opacity: 1;
    transform: scaleY(1);
}

.navbar-nav .nav-item .nav-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    transform: scaley(0);
    z-index: -1;
}

.navbar-nav .nav-item .nav-link:hover:after {
    background: var(--primary);
    transform: scaley(1);
}

.navbar-nav .nav-item .nav-link:hover {
    color: #fff;
}

.navbar-nav .nav-item .d-flex {
    gap: 9px;
}

.themeBtn {
    font-size: 1.375rem;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    font-family: "trajanBold";
    padding: 0.875rem 1.7em;
    border: 1px solid var(--black);
    display: inline-block;
}

.themeBtn:hover {
    background: var(--primary);
    color: var(--white);
}

.searchBtn {
    background: var(--primary);
    width: 58px;
    height: 62px;
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 1.375rem;
    border-radius: 2px;
}

.searchBtn:hover {
    background: var(--white);
    color: var(--black);
}

.form-inline a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-inline a i {
    color: var(--primary);
    font-size: 2rem;
}

.form-inline a span {
    font-size: 1.5625rem;
    color: var(--white);
    font-family: "trajanBold";
    display: grid;
    line-height: 1.2;
}

.form-inline a span small {
    font-size: 0.9375rem;
    font-family: "Jost";
    font-weight: lighter;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 1200px;
    background: url(../images/mainBnnr.webp) center/cover no-repeat;
}

.main-slider:before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #000000, #00000000);
    width: 100%;
    height: 100%;
    top: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.mainHead {
    font-size: 4.375rem;
    color: var(--white);
    line-height: 1.1;
}

.slideOne p {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 86%;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.themeBtn1 {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.banImg {
    margin: 10rem 0 0 -15rem;
}


/* slider css */


/* David Sec Css Start */

.davidSec {
    padding: 7.625rem 0 8.875rem 0;
    background: #111111;
}

.davidContent {
    margin-left: 2rem;
}

.secHeading {
    font-size: 3.125rem;
    color: var(--white);
}

.davidContent p {
    margin-bottom: 2rem;
}

.davidImg {
    position: relative;
}

.davidImg:before {
    content: "";
    position: absolute;
    border: 2px solid var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 11px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    right: -2rem;
    top: 2rem;
}

.davidImg img {
    border-radius: 11px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    z-index: 1;
    position: relative;
}


/* David Sec Css End */


/* Service Sec Css Start */

.serviceSec {
    padding: 6.5625rem 0;
}

.serviceSec .row+.row {
    margin-top: 4.375rem;
}

.serviceContent p {
    margin: 1rem 0 1.5rem 0;
}

.serviceImg img {
    box-shadow: 0 16px 50px rgb(0 0 0 / 16%);
}

.borderLine:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 2px;
    height: 88.5%;
    left: 51%;
    top: 8%;
}

.borderLine span {
    background: var(--primary);
    width: 31px;
    height: 31px;
    display: block;
    border-radius: 50px;
    position: absolute;
    left: 50.3%;
    top: 12%;
}

.borderLine span:nth-child(2) {
    top: 35%;
}

.borderLine span:nth-child(3) {
    top: 57.7%;
}

.borderLine span:nth-child(4) {
    bottom: 18.5%;
    top: initial;
}


/* Service Sec Css End */


/* News Sec Css Start */

.newsSec {
    background: #111111;
    padding: 4.375rem 0 6.25rem 0;
}

.newsWrap figure {
    position: relative;
    overflow: hidden;
}

.newsWrap figure img {
    transition: 0.5s ease;
}

.newsWrap figure:hover img {
    transform: scale(1.1);
}

.newsContent {
    margin-top: 1.375rem;
}

.newsContent h4 {
    font-size: 1.6875rem;
    color: var(--white);
}

.newsContent p {
    font-size: 1rem;
}

.newsContent a {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--primary);
    font-family: "trajanBold";
    text-decoration: underline !important;
}


/* News Sec Css End */


/* Contact Sec Css Start */

.contactSec p {
    font-size: 1.375rem;
    color: var(--white);
}

.contactForm {
    margin-top: 2rem;
}

.contactForm .form-group {
    margin-bottom: 1.8125rem;
}

.contactForm .form-group .form-control {
    border: unset;
    border-radius: unset;
    outline: none;
    box-shadow: none;
    font-size: 1.125rem;
    padding-left: 1.7rem;
    color: #8b93a8;
}

.contactForm .form-group .form-control::placeholder {
    color: #8b93a8;
}

.contactForm .form-group input {
    height: 75px;
}

.contactForm .form-group textarea {
    padding-top: 1.7rem;
}

.contactForm .themeBtn {
    background: var(--primary);
    border-color: #cd9933;
}

.contactBox {
    margin-left: 2.5rem;
}

.contactBox li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contactBox li+li {
    margin-top: 4.625rem;
}

.contactBox li a div {
    background: var(--primary);
    width: 124px;
    height: 124px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--black);
    border: 1px dashed #707070;
}

.contactBox li a span small {
    font-size: 1rem;
    text-transform: uppercase;
    font-family: "trajanBold";
    color: var(--white);
}

.contactBox li a span {
    font-size: 1.125rem;
    font-weight: 500;
    color: #d2d2d2;
    display: grid;
    line-height: 1.8;
}

.contactImg {
    margin-top: -4rem;
}


/* Contact Sec Css End */


/* Footer Css Start */

footer {
    background: #111111;
    padding-top: 7.5rem;
    position: relative;
}

footer ul li a:hover {
    color: var(--primary);
}

footer h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-family: "trajanReg";
    margin-bottom: 0.875rem;
}

.links li a {
    font-size: 0.875rem;
    color: #bcc3cb;
}

.links li+li {
    padding-top: 7px;
}

.footForm input {
    background: transparent;
    border: unset;
    font-size: 0.875rem;
    outline: none;
    color: var(--white);
}

.footForm {
    border-bottom: 1px solid #485a70;
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-top: 1.5rem;
}

.footForm input::placeholder {
    color: #8a97a7;
}

.footForm button {
    background: transparent;
    border: unset;
    color: var(--primary);
    font-size: 1.375rem;
}

.socialLinks {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

.socialLinks li a {
    color: var(--white);
    font-size: 1.375rem;
}

.copyRight {
    border-top: 1px solid rgb(255 255 255 / 18%);
    margin-top: 7.5rem;
    padding: 2.375rem 0;
}

.copyRight p {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.chat {
    position: absolute;
    bottom: 35px;
    right: 35px;
}

.chat a {
    background: var(--white);
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #200f01;
    font-size: 2.5rem;
}

.chat a:hover {
    background: var(--primary);
    color: var(--white);
}


/* Footer Css End */


/* Inner Pages Css Start */

.innerBan {
    background: url(../images/innerBan.webp);
    height: 600px;
    display: flex;
    align-items: end;
}

.davidinner {
    background: unset;
    padding-bottom: 7rem;
}

.davidinner .row+.row {
    margin-top: 5rem;
}

.serviceInner .row+.row {
    margin-top: 7.5rem;
}

.serviceInner img {
    width: 100%;
}

.serviceInner .serviceContent p {
    margin: 1rem 0 2rem 0;
}

.serviceInner {
    padding: 7.0625rem 0 10rem 0;
}

.newsInner {
    background: unset;
    padding: 7.5rem 0;
}

.newsInner .row+.row {
    margin-top: 6.25rem;
}

.newsInner .newsContent h4 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.newsInner .newsContent p {
    font-size: 1.125rem;
    margin-bottom: 1.7rem;
}

.contactInner {
    padding: 3.75rem 0 11rem 0;
}

.contactInner .contactBox {
    margin-left: 0;
}

.contactInner .contactBox li a div {
    width: 215px;
    height: 215px;
    font-size: 4rem;
}

.contactInner .contactBox li a span {
    font-size: 1.9375rem;
}

.contactInner .contactBox li a span small {
    font-size: 1.6875rem;
}

.contactInner .contactBox li a {
    gap: 2.375rem;
}


/* Inner Pages Css End */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* / sraachbar start / */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}

.link-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

h4.headone {
    text-align: center;
}


/* / sraachbar end / */