:root {
  --primary: #7b66a1;
  --primary-text: #ffffff;
  --secondary: #ffffff;
  --secondary-text: #000000;
  --accent: rgba(76, 175, 80, 0.5)
  --accent-text: #ffffff;
}

a {
    color: white;
  }
  
body {
    background: #202634 url("images/background8a.jpg");
    background-position: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
  }

/* Reset the default styles */
* {
  margin: 0;
  padding: 0.1em;
  box-sizing: border-box;
}

/* Set the base font size */
html {
  font-size: 16px;
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
}

/* Media query for tablets */
@media (min-width: 481px) and (max-width: 767px) {
  html {
    font-size: 15px;
  }
}

/* Media query for desktops and larger devices */
@media (min-width: 768px) and (max-width: 980px) {
  html {
    font-size: 16px;
  }
}

/* Media query for larger screens */
@media (min-width: 981px) {
  html {
    font-size: 18px;
  }
}

/* Set the max width of the website */
.container {
  max-width: 700px;
  margin: 0 auto;
}

/* Menu bar */
#nav {
    position: relative;
    top: 1em;
    left: 0;
    width: 100%;
    text-align: center;
}

#nav > ul {
        display: inline-block;
        border-radius: 0.35em;
        box-shadow: inset 0px 0px 1px 1px rgba(255, 255, 255, 0.25);
    }

        #nav > ul > li {
            display: inline-block;
            text-align: center;
            padding: 0 0.5em 0 0.5em;
        }

            #nav > ul > li > ul {
                display: none;
            }

            #nav > ul > li > a, #nav > ul > li > span {
                display: block;
                color: #eee;
                color: rgba(255, 255, 255, 0.75);
                text-transform: uppercase;
                text-decoration: none;
                font-size: 0.7em;
                letter-spacing: 0.25em;
                height: 5em;
                line-height: 5em;
                -moz-transition: all .25s ease-in-out;
                -webkit-transition: all .25s ease-in-out;
                -o-transition: all .25s ease-in-out;
                -ms-transition: all .25s ease-in-out;
                transition: all .25s ease-in-out;
                outline: 0;
            }

            #nav > ul > li:hover > a {
                color: #fff;
            }

            #nav > ul > li.active > a, #nav > ul > li.active > span {
                color: #fff;
            }


/* Images container */
.images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Set the transition for the zoom effect */
.images img {
    transition: transform 0.5s ease;
  }

/* Zoom in on hover */
.images img:hover {
    transform: scale(1.25);
  }

/* Title block */
.title {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.75rem;
    padding-top: 1.75rem;
    padding-bottom: 1rem;
    text-align: center;
}

/* hero line block */
.hero-line {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.25em;
    margin-top: 20px;
  }

/* Sub page title block */
.sub-title {
    text-transform: uppercase;
    text-align: center;
    font-weight: lighter;
    letter-spacing: 0.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Text section */
.text {
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-align: justify;
    font-weight: lighter;
    margin: 20px 0;
}

.text-center {
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    text-align: center;
    font-weight: lighter;
    margin: 20px 0;
}

.text-small {
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    text-align: justify;
    font-weight: lighter;
    margin: 20px 0;
}

/* Copyright mark */
.footer {
    position:fixed;
    bottom: 0.5rem;
    left: 50%;
    transform: translate(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    color: #fff;
    padding: 0.75em;
}

/* swipe cards */            
.swiper {
    width: 100%;
    height: auto;
    padding-top: 0px;
  }
          
  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
    height: 250px;
  }
          
  .swiper-slide img {
    display: flex;
    width: 250px;
    height: 250px;
    border-radius: 25px;
  }

/* social */  
.social-icons{
	padding:10px;
    text-align: center;
}
.social-icons a{
    text-decoration:none;
}
