/* RESET CSS */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* font-family: 'Nunito Sans', sans-serif; */
    font-family: 'Quicksand', sans-serif;
    color: var(--dark-color);
}

:root {
    --dark-color: rgb(20 20 20);
    --primary-color: #4285f4;
    --light-color: white;
    --lightgray-color: rgb(241 241 241);
    --gray-color: rgb(137 137 137);
}

/* Poppins Font*/
@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');

/* Quicksand */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Navigation Bar */
#navbar {
    padding: 12px 200px;
    background-color: var(--light-color);
    /* background-color: lightblue; */
    position: relative;
    z-index: 1;
}

#logo h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 10px 0;
    letter-spacing: 1px;
    ;
}

#logo h2 span {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 500;
}

#navbar ul li {
    list-style: none;
}

#navbar ul li a {
    text-decoration: none;
    color: var(--dark-color);
    padding: 20px 23px;
    font-size: 16px;
    font-weight: 500;
    transition: all .28s;
}

#navbar ul li a:hover {
    color: var(--primary-color);
    transition: all .28s;
}

/* Hero Section */
#hero {
    width: 100%;
    height: 690px;
    /* border: 2px solid orange; */
    position: relative;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
}

/* Hero Section: Content */
#hero .hero-main-content h1 {
    margin: 150px 0 12px;
    font-size: 3.5rem;
    padding-right: 500px;
    font-family: 'Quicksand', sans-serif;
}

#hero .hero-main-content p {
    width: 530px;
    color: var(--gray-color)
}

/* Hero Section: Button */
.btn {
    margin: 50px 0px;
}

.btn a {
    text-decoration: none;
    padding: 14px 25px;
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    letter-spacing: .7px;
    transition: all .28s;
}

.btn a:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all .28s;
    box-shadow: 0px 2px 12px 0px #0000004d;
}

/* Hero Section: Image */
#hero .hero-image img {
    position: absolute;
    top: -10%;
    right: -3%;
    bottom: 0%;
    z-index: -1;
}

/* Feature Section */
#imagine-feature {
    border: none;
}

/* Feature Section: heading */
.feature-title h2 {
    margin: 32px 0 6px;
    font-size: 2.5rem;
}

.feature-title p {
    line-height: 28px;
    font-size: 1.1rem;
    padding: 0 250px;
    color: var(--gray-color);
}

/* Feature Section: Cards */
#imagine-feature .card-group {
    gap: 2rem;
    margin: 100px 0;
}

#imagine-feature .card {
    width: 33%;
    background-color: var(--lightgray-color);
    padding: 55px 23px;
    border-radius: 8px;
    transform: translateY(20px);
    transition: all .28s;
}

#imagine-feature .card:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(0px);
    transition: all .28s;
    box-shadow: 0px 0px 12px 1px #2e2e2e22;
}

#imagine-feature .card h3 {
    font-size: 1.14rem;
    margin-bottom: 14px;
    font-weight: 500;
}

#imagine-feature .card:hover h3 {
    color: var(--light-color);
}


#imagine-feature .card p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 23px;
    color: var(--gray-color);
}

#imagine-feature .card:hover p {
    color: var(--light-color);
}

#imagine-feature .card a {
    color: var(--primary-color);
    text-decoration: none;
}

#imagine-feature .card:hover a {
    color: var(--light-color);
}


/* Cards: Icons */
.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    top: -18%;
    background-color: var(--primary-color);
}

.card:hover .card-icon {
    background-color: var(--light-color);
    box-shadow: 0px 0px 12px 1px #2e2e2e14;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--light-color);
    stroke: var(--light-color);
}

.card:hover .card-icon svg {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

/* Community Section */
#community {
    margin: 130px 0;
}

/* Community: community-image */
#community .community-image {
    width: 60%;
}

#community .community-image svg {
    width: 620px;
}

/* Community: community-content */
#community .community-content {
    width: 40%;
}

#community .community-content h2 {
    font-size: 2.6rem;
    margin: 0 50px 25px 0;
    font-weight: bolder;
}

#community .community-content>p {
    font-size: .9rem;
    line-height: 26px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--gray-color);
}

/* Community: feedback-card */
#community .feedback-card {
    border-left: 12px solid var(--primary-color);
    border-radius: 4px;
    padding: 18px 20px;
    box-shadow: 0px 2px 12px 0px #0000004d;
}

#community .author {
    margin-bottom: 18px;
}

#community .author-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 16px;
}


#community .author-name h3 {
    font-size: 1.04rem;
    margin-bottom: 4px;
}

#community .author-name p {
    color: var(--gray-color);
    font-weight: 500;
}

.feedback-card>p {
    color: var(--gray-color);
    font-style: italic;
    line-height: 26px;
    font-weight: 500;
}

/* About us */
#about {
    background-color: var(--lightgray-color);
}

#about h1 {
    font-size: 2.5rem;
    padding: 50px 0 40px;
    text-align: center;
}


/* About us: Image */
#about .about-image {
    width: 60%;
    margin-bottom: 50px;
}

#about .about-image img {
    width: 550px;
}

/* About us: Content */
#about .about-content {
    width: 40%;
}

#about .about-content h3 {
    font-size: 1.9rem;
    margin: 18px 0 20px;
    font-weight: 700;
}

#about .about-content>p {
    font-size: 1rem;
    line-height: 35px;
    font-weight: 600;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.about-content .about-mark p {
    color: var(--gray-color);
    font-weight: 600;
}

.about-content .about-mark svg {
    fill: rgb(93, 161, 93);
    transform: scale(1.2);
}

/* Our Team */
#our-team h1 {
    font-size: 2.5rem;
    padding: 50px 0px 5px;
}

#our-team>p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-color);
    padding: 0 300px;
    line-height: 30px;
    margin-bottom: 60px;
}

/* Our Team: team member */
.team-members {
    margin: 40px 0;
}

.member {
    width: 355px;
    overflow: hidden;
}

.team-members .bio-image {
    overflow: hidden;
}

.team-members .bio-image img {
    width: 350px;
    transition: all .5s;
    object-fit: cover;
}

.team-members .member:hover img {
    transform: scale(1.07);
    transition: all .5s;
}

.team-members .social {
    /* height: 0px; */
    /* display: none; */
    opacity: 0;
    transform: translateY(20px);
    background-color: var(--primary-color);
    padding: 12px 0px;
    margin-top: -57px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.team-members .member:hover .social {
    /* display: block; */
    transform: translateY(0px);
    opacity: 1;
    /* height: 100%; */
    transition: 0.5s;
}

.team-members .social svg {
    width: 19px;
    fill: var(--light-color);
}

.fb-icons svg {
    width: 11px !important;
}

/* Our Team: Member Info */
.member-info {
    margin: 28px 0 16px;
    text-align: start;
}

.member-info h2 {
    font-size: 1.3rem;
    font-weight: 500;
}

.member-info h3 {
    margin: 6px 0 18px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .8px;
    ;
    font-size: .89rem;
    color: var(--primary-color);
}

.member-info p {
    color: var(--gray-color);
    font-size: .97rem;
    line-height: 26px;
    font-weight: 600;
}

/* Form Section */
#form-section {
    width: 100%;
    height: 960px;
    background-attachment: fixed;
    background-size: cover;
    position:relative;
}

#form-section::before{
    content:'';
    /* opacity: 0.5; */
    width:100%;
    height: 100%;
    background: url('Screenshot\ 2024-01-17\ 155741.png') no-repeat fixed;
    background-size:cover ;
    position:absolute;
    z-index:-1;
}

/* Form Section: Heading */
#form-section>h2 {
    text-align: center;
    ;
    font-size: 2.5rem;
    padding: 50px 0px 5px;
    margin-bottom: 60px;
    color: var(--light-color);
}

#form-section .form-container form {
    background-color: var(--light-color);
    padding: 50px 30px;
}

#form-section .form-container form>h3 {
    margin-bottom: 45px;
    font-size: 1.5rem;
    font-weight: 500;
}

#form-section .form-container .input-group {
    margin: 12px 0px;
}

#form-section .form-container .input-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

#form-section .form-container .input-group input {
    width: 100%;
    margin: 10px 0;
    padding: 8px 6px;
    border: 2px solid rgb(184, 184, 184);
    border-radius: 4px;
    outline: none;
}

#form-section .form-container .myInput {
    width: 50%;
}

#form-section .form-container .myInput-block {
    width: 100%;
}

#form-section .form-container .input-group textarea {
    width: 100%;
    margin: 10px 0;
    padding: 8px 6px;
    border: 2px solid rgb(184, 184, 184);
    border-radius: 4px;
    resize: none;
    outline: none;
}

.btn-submit {
margin: 10px 0 !important;
}

.btn-submit input{
    text-decoration: none;
    padding: 11px 22px;
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: 15px;
    color: var(--light-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    letter-spacing: .7px;
    transition: all .28s;
}


.btn-submit input:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all .28s;
    box-shadow: 0px 2px 12px 0px #0000004d;
}


/* Footer */
footer {
    padding: 40px 0;
}

/* Footer: socials */
.f-socials {
    margin-bottom: 24px;
}

.f-socials i {
    color: var(--primary-color);
}

/* Footer: Content */
footer h4 {
    font-weight: 500;
    color: var(--gray-color);
}