@font-face { 
    font-family: 'TT-Firs-Neue';
    src: url('/assets/templates/fonts/TT Firs Neue Trial Regular.ttf') format('truetype'), ;
    font-style: normal;
} 
@font-face { 
    font-family: 'TT-Firs-Neue-Bold';
    src: url('/assets/templates/fonts/TT Firs Neue Trial Bold.ttf') format('truetype'), url('/assets/templates/fonts/TT Firs Neue Bold Outline Trial.otf?#iefix') format('embedded-opentype');
    font-weight: 400;
    font-style: normal;
} 



#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}
/* модальный блок */
.popup {
    top: 25%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 85%;
    min-width: 320px;
    max-width: 600px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #383838;
    background: #fefefe;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}
/* заголовки в модальном блоке */
.popup h2, .popup h3 {
    margin: 0 0 1rem 0;
    font-weight: 300;
    line-height: 1.3;
    color: #03a9f5;
    text-shadow: 1px 2px 4px #ddd;
}
/* кнопка закрытия */
.close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0, 131, 119, 0.9);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;

}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/* кнопка закрытия при наведении */
.close:hover {
    background-color: rgba(252, 20, 0, 0.8);
}
/* изображения в модальном окне */
.popup img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

#cookie_note {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  max-width: 90%;
  transform: translateX(-50%);
  transition: opacity .3s;
  padding: 15px;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 2000;
}
#cookie_note.show {
  display: flex!important;
  display: -webkit-box;
    display: -ms-flexbox;
	display: -webkit-flex;
}
#cookie_note p {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  color: #555;
  line-height: 20px;
  text-align: left;
  margin: 0;
}
#cookie_note a {
  color: #03a9f5;
}
.cookie_accept {
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0 0 0 30px;
}
#cookie_note .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  height: 36px;
  font-style: normal;
  background-color: #03a9f5;
  border: 1px solid #03a9f5;
  color: #fff;
  gap: 8px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 428px){
	#cookie_note{
		bottom: 20px;
		width: 100%;
	}
    #cookie_note.show{
        display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
    	display: -webkit-flex;
    	flex-wrap: wrap;
    }
    #cookie_note p{ 
    	margin-bottom: 10px;
    }
    #cookie_fixed.show{
        display: block;
    }
    .about-block .mob_width {
        width: 100%;
        height: auto;
    }
    .cookie_accept {
    	margin: 0 auto;
    }
    .fixed-bottom .notice {
		font-size: 7px;
	}
	.navbar {
      gap: 0px;
      justify-content: left;
      flex-wrap: nowrap;
    }
}

.footer-logo {
    max-width: 200px;
}

.scrollHeader .footer-social-icons ul li {
    color: #939393;
    border: 1px solid #939393;
}
.header-style2 .footer-social-icons {
    padding-right: 50px;
}

.blogs .anchor::before {
  content: '';
  display: block;
  margin-top: -70px;
  padding-top: 70px;
  visibility: hidden;
}
body.swal2-toast-shown .swal2-container.swal2-top-end, 
body.swal2-toast-shown .swal2-container.swal2-top-right {
  z-index: 100000;  
}