.logo {
margin-top: 42px;
margin-bottom: 42px;
justify-content: center;
align-items: center;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: white;
  padding-bottom:82px;
}
.header_bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/main-image.jpg) no-repeat;
  background-position: top center;
  -o-object-fit: cover;
  object-fit: cover;
}
.header_content {
  position: relative;
  width: 100%;
  height: 100%;
}
h1 { 
font-size: 45px;
font-family: "Bebas Neue";
text-align: center;
}
p {
font-size: 20px;
line-height: 1.7;
font-family: "Bebas Neue";
text-align: left;
}
button{
    font-size: 20px;
    font-family: "Bebas Neue";
    position: relative;
}
.accordion {
    background-color: #353434;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    transition: .2s;

}
.active, .accordion:hover {
    background-color: rgb(190, 1, 1);
}
.panel {
    padding: 0 18px;
    background-color: #6b6a6a;
    color: white;
    display: none;
    overflow: hidden;
}
.accordion::before {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    margin-left: 0px;
    margin-right: 0px;
    text-align: left;
}  
.active:before {
    color:#444;
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.tCard img{
  width: 100%;
  object-fit: contain;
}
.contact{
  text-align: center;
}
