* {
    /* outline: 1px solid tomato; */
}

/* ----- HEADER ----- */

header {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    /* background-color: hsla(0, 0%, 0%, 0.40); */
    background-color: hsla(0, 0%, 100%, 0.45);
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    line-height: 100px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    /* color: #fff; */
}

header .container h1>a>img {
    width: 100px;
}

header .container .menuLeft ul {
    display: flex;
    gap: 100px;
    
}

header .container .menuRight ul {
    display: flex;
    gap: 100px;
    /* bottom: 10px; */
}

header .container .menuRight ul>a {
    padding-top: 80px;
}

/* ----- MAINVISUAL ----- */

main .container .mainVisual {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

main .container .mainVisual .leftInfo {
    position: absolute;
    top: 200px;
    left: 100px;
    z-index: 999;
    /* background: #fff; */
    background-color: hsla(0, 0%, 0%, 0.55);
    border-radius: 25px;
    padding: 50px 60px;
    color: #fff;
}

main .container .mainVisual .leftInfo h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

main .container .mainVisual .leftInfo p {
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
}

main .container .mainVisual .leftInfo a {
    font-size: 15px;
    font-weight: 500;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #ffdd76;
    border-radius: 25px;
    padding: 10px 35px;
}

main .container .mainVisual .leftInfo a:hover {
    background: #fde04c;
    border: 1px solid #b0aea800;
}

main .container .mainVisual .rightInfo {
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: 999;
    background: #fdb34c;
    padding: 25px 60px 25px 40px;
    border-radius: 20px 20px 0 0;
}

main .container .mainVisual .rightInfo p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

main .container .mainVisual .rightInfo a {
    font-size: 15px;
    font-weight: 500;
}


main .container .mainVisual .rightInfo a::after {
    content: "\e90b";
    position: relative;
    font-family: xeicon;
    font-size: 17px;
    color: rgba(51, 51, 51, 0.5);
    left: 10px;
    transition: 0.6s;
}

main .container .mainVisual .rightInfo a:hover::after {
    content: "\e90b";
    position: relative;
    font-family: xeicon;
    font-size: 17px;
    color: rgba(51, 51, 51, 0.5);
    left: 20px;
    transition: 0.6s;
}

/* ----- PRODUCTSSLIDER ----- */

main .productSlider {
    margin-bottom: 50px;
}

main .productSlider .container {
    width: 1500px;
    margin: 0 auto;
}

main .productSlider .container h2 {
    font-size: 40px;
    font-weight: 500;
    /* padding: 25px 15px; */
    padding: 25px 0 25px 10px;
    border-bottom: 1px solid #e0ded8;
}

main .productSlider .container .newSlider .slick-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 15px;
    height: 15px;
    font-size: 0;
    border: none;
    outline: none;
    background: transparent;
    border-left: 2px solid #333333;
    border-top: 2px solid #333333;
}

main .productSlider .container .newSlider .slick-prev {
    margin: 0 0 0 -800px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

main .productSlider .container .newSlider .slick-next {
    margin: 0 0 0 800px;
    transform: translate(-50%, -50%) rotate(135deg);
}

main .productSlider .container .newSlider .slick-dots {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

main .productSlider .container .newSlider .slick-dots li button {
    display: none;
}

main .productSlider .container .newSlider .productBox {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    height: 350px;
}

main .productSlider .container .newSlider .productBox img {
    width: 100%;
}

/* ----- NEWPRODUCTS ----- */

main .newProducts .container {
    display: flex;
}

main .newProducts .container .leftBox {
    width: 500px;
}

main .newProducts .container .midBox {
    width: 500px;
    border-left: 1px solid #e0ded8;
}

main .newProducts .container .rightBox {
    width: 500px;
    border-left: 1px solid #e0ded8;
}

/* ----- BANNER ----- */

main .banner {
    position: relative;
}

main .banner .bannerInfo {
    position: absolute;
    top: 0;
    left: 160px;
    z-index: 999;
    padding: 60px 0;
}

main .banner .bannerInfo h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 20px;
}

main .banner .bannerInfo p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 50px;
}

main .banner .bannerInfo a {
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    border: 1px solid #b0aea8;
    border-radius: 25px;
    padding: 10px 35px;
}

main .banner .bannerInfo a:hover {
    background: #fde04c;
    border: 1px solid #b0aea800;
}

/* ----- FOOTER ----- */

footer {
    border-top: 1px solid #e0ded8;
}

footer .box {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 10px;
}

footer .box .footerTop {
    display: flex;
    color: #333;

}

footer .box .footerTop .footerLeft {
    display: flex;
    gap: 130px;
    flex: 2;
    margin-bottom: 30px;
}

footer .box .footerTop .footerLeft .left ul {
    margin-bottom: 40px;
}

footer .box .footerTop .footerLeft .left ul>h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

footer .box .footerTop .footerLeft .left ul>li {
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 10px;
}

footer .box .footerTop .footerLeft .mid ul {
    margin-bottom: 40px;
}

footer .box .footerTop .footerLeft .mid ul>h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

footer .box .footerTop .footerLeft .mid ul>li {
    font-size: 11px;
    font-weight: 300;
    margin-bottom: 10px;
}

footer .box .footerTop .footerLeft .right ul>li {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

footer .box .footerTop .footerRight {
    flex: 1;
}

footer .box .footerTop .footerRight h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 40px;
}

footer .box .footerTop .footerRight p {
    font-size: 11px;
    font-weight: 200;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

footer .box .footerTop .footerRight .sns {
    display: flex;
    flex-direction: row;
    gap: 30px;
    font-size: 30px;
    line-height: 1.5;
    color: #333;
}

#emailForm {
    border-bottom: 1px solid #e0ded8;
    margin-bottom: 15px;
}

#emailForm input {
    width: 90%;
    font-size: 13px;
    border: none;
}

#emailForm button {
    background: transparent;
    outline: none;
    border: none;
    font-size: 19px;
    color: #c2c0b9;
}


footer .box .footerBottom ul {
    display: flex;
    gap: 15px;
}

footer .box .footerBottom ul>li {
    font-size: 11px;
    font-weight: 200;
}

footer .box .footerBottom ul .adp {
    font-size: 11px;
    font-weight: 500;
}