.title-style {
    color: #1a55b0;
    font-size: 41px;
    border-collapse: collapse;
    border: none;
    font-family: "Calibri",sans-serif;
    margin-right:0px;
    margin-bottom:0px;
    letter-spacing:-.5pt;
    font-weight: bold;
    position: relative;
    line-height: 43px;
}

.para-style {
    font-family: Calibri, sans-serif;
    font-size: 18px;
    text-align: justify;
    line-height: 25px;
}
hr{
    border-top: 2px solid rgba(0,0,0,.2) !important;
}
/*valign="top" style="width:632.65pt;padding:0cm 5.4pt 0cm 5.4pt; height:87.55pt"*/
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}
.logo{
    position: relative;
    width: 180px;
    height: 180px;
}
.pad-40{
    padding: 50px 5px 0 10px;    
}
.data-container{
    height: 95vh;
    width: 70%;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
    .pad-10{
        padding:5px;
    }
    .p-container{
        display: contents !important;
    } 
    .logo {
        position: relative;
        width: 100px !important;
        height: 100px !important;
    }
    .pad-40{
        padding: 40px 5px 0 10px;        
    }
    .data-container{
        height: 95vh;
        width: 90%;
    }
}
@media screen and (max-width:1024px) and (min-width:767px){
   
    .title-style{
        font-size: 29px;
        padding: 10px;
    }
 
    .logo{
        position: relative;
        width: 110px;
        height: 110px;
    }
    .pad-40{
        padding: 40px 5px 0 10px;        
    }
    .data-container{
        height: 95vh;
        width: 80%;
    }
}
.img-fit-screen {
    width: 110px;
    height: 90px;
    image-resolution:500dpi;
}

#dock-container {
    position: fixed;
    bottom: 10%;
    text-align: center;
    right: 10%;
    left: 10%;
    width: 80%;
    background: #82bef6;
    border-radius: 10px 10px 10px 10px;
}
    #dock-container li {
    list-style-type: none;
    display: inline-block;
    position:inherit;
}
    #dock-container li img {
        width: 100px;
        height: 110px;
        -webkit-box-reflect: below 1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.7, transparent), to(rgba(255,255,255,.5)));
        -webkit-transition: all 0.3s;
        -webkit-transform-origin: 50% 100%;
    }

    #dock-container li:hover img {
        -webkit-transform: scale(2);
            margin: 0 2em;
            border:solid;
            border-image-width:0.5px;

    }

    #dock-container li:hover + li img,
    #dock-container li.prev img {
        -webkit-transform: scale(1.5);
        margin: 0 1.5em;
    }
    #dock-container li span {
        display: none;
        position: absolute;
        bottom: 140px;
        left: 0;
        width: 100%;
        background-color: rgba(0,0,0,0.75);
        padding: 4px 0;
        border-radius: 12px;
    }

    #dock-container li:hover span {
        display: block;
        color: #337ab7;
    }

    /*/* dashboard site CSS- begins*/
/* Simple dashboard grid CSS */

/* Assign grid instructions to our parent grid container */
.grid-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 50px 1fr 50px;
    grid-template-areas: "sidenav header" "sidenav main" "sidenav footer";
    height: 100vh;
}

/* Give every child element its grid name */
.header {
    grid-area: header;
    background-color: #648ca6;
}

.sidenav {
    grid-area: sidenav;
    background-color: #394263;
}

.main {
    grid-area: main;
    background-color: #8fd4d9;
}

.footer {
    grid-area: footer;
    background-color: #648ca6;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Side nav is hidden on mobile */
    grid-template-rows: 50px 1fr 50px;
    grid-template-areas: 'header' 'main' 'footer';
    height: 100vh;
}

.main-cards {
    column-count: 2;
    column-gap: 20px;
    margin: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #82bef6;
    margin-bottom: 20px;
    -webkit-column-break-inside: avoid;
    padding: 24px;
    box-sizing: border-box;
}

    /* Force varying heights to simulate dynamic content */
    .card:first-child {
        height: 485px;
    }

    .card:nth-child(2) {
        height: 200px;
    }

    .card:nth-child(3) {
        height: 265px;
    }

.main-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); /* Where the magic happens */
    grid-auto-rows: 94px;
    grid-gap: 20px;
    margin: 20px;
}

.overviewcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #d3d3;
}

.sidenav {
    display: none;
    grid-area: sidenav;
    background-color: #394263;
}

.main-cards {
    column-count: 1;
    column-gap: 20px;
    margin: 20px;
}

/* Non-mobile styles, 750px breakpoint */
@media only screen and (min-width: 46.875em) {
    /* Show the sidenav */
    .grid-container {
        grid-template-columns: 240px 1fr; /* Show the side nav for non-mobile screens */
        grid-template-areas: "sidenav header" "sidenav main" "sidenav footer";
    }

    .sidenav {
        display: flex;
        flex-direction: column;
    }
}

/* Medium-sized screen breakpoint (tablet, 1050px) */
@media only screen and (min-width: 65.625em) {
    /* Break out main cards into two columns */
    .main-cards {
        column-count: 2;
    }
}

/* Hamburger menu icon, stays fixed on mobile for any possible scrolling */
.menu-icon {
    position: fixed;
    display: flex;
    top: 5px;
    left: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    padding: 12px;
    background-color: #DADAE3;
}

/* Make room for the menu icon on mobile */
.header__search {
    margin-left: 42px;
}

/* Mobile-first side nav styles */
.sidenav {
    grid-area: sidenav;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 240px;
    position: fixed;
    overflow-y: auto;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    z-index: 2; /* Needs to sit above the hamburger menu icon */
    background-color: #394263;
    transform: translateX(-245px);
    transition: all .6s ease-in-out;
}

    /* The active class is toggled on hamburger and close icon clicks */
    .sidenav.active {
        transform: translateX(0);
    }

/* Only visible on mobile screens */
.sidenav__close-icon {
    position: absolute;
    visibility: visible;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
    color: #ddd;
}

/* Non-mobile styles for side nav responsiveness, 750px breakpoint */
@media only screen and (min-width: 46.875em) {
    .sidenav {
        position: relative; /* Fixed position on mobile */
        transform: translateX(0);
    }

    .sidenav__close-icon {
        visibility: hidden;
    }
}
.sidenav {
    display: flex; /* Will be hidden on mobile */
    flex-direction: column;
    grid-area: sidenav;
    background-color: #394263;
}
.main-header {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    padding: 20px;
    height: 150px; /* Force our height since we don't have actual content yet */
    background-color: #e3e4e6;
    color: slategray;
}
.sidenav__list {
    padding: 0;
    margin-top: 85px;
    list-style-type: none;
}

.sidenav__list-item {
    padding: 20px 20px 20px 40px;
    color: #ddd;
}

    .sidenav__list-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer;
    }

.header, .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background-color: #648ca6;
}

.p-container{
    display: flex;
    justify-content: space-between;
    padding: 5px 5px 5px 5px;
}
.pad-10{
    padding: 10px;
}
.pad-20{
    padding: 20px 80px 20px 80px;
}
.pad-30{
    padding: 5px 80px;
}
.title-pad-20 {
    padding: 20px 10px 10px 10px;
}
.link{
    font-size: 18px;
    font-family: Calibri, sans-serif;
    height: 30px;
    text-align: center;
    display: flex;
}
.link li{
    width: 10px;
}
.link img:hover{
    transition: .5s ease;
    transform: scale(1.2);
}

 .container {
    position: relative;
    width: 80%;
  }
 
 .image {
    opacity: 1;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 6px;
    transition: .5s ease;
    backface-visibility: hidden;
  } 
  
  
  
  .text {
    background-color: #82bef6;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    padding: 16px 32px;
  }
  .d-flex{
      display: flex;
      width: 100%;
      margin: auto;
      padding-top: 20px;
  }
/* .item-flex{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
} */
  .middle {
    position: absolute; 
    bottom: 0; 
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    color: #f1f1f1; 
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    display: none;
  }
  
 .bg-secondary {
    background-color: #fff!important;
    height: 90px;
 }
.telephone{
    background: url(images/telephone.svg);
    background-repeat: no-repeat;
    background-size: 16px;
}

.c-align{
    text-align: center;
    font-size: 18px;
    color: #067dfe;
    /* text-decoration: underline; */
    position: relative;
}
  
  .c-align::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #0074D9;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .c-align:hover::before{
      left: 0;
      right: auto;
      width: 100%;
    }
  }
.shadow-b{
    box-shadow: 0 0 35px 1px #000000e0 !important ;
    animation: fadeInAnimation ease 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background: white;
    opacity: 0.95;
    text-align: center;
    /* animation-name: scale-in; */
}

  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
/* @keyframes scale-in {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
     }
} */
/* .data-container{
    height: 95vh;
    width: 70%;
} */
.hero {
  /* position: relative;
  height: 100vh;
  width: 100%;
  display: flex; */
  /* align-items: center;
  justify-content: center; */
  /* align-items: flex-start;
    justify-content: normal; */
}
.hero::before {
  content: "";
  background-image: url("images/bg-2.jpg");
  background-size: cover;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
  filter: blur(5px);
  -webkit-filter: blur(5px); 
}

 .media-29101 span, .super{
     font-size: 20px;
 }
 @media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1043px !important;
    }
 }

 @media (min-width: 992px){ 
    .container, .container-lg, .container-md, .container-sm {
        max-width: 845px !important;
    }
}

 @media (min-height: 900px){
    .para-style{
        font-family: Calibri, sans-serif;
        font-size: 17px !important;
        text-align: left;
    }
    .c-align{
        text-align: center;
        font-size: 20px;
        color: #067dfe;
        text-decoration: underline;
    }
    .link{
        font-size: 21px;
    }
    p {
        font-size: 21px;
        font-family: Calibri, sans-serif;
        line-height: 24px;
      }

      .media-29101 span, .super{
     font-size: 22px;
 }
 }
 @media (min-height: 1440px){
    .para-style{
        font-family: Calibri, sans-serif;
        font-size: 20px !important;
        text-align: left;
    }
    .c-align{
        text-align: center;
        font-size: 25px !important;
        color: #067dfe;
        text-decoration: underline;
    }
    .title-style {
        color: #1a55b0;
        font-size: 47px !important;
        border-collapse: collapse;
        border: none;
        font-family: "Calibri",sans-serif;
        margin-right:0px;
        margin-bottom:0px;
        letter-spacing:-.5pt;
        font-weight: bold;
        position: relative;
    }
    .link{
        font-size: 25px;
    }
    p {
      font-size: 25px;
        font-family: Calibri, sans-serif;
        line-height: 25px;
    }
    .media-29101 span, .super{
        font-size: 25px;
    }
 }
 .nowrap{
     white-space: nowrap;
 }
 .img-fluid {
    max-width: 100%;
    height: 80px !important;
 }