/*style for the navigation menu*/
* {
    box-sizing: border-box;
  }
  
.nav {
    z-index: 100;
    height: 50px;
    width: 100%;
    background-color:  rgb(104, 104, 104);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);
    display: flex;
    justify-content: right;    
    align-items: center;
    position: relative; 
}


.nav > .nav-header {
    display: inline;
}
  
.nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px 10px 10px 10px;
}
  
.nav > .nav-btn {
    display: none;
}
  
.nav > .nav-links {
    padding-right: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}
  
.nav > .nav-links > li {
    display: inline-block;
    padding-right: 1rem;
    transition: all 0.3s ease-in-out;

    a {
        color: whitesmoke;
        text-decoration: none;
        padding: 1rem;
        text-transform: uppercase;
        text-shadow: 0.5px 1px 1.2px #000000;
        transition: all ease-in-out 0.3s;
    }
    a:hover, .active {
        color: greenyellow;
        letter-spacing: 3px;
        font-size: 1.2rem;
        font-weight: 700;
    }
}
  
.nav > .nav-links > li:hover {
    /* background-color: rgba(0, 0, 0, 0.3); */
}
  
.nav > #nav-check {
    display: none;
}

.conicon {
    display: inline-block;
    position: absolute;
    left: 2rem;
    transition: all ease-in-out 0.3s;
}
.conicon:hover {
    left: 2.5rem;
}
  
@media (max-width:900px) {
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 1rem;
      top: 0px;
}
.nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
}
.nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(0, 0, 0, 0.3);
}
.nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
}
.nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color:  rgb(104, 104, 104);     
      height: max-content;
      overflow-y: hidden;
      top: 30px;
      left: 0px;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);

}
.nav > .nav-links > li {
      display: block;
      padding: 1rem;
      width: 100%;
}
.nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
      
}
.nav > #nav-check:checked ~ .nav-links {
      height: auto;
      overflow-y: auto;
}
}
/*style for all h1 text*/
h1 {
    font-family: arial, helveica, sans-serif;
    text-shadow: 0.5px 1px 1.2px #000000;

}

/*Style for all h2 text*/
h2 {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 4px #000000; 
}

/*style for the body element*/
body {
    background-color: gainsboro;
    margin: 0px;
    font-family: 'segoe ui';
}

/*style for the p element*/
p {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

/*style for the header*/
header {
    margin:0;
    padding:0;
}
.center{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
/*style for package table*/
table.packtable {
    display: block;
    text-align: center;
    position: relative;
    border-spacing: 15px;
    line-height: 1.9em;
    height: auto;
    width: auto;
    color: #545454;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(185, 185, 185);
    border-radius: 15px;
    background-color: white;
    padding: 2rem 5rem;
    justify-content: center;
    margin: 3rem 4rem;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1); */
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
}
.glassContainer {
    display: flex;
    position: relative;
    justify-content: space-around;
    align-items: end;
    margin:0;
    height: auto;
    width: 100%;
    background-color: rgba(211, 211, 211, 0.076);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 2rem;
    border: 2px solid rgba(171, 171, 171, 0.057);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
    padding: 2rem;

}
.row {
    display: flex;
    flex-direction: row;
}
.col {
    display: flex;
    flex-direction: column;
}
.containerL {
    display: flex;
    justify-content: left;
    width: 50%;
}
.containerR {
    display: flex;
    justify-content: right;
    width: 50%;
}
.visible {
    display: flex;
}
.hidden {
    display: none;
}

.mobileTable {
    display: none;
}
/*style for the form submission on Contact Us page*/
.form1 {
    line-height: 1.9em;
    color: #444444;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    background-color: white;
    padding: 25px;
    padding-left: 30px;
    margin: 30px;
    margin-right: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 18px;
}

input:focus {
    background-color: rgba(148, 243, 177, 0.705);
}
input[type=textarea] {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
}
button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
    font-size: 20px;
}

/*style for header table*/
table.hedtable {
    border-spacing: 15px;
}
/*style for the table data elements*/
/*to come later*/

/*style for the about us section*/
.standard {
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* align-items: center; */
    line-height: 1.9em;
    color: #444444;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    background-color: white;
    padding: 25px;
    padding-left: 30px;
    margin: 30px;
    margin-right: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);
    
}

/*style for contact us section*/
.contactus {
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 1.9em;
    color: #d7d7d7;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    padding: 2rem;
    margin: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);
    background-color: rgb(50, 50, 50);

    a {
        text-decoration: none;
        font-size: 1.2rem;
        color: greenyellow;
    }
    i {
        font-size: 1.5rem;
    }
}

/*style for the image*/
img {
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 1);
}


/*style for the table*/
.video {
    line-height: 1.9em;
    font-style: italic;
    color: #444444;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 15px;
    background-color: white;
    margin: 30px;
    padding: 25px;
    padding-left: 30px;
    margin-right: 30px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 1);
}
.spacer {
    height: 5rem;
    width: 30%
}

/*----------cards------------*/
.cardContainer {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 0% 0% 15% 0%;
}


.cards {
    display: flex;
    justify-content: space-between;
    z-index: 3;
    width: auto;
	flex-wrap: wrap;
    margin-left: .2rem;
    margin-right: .2rem;
}

.card {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
    border: 2px solid rgb(0, 0, 0); 
    border-radius: 1rem;
    margin: 1rem 1rem;
    padding: 2rem;
    max-height: 16rem;
    width:20%;
    transition: transform 0.3s;
    color: rgb(56, 56, 56);
    box-shadow: 0 4px 8px 0 rgba(102, 255, 0, 0.2), 0 6px 20px 0 rgb(0, 0, 0);
    /* text-shadow: inset 2px 5px rgb(53, 58, 58); */
    font-weight: bold;
    font-size: 1.5rem;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px) ;

    i {
        padding-bottom: 1rem;
        color: greenyellow;
        text-shadow: 0.5px 1px 1.2px #000000;
        font-size: 4rem;
    }
}

.card:hover {
    transform: translateY(-15px) !important;
}

/*style for footer*/
footer {
    height: min-content;
    width: 100%;
    position: relative;
    text-shadow: 0.5px 0.5px 1px #000000;
    text-align: left;
    color:rgb(95, 95, 95);
    margin: 0;
    padding: 0 4rem;

    a {
        margin-bottom: 0.5rem;
        text-decoration: none;
        color: rgb(100, 100, 100)
    }
    a:hover {
        color:#4CAF50;
        letter-spacing: 2px;
    }
    p {
        font-size: 0.8rem;
        text-align: center;
        bottom: 0;
    }
}





/*responsive design for mobile*/
@media only screen and (max-width: 959px) {
    video {
        width:100%;
    }
    
    .contactus {
        background-size: cover; 
        color: white;
    }
    .card {
        width:40%;
        font-size: 1.3rem;

        i {
            font-size: 3rem;
        }
    }
    .mobileTable {
        display: none;
    }
}

/*responsive design for tablets*/
@media only screen and (max-width: 640px) {
    
    video {
        width:100%;
    }
    
    .logo {
        width: 100%;
    }
    .contactus {
        background-size: cover; 
    }
    .card {
        width:40%;
        font-size: 1rem;
    }
}
/* responsive design for phones*/
@media only screen and (min-width: 320px) {
    video {
        width: 100%;
    }
    .logo {
        width:100%;
    }
    .contactus {
        background-size: cover; 
    }
    
}