* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 18px;
    overflow-x: hidden;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
}

img {
    vertical-align: middle;
}

.slideshow-container {
    text-align: center;
    width: 100%;
    margin: auto;
    position: relative;
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: #bbb;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.dot-container {
    gap: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@media only screen and (max-width: 300px) {
    .text {font-size: 14px}
}

.row {
    width: 100%;
    display: flex;
    font-size: 27px;
    padding-left: 1em;
    padding-right: 1em;
}

.column1 {
    flex: 50%;
    padding: 0 10px;
    text-align: left;
    background-color: white;
}

.column2 {
    flex: 50%;
    padding: 0 10px;
    text-align: right;
    background-color: white;
}

.top-nav {
    top: -3px;
    left: -3px;
    padding: 0;
    width: 150%;
    position: fixed;
    overflow: visible;
    background-color: #555;
    border: 3px solid white;
    border-bottom: 0;
    z-index: 9999;
}

.top-nav #myLinks {
    width: 100%;
    display: none;
    position: relative;
}

.top-nav a {
    color: white;
    display: block;
    font-size: 2.8rem;
    padding: 20px 26px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

.top-nav a.icon {
    top: 0;
    width: calc(100% - 100px);
    height: auto;
    display: block;
    font-size: 2.8rem;
    position: absolute;
    background: #222222;
}

.top-nav a.active {
    width: 100%;
    color: white;
    position: relative;
    background-color: #222222;
}

.center {
    gap: 20px;
    width: 100%;
    display: flex;
    padding-top: 150px;
    align-items: center;
    flex-direction: column;
}

.subtitle {
    color:#2F4F5F;
    text-align:center;
    font-style: italic;
    font-weight: bold;
    font-family:'Times New Roman','Times','New York',serif;
}

#container {
    display: flex;
    width: 90%;
}

#first {
    border-radius: 5px;
    width: 100%;
    align-content: center;
}

.small_btn {
    width: 100%;
    font-size: 32px;
    min-height: 50px;
    border-radius: 3rem;
    font-family: 'Verdana, Geneva, Tahoma, sans-serif';
}

.big_btn {
    width: 100%;
    min-height: 50px;
    font-size: 32px;
    text-align: center;
    border-radius: 3em;
    background-color: white;
    border-color: #7bf #07c #07c #7bf;
    font-family: 'Verdana, Geneva, Tahoma, sans-serif';
}


.big_btn, .small_btn {
    height: 90px;
    color: #fff;
    display: flex;
    padding: 20px;
    position: relative;
    background: #07c;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
}

:is(.big_btn, .small_btn) i {
    left: 20px;
    width: 50px;
    height: 50px;
    color: #07c;
    display: flex;
    position: absolute;
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
}

:is(.big_btn, .small_btn) span {
    font-size: 25px;
    font-weight: bold;
}

:is(.big_btn, .small_btn):hover i {
    color: #fff;
    background: #07c;
}

:is(.big_btn, .small_btn):hover  {
    color: #07c;
    background: #fff;
    border: 3px solid #07c;
}

.grid-item a {
    color: black;
    text-decoration: none;
}


.grid-container {
    gap: 20px;
    display: grid;
    border-color: white;
    grid-template-columns: 1fr 1fr;
}

.listing :where(h4, a) {
    padding: 10px;
    font-size: 23px;
}

h2 {
    font-size: 38px;
}

.listing p {
    padding: 10px;
    font-size: 22px;
    padding-left: 1em;
    padding-right: 1em;
}

.listing h3 {
    font-size: 25px;
    padding: 1em 3em;
}

.listing img {    
    left: -10px;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    object-position: center;
}

.listing {
    margin: 40px;
    color:#2F4F5F;
    overflow: hidden;
    text-align: center;
    width: calc(100% - 80px);
    background-color: #eee;
    border: solid 3px black;
    border-radius: 10% 0 10% 0;
}

a[href*="#top"] {
    font-size: 32px;
}