h2 {
  font-size: 30px;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.top-container {
  width: 100%;
  /* background-color: rgb(54, 53, 53); */
  background-color: #000000e5;
  padding: 6px 0;
}
.top {
  display: flex;
  margin: auto;
  width: fit-content;
  color: #efefef;
  text-align: center;
  justify-content: center;
}
.top .top-content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  /* padding: 2px 10px; */
  /* margin: 0 5px; */
  font-size: 14px;
}
.top a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 14px;
  margin: 3px;
}
.top a:hover {
  opacity: 0.8;
}
.top p {
  padding: 2px 4px;
  font-size: 14px;
  color: #e0e0e0;
  margin: 0;
}
.top i {
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 2px;
}
.top-content img {
  width: 20px;
  height: 18px;
  border-radius: 2px;
}
.heading-banner {
  /* height: 80px; */
  background-color: #ff4800;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 35px;
  padding: 5px 60px;
  font-weight: 600;
}
.heading {
  margin: auto;
  width: fit-content;
  color: #181616;
  margin-top: 60px;
  margin-bottom: 40px;
}
.btn:hover {
  opacity: 0.6;
}
/* Header */
.header {
  display: flex;
  align-items: center;
  vertical-align: middle;
  width: 100%;
  border-bottom: 1px solid #6666661c;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}
.header a {
  text-decoration: none;
  margin: auto;
}
.header .logo img {
  height: 80px;
}
.header ul {
  z-index: 100;
  list-style: none;
  margin: auto;
  padding: 0;
}
@media screen and (min-width: 601px) {
  #sub-header {
    display: flex !important;
  }
}
.header ul li {
  margin: 0 5px;
}
.header ul a {
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  /* line-height: 20px; */
  padding: 10px;
  /* text-transform: uppercase; */
  color: #181616;
  cursor: pointer;
}
#active {
  color: white;
  background-color: #ff4800;
  box-sizing: border-box;
}
.header ul a:hover {
  color: white;
  background-color: #ff4800;
}
.dropbtn {
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 10px;
  margin: 0 5px;
  /* text-transform: uppercase; */
  color: #181616;
  cursor: pointer;
}
/* .dropbtn:hover {
  color: white;
  background-color: black;
} */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 0 0 4px 5px;
  margin-top: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-left: 0.5px solid #6666661c;
  border-right: 0.5px solid #6666661c;
  border-bottom: 0.5px solid #6666661c;
  box-sizing: border-box;
}
.dropdown:hover .dropdown-content {
  display: block;
  animation: dropDownAnimation 0.2s;
  transition: all 0s linear;
  transform-origin: left top;
}
@keyframes dropDownAnimation {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes open {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes close {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

.dropdown-content a {
  display: block;
  border-bottom: 0.5px solid #6666661c;
  border-radius: 0;
  padding: 10px 20px;
  width: 220px;
}
.header .icon {
  display: none;
}
.header .icon:hover {
  opacity: 0.5;
}
/* responsive */
@media screen and (max-width: 600px) {
  .heading-banner {
    font-size: 24px;
  }
  input,
  select,
  textarea {
    font-size: 12px;
    padding: 8px 10px !important;
  }

  label {
    font-size: 14px;
  }
  h2 {
    line-height: 30px;
    font-size: 20px;
  }
  h3 {
    line-height: 26px;
    font-size: 18px;
  }
  td,
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .heading-banner {
    font-size: 26px;
    padding: 5px 20px;
  }
  .header .icon {
    display: block;
    color: #000000ec;
    font-size: 24px !important;
    margin-left: 30px;
  }
  #sub-header {
    display: none;
    position: absolute;
    left: 0;
    top: 80px;
    background-color: white;
    border-radius: 0 0 5px 0;
  }
  #sub-header .dropdown-content {
    display: absolute;
    margin-top: 0;
    background-color: white;
    border: none;
    border-radius: 5px;
    min-width: 180px;
    left: 50px;
  }
  #sub-header a {
    display: block;
    min-width: 160px;
    padding-left: 25px;
  }
}

@media only screen and (min-width: 801px) {
  a.logo {
    margin-left: 40px;
  }
}
@media screen and (max-width: 950px) {
  .top-container {
    padding-bottom: 5px;
  }
  .top {
    display: block;
  }
  .top-content {
    display: inline-block;
  }
}

.tramt-border {
  border-bottom: 1px solid #e77244;
  box-sizing: border-box;
}
.tramt-border-all {
  border: 1px solid #e77244d8;
  box-sizing: border-box;
}
.tramt-btn {
  background-color: #ff4800;
  color: #fff;
}
.tramt-btn-primary {
  text-decoration: none;
  border-radius: 2px;
  padding: 4px;
  background-color: #181616;
  color: white;
}
