/*
    Template Name    : Envo - Environmental Charity Landing Page Template
    Author           :Available Coder
    Version          : 1.0
    Created          : 2021
    File Description : Main css file of the template
*/

/* -------------------- Table of Content -------------------- */
/* 
    1 => Components && Globals Styles
    2 => Header Styles
    3 => Home(Slider) Styles
    4 => About section Styles
    5 => Projects section Styles
    6 => Services section Styles
    7 => Donation section Styles
    8 => Team section Styles
    9 => Partners section Styles
    10 => Blog section Styles
    11 => Contact section Styles
    12 => footer Styles
    13 => scroll-top && preloader
*/


/* Start Variables */
:root {
    --main-time: 0.75s;
    --transition-style: ease;
}
/* End Variables */

/* Start components */
.main-btn {
    display: inline-block;
    width: fit-content;
    text-align: center;
    padding: 10px 25px;
    font-weight: 400;
    position: relative;
    z-index: 10;
}
.main-btn::before {
    content: '';
    position: absolute;
    transform: scaleX(0);
    transform-origin: bottom right;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: var(--main-color);
    z-index: -1;
    transition: transform .3s var(--transition-style);
}
.main-btn:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.section-padding {
    padding-top: 60px;
    padding-bottom: 50px;
}
.main-heading {
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
    font-size: 40px;
    padding-bottom: 7px;
    font-weight: 700;
    position: relative;
    width: fit-content;
}
.main-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: var(--main-color);
    transform: scaleX(0.5);
    transition: all var(--main-time) var(--transition-style);
}
.main-heading:hover::before {
    transform: scaleX(1);
}
p.main-p {
    text-align: center;
    margin: 10px auto;
    font-weight: 600;
}
/* End Components */

/* Start Global */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: unset;
    outline: unset;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
body {
    padding-top: 70px;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}
.container {
    padding:0 15px;
    margin: 0 auto;
}
/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* End Global */

/* Start Components */

/* End Components */

/* Start Header */
header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    transition: all 0.5s;
    height: 70px;
}
.header-scroll {
    height: unset;
    height: 60px !important;
}
header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    position: relative;
    font-size: 40px;
    font-weight: 900;
}
header .logo::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-text-fill-color: var(--main-color);
    -moz-text-fill-color: var(--main-color);
    -ms-text-fill-color: var(--main-color);
    -o-text-fill-color: var(--main-color);
    transition: var(--main-time) var(--transition-style);
    width: 0;
    overflow: hidden;
}
header .logo:hover::before {
    width: 100%;
}
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: all var(--main-time) var(--transition-style);
}
.ul-menu {
    left: 0px !important;
    opacity: 1 !important;
}
header nav ul li {
    width: 100%;
    margin: 0 5px; 
}
header nav ul li a {
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 15px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
header nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform .3s var(--transition-style);
    transform-origin: right center;
    z-index: -1;
}
header nav ul li a:hover::before,
header nav ul li a.active::before {
    transform: scaleX(1);
    transform-origin: left center;
}
button.menu-btn {
    display: none;
    position: relative;
    width: 35px;
    height: 25px;
    background-color: transparent;
    cursor: pointer;
    margin-right: 20px;
}
button.menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    transition: all 0.5s var(--transition-style);
    left: 0;
}
button.menu-btn span:nth-child(1) {
    top: 0;
}
button.menu-btn span:nth-child(2) {
    top: 50%;
}
button.menu-btn span:nth-child(3) {
    top: 100%;
}
.icons0 {
    transform: rotate(45deg);
    top: 50% !important; 
}
.icons1 {
    opacity: 0;
}
.icons2 {
    transform: rotate(-45deg);
    top: 50% !important;
}
button.light-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding-left: 10px;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
}
button.light-dark i {
    font-size: 25px;
}
/* End Header */

/* Start Home */
.home {
    width: 100%;
    height: 100vh;
    position: relative;
}
.home-slider > div {
    width: 100%;
    height: 100vh;
    position: relative;
}
.home-slider > div .content {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 75%;
    transform: translate(-50%,-50%);
    text-align: center;
    transition: var(--main-time) var(--transition-style);
    transition-delay: 0.5s;
    opacity: 0;
}
.tns-slide-active div.content {
    opacity: 1 !important;
}
.home .home-slider .content h1 {
    padding: 5px 15px 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #005f27;
    border-right: 0px solid var(--main-color);
    border-left: 0px solid var(--main-color);
    width: fit-content;
    transition: margin var(--main-time) var(--transition-style);
    transition-delay: 0.5s;
}
.tns-slide-active div.content h1 {
    margin-bottom: 40px !important;
}
.home .home-slider .content p {
    line-height: 1.8;
    margin-bottom: 10px;
    transform: scaleX(0);
    transition: transform var(--main-time) var(--transition-style);
    transition-delay: 0.75s;
    color: #ddd;
}
.tns-slide-active div.content > p {
    transform: scaleX(1) !important;
}
.home .home-slider .content a {
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity var(--main-time) var(--transition-style);
    transition-delay: 1s;
}
.tns-slide-active div.content > a {
    opacity: 1 !important;
}
.home-slider > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0%);
}
.home-slider > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.home .tns-controls button {
    position: absolute;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    overflow: hidden;
    color: #fff;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 10px;
    color: transparent;
    user-select: none;
}
.home .tns-controls button[data-controls="prev"] {
    left: 0;
}
.home .tns-controls button[data-controls="prev"]::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    content: "\f100";
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    color: #fff;
    border-radius: 50%;
    border-right: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.75s ease;
}
.home .tns-controls button[data-controls="prev"]:hover::before {
    transform: translate(-50% , -50%) rotate(360deg);
    color: var(--main-color);
    border-right-color: var(--main-color);
}
.home .tns-controls button[data-controls="next"] {
    right: 0;
}
.home .tns-controls button[data-controls="next"]::before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    content: "\f101";
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #fff;
    border-left: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.75s ease;
}
.home .tns-controls button[data-controls="next"]:hover::before {
    transform: translate(-50% , -50%) rotate(360deg);
    color: var(--main-color);
    border-left-color: var(--main-color);
}
.home .tns-nav {
    position: absolute;
    text-align: center;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.home .tns-nav button.tns-nav-active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.home .tns-nav button {
    border: unset;
    outline: unset;
    border: 1px solid #fff;
    cursor: pointer;
    text-align: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    background-color: transparent;
    transition: 0.75s ease;
}
/* End Home */

/* Start About */
.about {
    width: 100%;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-content > div {
    flex-basis: calc(50% - 30px);
}
.about-content .text {
    padding: 20px;
}
.about-content .text p {
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-content .text p span {
    font-size: 20px;
    font-weight: 600;
}
.about-content .comparison {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-content .comparison .field {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
}
.about-content .comparison .field .images {
    width: 100%;
    height: 100%;
    display: flex;
}
.about-content .comparison .field .images .img-1 {
    width: 100%;
    height: 100%;
    background: url(../images/earth.png) no-repeat;
    background-size: 300px;
    filter: grayscale(1);
}
.about-content .comparison .field .images .img-2 {
    position: absolute;
    width: 50%;
    height: 100%;
    background: url(../images/earth.png) no-repeat;
    background-size: 300px;

}
.about-content .comparison .field .comp-slider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 3px;
    z-index: 99;
}
/* End About */

/* Start History */
.history {
    width: 100%;
}
.history-cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}
.history-cont > div {
    flex-basis: calc(25% - 20px);
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 10;
}
.history-cont > div h3 {
    position: relative;
    padding-left: 60px;
    border: 2px solid var(--main-color);
    border-radius: 20px;
}
.history-cont > div h3 span {
    position: absolute;
    top: 0;
    left: -2px;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    border-radius: 20px 0 0 20px;
    font-size: 16px;
}
.history-cont > div .text {
    position: relative;
    padding: 10px;
    min-height: 250px;
}
.history-cont > div .text::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 80%;
    width: 100px;
    border-right: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    z-index: -1;
}
.history-cont > div .text p {
    line-height: 1.8;
    font-weight: 700;
    padding-bottom: 30px;
}
.history-cont > div .text a {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    padding: 5px 25px;
    font-size: 18px;
    font-weight: 700;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    transition: var(--main-time) var(--transition-style);
    overflow: hidden;
}
.history-cont > div .text a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0px;
    border-radius: 20px;
    transition: var(--main-time) var(--transition-style);
}
.history-cont > div .text a:hover::before {
    width: 100%;
}
/* End History */

/* Start Projects */
.work {
    width: 100%;
}
.work ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
}
.work ul li {
    padding: 5px 15px;
    color: var(--main-color);
    border-radius: 20px;
    border: 2px solid var(--main-color);
    cursor: pointer;
    font-weight: 600;
    margin: 0 15px;
}
.work .shuffle {
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(290px , 1fr));
    gap: 20px;
    padding: 10px 0;
}
.work .shuffle > div {
    position: relative;
    border-radius: 10px;
}
.work .shuffle > div img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.work .shuffle > div .text {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 10px;
    cursor: zoom-in;
    transform: scaleX(0);
    transition: var(--main-time) var(--transition-style);
}
.work .shuffle > div:hover .text {
    transform: scaleX(1);
}
.fancybox-infobar {
    display: none;
}
.fancybox-button--play {
    display: none;
}
.fancybox-button--thumbs {
    display: none;
}
.work .shuffle > div .text h3 {
    font-weight: 800;
    color: var(--main-color);
    letter-spacing: 2px;
    margin-bottom: 125px;
    text-align: center;
    opacity: 0;
    transition: var(--main-time) var(--transition-style);
    transition-delay: 0.4s;
}
.work .shuffle > div:hover .text h3 {
    margin-bottom: 25px;
    opacity: 1;
}
.work .shuffle > div .text > span {
    display: block;
    padding: 7px 20px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--main-time) var(--transition-style);
    transition-delay: 0.4s;
}
.work .shuffle > div:hover .text > span {
    opacity: 1;
}
.work .shuffle > div .text > span:hover {
    background-color: var(--main-color);
}
.work a.main-btn {
    display: block;
    margin: 20px auto;
}
/* End Projects */

/* Start Services */
.services {
    width: 100%;
}
.services .content {
    width: 100%;
    padding: 15px;
}
.services .content ul {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.services .content ul li {
    flex-basis: 25%;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    text-align: center;
}
.services .content > div {
    width: 100%;
}
.services .content > div:not(:first-of-type) {
    display: none;
}
.services .content > div .field {
    padding: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.services .content > div .field .text {
    flex-basis: 50%;
    padding: 20px 10px 0;
}
.services .content > div .field .text h2 {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
    font-size: 25px;
}
.services .content > div .field .text h2:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    border-right: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
}
.services .content > div .field .text .p-head {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}
.services .content > div .field .text .p-text {
    line-height: 1.8;
    text-align: justify;
}
.services .content > div .field .image {
    flex-basis: 45%;
    height: 400px;
}
.services .content > div .field .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End Services */

/* Start Donation */
.donation {
    padding: 30px 0;
    position: relative;
    width: 100%;
    background-image: url(../images/donate.jpg);
    background-size: cover;
}
.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 10%);
}
.donation .container {
    position: relative;
}
.donation .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.donation .content p {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.8;
    padding-right: 30px;
    margin: auto;
}
.donation .content a {
    border-radius: 25px;
    padding: 10px 30px;
    margin: 10px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    background-color: var(--main-color);
}
/* End Donation */

/* Start Team */
.team {
    width: 100%;
    background-color: #fff;
}
.team-cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 25px;
}
.team-cont > div {
    flex-basis: calc(25% - 20px);
}
.team-cont > div .person-disc {
    position: relative;
}
.team-cont > div .person-disc::before,
.team-cont > div .person-disc::after {
    content: '';
    position: absolute;
    top: -4px;
    height: 100%;
    width: 50px;
    border-top: 4px solid var(--main-color);
    border-bottom: 4px solid var(--main-color);
}
.team-cont > div .person-disc::before {
    left: -4px;
    border-left: 4px solid var(--main-color);
}
.team-cont > div .person-disc::after {
    right: -4px;
    border-right: 4px solid var(--main-color);
}
.team-cont > div .person-disc img {
    display: block;
    width: 100%;
}
.team-cont > div .person-disc h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 50%);
    color: #fff;
    text-align: center;
    padding: 2px;
}
.team-cont > div .person-info {
    text-align: center;
    background-color: var(--main-color);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    box-shadow: 2px -2px 10px 2px var(--main-color),
                -2px -2px 10px 2px var(--main-color);
}
.team-cont > div .person-info h3 {
    font-weight: 300;
    font-size: 18px;
}
.team-cont > div .person-info ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.team-cont > div .person-info ul li {
    margin: 10px;
}
.team-cont > div .person-info ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    transition: var(--main-time) var(--transition-style);
}
.team-cont > div .person-info ul li a i {
    font-size: 20px;
}
.team-cont > div .person-info ul li a:hover {
    color: var(--main-color);
}
/* End Team */

/* Start Partners */
.partners {
    width: 100%;
    padding: 10px;
}
.partners .partner {
    width: 100%;
}
.partners .partner .object {
    position: relative;
    height: 120px;
}
.partners .partner .object img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%,-50%);
    background-position: center;
}
/* End Partners */

/* Start Blog */
.blog {
    width: 100%;
    background-color: #fff;
}
.blog .blog-box {
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.blog .blog-box > div {
    flex-basis: calc((100% / 3) - 20px);
    border-radius: 20px;
    overflow: hidden;
}
.blog .blog-box > div > a {
    position: relative;
    width: 100%;
    display: block;
}
.blog .blog-box > div  > a::before {
    content: '\f35d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transform: scale(0);
    transition: var(--main-time) var(--transition-style);
}
.blog .blog-box > div  > a:hover::before {
    transform: scale(1);
}
.blog .blog-box > div > a img {
    width: 100%;
    display: block;
}
.blog .blog-box > div .content {
    padding: 10px;
}
.blog .blog-box > div .content h2 {
    font-weight: 700;
    padding-bottom: 10px;
}
.blog .blog-box > div .content p {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -o-box;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
    -o-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -o-box-orient: vertical;
    overflow: hidden;
}
.blog .blog-box > div .content .text {
    padding: 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}
.blog .blog-box > div .content .text span {
    display: block;
    color: var(--main-color);
    padding: 0 10px;
    font-weight: 600;
}
.blog .blog-box > div .content .text a {
    padding: 5px 10px;
    position: relative;
    display: block;
    font-weight: 600;
    width: fit-content;
    border-radius: 10px;
}
.blog .blog-box > div .content .text a:hover {
    background-color: var(--main-color);
}
/* End Blog */

/* Start Form */
.form {
    width: 100%;
}
.form-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.form-box > div {
    flex-basis: 45%;
}
.form-box > div form > div {
    display: block;
    position: relative;
    width: 100%;
    margin: 15px 0;
}
.form-box > div form > div > input[type="text"],
.form-box > div form > div > input[type="email"],
.form-box > div form > div > textarea {
    width: 100%;
    padding: 20px 10px 10px;
    font-size: 18px;
    border-radius: 0;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
}
.error {
    border-bottom: 1px solid #f32013;
    transition: 0.5s ease;
}
.error-message {
    color: #f32013;
    font-style: italic;
    display: block;
    position: absolute;
    padding: 1px 5px;
    top: 0;
    right: 0;
    font-size: 14px;
}
p.contact-message,
p.sub-message {
    display: none;
    margin-top: 10px;
    font-weight: 600;
    width: fit-content;
    max-width: 100%;
    padding: 5px 15px !important;
    border-radius: 10px;
    background-color: #34495e;
    color: #fff;
}
.form-message {
    border-color: red !important;
    border: 1px solid red;
    background-color: rgba(255, 0, 0, 0.5);
    padding: 10px 15px;
    width: fit-content;
}
.form-box > div form > div label {
    position: absolute;
    font-weight: 600;
    top: 25px;
    left: 10px;
    transform: translateY(-50%);
    background-color: transparent;
    transition: var(--main-time) var(--transition-style);
}
.form-box > div form > div textarea {
    display: block;
    padding: 30px 10px 10px !important;
    height: 200px;
    resize: vertical;
    transition: unset;
    font-family: 'Nunito', sans-serif;
}
.form-box > div form > div > input:focus ~ label,
.form-box > div form > div textarea:focus ~ label {
    top: 12px;
    left: 8px;
    color: var(--main-color) !important;
    font-size: 14px;
}
.form-box > div form > div > input:valid,
.form-box > div form > div textarea:valid {
    border-bottom: 1px solid var(--main-color);
}
.input-check {
    top: 12px !important;
    left: 8px !important;
    color: var(--main-color) !important;
    font-size: 14px;
}
.form-box > div form > input[type="submit"] {
    display: flex;
    margin-left: auto;
    padding: 10px 30px;
    background-color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
    letter-spacing: 2px;
    border: 2px solid var(--main-color);
    transition: var(--main-time) var(--transition-style);
}
.form-box > div form > input[type="submit"]:hover {
    color: var(--main-color);
    background-color: transparent;
    border: 2px solid var(--main-color);
}
.form-box .info {
    padding: 40px 10px 10px;
    font-size: 22px;
}
.form-box .info address {
    position: relative;
    margin-bottom: 25px;
    padding-left: 40px;
}
.form-box .info address:hover {
    color: var(--main-color);
}
.form-box .info address::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-style: normal;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
}
.form-box .info a.link {
    display: block;
    position: relative;
    margin-bottom: 25px;
    padding-left: 40px;
}
.form-box .info a.link:hover {
    color: var(--main-color);
}
.form-box .info a.link::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
}
.form-box .info a.phone {
    display: block;
    position: relative;
    padding-left: 40px;
}
.form-box .info a.phone:hover {
    color: var(--main-color);
}
.form-box .info a.phone::before {
    content: '\f879';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
}
/* End Form */

/* Start Footer */
.footer {
    width: 100%;
    background-color: #000;
}
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .links {
    flex-basis: 45%;
}
.footer .links > a.logo {
    margin: 25px 20px;
    width: fit-content;
    display: block;
    font-size: 50px;
    font-weight: 900;
    color: var(--main-color);
}
.footer .links .foot-links {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer .links .foot-links > div > h2 {
    color: #fff;
    padding: 10px 5px;
    border-bottom: 1px groove #fff;
}
.footer .links .foot-links > div > ul li {
    padding: 5px 10px;
    margin: 15px 0;
    color: #fff;
}
.footer .links .foot-links > div > ul li a {
    color: #cecece;
}
.footer .links .foot-links > div > ul li a:hover {
    text-decoration: underline;
}
.footer .subscribe {
    flex-basis: 35%;
}
.footer .subscribe .sub {
    width: 100%;
}
.footer .subscribe .sub p {
    color: #eee;
    padding-bottom: 15px;
}
.footer .subscribe form {
    width: 100%;
}
.footer .subscribe form > div {
    position: relative;
    width: 100%;
}
.footer .subscribe form input[type="email"] {
    border-radius: 0;
    padding: 10px;
    background-color: transparent;
    width: 100%;
    font-size: 18px;
    color: #000;
    background-color: #eee;
}
.footer .subscribe form input[type="submit"] {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 25px;
    font-weight: 600;
    background-color: var(--main-color);
    border-radius: 20px;
    cursor: pointer;
}
.footer .subscribe ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer .subscribe ul li {
    margin: 5px 10px;
}
.footer .subscribe ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    transition: var(--main-time) var(--transition-style);
}
.footer .subscribe ul li a:hover {
    border: 2px solid #000;
    color: #000;
    background-color: var(--main-color);
}
.footer .subscribe ul li a i {
    font-size: 22px;
}
.footer p.copy {
    color: #fff;
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 16px;
    padding: 15px;
    border-top: 1px solid #cacaca;
}
.footer p.copy span {
    color: var(--main-color);
}
/* End Footer */

/* Scroll button && Preloader */
.btn-scroll {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: var(--main-color);
    cursor: pointer;
    transform: rotate(0deg) scale(0);
    transition: var(--main-time) var(--transition-style);
    overflow: hidden;
}
.btn-scroll i {
    font-size: 20px;
}
.btn-scroll:before {
    content: '';
    position: absolute;
    border-radius: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
    transform: scaleX(0);
    transition: var(--main-time) var(--transition-style);
    z-index: -1;
}
.btn-scroll:hover::before {
    transform: scaleX(1);
}
.btn-show {
    transform: rotate(720deg) scale(1);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    position: relative;
    height: 200px;
    width: 500px;
    background-color: #fff;
    filter: blur(10px) contrast(30);
}
.loader > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.loader > div.c-1 {
    left: 0;
    animation: c1 2s alternate ease-in-out infinite;
}
.loader > div.c-2 {
    left: 100%;
    animation: c2 2s alternate ease-in-out infinite;
}
.loader > div.c-3 {
    left: 50%;
    top: 0%;
    animation: c3 2s alternate ease-in-out infinite;
}
.loader > div.c-4 {
    left: 50%;
    top: 100%;
    animation: c4 2s alternate ease-in-out infinite;
}
@keyframes c1 {
    to {left: 50%;}
}
@keyframes c2 {
    to {left: 50%;}
}
@keyframes c3 {
    to {top: 50%;}
}
@keyframes c4 {
    to {top: 50%;}
}
::selection {
    background-color: #7bed9f;
    color: #2f3542;
}
/* --------------- */