@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
    /* border: #111 1px dotted; */
    /* margin-block-start:0.5em; margin-block-end:0.5em; margin-inline-start:0; margin-inline-end:0;
    padding-block-start:0; padding-block-end:0; padding-inline-start:0; padding-inline-end:0; */

}
.footer-address > p {
    margin-block-start:0.1em; margin-block-end:0.1em;
}

.about-us > h2, p {
    margin-block-start:0.1em; margin-block-end:0.1em;
}

.nav-header{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
    background-color: #EBEBEB;
}

.nav-title{
    flex-grow: 3;
    align-self: center;
}

.header-title{
    text-align: left;
    color: #2d3968;
    font-size: 2.2rem;
}

.nav-footer{
    padding: 10px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-content: center;
    background-color: #EBEBEB;
    font-size: 21px;
}
.footer-contents{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #EBEBEB;
}
.footer-jr > h3{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.nav-menu > a{
    margin-left: 5px;
    margin-right: 5px;
}

.products {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

.heading-2 {
    width: 40%;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #232322;
    padding-bottom: 0.2rem;
    font-family: 'Raleway', sans-serif;
    color: #232322;
    align-self: flex-end;
    margin-right: 20px;
  }

  .products-card{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    gap: 20px;
  }

  .prod-card{
    border-radius: 15px;
    padding: 30px 30px 30px 30px;
    background-color: #2d3968;
    position: relative;
  }

  .prod-card > img{
    border-radius: 15px;
  }
  
  .prod-card > p {
    color: #ebebeb;
    text-align: center;
    font-family: Raleway;
  }


  .prod-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #2d3968;
    border-radius: 15px;
    font-size: 18px;
  }

  .prod-overlay > p {
    padding: 10px;
    color: #EBEBEB;
  }

  .prod-card:hover .prod-overlay{
    opacity: 1;
  } 



.about-us {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0,0,0,0.1)), url("abstract-spiral-blue-background_107441-50.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
  }
  
  .heading {
    width: 40%;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #ebebeb;
    padding-bottom: 0.2rem;
    font-family: 'Raleway', sans-serif;
    color: #EBEBEB;
    align-self: flex-start;
    margin-left: 20px;
  }
  
  .paragraph {
    width: 80%;
    font-size: 1.2rem;
    text-align: justify;
    font-family: 'Raleway', sans-serif;
    color: #EBEBEB;
    line-height: 150%;
    margin-top: 30px;
  }

  .slideshow-container {
    position: relative;
  }
  
  /* Slides */
  .mySlides {
    display: none;
    padding: 10px;
    text-align: center;
    height: 30vh;
  }
  

  /* The dot/bullet/indicator container */
  .dot-container {
    text-align: center;
    padding: 20px;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  /* Add a background color to the active dot/circle */
  .active, .dot:hover {
    background-color: #717171;
  }



@import 'https://fonts.googleapis.com/css?family=Raleway';

html, body
{
    margin: 0px;
    padding: 0px;
}


div.container a
{
    color: #FFF;
    text-decoration: none;
    font: 20px Raleway;
    position: relative;
    z-index: 0;
    cursor: pointer;
}


/* Highlight text out  */
div.highlightTextOut a
{
    color: rgba(255, 255, 255, 0.3); 
}

div.highlightTextOut a:before, div.highlightTextIn a:before
{
    position: absolute;
    color: #952523;
    top: 0px;
    left: 0px;
    overflow: hidden;
    content: attr(alt);
    transition: all 0.3s;
    transform: scale(0.8);
    opacity: 0;
} 

div.highlightTextOut a:hover:before, div.highlightTextIn a:hover:before
{
    transform: scale(1);
    opacity: 1;
}

/* Highlight text in  */
div.highlightTextIn a
{
    color: rgba(213, 53, 51, 0.7); 
}

div.highlightTextIn a:before
{
    transform: scale(1.2);
} 

.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #ebebeb;
    padding: 0.7em 2.3em 0.7em 0.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #009087;
    border: 1px solid #e8e8e8;
  }
  
  .button2 > svg {
    height: 30px;
    position: absolute;
    padding: 0px 5px;
    margin-top: -4px;
  }
  
  .button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }
  
  .button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #009087;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:hover {
    color: #232322;
    border: 1px solid #ebebeb;
  }
  
  .button2:hover:before {
    top: -35%;
    background-color: #ebebeb;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button2:hover:after {
    top: -45%;
    background-color: #ebebeb;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  

  .button1 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #ebebeb;
    padding: 0.7em 2.3em 0.7em 0.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #b63524;
    border: 1px solid #e8e8e8;
  }
  
  .button1 > svg {
    height: 30px;
    position: absolute;
    padding: 0px 5px;
    margin-top: -4px;
  }
  
  .button1:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }
  
  .button1:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button1:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #ebebeb;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button1:hover {
    color: #232322;
    border: 1px solid #ebebeb;
  }
  
  .button1:hover:before {
    top: -35%;
    background-color: #ebebeb;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button1:hover:after {
    top: -45%;
    background-color: #ebebeb;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  

  @media (min-width: 300px) and (max-width: 768px) {
    .about-us{
        height: 90vh;
    }
    .mySlides{
        height: 55vh;
    }
    .heading {
        margin-top: 15px;
    }
    .nav-header{
        gap: 0px;
        justify-content: flex-start;
    }
    .nav-logo{
        align-self: flex-start;
        margin-top: 13px;
        margin-right: 10px;
    }
    .nav-title{
        align-self: flex-start;
        
    }
    .header-title{
        font-size: 1.8rem;
    }
  } 