@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
	position: relative;
	max-width: 1200px;
	margin: 1rem auto;
	overflow: hidden;
    border: 1px solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #bb5013;
}

h1 {
    font-size: 2rem;
    color: #bb5013;
    line-height: 1.2;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

h1 span {
    font-size: 1.4rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.4rem;
    color: #f29200;
    margin: 2rem 0 1rem;
}

h3 {
    font-size: 1.25rem;
    color: #bb5013;
}

h4 {
    font-size: 2rem;
    color: #fff;
    text-align: center;
}

.invert {
    background-color: #fff;
    color: #f29200;
    padding: 2px 8px;
    font-weight: 700;
    width: fit-content;
    text-align: center;
    margin: 5rem auto 3rem;
}

h5 {
    color: #fff;
    font-size: 1.3rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}

ul li {
    background: url(../images/li.png) no-repeat left top;
    padding: 0 0 0 2rem;
}
 
main {
    display: flex;
}

aside {
    width: 50%;
    background-color: #f29200;
}

.content {
    color: #fff;
    padding: 1rem 5rem;
}

.center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.info {
    display: flex;
    justify-content: center;
    margin: 4rem 0 2rem;
}
.info p {
    color: #fff;
}
.info div {
    text-align: center;
    padding: 0 0.75rem;
}
.border {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.web {
    display: flex;
    justify-content: center;
    margin: 3rem 0; 
}

.web .apply {
    background-color: #fff;
    color: #f29200;
    padding: 2px 8px;
    font-weight: 700;
}


.benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.benefits section {
    width: 50%;
}

.benefits .item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.benefits section:first-of-type .item {
   justify-content: right;
}
.benefits .item p {
    color: #fff;
    margin: 0;
}






article {
    width: 50%;
    padding: 3rem;
}

.logo {
    display: flex;
    justify-content: right;
    margin-bottom: 2rem;;
}

.flex {
    display: flex;
    gap: 0.5rem;
    margin-top: 5rem;
}
.flex .left {
    width: 50%;
}
.flex .right {
    width: 50%;
    border: 4px dotted #bb5013;
    padding: 1rem;
}
.flex .right h2 {
    color: #bb5013;
    margin: 0 0 1rem;
}

.row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.row p {
    margin: 0;
}


@media only screen and (max-width: 1199px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 1000px) {
    article,
    .content{
        padding: 1rem;
    }
    aside {
        padding: 1rem 1rem 0;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .benefits section {
        margin: 0 auto;
        width: 15rem;
    }

    .benefits section:first-of-type .item {
        flex-direction: row-reverse;
        text-align: left;
        justify-content: left;
    }

}

@media only screen and (max-width: 800px) {
    main {
        flex-direction: column-reverse;
    }
    article,
    aside {
        width: 100%;
    }

    .logo {
        justify-content: center;
    }

    h3,h1 {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .flex {
        flex-direction: column;
        margin: 2rem 0;
    }
    .flex .left,
    .flex .right {
        width: 100%;
    }
    .info {
    flex-direction: column;
    }
    .info div {
        padding: 1rem;
    }
    .border {
        border-bottom: 1px solid #fff;
        border-top: 1px solid #fff;
        border-left: none;
        border-right: none;
    }

}

