:root{
    --color-primary:#ECE7E4;
    --color-secondary:#A44A3F;
    --color-tertiary:#253746;
    --color-quaternary:#151515;
    --color-quinary:#A3C0C4;
}
*, *::before, *::after { box-sizing: border-box; font-family: "Poppins", sans-serif; font-style: normal; font-weight:400; margin: 0; }
html{ font-size: 10px; }
body{ margin:0; }
.poppins-light { font-family: "Poppins", sans-serif; font-weight: 300; font-style: normal; }
.poppins-regular { font-family: "Poppins", sans-serif; font-weight: 400; font-style: normal; }
.poppins-medium { font-family: "Poppins", sans-serif; font-weight: 500; font-style: normal; }
.poppins-semibold { font-family: "Poppins", sans-serif; font-weight: 600; font-style: normal; }
.poppins-bold { font-family: "Poppins", sans-serif; font-weight: 700; font-style: normal; }

header { background-color:var(--color-tertiary); background-position: center; background-size: cover; background-image:url(../images/header-bg.jpg); }
header .banner { display: flex; justify-content: center; align-items: center; flex-direction: column; gap:8rem; height: clamp(40rem,75vh,100rem); }
header .logo { width:clamp(30rem,40vw,80rem); height:auto; }
header .banner-message { color:var(--color-primary); font-size:2rem; text-transform: uppercase; text-align: center; }
header .banner-message .circle { display: block; position: relative; }
header .banner-message .circle:after { content: ""; position: absolute; top: 50%; left: 50%; width: 118%; height: 5.3rem; border: 3px solid var(--color-secondary); border-radius: 50% 100%; transform: translate(-50%, -50%) rotate(-5deg); }
header .sub-banner { color:#fff; background-color:var(--color-tertiary); text-align: center; padding:1.5rem; }
header .sub-banner .title { font-size: 1.5rem; }

section.form { background-color:var(--color-primary); display: flex; justify-content: center; align-items: center; }
section.form .form-wrapper { background-color: transparent; color: var(--color-secondary); text-align: center; width: clamp(20rem, 100%, 80rem); padding: 7rem 4rem; } 
section.form .content {display: grid;gap: 1rem;grid-template-columns: 1fr;}
section.form .title { font-size:5rem; color:var(--color-quaternary); }
section.form .subtitle { font-size:3rem; text-transform:capitalize; }
section.form .content-p { font-size:1.5rem; color:var(--color-quaternary); }
section.form .list-title { font-size:2rem; color:var(--color-quaternary); text-transform: capitalize; }
section.form .perks {font-size:1.5rem;list-style: none;max-width: 54rem;padding: 0;margin: 0 auto;display: grid;gap: 0.5rem;}
section.form .perks li { font-weight:300; }
section.form .form-container { margin-top:3rem; }

section.gallery { display: grid; grid-template-columns:1fr; }
section.gallery img { width: 100%; }

footer { --footer-gap:9rem; background-color: var(--color-tertiary); color:var(--color-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; gap:var(--footer-gap); padding:var(--footer-gap) 1.5rem 1rem; background-image:url(../images/footer-bg-logo.svg);background-position: center; background-size: contain;background-repeat: no-repeat; }
footer .footer-inner { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: calc(var(--footer-gap) / 2); width: clamp(20rem,80%,90rem); }
footer .footer-logo { width: clamp(30rem, 30vw, 70rem); }
footer .info-wrapper { display: grid; grid-template-areas: "top" "bot-left" "bot-right"; width: 100%; gap:2rem; }
footer .info-wrapper .info { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 1.5rem; text-align: center; }
footer .info-wrapper .top { grid-area: top; }
footer .info-wrapper .bot-left { grid-area: bot-left; }
footer .info-wrapper .bot-right { grid-area: bot-right; }
footer .info-wrapper .info .title { color:var(--color-quinary); font-size:1.8rem; font-weight:600 }
footer .info-wrapper .info .info-content p { font-size:1.5rem; font-weight:300; line-height: 1.5; }
footer .info-wrapper .info .info-content p.disclaimer { font-size:1.2rem; margin-top:0.4rem; }
footer .info-wrapper .info .info-content a { color:inherit; font-weight:300; text-decoration: none; }
footer .info-wrapper .info .info-content a:hover, footer .info-wrapper .info .info-content a:focus { text-decoration: underline; }
footer .footer-bottom { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 2rem; text-align: center; width: 100%;}
footer .footer-bottom .disclaimer { font-size:1.2rem; font-weight:300; }
footer .socials {display: flex;justify-content: center;gap:1rem;}
footer .sns-link svg { --square: 2rem; fill:var(--color-primary); width: var(--square); height: var(--square); transition: fill 300ms; }
footer .sns-link:hover svg, footer .sns-link:focus svg { fill:var(--color-quinary); }
footer .copy-jump {width:100%;display: flex; justify-content: center;max-width:1600px;align-items: center;gap:2rem;flex-wrap: wrap;flex-direction:column;}
footer .jumpem {font-size: 1.2rem; display: flex; justify-content: center; align-items: center;}
footer .jumpem svg {height: 1.2rem;}

@media(min-width:400px){
    section.gallery { grid-template-columns:repeat(2, 1fr); }
}

@media(min-width:767px){
    header .banner-message { font-size:3rem; }
    header .sub-banner .title { font-size: 2rem; }

    section.form .form-wrapper { padding: 10rem 8rem; }

    footer .info-wrapper { grid-template-areas: "top top" "bot-left bot-right"; gap:0; grid-template-columns: 1fr 1fr;}
}

@media(min-width:992px){
    section.gallery { grid-template-columns:repeat(4, 1fr); }
}