*
{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
}

body
{
    width: 100vw;
    height: 100vh;
}

html
{
    scroll-behavior: smooth;
    overflow: hidden;
}


#cologo
{
    display: inline-block;
    position: fixed;
    width: 80px;
    height: 80px;
    left: 20px;
    top: 20px;
    z-index: 100;
}

#container1
{
    position: relative;
    width: 100vw;
    height: 100vh;
    justify-content: center;
}

#navcontainer
{
    display: flex;
    position: fixed;
    flex: 0 0 100%;
    width: 100vw;
    height: 120px;
    background-color: rgba(249, 249, 249,0.5);
    z-index: 10;
}

#navbar
{
    display: flex;
    position: relative;
    width: 100vw;
    height:80px;
    top: 20px;
    align-items: center;
}

ul
{
    display: flex;
    position: relative;
    width: 100vw;
    justify-content: flex-end;
}
ul li
{
    display: flex;
    position: relative;
    min-width: 180px;
    height: 40px;
    margin: 0px 5px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

ul li a
{
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: rgb(78,121,156);
    z-index: 10;
}

ul li:hover
{
    box-shadow: 12px 12px 12px rgba(0,0,0,0.1) inset, -12px -12px 12px white inset;
}

.adscontainer
{
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    flex: 0 0 100%;
    width: 100%;
    height: 65vh;
}
.imgcontainer
{
    display: flex;
    position: relative;
    flex: 0 0 100%;
    width: 100vw;
    height: 65vh;
}
.imgcontainer .slide
{
    display: flex;
    position: absolute;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn
{
    display: flex;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    top: 60vh;
    left: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(255,255,255,0.5); /* Make buttons visible */
    border: none;
}
.btn a
{
    display: flex;
    color: rgb(30, 49, 85);
    font-size: 1.4rem;
}
#btn1
{
    cursor: pointer;
    margin: 0px -100px;
    z-index: 5;
}
#btn2
{
    cursor: pointer;
    z-index: 5;
}

#btn3
{
    cursor: pointer;
    margin: 0 100px;
    z-index: 5;
}

#slide1
{
    z-index: 1;
}
#slide2
{
    z-index: 1;
}
#slide3
{
    z-index: 1;
}

.slide {
    display: none;
}

/* Show targeted slide and hide all its siblings */
.slide:target {
    display: block;
    z-index: 2;
}

.slide:target ~ .slide {
    display: none;
}

.tagline
{
    color: rgb(30, 49, 85);
    font-size: 3rem;
    padding: 10px 20px;
}

.paraone
{
    width: 50vw;
    height: 20vh;
}
.paraone p
{
    padding: 10px 0px;
    letter-spacing: 0.2rem;
    padding: 10px 30px;
    width: 50vw;
    height: 20vh;
}

#container2
{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom, white grey);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.itemcontainer1
{
    display: flex;
    position: relative;
    flex-direction: row;
    top: 120px;
    width: 100vw;
    height: 40vh;
    padding: 5vw 5vh;
}

.contentcontainer1
{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 45vw;
    height: 30vh;
}
.contentcontainer1 h1
{
    position: relative;
    top: -30px;
}

.contentcontainer1 span
{
    font-weight: 600;
    font-style: italic;
    color: rgba(30, 49, 85,0.8);
}

.contentcontainer1 p
{
    position: relative;
    letter-spacing: 0.1rem;
}

.piccontainer1
{
    position: absolute;
    width: 45vw;
    height: 40vh;
    right: 50px;
    top: -20px;
    background-image: url(/images/pexels-andrew-1967535.jpg);
    background-size: cover;
    background-position: center;
    padding: 10px 20px;
    box-shadow: 10px 5px 20px rgba(61,109,161,0.2);
    border-radius: 50px;
}

.itemcontainer2
{
    display: flex;
    position: relative;
    flex-direction: row;
    top: 100px;
    left: 30px;
    width: 100vw;
    height: 40vh;
}

.piccontainer2
{
    display: flex;
    position: relative;
    width: 45vw;
    height: 40vh;
    background-image: url(/images/pexels-jessbaileydesign-805922.jpg);
    background-size: cover;
    background-position: center;
    padding: 20px 30px;
    box-shadow: 10px 5px 20px rgba(61,109,161,0.2);
    border-radius: 50px;
}

.contentcontainer2
{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 45vw;
    height: 40vh;
    top: 0;
}

.contentcontainer2 h1
{
    position: relative;
    top: 10px;
    padding: 20px 30px;
}
.contentcontainer2 p
{
    position: relative ;
    letter-spacing: 0.1rem;
    padding: 20px 30px;
}
.contentcontainer2 span
{
   font-weight: 600;
    font-style: italic;
    color: rgba(30, 49, 85,0.8); 
}

#container3
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(/images/pexels-mat-brown-150387-552598.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#container4
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(/images/pexels-padrinan-230518.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

#container5
{
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}


.piccontainer
{
    display: flex;
    position: relative;
    min-width: 40vw;
    height: 70vh;
    margin: 2.5vw 2.5vh;
    background-image: url(/images/pexels-raymond-petrik-1448389535-27183340.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(249, 249, 249,0.5);;
    border-radius: 30%;
    z-index: 8;
    box-shadow: 12px 12px 12px rgb(61,109,161) inset, 12px 12px -12px rgba(249, 249, 249,0.5) inset;
}

.contactcontainer
{
    display: flex;
    position: relative;
    flex-direction: column;
    width: 40vw;
    height: 70vh;
    margin: 2.5vw 5vh;
    z-index: 1;
}

.mapcontainer
{
    display: flex;
    position: relative;
    width: 40vw;
    height: 40vh;
}

.mapcontainer iframe
{
    width: 100%;
    height: 100%;
}

.contactinfo
{
    display: flex;
    position: relative;
    width: 30vw;
    height:20vh;
    margin: 5vw 5vh;
}

h1
{
    display: flex;
    position: absolute;
    top: 50px;
    letter-spacing: 0.2rem;
    width: 100%;
    font-size: 1.8rem;
}
h3
{
    display: block;
    position: relative;
    top: 100px;
    width: 100%;
    letter-spacing: 0.2rem;
    font-size: 1.2rem;
    height: 50px;
}

address
{
    position: absolute;
    top: 130px;
}

footer
{
    display: block;
    position: fixed;
    font-size: 0.8rem;
    width: 100vw;
    height: 5vh;
    color: rgb(30, 49, 85) ;
    bottom: 0px;
    text-align: center;
    z-index: 2;
}

