/* GOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
	background: radial-gradient(274.23% 71.74% at 49.60% 48.95%, #E6F4D6 0%, rgba(159, 220, 255, 0.00) 100%);
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GOBAL_CSS_CHANGES_END_HERE */

/* GOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #222222;
    --main-color: #258DCA;
	--green: #82BA3F;
    --adamina-regular: "Adamina-Regular";
    --gothicA1-extraBold: "GothicA1-ExtraBold";
    --gothicA1-semiBold: "GothicA1-SemiBold";
    --gothicA1-regular: "GothicA1-Regular";
    --playfairDisplay-medium: "PlayfairDisplay-Medium";
    --playfairDisplay-semiBold: "PlayfairDisplay-SemiBold";
}
/* GOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Adamina-Regular";
    src: url("../webfonts/Adamina-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "GothicA1-ExtraBold";
    src: url("../webfonts/GothicA1-ExtraBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "GothicA1-SemiBold";
    src: url("../webfonts/GothicA1-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "GothicA1-Regular";
    src: url("../webfonts/GothicA1-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlayfairDisplay-Medium";
    src: url("../webfonts/PlayfairDisplay-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlayfairDisplay-SemiBold";
    src: url("../webfonts/PlayfairDisplay-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* ONCLICK-TOP */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 30px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	line-height: 46px;
	font-size: 16px;
	color: var(--main-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons';
	content: '\f062';
	font: var(--fa-font-solid);
	text-align: center;
	line-height: 46px;
	font-size: 16px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--main-color), var(--black));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--main-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
/* ONCLICK-TOP */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 7px;
}
body::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
    transition: 0.5s all;
}
body::-webkit-scrollbar-thumb:hover {
	background-color: var(--main-color);
}
/* SCROLL-CSS */

/* HEADER-CSS */
.header-top{
	background-color: var(--main-color);
	text-align: center;
	padding: 10px 0px;
}
.header-top p{
	font-size: 14px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
}
.header-flex{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0px;
}
.header-nav ul{
	display: flex;
	align-items: center;
	gap: 50px;
}
.header-nav ul li a{
	font-size: 16px;
	font-family: var(--adamina-regular);
	color: var(--black);
	position: relative;
	transition: .3s all;
}
.header-nav ul li a::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -5px;
	background-color: var(--green);
	transform-origin: left;
	transform: scale(0);
	transition: .3s all;
}
.header-nav ul li a:hover{
	color: var(--green);
}
.header-nav ul li a:hover::before{
	transform: scale(1);
}
.header-nav ul li:last-child a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 60px;
	background-color: var(--green);
	font-size: 16px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.header-nav ul li:last-child a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.header-nav ul li:last-child a:hover{
	color: var(--white);
	background-color: transparent;
}
.header-nav ul li:last-child a:hover::before{
	transform: translate(0);
}
.header-nav ul li:last-child a:hover i{
	transform: rotate(0deg);
}
.header-nav ul li:last-child a i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
/* HEADER-CSS */

/* INDEX-CSS */
.index-banner-wrapper {
    padding: 20px 0px 50px 0px;
}
.index-banner-wrap-text h6 {
    font-size: 60px;
    font-family: var(--playfairDisplay-medium);
    color: var(--black);
    margin: 0px 0px 20px 0px;
    position: relative;
}
.banner-text-lines {
    position: absolute;
    top: -50px;
    right: -20px;
}
.index-banner-wrap-text p{
	font-size: 16px;
	font-family: var(--gothicA1-regular);
	color: #13112699;
	margin: 0px 0px 20px 0px;
}
.index-banner-wrap-fields{
	display: flex;
	align-items: center;
	gap: 10px;
}
.index-banner-wrap-fields input{
	width: 200px;
	height: 60px;
	background-color: var(--white);
	color: #13112699;
	border: none;
	border-radius: 7px;
	padding: 0px 20px;
	font-size: 14px;
	font-family: var(--gothicA1-regular);
}
.index-banner-wrap-fields select{
	width: 200px;
	height: 60px;
	background-color: var(--white);
	color: #13112699;
	border: none;
	outline: none;
	border-radius: 7px;
	padding: 0px 20px;
	font-size: 14px;
	font-family: var(--gothicA1-regular);
}
.index-banner-wrap-fields button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 60px;
	border: none;
	background-color: var(--green);
	font-size: 16px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.index-banner-wrap-fields button::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.index-banner-wrap-fields button:hover{
	background-color: transparent;
	color: var(--white);
}
.index-banner-wrap-fields button:hover::before{
	transform: translate(0);
}
.index-banner-wrap-fields button:hover i{
	transform: rotate(0deg);
}
.index-banner-wrap-fields button i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
.index-banner-img {
    position: relative;
}
.index-banner-img-top {
    position: absolute;
    top: 30px;
    right: -130px;
    animation: float 3s cubic-bezier(.44,.46,.75,.74) infinite;
}
.index-banner-img-bottom {
    position: absolute;
    bottom: -40px;
    left: -150px;
    animation: float 3.3s cubic-bezier(.44,.46,.75,.74) infinite;
}
.index-banner-img-arrow {
    position: absolute;
    left: -150px;
    top: 200px;
}
.index-first-wrapper{
	background-color: var(--main-color);
	padding: 30px 0px;
}
.index-first-wrap-text{
	text-align: center;
}
.index-first-wrap-text h6{
	font-size: 30px;
	font-family: var(--playfairDisplay-medium);
	color: var(--white);
	margin: 0px 0px 30px 0px;
}
.index-first-wrap-logo {
    display: flex;
    align-items: center;
    gap: 100px;
}
.index-second-wrapper{
	padding: 150px 0px;
	position: relative;
	overflow: hidden;
}
.index-second-wrap-bg {
    position: absolute;
    top: -23%;
    left: -6%;
    opacity: 0.4;
}
.index-second-wrap-box-icon{
	width: 65px;
	height: 65px;
	border-radius: 40px;
	background: #E3F5FF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: ;
}
.index-second-wrap-box-1-text h6{
	font-family: var(--playfairDisplay-medium);
	font-size: 40px;
	color: var(--black);
	margin: 0px 0px 5px 0px;
	transition: 0.5s all;
}
.index-second-wrap-box-1-text p{
	font-family: var(--gothicA1-regular);
	font-size: 20px;
	color: rgba(19, 17, 38, 0.60);
}
.index-second-wrap-box-1 {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
    width: 40%;
	transition: 0.5s all;
}
.index-second-wrap-box-icon img{
	transition: 0.5s all;
}
.index-second-wrap-box-1:hover{
	background: #258DCA;
}
.index-second-wrap-box-1:hover .index-second-wrap-box-1-text h6{
	color: var(--white);
}
.index-second-wrap-box-1:hover .index-second-wrap-box-1-text p{
	color: var(--white);
}
.index-second-wrap-main-boxsflex {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 25px;
	position: relative;
}
.index-second-box-ts-1 {
    transform: translate(0px, -50px);
}
.index-second-box-ts-3 {
    transform: translate(0px, -50px);
}
.index-second-wrap-main-boxsflex:hover .index-second-box-ts-1 {
    transform: translate(0px, 0px);
}
.index-second-wrap-main-boxsflex:hover .index-second-box-ts-3 {
    transform: translate(0px, 0px);
}
.index-second-wrap-main-boxsflex:hover .index-second-box-ts-2 {
    transform: translate(0px, -50px);
}
.index-second-wrap-main-boxsflex:hover .index-second-box-ts-4 {
    transform: translate(0px, -50px);
}
.index-second-wrap-text{
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 20px;
}
.index-second-wrap-text h6{
	font-family: var(--playfairDisplay-medium);
	font-size: 50px;
	color: var(--black);
}
.index-second-wrap-text p{
	font-family: var(--gothicA1-regular);
	font-size: 16px;
	color: rgba(19, 17, 38, 0.60);
}
.index-second-wrap-text a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 60px;
	border: none;
	background-color: var(--green);
	font-size: 16px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.index-second-wrap-text a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.index-second-wrap-text a:hover{
	background-color: transparent;
	color: var(--white);
}
.index-second-wrap-text a:hover::before{
	transform: translate(0);
}
.index-second-wrap-text a:hover i{
	transform: rotate(0deg);
}
.index-second-wrap-text a i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
.index-second-wrap-text-img{
	position: absolute;
	left: 11%;
	top: 2%;
}
.index-second-wrap-text-imgb{
	position: absolute;
	right: 55%;
	bottom: 14%;
}
.index-second-wrap-box-icon img {
    width: 50%;
}
.index-third-wrapper{
	background-image: url(../images/third-bg.png);
	background-size: cover;
	background-position: top;
	padding: 100px 0px;
	z-index: 1;
	position: relative;
}
.index-third-wrap-text{
	text-align: center;
}
.index-third-wrap-text h6{
	font-size: 50px;
	font-family: var(--playfairDisplay-medium);
	color: var(--white);
	width: 60%;
	margin: 0 auto 30px auto;
}
.index-third-wrap-box{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	padding: 40px 0px;
	position: relative;
}
.index-third-wrap-box-img img {
    width: 440px;
    height: 500px;
    object-fit: cover;
}
.index-third-wrap-box-img {
    position: absolute;
    right: 15%;
    top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translate(200px, 0px);
    transition: 1s ease-out;
    z-index: 1;
}
.index-third-wrap-box:hover .index-third-wrap-box-img{
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}
.index-third-wrap-box-text h6{
	font-size: 35px;
	font-family: var(--gothicA1-extraBold);
	color: var(--white);
	margin: 0px 0px 10px 0px;
}
.index-third-wrap-box-text p{
	font-size: 20px;
	font-family: var(--gothicA1-regular);
	color: #FFFFFF99;
	width: 70%;
}
.index-third-wrap-box-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 47px;
	background-color: var(--white);
	border-radius: 10px;
	color: var(--black);
	transition: .5s linear;
}
.index-third-wrap-box-btn a i{
	transform: rotate(-50deg);
	font-size: 20px;
	transition: .5s ease-in;
}
.index-third-wrap-box:hover .index-third-wrap-box-btn a{
	background-color: var(--green);
	color: var(--white);
}
.index-third-wrap-box:hover .index-third-wrap-box-btn a i{
	transform: rotate(0);
}

.index-third-wrap-btn{
	display: flex;
	justify-content: center;
	margin: 100px 0px 0px 0px;
}
.index-third-wrap-btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 60px;
	border: none;
	background-color: var(--green);
	font-size: 16px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.index-third-wrap-btn a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.index-third-wrap-btn a:hover{
	background-color: transparent;
	color: var(--black);
}
.index-third-wrap-btn a:hover::before{
	transform: translate(0);
}
.index-third-wrap-btn a:hover i{
	transform: rotate(0deg);
}
.index-third-wrap-btn a i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
.index-fourth-wrapper{
	padding: 100px 0px;
	position: relative;
}
.index-fourth-wrap-bg img {
    opacity: 0.4;
    position: absolute;
    z-index: -1;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.index-fourth-wrap-ttext h6{
	font-family: var(--playfairDisplay-medium);
	font-size: 50px;
	color: var(--black);
	width: 60%;
	text-align: center;
	margin: 0px auto 25px auto;
}
.fourth-wrap-crbox-text h5{
	font-family: var(--gothicA1-semiBold);
	font-size: 14px;
	color: var(--green);
	margin: 0px 0px 10px 0px;
}
.fourth-wrap-crbox-text h6{
	font-family: var(--playfairDisplay-semiBold);
	font-size: 22px;
	color: #1A1A1A;
	margin: 0px 0px 10px 0px;
}
.fourth-wrap-crbox-text p{
	font-family: var(--gothicA1-regular);
	font-size: 14px;
	color: #666666b5;
	margin: 0px 0px 10px 0px;
}
.fourth-wrap-crbox-text a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 149px;
	height: 50px;
	border: none;
	background-color: var(--green);
	font-size: 14px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.fourth-wrap-crbox-text a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.fourth-wrap-crbox-text a:hover{
	background-color: transparent;
	color: var(--white);
}
.fourth-wrap-crbox-text a:hover::before{
	transform: translate(0);
}
.fourth-wrap-crbox-text a:hover i{
	transform: rotate(0deg);
}
.fourth-wrap-crbox-text a i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
.fourth-wrap-crbox{
	background: var(--white);
}
.fourth-wrap-crbox-text {
    padding: 30px 40px 20px 20px;
    z-index: 1;
    position: relative;
}
.fourth-wrap-crbox-img{
	overflow: hidden;
}
.fourth-wrap-crbox-img img {
    transition: 0.5s all;
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.fourth-wrap-crbox:hover .fourth-wrap-crbox-img img{
	transform: scale(1.3) rotate(10deg);
}
.index-fifth-wrapper{
	background-color: var(--main-color);
	position: relative;
	padding: 100px 0px;
}
.index-fifth-wrap-right-star {
    position: absolute;
    right: 0;
    top: 40px;
    animation: float 3s cubic-bezier(.44,.46,.75,.74) infinite;
}
.index-fifth-wrap-left-star {
    position: absolute;
    left: 0;
    bottom: 0;
    animation: float 3s cubic-bezier(.44,.46,.75,.74) infinite;
}
.index-fifth-wrap-text h6{
	font-size: 50px;
	font-family: var(--playfairDisplay-medium);
	color: var(--white);
	margin: 0px 0px 20px 0px;
}
.index-fifth-wrap-text p{
	font-size: 16px;
	font-family: var(--gothicA1-regular);
	color: #FFFFFF99;
}
.index-fifth-wrap-field{
	width: 100%;
	background-color: var(--white);
	padding: 5px 5px 5px 20px;
	height: 70px;
	display: flex;
	justify-content: space-between;
	border-radius: 7px;
	z-index: 1;
	position: relative;
}
.index-fifth-wrap-field input{
	width: 60%;
	border: none;
	border-radius: 7px;
	font-size: 14px;
	font-family: var(--gothicA1-regular);
	color: #13112699;
}
.index-fifth-wrap-field button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
	height: 60px;
	border: none;
	background-color: var(--green);
	font-size: 16px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
	border-radius: 7px;
	gap: 15px;
	transition: .3s all;
	position: relative;
	overflow: hidden;
}
.index-fifth-wrap-field button::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-color);
	transform-origin: left;
	z-index: -1;
	transform: translate(-200px, 0px);
	border-radius: 7px;
	transition: .5s all;
}
.index-fifth-wrap-field button:hover::before{
	transform: translate(0);
}
.index-fifth-wrap-field button:hover{
	background-color: transparent;
	color: var(--white);
}
.index-fifth-wrap-field button:hover i{
	transform: rotate(0deg);
}
.index-fifth-wrap-field button i{
	transform: rotate(-50deg);
	font-size: 10px;
	transition: .3s all;
}
/* INDEX-CSS */

/* INNER-CSS-HERE */

.common-banner-wrapper{
	height: 30vh;
	display: flex;
	align-items: center;
	background-image: url(../images/third-bg.png);
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
}
.common-banner-text h6{
	font-size: 60px;
    font-family: var(--playfairDisplay-medium);
    color: var(--white);
}
.about-first-wrapper{
	padding: 100px 0px;
	position: relative;
	overflow: hidden;
}
.about-first-wrap-text h6{
	font-family: var(--playfairDisplay-medium);
	font-size: 50px;
	color: var(--black);
	margin: 0px 0px 20px 0px;
}
.about-first-wrap-text p{
	font-family: var(--gothicA1-regular);
    font-size: 16px;
    color: rgba(19, 17, 38, 0.60);
	margin: 0px 0px 10px 0px;
}
.about-first-wrap-img {
    width: 70%;
    margin: 0 auto;
}
.common-banner-wrapper1{
	height: 30vh;
	display: flex;
	align-items: center;
	background: linear-gradient(43deg, rgba(130,186,63,1) 20%, rgba(37,141,202,1) 88%);
}
.contact-first-wrapper{
	padding: 100px 0px;
}
.contact-first-wrap-text{
	& h2{
	font-size: 60px;
	font-family: var(--playfairDisplay-medium);
	color: var(--black);
	margin: 0px 0px 10px 0px;
	}
	& h6{
		font-family: var(--playfairDisplay-semiBold);
		font-size: 16px;
		color: var(--black);
		margin: 0px 0px 40px 0px;
	}
}
.contact-first-input{
	& input{
		width: 100%;
		height: 50px;
		background-color: transparent;
		border: 1px solid var(--black);
		padding: 0px 20px;
		font-size: 16px;
		font-family: var(--gothicA1-regular);
		color: var(--black);
		margin: 0px 0px 20px 0px;
		border-radius: 10px;
	}
	& textarea {
		width: 100%;
		height: 200px;
		background-color: transparent;
		border: 1px solid var(--black);
		padding: 15px 20px;
		resize: none;
		font-size: 16px;
		font-family: var(--gothicA1-regular);
		color: var(--black);
		margin: 0px 0px 20px 0px;
		border-radius: 10px;
	}
	& button{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 170px;
		height: 60px;
		background-color: var(--green);
		font-size: 16px;
		font-family: var(--gothicA1-semiBold);
		color: var(--white);
		border-radius: 7px;
		gap: 15px;
		transition: .3s all;
		position: relative;
		overflow: hidden;
		border: none;

		&:hover{
			color: var(--white);
			background-color: transparent;
		}

		&::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: var(--main-color);
			transform-origin: left;
			z-index: -1;
			transform: translate(-200px, 0px);
			border-radius: 7px;
			transition: .5s all;
		}
		
		&:hover::before {
			transform: translate(0);
		}
	}
	
	
}
/* INNER-CSS-HERE */


/* FOOTER-CSS */
.footer-wrapper{
	padding: 100px 0px 0px 0px;
}
.footer-link h6{
	font-size: 23px;
	font-family: var(--playfairDisplay-semiBold);
	color: var(--black);
	margin: 0px 0px 30px 0px;
}
.footer-link ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.footer-link ul li a{
	font-size: 16px;
	font-family: var(--gothicA1-regular);
	color: var(--black);
	line-height: 2;
	transition: .3s all;
}
.footer-link ul li a:hover{
	color: var(--green);
}
.footer-link ul li i{
	color: var(--green);
}
.footer-link-img{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.footer-link-img img{
	transition: .3s all;
    width: 30%;
}
.footer-link-img img:hover{
	transform: scale(1.1);
}
.copyright{
	background-color: var(--main-color);
	padding: 15px 0px;
	text-align: center;
	margin: 100px 0px 0px 0px;
}
.copyright p{
	font-size: 14px;
	font-family: var(--gothicA1-semiBold);
	color: var(--white);
}
/* FOOTER-CSS */

/* ANIMATIONS */
@keyframes float {
	0%{
		transform: translate(0px , -40px);
	}
	50%{
		transform: translate(0px , 0px);
	}
	100%{
		transform: translate(0px , -40px);
	}
}
/* ANIMATIONS */