/* Typogrphy */
html,
body{ 
background: #fff;
scroll-behavior: smooth;
}

main{
font-size: 16px;
font-weight: 400;
color: #000;  
}

main p{
font-size: 16px;
font-weight: 400;
color: #000;  
}

main li{
font-size: 16px;
font-weight: 400;
color: #000; 
}

/* Anchors */
main a {
font-size: 16px;
font-weight: 400;
color: #000; 
}

main a:hover,
main a:focus {
font-size: 16px;
font-weight: 400;
color: #000; 
}

main a:active {
font-size: 16px;
font-weight: 400;
color: #000; 
}

/* Blockquote */
main blockquote {
font-size: 16px;
font-weight: 400;
color: #000; 
}

/* Headings */

main h1 {
font-size: 28px;
font-weight: 400;
color: #000; 
}

main h2 {
font-size: 27px;
font-weight: 400;
color: #000; 
}

main h3 {
font-size: 26px;
font-weight: 400;
color: #000; 
}

main h4 {
font-size: 25px;
font-weight: 400;
color: #000; 
}

main h5 {
font-size: 24px;
font-weight: 400;
color: #000; 
}

main h6 {
font-size: 23px;
font-weight: 400;
color: #000; 
}

/* TABLET */
@media (min-width: 767px) {
main,main li,main p{
font-size: 16px;
}

main a {
font-size: 16px;
}

main blockquote {
font-size: 16px;
}

main h1 {
font-size: 30px;
font-weight: 400;
}

main h2 {
font-size: 29px;
font-weight: 400;
}

main h3 {
font-size: 28px;
font-weight: 400;
}

main h4 {
font-size: 27px;
font-weight: 400;
}

main h5 {
font-size: 26px;
font-weight: 400;
}

main h6 {
font-size: 25px;
font-weight: 400;
}

}

/* DESKTOP */
@media (min-width: 990px) {
main,main li,main p{
font-size: 16px;
}

main a {
font-size: 16px;
}

main blockquote {
font-size: 16px;
}

main h1 {
font-size: 36px;
font-weight: 400;
}

main h2 {
font-size: 35px;
font-weight: 400;
}

main h3 {
font-size: 34px;
font-weight: 400;
}

main h4 {
font-size: 33px;
font-weight: 400;
}

main h5 {
font-size: 32px;
font-weight: 400;
}

main h6 {
font-size: 31px;
font-weight: 400;
}

}


/* Hero Banner */

section.hero-banner {
background: url(../images/swt-10.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: calc(100vh - 80px);
display: flex;
flex-flow: column;
justify-content: center;
padding: 0 1rem;
}

section.hero-banner .container {
background-color: rgba(255,255,255,0.85);
border-radius: 10px;
padding: 40px;
}


/* Intro */

section.intro {
padding: 80px 1rem;
}

section.intro .container {
background-color: rgba(0,0,0,0.85);
border-radius: 10px;
padding: 40px 15px;
}

section.intro ul {
padding: 0;
list-style: none;
margin: 0;
}

section.intro ul li {
padding: 10px 0;
}

section.intro .col-lg-6 * {
color: #fff;
}


/* Gallery */

section.gallery img {
margin: 15px 0;
}

section.gallery .col-12 {
text-align: center;
max-width: 1050px;
margin: auto;
}


/* Contact */

section.contact {
background-color: #f6f6f6;
}

section.contact .contact-icons a {
display: block;
margin: 14px 0;
text-decoration: none;
}

section.contact .contact-icons img {
max-width: 35px;
}


/* Header */

header {
position: fixed;
width: calc(100% - 30px);
max-width: 1600px;
margin: auto;
left: 0;
right: 0;
top: 20px;
background-color: #f4f4f4;
border-radius: 10px;
z-index: 99;
box-shadow: 1px 1px 10px #1e1e1e;
padding: 15px 0;
}

.header-parent {
align-items: center;
justify-content: space-between;
}

.header-parent ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 2rem;
}

.header-parent ul li a {
font-weight: bold;
color: #000;
text-decoration: none;
}

.header-parent ul li a:hover {
color: #fcca07;
}

.header-parent *{
margin: 0;
}

header img {
max-width: 300px;
}

header .desktop {
display: none;
}

header #myLinks {
display: none;
}

header .header-parent.mobile {
display: flex;
}

header .header-parent.mobile img {
max-width: 150px;
width: 100%;
}

header ul {
margin: 0;
padding: 0;
list-style: none;
}

header ul li a {
font-weight: bold;
color: #000;
text-decoration: none;
}

header ul li a:hover,
header ul li a:active {
color: #fcca07;
text-decoration: none;
}

header #myLinks ul li:first-child {
padding: 10px 0 0 0;
}

header #myLinks ul li a {
padding: 10px 0;
display: block;
}

header button {
color: transparent;
background-color: transparent;
border: 1px solid #000;
border-width: 2px 0 2px 0;
padding: 0;
position: relative;
height: 20px;
}

header button:after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: #000;
left: 0;
top: calc(50% - 1px);
}

@media (min-width: 990px) {
header {
padding: 20px;
}

header .header-parent.mobile {
display: none;
}

header .desktop {
display: flex;
}
}



/* Footer */

footer {
background-color: #1e1e1e;
padding: 40px 0;
}

footer * {
color: #fff;
margin: 0;
}

.footer-parent {
display: grid;
grid-template-columns: minmax(100px, 20%) 1fr;
gap: 1.5rem;
align-items: center;
text-align: right;
}


/* General */

.s-p {
padding: 80px 0;
}

img {
max-width: 100%;
}