/* google font (azeret) */
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Azeret Mono", monospace;
}

/* ========= reuse css code ============= */
.text-primary {
    color: rgba(13, 19, 33, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.7;
}

section {
    margin: 80px 130px;
    /* padding: 80px 152px; */
}
.section-header {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
}
.section-title {
    color: rgba(13, 19, 33, 1);
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 21px 24px;
    border-radius: 8px;
    background: rgba(13, 19, 33, 1);
    color: white;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary{
    width: 171px;
    height: 47px;
    padding: 12px 20px 12px 20px;
    border: 1px solid rgba(13, 19, 33, 1);
    opacity: 0.7;
    margin-top: 28px;
    cursor: pointer;
}

/* ============ header section ======== */
header {
    /* max-width: 1440px; */
    height: 664px;
    background-image: url(../images/Hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner {
    max-width: 990px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 14px;
    text-align: center;
}
.banner-title {
    color: rgba(13, 19, 33, 1);
    font-size: 48px;
    font-weight: 600;
    line-height: 68px;
}

/* ======== Why development section ========== */
#why-development {
    background: rgba(13, 19, 33, 0.02);
    padding: 80px 152px;
    border-radius: 16px;
}
.development-items{
    margin-top: 50px;
}
.development-item{
    display: flex;
    justify-content: space-around;
    gap: 40px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1),rgba(255, 255, 255, 0) 100%);
    padding: 50px 0px;
    border-radius: 16px;
}
.item-2 {
    background: linear-gradient(270deg, rgba(255, 255, 255, 1),rgba(255, 255, 255, 0) 100%);
}
.item-info{
    max-width: 470px;
    width: 100%;
}
.item-title {
    color: rgba(13, 19, 33, 0.7);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 16px;
}
.item-img {
    max-width: 280px;
    width: 100%;
}


/* ========= my-inspiration =========== */

.section-content {
    border: 1px solid rgba(13, 19, 33, 0.2);
    height: 60vh;
    border-radius: 16px;
    margin-top: 48px;
    padding: 24px;
}

.section-content iframe {
    border-radius: 16px;
}

/* ========= My Current Target =========== */

.current-target-items {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.current-target-item {
    width: 330px;
    height: 280px;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;

}
.learn-more {
    color: rgba(13, 19, 33, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;

}

.item-1 {
    background: rgba(255, 76, 30, 0.05);
}
.item-2 {
    background: rgba(0, 76, 232, 0.05);
}
.item-3 {
    background: rgba(255, 223, 0, 0.05);
}

/* ========= My Next Target =========== */
.next-target-items {
    margin-top: 60px;
}

.next-target-item {
    border: 1px solid rgba(13, 19, 33, 0.2);
    border-radius: 16px;
    margin-top: 48px;
    padding: 24px;
    display: flex;
    gap: 18px;
}
.next-target-item img {
    width: 100px;
    height: 90px;
}
.next-target-item-info {
    display: flex;
    flex-direction: column;
    row-gap: 12px;  
}

/* ========= Support Section =========== */
#support {
    background-image:linear-gradient(0deg, rgb(16, 16, 16) -19.5%, rgba(16, 16, 16, 0) 100%), url("../images/handshake.jpg");
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 16px;
    
}
.support-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 130px 0;
}

#support .section-title {
    color: #FFF;
}

#support .text-primary {
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: #FFF;
}
form {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
input[type=text], input[type=submit] {
    padding: 18px 20px;
    border: 1px solid rgba(13, 19, 33, 0.15);
    border-radius: 8px;
}
input[type=text] {
    width: 600px;
    outline: 0;
}

input[type=submit] {
    cursor: pointer;
    color: rgba(13, 19, 33, 1);
    font-weight: 400;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 40px 140px;
}
