@font-face {
    font-family: 'PoppinsRegular';
    src:  url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'PoppinsMedium';
    src:  url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'PoppinsSemiBold';
    src:  url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'PoppinsLight';
    src:  url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'HelveticaNeueLight';
    src:  url('../fonts/helvetica-neue/HelveticaNeueLight.otf') format('OpenType');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'HelveticaNeueMedium';
    src:  url('../fonts/helvetica-neue/HelveticaNeueMedium.otf') format('OpenType');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'HelveticaNeueBlack';
    src:  url('../fonts/helvetica-neue/HelveticaNeueBlack.otf') format('OpenType');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}
@font-face {
    font-family: 'Hastegi';
    src:  url('../fonts/Hastegi/Hastegi.otf') format('OpenType');
    font-display:swap;
    /*font-style:normal;
    font-weight:200;*/
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'HelveticaNeueLight';
    line-height: 1.4;
    background-color: #fff;
    color: #231F20;
    padding: 0;
    overflow-x: hidden;
}
a{
    cursor: pointer;
}
/*@media only screen and (max-width: 992px) {
    body {
        display: none;
    }
}*/

.w-100{
    width: 100%;
}
.d-none{
    display: none;
}
.d-block{
    display: block;
}

/*@media only screen and (max-width: 1024px) {
    body{
        display: none;
    }
}*/

@media only screen and (max-width: 768px) {
    .d-tab-none{
        display: none;
    }
    .d-tab-block{
        display: block;
    }
}
@media only screen and (min-width: 768px) {
    .d-desk-none{
        display: none;
    }
    .d-desk-block{
        display: block;
    }
}
.mb-0{
    margin-bottom: 0px !important;
}
.mb-15{
    margin-bottom: 15px !important;
}
.mb-30{
    margin-bottom: 30px !important;
}
.mt-10{
    margin-top: 10px !important;
}
.mt-15{
    margin-top: 15px !important;
}
.mt-30{
    margin-top: 30px !important;
}

#newsletterformmessage{
    color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.header {
    padding: 30px 5%;
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
}
.header-left{
    width: 20%;
}
.header-middle{
    width: 60%;
    display: flex;
  justify-content: center;
  align-items: center;
}
.header-right{
    width: 20%;
    display: flex;
    justify-content: end;
  align-items: center;
}
.header-left img{
    display: block;
    width: 160px;
}
.header-middle ul{
    display: flex;
    list-style: none;
}
.header-middle ul li{
    margin-right: 50px;
}
.header-middle ul li:last-child{
    margin-right: 0;
}
.header-middle ul li a{
    text-decoration: none;
    color: black;
}
.header-right a img, .header-right #headerusermenu img{
    width: 30px;
}
.header-right a, .header-right #headerusermenu{
    margin-right: 50px;
}
.header-right a:nth-child(2){
    margin-right: 0;
}
#headerusermenu{
    position: relative;
}
#headerusermenu:hover .header-user-menu{
    display: block;
}
.header-user-menu{
    display: none;
    position: absolute;
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255, 233, 207);
  z-index: 999;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.header-user-menu ul{
    list-style: none;
}
.header-user-menu ul li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}
.header-user-menu ul li:hover{
    background: white;
}
.header-user-menu ul li a{
    padding: 7px 15px;
  text-decoration: none;
  color: black;
  display: block;
  width: 100%;
  margin: 0;
}
#mobilemenubtn{
    display: none;
}
@media (max-width:1440px){
    .header-middle ul li a {
        font-size: 14px;
    }
}
@media (max-width:1200px){
    .header-middle{
        display: none;
    }
    #mobilemenubtn{
        display: block;
    }
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-right a:nth-child(2), .header-right #headerusermenu{
        margin-right: 40px;
    }
    .header-right a:last-child{
        margin-right: 0;
    }
    .header-left img {
        width: 150px;
    }
}
@media (max-width:1024px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 150px;
    }
}
@media (max-width:992px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 150px;
    }
}
@media (max-width:768px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 150px;
    }
}
@media (max-width:575px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 120px;
    }
}
@media (max-width:425px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 120px;
    }
}
@media (max-width:375px){
    .header-left{
        width: 40%;
    }
    .header-right{
        width: 60%;
    }
    .header-right a img, .header-right #headerusermenu img {
        width: 25px;
    }
    .header-right a {
        margin-right: 30px;
    }
    .header-left img {
        width: 120px;
    }
}


.footer{
    padding: 50px 5%;
    margin: 50px 0 0 0;
    background: black;
}
.footer-row-1 {
    display: flex;
    /*margin: 0 -1%;*/
    justify-content: space-between;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
    /*width: 23%;
    margin: 0 1%;
    padding-right: 5%;*/
}
.footer-title{
    font-size:18px;
    color: white;
    margin: 0 0 10px 0;
}
.newsletter-form{
    width: 100%;
    min-width: 250px;
  display: flex;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.newsletter-form input, .newsletter-form input:hover, .newsletter-form input:focus, .newsletter-form input:active{
    width: 100%;
  background: transparent;
  color: white;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.newsletter-form button, .newsletter-form button:hover, .newsletter-form button:focus, .newsletter-form button:active{
    width: 30px;
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    cursor: pointer;
    display: flex;
  justify-content: flex-end;
  align-items: center;
}
.newsletter-form button img{
    width: 25px;
}
.footer-links{
    list-style: none;
}
.footer-links li{
    margin: 0 0 7px 0;
}
.footer-links li a{
    color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-decoration: none;
}

.footer-sm-links{
    list-style: none;
    display: flex;
}
.footer-sm-links li{
    margin: 0 15px 10px 0;
}
.footer-sm-links li a{
    color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-decoration: none;
}
.footer-sm-links li a img{
    width: 25px;
    opacity: 0.75;
}

.footer-row-3 p{
    color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

@media (max-width:1200px){
    .header-middle{
        display: none;
    }
    #mobilemenubtn{
        display: block;
    }
}
@media (max-width:1024px){
    
}
@media (max-width:992px){
    .footer-row-1 {
        flex-wrap: wrap;
    }
    .footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
        width: 48%;
        margin: 0 0 20px 0;
    }
    .footer-row-1-col-1, .footer-row-1-col-3{
        padding-right: 10%;
    }
    .footer-row-1-col-4 {
        margin: 0;
    }
    .footer-title{
        font-size: 16px;
    }
}
@media (max-width:768px){
    .footer-row-1 {
        flex-wrap: wrap;
    }
    .footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
        width: 48%;
        margin: 0 0 20px 0;
    }
    .footer-row-1-col-1, .footer-row-1-col-3{
        padding-right: 10%;
    }
    .footer-row-1-col-4 {
        margin: 0;
    }
    .footer-title{
        font-size: 16px;
    }
}
@media (max-width:575px){
    .footer {
        margin: 40px 0 0 0;
    }
    .footer-row-1 {
        flex-wrap: wrap;
    }
    .footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .footer-row-1-col-4 {
        margin: 0;
    }
    .footer-title{
        font-size: 16px;
    }
}
@media (max-width:425px){
    .footer {
        margin: 40px 0 0 0;
    }
    .footer-row-1 {
        flex-wrap: wrap;
    }
    .footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .footer-row-1-col-4 {
        margin: 0;
    }
    .footer-title{
        font-size: 16px;
    }
}
@media (max-width:375px){
    .footer {
        margin: 40px 0 0 0;
    }
    .footer-row-1 {
        flex-wrap: wrap;
    }
    .footer-row-1-col-1, .footer-row-1-col-2, .footer-row-1-col-3, .footer-row-1-col-4 {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .footer-row-1-col-4 {
        margin: 0;
    }
    .footer-title{
        font-size: 16px;
    }
}

/* mobile menu css starts */
/* Side Menu */
#sideMenu {
  position: fixed;
  top: 0;
  right: -220px;
  width: 220px;
  height: 100%;
  background: #fcebda;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  z-index: 999;
  padding: 30px;
}

#sideMenu.active {
  right: 0;
}

/* Menu Items */
.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  margin-bottom: 20px;
}

.menu-list a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}
/* mobile menu css ends */


/* signin and signup modal css starts */
/* Overlay */
#authModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
    backdrop-filter: blur(1px);
}

/* Box */
.auth-box {
  background: #fff;
  max-width: 500px;
  padding: 60px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

/* Close */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Tabs */
.tabs {
  display: flex;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: rgba(239, 179, 121, 0.25);
  color: #000;
  cursor: pointer;
}

.tab.active {
  background: rgba(239, 179, 121, 0.9);
  color: #000;
}

/* Content */
.tab-content {
  display: none;
}

.tab-content h2{
    font-size: 18px;
    margin: 0 0 10px 0;
}

.tab-content.active {
  display: block;
}

/* Inputs */
.auth-box input, .auth-box input:hover, .auth-box input:focus, .auth-box input:active {
    color: rgba(0, 0, 0, 0.75);
    width: 100%;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border: 0;
    border-bottom: 1px solid #ccc;
    outline: 0;
    box-shadow: none;
}

/* Button */
.auth-modal-btn, .auth-modal-btn:hover, .auth-modal-btn:focus, .auth-modal-btn:active {
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 18px;
}
/* signin and signup modal css ends */