/* font link  */

@font-face {
    font-family: 'Now';
    src: url('webfonts/Now-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url('webfonts/Now-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url('webfonts/Now-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url('webfonts/Now-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Now';
    src: url('webfonts/Now-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* benrock font  */

@font-face {
    font-family: 'benrock';
    src: url('webfonts/benrock-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

/*
========================
GOBAL CSS START
========================
*/

body {
    font-family: 'Now';
    font-size: 13px;
    font-weight: 400;
    background: #333;
    color: #fff;
}

:root {
    --font-benrock: 'benrock';
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}



/*===============
 GOBAL CSS END  
 ============== */

.preloader-area {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1100;
    width: 100%;
    height: 100dvh;
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.preloader-area .mouse {
    width: 40px;
    height: 83px;
    border-radius: 100px;
    border: 4px solid #ECECEA;
    display: flex;
    justify-content: center;
}
.mouse .animated-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ECECEA;
    animation: preloader-animate 1.5s ease-in-out infinite;
}

@keyframes preloader-animate {
    0% {
        transform: translateY(10px);   
    }
    50% {
        transform: translateY(45px);
    }
    100% {
        transform: translateY(10px); 
    }
}

.main-body {
    display: none;
    overflow: hidden;
}






/* nav style  */

.nav-area {
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 999;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    transition: 0.3s;
    align-items: start;
}

.nav-area::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/menu-bg.png) no-repeat;
    position: absolute;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
}

.nav-area ul {
    display: flex;
    flex-direction: column;
}

.nav-area ul li {
    width: 520px;
    padding-left: 80px;
    padding-block: 10px;
    border-bottom: 4px solid #fff;
}

.nav-area ul li a {
    display: flex;
    align-items: end;
    gap: 11px;
    cursor: pointer;
}

.nav-area ul li span.nav-item {
    font-family: var(--font-benrock);
    text-transform: uppercase;
    font-size: 52px;
    line-height: 100%;
    width: 170px;
    display: block;
    letter-spacing: 2px;
}

.nav-area ul li span.serial {
    margin-bottom: 10px;
    font-size: 14px;
}

.nav-toggler {
    position: fixed;
    left: 100px;
    top: 100px;
    z-index: 1000;
}

.nav-toggler button {
    width: 26px;
    height: 26px;
    border: none;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.nav-toggler button:hover {
    background: #3A734A;
}

.nav-area ul li a:hover .home {
    color: #3A734A;
}

.nav-area ul li a:hover .about {
    color: #805B90;
}

.nav-area ul li a:hover .service {
    color: #CE6E29;
}

.nav-area ul li a:hover .client {
    color: #3A734A;
}

.nav-area ul li a:hover .contact {
    color: #789FBF;
}

.menu-button.active {
    background: #3A734A;
}

.nav-area.menu-open {
    left: 25px;
}

/*======== hero area style start hare ====== */

.hero-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-area .video-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    z-index: -1;
    padding: 25px;
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wrapper {
    height: 100dvh;
    padding-block: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.viemo-links {
    position: absolute;
    right: 180px;
    bottom: 150px;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
}

.footer-wrapper ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-footer {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    padding-inline: 100px;
}

.copyright-text p {
    font-size: 9px;
    letter-spacing: 0px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
}


/*========== hero area style end hare ============ */

/*========== about area style start hare ========= */

.about-area {
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-wrapper {
    min-height: 100dvh;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 100px;
    padding-bottom: 100px;
}

.section-title h2 {
    font-size: 84px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-benrock);
    text-align: center;
}

.about-wrapper .section-title h2 {
    color: #866097;
}

.about-content {
	max-width: 780px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about-content p {
    max-width: 1116px;
    font-size: 20px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
}

.worldwide-link {
    text-decoration: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: color 0.2s ease-in-out;
}

.worldwide-link:hover {
    color: #fff;
}

.countries-tooltip {
    color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    position: absolute;
    top: 105%;
    right: 0;
    white-space: nowrap;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.countries-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.countries-tooltip a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0;
}

.countries-tooltip a:hover {
    text-decoration: underline;
}

.countries-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(40, 40, 40, 0.9) transparent;
}

.based-card {
    position: relative;
    margin-left: auto;
}

.based-card p {
    font-size: 17px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
}

.worldwide-link span {
    color: #fff;
    text-decoration: underline;
}

/*======== about section style end hare  ==========*/

/*=========== service area start hare =========== */

.service-area {
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-wrapper {
    min-height: 100dvh;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 100px;
}

.section-title h2 {
    font-size: 84px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-benrock);
    text-align: center;
}

.service-wrapper .section-title h2 {
    color: #df772d;
}

.services-content-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 824px;
}

.single-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid #fff;
    padding-block: 10px;
    padding-top: 15px;
}

.single-service h4 {
    font-size: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
}

.single-service p {
    font-size: 15px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    margin-top: 5px;
    display: none;
}

/*============ service area end hare ======== */

/*======= client area style start hare ======= */

.client-area {
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.client-wrapper {
    min-height: 100dvh;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 50px;
    padding-bottom: 100px;
}

.client-wrapper .section-title h2 {
    color: #3a734a;
}

.clients-list ul {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
    gap: 30px 0;
    margin-inline: auto;
}

.clients-list ul li {
    width: calc(100% / 7);
    padding-inline: 15px;
    text-align: center;
}

.clients-list {
    width: 100%;
    max-width: 1200px;
}

/*========== client area style end hare =========== */

/*========= contact area style start hare ======= */

.contact-area {
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-wrapper {
    min-height: 100dvh;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 100px;
}

.contact-wrapper .section-title h2 {
    color: #78a0c0;
}

.contact-us-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1070px;
}

.contact-left-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-left-card .stay-us {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stay-us ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stay-us p {
    font-size: 34px;
    letter-spacing: 2px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
}

.stay-us ul li img {
    width: 37px;
}

.footer-wrapper ul li img {
    max-width: 19px;
}

.email-us p {
    font-size: 34px;
    letter-spacing: 2px;
    color: #e9e9e7;
    font-weight: 300;
}

.contact-right-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-right-card a {
    padding: 11px 30px;
    border: 2px solid #fff;
    border-radius: 100px;
    font-size: 27px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
    width: 267px;
}

/* contact us area style end hare  */

/* say hello area start hare  */

.say-hello-section {
    background: url(images/section-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.say-hello-wrapper {
    min-height: 100dvh;
    padding-block: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin-inline: auto;
}

.contact-form-area {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.contact-form-area h4 {
    font-size: 27px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
}

.contact-form {
    width: 100%;
}

.contact-form .single-input input,
.contact-form .single-input textarea {
    width: 100%;
    border: none;
    background: transparent;
    resize: none;
    font-size: 22px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
    border-bottom: 2px solid #fff;
    padding-block: 10px;
    max-width: 550px;
}

.contact-form .single-input input::placeholder,
.contact-form .single-input textarea::placeholder {
    color: #e9e9e7;
}

.single-input textarea {
    color: red;
}

.submit-button button {
    font-size: 15px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
    padding: 10px 25px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 100px;
    width: 152px;
    margin-top: 90px;
}

.right-action-area a {
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 100px;
    font-size: 27px;
    letter-spacing: 1px;
    color: #e9e9e7;
    font-weight: 300;
    text-align: center;
    width: 267px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.form-top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.back-contact img {
	max-width: 40px;
	transform: rotate(180deg);
}

.file-input label {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 22px;
	letter-spacing: 1px;
	color: #e9e9e7;
	font-weight: 300;
	border-bottom: 2px solid #fff;
	padding-block: 10px;
	max-width: 550px;
	display: flex;
	align-items: center;
	gap: 13px;
	cursor: pointer;
}

.file-input input {
    display: none;
}