html,
body {
    margin: 0;
    padding: 0;
}

a {
    display: block;
    text-decoration: none;
}

a:visited {
    color: #535353;
}

img {
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
a,
li,
td {
    margin: 0;
    padding: 0;
    font-family: "Yu-Gothic", sans-serif;
    color: #535353;
}

p {
    font-size: 24px;
    line-height: 1.5;
}

/*====================================Header====================================*/

header {
    background-color: #e4f0d8;
    height: 160px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 120px;
}

.logoLink {
    width: 120px;
    position: absolute;
    top: 20px;
    left: 80px;
}

.logoLink:hover {
    opacity: 0.75;
}

.headerNavList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 320px;
    top: 68px;
}

.headerNavItem {
    margin-left: 40px;
}

.headerNavItem a {
    font-size: 16px;
    color: #535353;
}

.headerNavItem a:hover {
    color: #a3a2a2;
}

.contactBtnWrapper {
    background-color: #b7d339;
    height: 160px;
    width: 240px;
    position: absolute;
    top: 0;
    right: 0;
}

.contactBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 160px;
    color: #fff !important;
}

.contactBtnWrapper:hover {
    background-color: #cad693;
}

/*====================================Footer====================================*/

footer {
    background-color: #b7d339;
    margin: 160px auto 0;
    padding-top: 120px;
}

.footerInner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 1441px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.footerInfo {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: inline-block;
    width: 388px;
}

.companyName h3 {
    font-size: 48px;
    color: #fff;
}

.companyInfo ul {
    margin-top: 64px;
}

.companyInfo ul li {
    font-size: 16px;
    color: #fff;
    line-height: 2;
}

.footerNav {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: flex;
    justify-content: space-between;
}

.footerNav ul li a {
    font-size: 16px;
    color: #fff !important;
    line-height: 2;
}

.footerNav ul li a:hover {
    color: #fff !important;
    opacity: 0.75;
}

.footerLogo {
    width: 100%;
    display: flex;
}

.footerLogo a {
    margin: 64px auto 0;
    display: inline-block;
}

.footerLogo:hover {
    opacity: 0.75;
}

.footerLogo img {
    width: 120px;
    margin: 0 auto;
}

.footerCopyright {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
}

.footerCopyright p {
    font-size: 16px;
    color: #fff;
}
