@import url('style.css');


body {
    background: var(--bg-color);
    color: var(--blue-300);
    overflow-y: scroll;
}


.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.wrapper .heading-social-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    gap: 10px;
}

.about-logo {
    font-size: 30px;
    color: #fff;
    font-family: 'Permanent Marker';
    width: 100%;
    text-align: center;
    
}


.heading-social-container img {
    width:150px;
}
.logo span {
    color: var(--blue-100);
}

#about,
#features {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    position: relative;
    padding-bottom: 50px;
    width: 80%;
}

#features {
    padding-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .sub-heading {
    margin-bottom: 20px;
    color: var(--blue-500);

}

#about .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    
}

#about .about-content p {
    font-weight: 700;
    text-align: center;
    color: #666;
}


#features .features-container{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
    width: 80%;

}

#features .features-container .feature-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: 0.5s;
}

.reverse{
    flex-direction: row-reverse;
}



#features .features-container .feature-container p {
    width: 60%;
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

#features .features-container .feature-container .feature {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--blue-300);
    box-shadow: inset 0px 0px 100px var(--blue-100), 0px 0px 0px var(--blue-100);
    transition: 0.5s;
    overflow: hidden;
    position: relative;
}

#features .features-container .feature-container .feature img{
    width: 130%;
    height: 120%;
    transition:  0.5s;
}

#features .features-container .feature-container .feature .desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(2, 62, 138 , 0.5);
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    border-radius: 50%;
}

#features .features-container .feature-container .feature:hover {
    box-shadow: inset 0px 0px 0px var(--blue-100), 0px 0px 50px var(--blue-100);
}



#features .features-container .feature-container .feature:hover .desc {
    transform: scale(1) rotateZ(360deg);
    opacity: 1;
}

#features .features-container .feature-container .feature i {
    font-size: 50px;
    color: var(--blue-600);
    margin-bottom: 20px;
}

#features .features-container .feature-container .feature h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--blue-100);
}

.wrapper .sub-heading {
    font-size: 25px;
    color: var(--blue-500);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 50px;
    text-align: center;
    width: 100%;
}


#developedBy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
    width: 100%;
    padding-bottom: 50px;
    position: relative;
    margin-bottom: 50px;
}

#developedBy .developers-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
    width: 100%;
}

#developedBy .developers-container .developer{ 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    background: var(--blue-300);
    box-shadow: inset 0px 0px 100px var(--blue-100), 0px 0px 0px var(--blue-100);
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

#developedBy .developers-container .developer img {
    width: 100%;
    transition:  0.5s;
}

.developer-desc {
    position: absolute;
    bottom: -100%;
    right: 0;
    left: 0;
    background: rgba(3, 4, 90, 0.7);
    padding: 25px;
    color: #fff;
    height: 33.33%;
    transition: 0.5s;
}

.developer-desc h3 {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: absolute;
    left: -100%;
    transition: 0.5s 0.5s;
}

.developer .developer-desc p {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--blue-100);
    opacity: 0;
    transition:  0.5s  1s;
    padding-top: 35px;

}

.developer:hover img {
    transform: scale(1.2);
}


.developer:hover .developer-desc {
    bottom: 0;
}

.developer:hover .developer-desc h3 {
    left: 25px;
}

.developer:hover .developer-desc p{
    opacity: 1;
}


#about::after,
#features::after,
#developedBy::after {
    content: "";
    display: block;
    width: 15%;
    height: 4px;
    background: var(--blue-300);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* FOOTER */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 50px;
    width: 100%;
    padding-bottom: 20px;
    position: relative;
    background: #111;
    z-index: 3;
}

footer p {
    color: #fff;
    margin-top: 20px;
}

footer .logo-container {
    width: 100%;
    padding-left: 20px;
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 50px;
    width: 90%;
}


footer .logo-container  a {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff ;
    font-family: 'permanent marker', serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .logo-container  a img {
    width: 100px;
}

footer h3 {
    font-size: 18px;
    font-weight: 700;
    color: #eee;
    text-transform: uppercase;
}

footer .footer-container .other-links {
    gap: 50px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

footer .footer-container .other-links .other-links-list{
    list-style: none;
    margin-top: 5px;
    padding: 0;
}

footer .footer-container .other-links ul li a,
footer .footer-container .other-links .other-links-list a  {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

footer .footer-container .other-links a:hover{
    color: var(--blue-100);
}

footer .footer-container .other-links .other-links-list {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    margin-top: 5px;
}

footer .footer-container .other-links .other-links-list a i{
    margin-right: 5px;
}

footer .footer-container .contact-email {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 30%;
}


footer .footer-container .contact-email .inputs-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

footer .footer-container .contact-email .inputs-container input,
footer .footer-container .contact-email .inputs-container textarea {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.5s;
    background: #222;
    color: #fff;
}

footer .footer-container .contact-email .inputs-container input:hover,
footer .footer-container .contact-email .inputs-container textarea:hover,
footer .footer-container .contact-email .inputs-container input:focus,
footer .footer-container .contact-email .inputs-container textarea:focus {
    border: 1px solid var(--blue-100);
}

footer .footer-container .contact-email .inputs-container input::placeholder,
footer .footer-container .contact-email .inputs-container textarea::placeholder {
    color: var(--blue-100);
}

footer .footer-container .contact-email button {
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    background: var(--blue-500);
    color: #fff;
    cursor: pointer;
}


footer .footer-container .contact-email button:hover {
    background: var(--blue-400);
    color: #fff;
}
/* MEDIA QUERIES */



@media (max-width: 945px) {
    #developedBy .developers-container .developer {
        width: 40%;
    }
}

@media (max-width: 891px) {
    #features .features-container .feature-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    #features .features-container {
        gap: 50px;
    }

    #developedBy .developers-container .developer {
        width: 40%;
    }
    footer .footer-container .contact-email {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

        
}

@media (max-width: 725px) {
    #developedBy .developers-container .developer {
        width: 80%;
    }
}

