
/*
  font-family: "Geist", sans-serif;
  font-family: "Inter", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/*----------  Body CSS  ----------*/
:root {
    --font-size: 16px;
    --color-white:#fff;
    --color-white2:#F6F2ED;
    --color-white3:#FEFAF5;
    --color-white4:#F8F6F3;
    --color-btn:#F6F2ED4D;
    --color-btn1:#F6F2ED1A;
    --text-color: #717171;
    --primary-color:#C2F361;
    --title-color:#0F0C19;
    --color-black1:#1E1E1E;
    --color-black2:#030404;
    --color-black3:#000000;
    --color-gray:#696969;
    --color-gray2:#282828;
    --color-border5:rgb(194 243 97 / 5%);
    --color-border15:rgb(194 243 97 / 15%);
    --black-op3:rgb(15 12 25 / 3%);
    --black-op5:rgb(15 12 25 / 5%);
    --black-op10:rgb(15 12 25 / 10%);
    --black-op15:rgb(15 12 25 / 15%);
    --black-op20:rgb(15 12 25 / 20%);
    --black-op60:rgb(15 12 25 / 60%);
    --black-op80:rgb(15 12 25 / 80%);
    --white-op3:rgb(255 255 255 / 3%);
    --white-op5:rgb(255 255 255 / 5%);
    --white-op7:rgb(255 255 255 / 7%);
    --white-op10:rgb(255 255 255 / 10%);
    --white-op15:rgb(255 255 255 / 15%);
    --white-op20:rgb(255 255 255 / 20%);
    --white-op25:rgb(255 255 255 / 25%);
    --white-op50:rgb(255 255 255 / 50%);
    --white-op60:rgb(255 255 255 / 60%);
    --white-op70:rgb(255 255 255 / 70%);
    --white-op90:rgb(255 255 255 / 90%);
    --primary-op30: rgb(194 243 97 / 30%);
    --transition: 500ms ease-in-out;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --text-font:"Inter", sans-serif;
    --title-font:"Geist", sans-serif;
    --container-width:1480px;

    /* background color */
    --bg-color1:#FCFEF7;
    --bg-color2:#F1F5E6;
    --bg-color3:#F1FFD4;
    --bg-color4:#F8FEE7;






    --color-gradient-1:linear-gradient(180deg, #212121 0%, #171717 100%);
    --border-grdient-1:linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);

}


html,
body {
    overflow-x: hidden;
    width: 100%;
	overflow-x: clip;
}
::-webkit-scrollbar-track{
	background-color: var(--title-color);
	border-left: 1px solid var(--title-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--title-color);
}
::-webkit-scrollbar-thumb{
	background: var(--primary-color);
}

:root{
    --natural: #fff;
}
body {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-family:var(--text-font);
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    font-family:var(--text-font);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 40px;
    line-height: 50px;
    color:var(--title-color);
    font-weight: 700;
    font-family:var(--title-font);
    font-style: normal;
    -webkit-transition: .5s;
    transition: .5s;
    margin: 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 35px;

}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}

.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    color:var(--text-color);
}

.text-right{
    text-align: right;
}
.text-white{
    color:var(--color-white)
}
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    -webkit-transition: .5s;
    transition: .5s;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li{
    list-style: none;
}

input:focus,
button:focus {
    border-color: none;
    outline-color: none;
    border: 1px solid none;
}

textarea:focus {
    border-color:var(--text-color);
    outline-color:var(--title-color);
}

label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

a,
i,
cite,
em,
var,
address,
dfn,
ol,
li,
ul {
    font-style: normal;
    font-weight: 400;
    list-style: none;
}

figure{
	margin: 0;
}
img{
	max-width: 100%;
}
.section-border {
    border-bottom: 1px solid var(--black-op10);
    flex-grow: 1;
    transform-origin: left;
    transform: scaleX(0);
}
.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.data-img-hover{
	position: relative;
	width: 100%;
}
.data-img-hover img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.data-img-hover canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.data-img-hover canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1 !important;
}
.border-color {
    border-bottom: 1px solid var(--color-border2);
}

.defult-btn a {
    display: inline-block;
    background: var(--primary-color);
    font-family: var(--title-font);
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 15px 40px;
    margin-top: 30px;
    border-radius: 30px;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}
.defult-btn a::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--title-color);
    border-radius: 30px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .5s;
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    z-index: -1;
}
.defult-btn a:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.defult-btn a svg{
    margin-left: 10px;
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}
/* Default Background */

*::-moz-selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--color-white);
    text-shadow: none;
}
::placeholder {
    font-size: 16px;
    color: var(--color-white);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--color-white);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--color-white);
}

:-ms-input-placeholder {
    /* IE 10+ */

    color: var(--color-white);
}

:-moz-placeholder {
    /* Firefox 18- */

     color: var(--color-white);
}

/* Contact Area */
.counter_area ::-moz-selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::-moz-selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::selection {
    color: #001d23;
    text-shadow: none;
}

.contact_area ::placeholder {
    color: #001d23;
    font-size: 16px;
}

.contact_area ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #001d23;
}

.contact_area ::-moz-placeholder {
    /* Firefox 19+ */
    color: #001d23;
}

.contact_area :-ms-input-placeholder {
    /* IE 10+ */
    color: #001d23;
}

.contact_area :-moz-placeholder {
    /* Firefox 18- */
    color: #001d23;
}

.blog_reply ::-moz-selection {
    color: #151948;
}

.blog_reply ::-moz-selection {
    color: #151948;
}

.blog_reply ::selection {
    color: #151948;
}

.blog_reply::placeholder {
    color: #151948;
}

.blog_reply ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #151948;
}

.blog_reply ::-moz-placeholder {
    /* Firefox 19+ */
    color: #151948;
}

.blog_reply :-ms-input-placeholder {
    /* IE 10+ */
    color: #151948;
}

.blog_reply :-moz-placeholder {
    /* Firefox 18- */
    color: #151948;
}
.border_bg {
    border-bottom: 1px solid #cccdd894;
    padding-bottom: 120px;
}
.m-l-50 {
    margin-left: 50px;
}

/* Padding Top Css */
.pt-10{
    padding-top: 10px;
}
.pt-30{
    padding-top: 30px;
}
.pt-22{
    padding-top: 22px;
}


/* padding bottom css */

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pl-130 {
    padding-left: 130px;
}

.pr-0{
    padding-right: 0px;
}

.pl-0{
    padding-left: 0px;
}

.pl-40 {
    padding-left: 40px;
}

.pr-40 {
    padding-right: 40px;
}
