/*! imports  */
@font-face {
    font-family: 'Raleway';
    src: url('./assets/fonts/Raleway-Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Raleway';
    src: url('./assets/fonts/Raleway-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: 'Open Sans';
    src: url('./assets/fonts/OpenSans_Condensed-Regular.ttf');
    font-weight: 400;
}

/*! Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
/*! Global */
:root {
    --Very-Dark-Blue: hsl(243, 87%, 12%);
    --Desaturated-Blue: hsl(238, 22%, 44%);
    --Bright-Blue: hsl(224, 93%, 58%);
    --Moderate-Cyan: hsl(170, 45%, 43%);
    --Light-Grayish-Blue: hsl(240, 75%, 98%);
    --Light-Gray: hsl(0, 0%, 75%);
    --white: white;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}
p {
    color: var(--Very-Dark-Blue);
    font-size: 20px;
    margin:10px 0px ;
}
header nav {
    display: flex;
    gap: 40px;
}
nav a{
    color: var(--Very-Dark-Blue);
}
input::placeholder {
    font-size: 10px;
    color: var(--Light-Gray);
    padding: 20px;
}
button:hover {
    cursor: pointer;
    color: var(--Light-Grayish-Blue);
    opacity: 0.7;
}
.productive a{
    color: var(--Moderate-Cyan);
}
.productive a:hover{
    cursor: pointer;
    opacity: 0.7;
}
.imgRadious p {
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    margin-left: 10px;
    font-weight: bold;
}
span {
    font-weight: normal;
    font-size: 8px;
}
.para article {
    display: flex;
    align-items: center;
    gap: 10px;
}
.para img {
    width: 15px;
}
.icons i {
    border: 1px solid var(--Light-Gray);
    padding: 6px;
    border-radius: 20px;
    color: var(--Light-Gray);
    font-size: 10px;
}
.icons i:hover {
    cursor: pointer;
    color: var(--Bright-Blue);
    border: 1px solid var(--Bright-Blue);
}
.first-links a:hover,
.second-links a:hover {
    color: var(--Bright-Blue);
}
/*!image query for large screen */
@media only screen and (min-width:900px) {
    a {
        color: var(--Light-Gray);
    }
    h2 {
        line-height: 1.6;
        margin-bottom: 10px;
        width: 290px;
    }    
/*! body content  */
/* Header */
header {
    padding: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img {
    width: 100px;
}
/* First Section */
.files {
    padding: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.files div:nth-child(1) {
    width: 30%;
}
.image {
    width: 50%;
}
.image img {
    width: 80%;
}
.textbox {
    display: flex;
    gap: 10px;
}
input {
    width: 250px;
}

button {
    background-color: var(--Bright-Blue);
    width: 150px;
    height: 30px;
    color: var(--white);
    border: 0;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}
/* Second Section */
.productive {
    background: url(./assets/images/bg-curve-desktop.svg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}
.productive a::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background-color: var(--Moderate-Cyan);
    margin-top: 2px;
}
.box {
    background-color: var(--white);
    width: 300px;
    padding: 20px;
    font-size: 12px;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--Light-Gray);
}
.box img {
    margin-bottom: 10px;
}
.box p {
    line-height: 1.8;
}
.imgRadious {
    display: flex;
    align-items: center;
}
.imgRadious img {
    width: 10%;
    height: 10%;
    border-radius: 20px;
}
/* Third Section */
.part3 {
    background-color: var(--Desaturated-Blue);
    height: 200px;
    padding: 3em;
    display: flex;
    align-items: center;
    color: var(--white);
}
.right-content p {
    width: 40%;
    margin-top: 10px;
    color: var(--Light-Grayish-Blue);
}
.email {
    width: 20%;
}
.email input {
    height: 30px;
    width: 120%;
}
.email button {
    margin-top: 10px;
    border-radius: 0;
}

/* Footer */
footer {
    background-color: var(--Very-Dark-Blue);
    padding: 3em;
}
.logo {
    width: 6%;
}
.down-links {
    display: flex;
    gap:calc(80% /4);
    margin-top: 15px;
}
.para p{
    color:var(--Light-Gray);
}
.first-links,
.second-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 12px;
}

 }
/*! image query small screen mobile & tablets */
@media only screen and (min-width:300px) and (max-width:870px){
    body{
        text-align: center;
    }
    /*? start header  */
 header{
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
 }
 header img{
    width: 20%;
 }
 header nav {
    gap: 20px;
}

/*? start main  */
.files{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px;
}
.image{
    width: 80%;
    margin: 3.5em 0em 2em 0em ;
}
h2{
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 1em;
}
.content1 p{
 line-height: 1.5;       
}
.textbox , .email{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap:1em;
}
input{
    height: 30px;
}
button {
    background-color: var(--Bright-Blue);
    height: 30px;
    color: var(--white);
    border: 0;
    border-radius: 3px;
    transition: opacity 0.3s ease;
    font-size: 10px;
}
/*? second section */
.productive {
    background: url(./assets/images/bg-curve-mobile.svg) no-repeat;
    background-size: cover;
    background-position:top;
}
.productive p{
    text-align: left;
    color: var(--Desaturated-Blue);
    font-size: 15px;
    
}
.productive a::after {
    content: '';
    display: block;
    width: 130px;
    height: 1px;
    background-color: var(--Moderate-Cyan);
    margin: 2px auto;
}
.box{
    text-align: left;
    margin: 2em 1em 4em 1em;
    background-color: var(--white);
    padding:10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--Light-Gray);
}
.box img {
    margin-bottom: 10px;
}
.box p {
    font-size: 10px;
    line-height: 1.7;
    color: var(--Very-Dark-Blue);
}
.imgRadious{
    display: flex;
    align-items: center;
}
.imgRadious img{
    width: 25px;
    height: 25px;
    border-radius: 100%;
}
/*?third section  */
.part3{
    background-color: var(--Desaturated-Blue);
    color: var(--white);
    padding: 3em;
}
h3{
    margin-bottom: 1em;
}
.right-content p{
    color: var(--Light-Grayish-Blue);
    line-height: 1.4;
}
/*? start footer*/
footer{
    background-color: var(--Very-Dark-Blue);
    text-align: left;
    padding: 3em;
}
.logo{
    width: 60%;
    margin-bottom: 20px;
}
.para p{
    color: var(--Light-Gray);
}
.first-links a , .second-links a{
    color: var(--Light-Gray);
    font-size: 12px;
}
.first-links , .second-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.first-links{
    margin-top: 30px;
}
.second-links{
    margin-top: 30px;
}
.icons{
    text-align: center;
    margin-top: 30px;
}
}