/*
company colours/shades in use:
    Red:
        Primary Red: #FF0000
        Dark Red: #B30000
        Light Red: #FF6666
        Accent Red: #FF4D4D
        
    Blue:
        Primary Blue: #0074E4
        Dark Blue: #0047A0
        Light Blue: #66A3FF
        Accent Blue: #3399FF
        
    White:
        Pure White: #FFFFFF
        Off-White: #F5F5F5
        Subtle Grayish White: #F0F0F0
        
        
/* Base styles for mobile */
/* general styles*/

h1 {
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3e3e3 !important;
}

ul{
  padding: 0;
  list-style-type: none;
}

li{
  display: inline;
  margin-right: 1vw;
}

#nav_bar{
  background-color: #e3e3e3 !important;
  position: fixed;
  width: 100vw;
  z-index: 2;
  overflow: visible !important;
  height: 10vh; /*Height set to a hardcoded percent of viewing panel height - NB: must be the same for #navbar_offset*/
}

#navbar_offset{
  /* NB height should be set to the same as #nav_bar height */
  height: 10vh;
}

.nav_options{
  color: #FF6666 !important;
  font-size: 1.25rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
}

.nav_options ul, li, a:hover{
  color: #FF4D4D !important;
}

#mini-logo{
  height: 8vh !important;
  width: auto;
  max-height: 100% !important;
}

#large-logo{
  height: 30vh !important;
  width: auto;
  max-height: 100% !important;
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}

#navbar_list_div{
  margin-bottom: 0;
}

.nav_item_dropdown{
  display: none 
}

@media (max-width: 768px) {

  .nav_item_dropdown {
    position: relative;
    display: inline-block; 
}

  .nav_options_drop {
    display: block;
  }

  #navbarDropdown {
    color: #FF6666 !important;
    font-size: 1.25rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

  .dropdown-menu {
      position: absolute;
      right: 0;
      top: 100%;
      display: block;
      background-color: #e3e3e3 !important;
}

  .dropdown-menu a {
    color: #FF6666 !important;
}

.dropdown-menu a:hover{
    color: #FF4D4D !important;
}

.nav_options{
  display: none    
}

.column img {
  max-width: 100%;
  height: 50px;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border: black solid 1px;
}

.container {
  height: auto !important;
}

}

/***********************************************/

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
  background-color: #66A3FF !important;
  border-radius: 10px;
  width: 85vw;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* Hide the images by default */
.mySlides {
  display: flexbox !important;
  height: 500px;
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
}

.reelimage {
  max-height:100%; 
  max-width: 90%; 
  display: flex;
  align-self: center;
  align-items: center;
  align-content: center;
  justify-self: center;
  justify-items: center;
  justify-content: center;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
  height: 70px;
  overflow: hidden;
}

.column img {
  max-width: 100%;
  /* height: auto; */
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  border: black solid 1px;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
.demo:hover {
  transform: scale(1.2);
}

.contact-section {
  background-color: #e3e3e3;
  padding: 50px 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-item {
  flex: 0 0 45%;
  margin: 10px;
}

.contact-item h2 {
  font-size: 20px;
  color: #FF6666;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #FF6666;
  line-height: 1.6;
}

.contact-item a {
  color: #FF6666;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button a {
  display: block;
  width: 80px;
  height: 80px;
  border: solid black 2px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-top: 13px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-button img {
  width: 80px; 
  height: auto;
  padding-right: 5px;
}

.whatsapp-button a:hover {
  background-color: #FF4D4D;
}
