@font-face{
    font-family:"titillium-regular";
    src:url("../fonts/Titillium_Web/TitilliumWeb-Regular.ttf");
    /*font-style:normal;
    font-weight:200;*/
    font-display:swap;
}
@font-face{
    font-family:"titillium-semibold";
    src:url("../fonts/Titillium_Web/TitilliumWeb-SemiBold.ttf");
    /*font-style:normal;
    font-weight:200;*/
    font-display:swap;
}
@font-face{
    font-family:"titillium-bold";
    src:url("../fonts/Titillium_Web/TitilliumWeb-Bold.ttf");
    /*font-style:normal;
    font-weight:200;*/
    font-display:swap;
}
/*@font-face {
    font-family: 'nyala';
    src:  url('../fonts/nyala/nyala.ttf') format('truetype');
    font-display:swap;
}*/
/*@font-face {
    font-family: 'BeinetCondensed';
    src:  url('../fonts/BeinetCondensed/BeinetCondensed.ttf') format('truetype');
    font-display:swap;*/
    /*font-style:normal;
    font-weight:200;*/
/*}*/
@font-face {
    font-family: 'losta-masta-bold';
    src:  url('../fonts/losta-masta-bold/losta-masta-bold.ttf') format('truetype');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'poppins-medium';
    src:  url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-display:swap;
}
@font-face {
    font-family: 'poppins-regular';
    src:  url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-display:swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'poppins-regular';
    line-height: 1.4;
    background-color: #fff;
    color: #231F20;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
body, html {
  overflow-x: hidden;
}
a{
    cursor: pointer;
}
/*@media only screen and (max-width: 992px) {
    body {
        display: none;
    }
}*/
.d-none{
    display: none;
}
.d-block{
    display: block;
}
.color-1{
    color: #8c191b;
}
.color-2{
    color: #fbb379;
}
.color-1{
    color: #f0e6b0;
}
.header{
    padding: 15px 5%;
}
.header-row{
    display: flex;
}
.header-row-col-1{
    width: 7%;
    display: flex;
    align-items: center;
}
.header-row-col-2{
    width: 93%;
    display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-row-col-1 img{
    width: 100%;
    display: block;
}
.header-row-col-2 ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
}
.header-row-col-2 ul li{
    margin-right: 40px;
}
.header-row-col-2 ul li:last-child{
    margin-right: 0;
}
.header-row-col-2 ul li a{
    font-family: 'losta-masta-bold';
    font-size: 18px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
}
.header-row-col-2 ul li a.active{
    color: #8b2c2c;
}
.mobile-btn{
    display: none;
}
#mobilebutton, #mobilebutton:hover, #mobilebutton:focus, #mobilebutton:active{
    background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  width: 40px;
  height: 40px;
}
#mobilebutton img{
    width: 100%;
    cursor: pointer;
}
.side-menu {
    width: 200px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 999;
    border-right: 1px solid rgb(0 0 0 / 10%);
    transform: translateX(-100%); /* hidden by default */
    transition: transform 0.5s ease;
}
.side-menu.active {
    transform: translateX(0);
}
.side-menu-header {
    display: flex;
    padding: 22px 15%;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.side-menu-header img{
    width: 60px;
    cursor: pointer;
    height: auto;
}
.side-menu-body{
    padding: 40px 15%;
}
.side-menu-body ul{
    list-style: none;
}
.side-menu-body ul li{
    margin: 0 0 20px 0;
}
.side-menu-body ul li a, .side-menu-body ul li a:hover, .side-menu-body ul li a:focus, .side-menu-body ul li a:active{
    font-size: 16px;
    color: black;
    text-decoration: none;
}
@media only screen and (max-width: 992px) {
    .header-row-col-1 {
        width: 10%;
    }
    .header-row-col-2 {
        width: 90%;
    }
}
@media only screen and (max-width: 768px) {
    .mobile-btn{
        display: block;
    }
    .header {
        padding: 20px 5%;
    }
    .header-row-col-1 {
        width: 12%;
    }
    .header-row-col-2 {
        width: 88%;
    }
    .header-row-col-2 ul {
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .header {
        padding: 20px 5%;
    }
    .header-row-col-1 {
        width: 20%;
    }
    .header-row-col-2 {
        width: 80%;
    }
}


/*.footer {
  padding: 50px 5%;
  background: #fbb379;
}
.footer-row-1 {
    display: flex;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.footer-row-1-left, .footer-row-1-right{
    width: 50%;
}
.footer-row-1-right{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer-row-1-left ul{
    list-style: none;
}
.footer-row-1-left ul li{
    margin: 0 0 10px 0;
}
.footer-row-1-left ul li a{
    text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
}
.footer-row-1-right-row {
    display: flex;
    max-width: 300px;
    margin: 0 0 15px 0;
}
.footer-row-1-right-row-left{
    width: 10%;
}
.footer-row-1-right-row-right{
    width: 90%;
}
.footer-row-1-right-row-left img{
    width: 100%;
}
.footer-row-1-right-row-right p{
    color: rgba(0, 0, 0, 0.75);
    text-align: left;
    padding-left: 15px;
    font-size: 16px;
}
.footer-row-1-right-row-right p a, .footer-row-1-right-row-right p a:hover, .footer-row-1-right-row-right p a:focus, .footer-row-1-right-row-right p a:active{
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
}

.footer-row-2{
    display: flex;
}
.footer-row-2-left, .footer-row-2-right{
    width: 50%;
}
.footer-row-2-right{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer-row-2-right-container{
    width: 100%;
    display: flex;
  justify-content: flex-end;
}
.footer-row-2-left p{
    text-align: left;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.footer-row-2-right ul{
    display: flex;
  list-style: none;
  justify-content: flex-start;
  max-width: 300px;
    width: 100%;
}
.footer-row-2-right ul li{
    margin-right: 10px;
}
.footer-row-2-right ul li:last-child{
    margin: 0;
}
.footer-row-2-right ul li img{
    width: 25px;
}
@media only screen and (max-width: 768px) {
    
}
@media only screen and (max-width: 575px) {
    .footer-row-1-left{
        width: 40%;
    }
    .footer-row-1-right {
        width: 60%;
    }
    .footer-row-1-left ul li a {
        font-size: 14px;
    }
    .footer-row-1-right-row-right p {
        font-size: 14px;
    }
    .footer-row-2-left p {
        font-size: 12px;
    }
    .footer-row-2-right ul li img {
        width: 20px;
    }
    .footer-row-2-right ul {
        justify-content: flex-end;
    }
}*/

#subscribeusmessage {
  color: #fcfbf1;
  font-size: 14px;
  margin: 0 0 10px 0;
}
.footer {
    padding: 50px 5%;
    background: #8b2c2d;
}
.footer-row-1 {
    display: flex;
    margin: 0 -1% 30px -1%;
}
.footer-row-1-col {
    width:31.33%;
    margin: 0 1%;
}
.footer-row-1 .col-1 h2{
    font-size: 36px;
    color: #fcfbf1;
}
.footer-row-1 .col-2 .link-1{
    margin: 0 0 30px 0;
    font-size: 16px;
  }
.footer-row-1 .col-2 .link-1 a{
    color: #fcfbf1;
    text-decoration: none;
}
.footer-row-1 .col-2 .link-2{
    margin: 0 0 5px 0;
    font-size: 16px;
  }
.footer-row-1 .col-2 .link-2 a{
    color: #fcfbf1;
    text-decoration: none;
}
.footer-row-1 .col-2 .link-3{
    margin: 0 0 15px 0;
    font-size: 16px;
  }
.footer-row-1 .col-2 .link-3 a{
    color: #fcfbf1;
    text-decoration: none;
}
.footer-row-1 .col-2 .link-4{
    margin: 0 0 30px 0;
    font-size: 16px;
}
.footer-row-1 .col-2 .link-4 a{
    color: #fcfbf1;
    text-decoration: none;
}
.footer-row-2{
    display: flex;
}
.footer-row-2-left, .footer-row-2-right{
    width: 50%;
}
.footer-row-2-left p{
    color: #fcfbf1;
  line-height: 1;
  display: flex;
  align-items: center;
}
.footer-row-2-left p img{
    width: 70px;
  display: block;
  position: relative;
  top: 2px;
  left: 7px;
  }
.footer-row-2-right p{
    text-align: right;
    color: #fcfbf1;
}
.footer-row-1 .col-2 .sm-links {
  display: flex;
  list-style: none;
}
.footer-row-1 .col-2 .sm-links li{
    margin-right: 7px;
}
.footer-row-1 .col-2 .sm-links li:last-child{
    margin-right: 0;
}
.footer-row-1 .col-2 .sm-links li a .img-1{
    width: 22px;
}
.footer-row-1 .col-2 .sm-links li a .img-2{
    width: 22px;
}
.footer-row-1 .col-2 .sm-links li a .img-3{
    width: 25px;
}
.footer-row-1 .col-2 .sm-links li a .img-4{
    width: 25px;
}
.footer-row-1 .col-2 .sm-links li a .img-5{
    width: 25px;
}
.footer-row-1 .col-3 h2{
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #fcfbf1;
}
.footer-row-1 .col-3 label{
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
    color: #fcfbf1;
    font-size: 16px;
}
.footer-row-1 .col-3 input, .footer-row-1 .col-3 input:hover, .footer-row-1 .col-3 input:focus, .footer-row-1 .col-3 input:active{
    width: 100%;
  padding: 15px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fcfbf1;
  outline: 0;
  box-shadow: none;
    margin: 0 0 10px 0;
    color: rgba(252, 251, 241, 0.5);
}
.footer-row-1 .col-3 textarea, .footer-row-1 .col-3 textarea:hover, .footer-row-1 .col-3 textarea:focus, .footer-row-1 .col-3 textarea:active{
    width: 100%;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fcfbf1;
  outline: 0;
  box-shadow: none;
    margin: 0 0 10px 0;
    color: rgba(252, 251, 241, 0.5);
}
.footer-row-1 .col-3 #footercontactusmessage {
  color: white;
  margin: 15px 0;
  font-size: 14px;
}
.footer-row-1 .col-3 button, .footer-row-1 .col-3 button:hover, .footer-row-1 .col-3 button:focus, .footer-row-1 .col-3 button:active{
width: 100%;
  padding: 15px;
  border: 0;
  background: #fcfbf1;
  color: #8b2c2d;
  font-size: 14px;
    cursor: pointer;
}
@media only screen and (max-width: 1024px) {
    .footer-row-1 .col-3 h2 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 992px) {
    
}
@media only screen and (max-width: 768px) {
    .footer-row-1{
        flex-wrap: wrap;
        margin: 0 -1% 15px -1%;
    }
    .footer-row-1-col {
        width: 100%;
        margin: 0 1% 30px 1%;
    }
    .footer-row-2{
        flex-wrap: wrap;
    }
    .footer-row-2-left, .footer-row-2-right {
        width: 100%;
    }
    .footer-row-2-right p {
        text-align: left;
        font-size: 14px;
    }
    .footer-row-2-left p {
        margin: 0 0 10px 0;
        font-size: 14px;
    }
}
@media only screen and (max-width: 575px) {
    .footer-row-1{
        flex-wrap: wrap;
        margin: 0 -1% 15px -1%;
    }
    .footer-row-1-col {
        width: 100%;
        margin: 0 1% 30px 1%;
    }
    .footer-row-1 .col-1 h2{
        font-size: 32px;
    }
    .footer-row-2{
        flex-wrap: wrap;
    }
    .footer-row-2-left, .footer-row-2-right {
        width: 100%;
    }
    .footer-row-2-right p {
        text-align: left;
        font-size: 14px;
    }
    .footer-row-2-left p {
        margin: 0 0 10px 0;
        font-size: 14px;
    }
}