@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    margin: 10px 20px;
}

.navbar {
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.navbar li{
    list-style: none;
    display: inline-block;
    margin: 10px 10px;
    text-align: center;
}

.link {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}

.name-block {
    display: flex;
    justify-content: center;
}

.name {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border-style: solid none;
    border-color: orange;
    border-width: 10px;
    font-size: 2rem;
    padding: 3px 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.icon {
    padding: 1px 5px;
}

.icon a {
    text-decoration: none;
    color: black;
    font-size: 10px;
}

.title-underline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    border-style: none none solid none;
    padding-bottom: 20px;
    border-width: 2px;
    text-transform: uppercase;
    margin: 60px auto;
}

.description-1 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin: 20px auto;
}

.photo {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.photo img {
    width: 100%;
}

.title {
    font-family: 'Open Sans', sans-serif;
    margin: 24px auto;
}

.border-bottom {
    padding-bottom: 20px;
    border-bottom: solid;
    border-color: orange;
    border-width: 20px;
}

.description-2 {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin: 20px auto;
}

.bg-orange {
    background-color: rgb(252, 122, 0);
}

.cards {
    padding: 20px;
}

.card {
    background-color: white;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    padding-top: 16px;
    padding-bottom: 50px;
}

.icon-card {
    color: orange;
}

.card-title {
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px auto;
    font-size: 1.3rem;
}

.contact-info {
    padding: 20px 20px;
}

.contact-title {
    padding: 20px 0;
    font-size: 2rem;
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.description-2 {
    color: white;
    font-weight: 400;
    font-size: 1.1rem;
}

.contact-img {

}

.contact-img img {
    max-width: 300px;
    border-radius: 50%;
}

.contact-form {
    display: flex;
    justify-content: center;
}

.form-group {
    padding: 10px 1px;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.form-label {
    color:white
}

.form-control {
    padding: 5px 10px;
    background-color: transparent;
    color: white;
    border-style: none none solid none;
    border-color: white;
    border-width: 2px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-control::placeholder {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.form-button {
    display: flex;
    justify-content: center;
}

.form {
    padding-bottom: 50px;
    width: 400px;
}

.btn {
    width: 100%;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border-style: none;
}

@media only screen and (min-width: 715px) {
    .left-side {
        float: left;
        width: 50%;
        padding-right: 10px;
    }

    .right-side {
        float: right;
        width: 50%;
        padding-left: 10px;
    }

    .container {
        width: 100%;
    }

    .photo {
        padding-top: 0;
        margin-top: 0;
    }

    .name {
        font-size: 3rem;
        text-align: left;
    }
    .copyright {
        text-align: center;
      }

    .copyright a{
        color: #dd4814;
      }
}