@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    scroll-behavior: smooth;
}

strong {
    text-transform: uppercase;
}


/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 100px;
    transition: 0.5s;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 50px;
}

nav ul li a {
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.25s;
    color: #fff;
}

nav ul li a:hover {
    color: #aaa;
}

nav ul li a:active {
    color: #555;
}

/* Sticky Header */

header.sticky {
    padding: 20px 100px;
    box-shadow: 0 10px 20px rgb(0, 0, 0, 0.1);
    background-color: #fff;
}

header.sticky .logo {
    color: #111;
}

header.sticky nav ul li a {
    transition: 0.25s;
    color: #111;
}

header.sticky nav ul li a:hover {
    color: #555;
}

header.sticky nav ul li a:active {
    color: #aaa;
}


/* Sections */

section {
    min-height: 100vh;
    padding: 100px;
}

.dark {
    background-color: #111;
    color: #fff;
}

.light {
    background-color: #fff;
    color: #111;
}

.heading {
    width: 100%;
    margin-bottom: 80px;
    text-align: center;
}

.heading h2 {
    font-size: 32px;
    font-weight: 600;
}

.heading p {
    font-size: 24px;
    font-weight: 500;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content h3 {
    font-size: 24px;
    font-weight: 600;
}

.content p {
    font-size: 20px;
    font-weight: 400;
}

.button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
    background-color: #2196f3;
    color: #fff;
}

.button:hover {
    background-color: #0a6fc2;
}

.button:active {
    background-color: #064579;
}


/* Home */

#home .content {
    flex-wrap: wrap;
}

#home .text-box {
    width: 50%;
}

#home h2 {
    font-size: 3em;
    font-weight: 500;
}

#home h2 span {
    font-size: 1.5em;
    font-weight: 700;
}

#home h3 {
    font-size: 1.5em;
    font-weight: 500;
}

#home .button {
    margin-top: 50px;
}

#home img {
    max-width: 500px;
    height: 70vh;
    margin-top: 80px;
    border: 10px double #fff;
}


/* About */

#about .text-box {
    width: 40%;
    padding-right: 50px;
}

#about .content h3 {
    margin-bottom: 30px;
}

#about .content p {
    margin-bottom: 20px;
}

#about .content a {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s;
    color: #ff751a;
}

#about .content a:hover {
    color: #cc5200;
}

#about .content a:active {
    color: #993d00;
}

#about .images {
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

#about .images img {
    max-width: 400px;
    height: 50vh;
    margin-top: 50px;
}


/* Services */

#services .heading {
    margin-bottom: 50px;
}

#services .content {
    justify-content: center;
    flex-wrap: wrap;
}

#services .text-box {
    width: 500px;
    min-height: 300px;
    padding: 30px 40px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
    background-color: #222;
}

#services .text-box:hover {
    background-color: #2196f3;
}

#services .text-box img {
    margin-bottom: 20px;
    filter: invert(1);
}

#services .text-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

#services .text-box p {
    font-size: 16px;
}


/* Work */

#work .text-box {
    width: 40%;
    text-align: center;
}

#work .content h3 {
    margin-bottom: 30px;
    font-size: 4vw;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: orange;
}

#work .content p {
    margin-bottom: 20px;
}

#work .button {
    margin-top: 30px;
    background-color: #ff751a;
}

#work .button:hover {
    background-color: #cc5200;
}

#work .button:active {
    background-color: #993d00;
}

#work .video {
    width: 50%;
}

#work .video iframe {
    width: 100%;
    height: 50vh;
}

#work .video p {
    position: relative;
    top: -5px;
    margin: 0;
    font-size: 12px;
    font-style: italic;
    text-align: right;
}


/* Contact */

#contact .heading {
    margin-bottom: 100px;
}

#contact .content {
    justify-content: space-around;
    align-items: flex-start;
}

#contact .content h3 {
    margin-bottom: 20px;
    font-weight: 500;
}

/* Contact Info */

#contact .info .field {
    display: flex;
    padding: 20px 0;
}

#contact .info i {
    width: 50px;
    margin-top: 3px;
    font-size: 24px;
}

#contact .info h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2196f3;
}

#contact .info p,
#contact .info address {
    padding-top: 10px;
}


/* Contact Form */

#contact form {
    width: 50%;
    display: flex;
    flex-direction: column;
}

#contact form input,
#contact form textarea {
    margin-bottom: 20px;
    border: none;
    padding: 15px;
    font-size: 16px;
    outline: none;
    resize: none;
    background-color: #222;
    color: #fff;
}

#contact form textarea {
    height: 200px;
}

#contact form input::placeholder,
#contact form textarea::placeholder {
    color: #999;
}

#contact form input[type="submit"] {
    width: 200px;
    align-self: flex-end;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.5s;
    background-color: #2196f3;
}

#contact form input[type="submit"]:hover {
    background-color: #0a6fc2;
}

#contact form input[type="submit"]:active {
    background-color: #064579;
}


/* Footer */

footer {
    position: relative;
    padding: 10px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
}