* {
  margin: 0;
  padding: 0;
}

.pb-7 {
  padding-bottom: 5rem;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: transparent;
}

ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "|\00a0";
}

ul.breadcrumb li a {
  color: #000000;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.breadcrumb li:last-child {
  color: #000;
}

.internal-banner-img img {
  position: relative;
  z-index: 9;
}

.internal-banner-img::before {
  content: '';
  background: url(../images/internal-page-shadow.png) no-repeat;
  width: 849px;
  height: 700px;
  position: absolute;
  left: -79px;
  top: 0px;
  background-position: left top;
  background-size: 100%;
  z-index: 1;
}

.int-banner {
  width: 743px;
}

.content-heading {
  font-size: 30px;
  font-weight: 600;
}

.about-img-int {
  position: relative;
}

.breadcrumb li,
.breadcrumb li a {
  text-transform: uppercase;
}

/* .internal-about {
  padding-top: 80px;
  padding-bottom: 80px;
} */

.internal-about-img::before {
  content: '';
  background: url(../images/about-mvl-before.png) no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 30px;
  background-position: right top;
  background-size: 28%;
  z-index: -1;
}

.content p {
  font-size: 18px;
  color: #696868;
}

/* List Css */

ol li {
  font-size: 20px;
  color: #696868;
  margin-bottom: 8px;
  position: relative;
  padding-left: 10px;

}

.listStyle li {
  font-size: 20px;
  color: #696868;
  margin-bottom: 8px;
  position: relative;
  padding-left: 28px;
  list-style: none;
}

.listStyle li:before {
  content: '\f18e';
  font-family: FontAwesome;
  color: #4bbecb;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0;
}


/* table css */
table th {
  background-color: #f6ee33;
  color: #ffffff;
}

/* Accordion */
.accordion-number {
  background-color: #f6ee33;
  margin-left: -18px;
  color: #000;
  padding: 19px;
  position: relative;
  margin-right: 25px;
}

.accordion-number::before {
  content: '';
  background: url(../images/angle-new.png) no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -17px;
  top: 3px;
  background-position: right top;
  background-size: 44%;
  z-index: 0;
}

p.accordion {
  background-color: #f2f2f2;
  color: #696868;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom: 10px;
  font-family: 'Heebo';
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.accordion.active,
p.accordion:hover {
  background-color: #f6ee33;
  color: #000;
}

/* Unicode character for "plus" sign (+) */
p.accordion:after {
  content: '\f107';
  font-size: 22px;
  color: #000000;
  font-family: FontAwesome;
  float: right;
  margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.accordion.active:after {
  content: "\f106";
  font-family: FontAwesome;
  color: #ffffff;
}

/* Style the element that is used for the panel class */

div.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  opacity: 0;
  margin-bottom: 10px;
}

div.panel.show {
  opacity: 1;
  max-height: 500px;
  /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

/* tabber css */
.tabs {
  color: #000;
}

.tabs h6.section-title {
  color: #000;
}

.tabs .nav-tabs .nav-item.show .nav-link,
.tabs .nav-tabs .nav-link.active {
  color: #f3f3f3;
  background-color: #f6ee33;
  border-color: transparent transparent #f3f3f3;
  border-bottom: 4px solid #f6ee33 !important;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff !important;
}

.tabs .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: #000;
  font-size: 20px;
}

/* form CSS */
/* Form */

.bg-grey {
  background-color: #fafafa;
  border: 1px solid #cccccc50;
  box-shadow: 0 0 10px #cccccc
}

.formStyle .form-group {
  margin-bottom: 25px;
}

.formStyle .form-control {
  border-radius: 2px;
  height: 40px;
  padding: 25px 0px 25px 50px;
  box-shadow: none;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: #b7b7b7 solid 1px;
  color: #393b3f;
  font-size: 15px;
}

.formStyle .btn-default {
  background-color: #f6ee33;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 50px;
}

.formStyle .btn-default:hover {
  background-color: #f6ee33;
  color: #000 !important;
  transition: all 0.5s;
}

.formStyle .form-group img {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 22px;
}

.form-control:focus {
  border-color: #00000080 !important;
  box-shadow: 0 8px 6px -6px #d8d8de;
  ;
}

::placeholder {
  color: #53585f !important;
  font-size: 17px;
}

.contact .fa {
  position: absolute;
  font-size: 24px;
  width: 40px;
  height: 25px;
  line-height: 25px;
  line-height: 2;
  padding: 0 5px;
  text-align: center;
  position: absolute;
  left: 0;
  color: #f6ee33;
}

.btn-reset {
  border: 2px solid #f6ee33;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 50px;
}


@media only screen and (max-width: 767px) {
  ul.breadcrumb {
    padding: 10px 0px;
  }

  ul.breadcrumb li {
    display: inline;
    font-size: 15px;
  }

  ol li {
    font-size: 16px;
  }

  .listStyle li {
    font-size: 16px;
  }

  .btn-reset {
    font-size: 12px;
    padding: 8px 30px !important;
  }

  .internal-about-img::before {
    display: none;
  }

  .about-img-int {
    margin-left: 0px;
  }

  .formStyle .btn-default {
    background-color: #34abe0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 40px;
  }
}

@media only screen and (max-width: 580px) {
  .formStyle .form-group img {
    position: initial;
  }
}

@media only screen and (max-width:320px) {
  .accordion-number {
    background-color: #f6ee33;
    margin-left: -23px;
    color: #ffffff;
    padding: 15px;
    position: relative;
    margin-right: 20px;
  }
}