@import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geo", "Roboto", sans-serif;

}
h1 {
    font-family: "Geo",  sans-serif;
    line-height: 120%;
    font-size: 40px;
}
p {
    font-family: "Roboto",  sans-serif;
    line-height: 160%;
    font-size: 16px;
}
a {
    font-family: "Geo",  sans-serif;
    font-size: 16px;
}
:root {
    --white-color: #FFFFFF;
    --cards-color: #0C1727;
    --card-background: #13243E;
    --cta-backgound: #D9D9D9;
    --btn-backgound: #4284EF;
    --btn-hover: #699DF2;
}
.wrapper    {
    width: 1140px;
    margin: 0 auto;
}
.header {
    padding: 60px 0;
    height: 100vh;
}
.nav {
    display: flex;
    justify-content: space-between;
    justify-items: center;
}
nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul li {
    list-style: none;
}
nav ul li a {
    text-decoration: none;
    margin-left: 40px;
    color: black;
    font-size: 18px;
    transition: .4s;
}
nav ul li a:hover ,  a:focus{
    border-bottom: 1px solid black;

}
.header-content {
    width: 100%;
    margin-top: 133px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
.header-content__left {
    width: 100%;
}
.header-content__left h1 {
    margin-bottom: 24px;
}
.header-content__left p {
    line-height: 160%;
    margin-bottom: 48px;
    font-size: 18px;
}
.header-content__left a {
    font-size: 18px;
    color: black;
    border-radius: 16px;
    padding: 16px 32px;
    background-color: var(--btn-backgound);
    text-decoration: none;
    transition: .4s;
}
.header-content__left a:hover {
    background-color: var(--btn-hover);
}
.header-content__right  {
    width: 100%;

}
.header-content__right img {
    width: 100%;
    height: 100%;
}
.works-section {
    height: 100vh;
    width: 100%;
    background-color: var(--card-background);
    display: flex;
    justify-content: center;
    align-items: center;
}
.words-section__cards {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.words-section__cards__card{
    background-color: var(--cards-color);
    color: white;
    padding: 48px;
    border-radius: 16px;
    width: 254px;
    height: 226px;
   
}
.words-section__cards__card h3 {
    font-size: 48px;
    border-bottom: 2px solid white;
}
.words-section__cards__card p {
    font-size: 18px;
}
.words-section__cards__card br {
    
}

.works-section__title {
 color: white;
 text-align: center;
 margin-bottom: 56px;
}

.cta-section {
    width: 100%;
    height: 50vh;
    background-color: var(--cta-backgound);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cta-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    
}
.cta-section a {
    font-size: 18px;
    color: black;
    border-radius: 16px;
    padding: 16px 32px;
    background-color: var(--btn-backgound);
    text-decoration: none;
    margin-top: 32px;
    transition: .4s;
}
.cta-section a:hover {
    background-color: var(--btn-hover);
}