h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: rgb(28, 28, 28);
}

h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
  color: rgb(28, 28, 28);
}

h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  color: rgb(28, 28, 28);
}

.intro-text p {
  font-size: 16px;
  color: rgb(64, 64, 64);
  margin-bottom: 14px;
  line-height: 1.6;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.columns-2 {
  grid-template-columns: 70% 28%;
}

.global-width {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.background-white {
  background-color: #fff;
}

.space {
  justify-content: space-between;
}

.align {
  align-items: center;
}

main {
  background-color: rgb(228, 228, 228);
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 30px;
}

img {
  display: block;
}

.border-radius {
  border-radius: 4px;
  overflow: hidden;
}

blockquote {
  background-color: rgba(236, 236, 235, 0.5);
  border-left: 4px solid rgb(191, 87, 87);
  padding: 16px;
  margin: 30px 0;
}

.no-leftborder {
  background-color: rgba(236, 236, 235, 0.5);
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 8px;
  margin-bottom: 26px;
}

.no-leftborder img{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 20px;
  /* margin-top: 2px; */
  width: 110px;
  height: 80px;
  object-fit: cover;
}

blockquote .quote-text {
  font-size: 16px;
  color: rgb(64, 64, 64);
}

p.quote-text{
  font-size: 16px;
}

a p{
  padding: 0px 12px;
}

.read-more{
  color: rgb(191, 87, 87);
}

.video{
  height: 500px;
  width: 100%;
  object-fit: cover;
}

cite {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: rgb(144, 144, 144);
}

cite i {
  font-size: 22px;
  color: rgb(176, 176, 176);
}

.right-content > div {
  padding: 24px;
  margin-bottom: 20px;
}

/* header start  */
a {
  font-size: 16px;
  text-decoration: none;
  color: rgb(191, 87, 87);
}

header {
  background-color: #2c2c2c;
  position: sticky;
  top: 0;
  z-index: 2;
}

nav,
.bh-inner {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.left {
  display: flex;
  gap: 30px;
  font-size: 12px;
}

.left .phone,
.left {
  color: #efefef;
  gap: 14px;
  display: flex;
  align-items: center;
}

.icons-right {
  display: flex;
  gap: 10px;
  font-size: 16px;
}

.icons-right span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #5a5a5a;
  color: white;
}

.bottom-header {
  background-color: white;
  border-bottom: 3px solid rgb(228, 228, 228);
  font-weight: 500;
}

.bottom-header li > a:hover {
  color: rgb(191, 87, 87);
}

.chevron-down {
  position: relative;
  left: -6px;
  top: -1px;
  margin-left: 10px;
}

.links ul {
  display: flex;
  list-style: none;
}

.links ul a {
  text-decoration: none;
  color: rgb(35, 35, 35);
  padding-left: 20px;
  padding-right: 4px;
  cursor: pointer;
  font-size: 14px;
}

.links ul i {
  cursor: pointer;
  font-size: 10px;
}

.links li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 20px;
  padding-top: 12px;
  left: 0;
  width: 270px;
  display: none;
  z-index: 2;
}

.links li > a:hover,
a.active {
  color: rgb(191, 87, 87) !important;
}

.links li > a:hover + .dropdown,
.dropdown:hover {
  display: block;
}

.dropdown a {
  padding: 10px 20px !important;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.dropdown a:hover {
  background-color: rgb(229, 229, 229);
}

.image-text h5 {
  font-size: 14px;
  font-weight: 400;
  color: rgb(45, 45, 45);
}

.image-text .red-text {
  font-size: 13px;
  font-weight: 400;
}

.ul-main {
  padding-left: 30px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.text-500 {
  font-weight: 500;
  color: rgb(28, 28, 28);
}

.scroll-right {
  position: sticky;
  top: 126px;
}

.width-50 {
  width: 48%;
}

.extra,
.header-menu {
  display: none;
}

@media (max-width: 1400px) {
  .bottom-header,
  nav {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1220px) {
  .columns-2 {
    grid-template-columns: 100%;
  }
  .right-content {
    margin-top: 20px;
  }

  .container{
    padding: 0 20px;
  }

  .right-links > a {
    width: 48%;
  }
   .links .btn-login {
   width: max-content;
   margin-left: auto;
 }

  nav {
    display: none;
  }
  .links {
    position: fixed;
    top: 108px;
    background-color: rgba(0, 0, 0, 0.794);
    right: 0;
    width: 25%;
    min-width: 250px;
    height: calc(100vh - 108px);
    padding: 14px;
    z-index: 2;
    transform: translateX(1000px);
    transition: 0.3s ease-in-out;
  }
  .activated .links {
    transform: translateX(0);
  }
  .links ul {
    display: block;
    text-align: right;
    padding-right: 10px;
  }
  .links a {
    color: #fff !important;
    padding-bottom: 14px;
    display: block;
  }
  .header-menu {
    display: block;
    cursor: pointer;
    font-size: 20px;
  }

  .bottom-header,
  nav {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-links {
    padding-left: 8px;
  }

  .extra {
    display: block;
    position: relative;
  }

  .extra a {
    color: black;
    padding-right: 8px;
  }

  .extra a i {
    font-size: 10px;
  }
  .btn-database {
    padding: 8px 20px;
    background-color: rgb(194, 96, 96);
    border: none;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    letter-spacing: .3px;
  }

  .bm-results{

    padding: 8px 20px;
    background-color: rgb(194, 96, 96);
    border: none;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    letter-spacing: .3px;
  }
}

@media (max-width: 567px) {
  .right-links > a {
    width: 100%;
  }
.flex.space{
  flex-wrap: wrap;
}
  .width-50{
    width: 100%;
  }

  .intro-text {
    padding: 12px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  .intro-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }

  p.quote-text{
  font-size: 16px;
  }

  p {
    font-size: 24px;
  }
  form input::placeholder, input, select {
    font-size: 14px;
  }

  .intro-text p,
  .intro-text a,
  .intro-text li,
  label,
  option,
  select,
  button.btn-red,
  cite,
  cite i,
  footer {
    font-size: 16px;
  }
  .home .intro-content a > div {
    flex-direction: column;
    padding-right: 20px;
 }
 .no-leftborder img{
   width: 100%;
   height: 120px;
   margin-bottom: 15px;
 }
 .no-leftborder p {
   padding: 0px;
 }
}
