 
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');


@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Poppins:100,200,300,400,500,600,700,800,900&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&display=swap&subset=latin-ext'); 

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap'); 




html,
body {
width: 100%;
}

body {
font-family: 'Montserrat', sans-serif;
color: var(--dark);
overflow-x: hidden;
background: #fff;
font-size: 13px; 
}

 

a {
color: var(--dark);
text-decoration: none;
}

a:hover, a:focus {
color: var(--dark);
outline: none !important;
box-shadow: none;
}

ol li, ul li {
font-size: 13px;
font-weight: 400;
line-height: 2;
color: var(--text);
}


:root {
--dark: #2a2829;
--black: #2b2b2b;
--navy: #202125;
--orange: rgba(25,80,0);
--yellow: #f7dd10;
--light-yellow: #f7dd10;
--gray: #525659;
--purple: #81598c;
--dark-gray: #3b434b;
--green: #9fbc1d;
--light-green: #37a185;
--dark-blue: #143f34;
--red: #ec1d24;
--blue:#00458f;
--color1: #581d0f;
--color2:#a82f24;
--color3: #e6a525;
--light-blue: #afd7f3;
--light: #e5e5e5;
--light-gray: #f0f0f0;
--brown: #9e9682;
--border: #dee2e6;
--border-radius: 5px;
--site-color: #ff385c;
--site-color-two: #272635;
--box-shadow: 0 4px 8px 0 rgba(0,0,0,.05);
--color-gray-dark: #19191a;
--color-gray-dark-100: #2e3132;
--color-gray-dark-200: #2b2b2e;
--color-gray-dark-400: #252526;
--color-gray-dark-800: #3b3e40;
--color-gray-dark-600: #4b4e51;
--color-gray: #525659;
--color-gray-100: #f2f2f3;
--color-gray-200: #e1e1e2;
--color-gray-300: #dedede;
--color-gray-400: #b6b7b9;
--color-gray-600: #ccc;
--color-gray-800: #7a8085;
--text: #343434;
--bodybg: #fff;
}

h1 {
font-size: 32px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 16px;
}
h4 {
font-size: 14px;
}
h5 {
font-size: 13px;
}
h5 {
font-size: 12px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: 'Poppins', sans-serif;
color: var(--dark);
}

p {
font-size: 13px;
line-height: 1.6;
margin-bottom: 15px;
font-weight: 400;
color: var(--text); 
}

p a {
color: var(--text);
}

li {
font-weight: 400;
}

input[type="submit"].full, .button.full, .btn.full {
width: 100%;
text-align: center;
}

input[type="submit"].white, .button.white, .btn.white {
border: 1px solid var(--border);
}

input[type="submit"], .button, .btn {
display: inline-block;
align-items: center;
justify-content: center;
text-align: center;
background: #fff;
color: #000;
padding: 0 20px;
max-width: 100%;
font-size: 16px;
font-weight: 600;
border: 0;
outline: 0;
position: relative;
cursor: pointer;
border-radius: var(--border-radius);
white-space: nowrap;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

 
/*HEADER*/

header { 
width: 100%;
background: #fff;  
position:sticky;
top:0;
z-index:99;    
border-top: 5px solid var(--blue);
} 
header.sticky {  
box-shadow: 0 1px 10px rgba(0,0,0,.22); 
} 
.top {
background: #222;
padding: 0; 
} 


.header-inner {
height:100%;
display:flex;
margin-left:auto;
} 
.header-bottom {
display: flex;  
position: relative;  
padding: 7px 0;
border-top: 1px solid #eee;
} 
.header-wrapper {
display: flex;
align-items: center; 
height: 100%;
}
header .header-bottom .dropdown-menu { 
right: 0 !important;
left: 0 !important;
min-width: 14rem;
box-shadow: rgba(0, 0, 0, 0.1) 0 15px 15px;
padding: 30px 0;
border: none;
border-top: 1px solid #eee;
border-radius:0;
}
.header-top {
display: flex;
padding: 0; 
height:100%;
}




.darkshadow {
visibility: hidden;
opacity: 0;
position: fixed;
top: 0;
background: rgba(0, 0, 0, 0.59);
left: 0;
right: 0;
bottom: 0;
margin: 0;
z-index: 97;
transition: all 0.4s ease-in-out;
}

.darkshadow.shows {
visibility: visible;
opacity: 1;
}



/*NAV LOGO > Logo*/ 
header .logo {  
padding: 20px 30px 20px 0; 
border-radius: 0;
display: block;
transition: all .3s; 
}

header .logo img {
max-height: 20px;
}

 

.header-contact {
display: flex;
align-items: center; 
height: 100%;
padding: 5px 0;
margin-left: auto;
}

.header-contact ul {
padding: 0;
margin: 0;
list-style: none;
}

.header-contact ul li {
line-height: 1.8;
display:inline-block;
margin-left:15px;
}

.header-contact ul li span {
margin-right: 5px;
}

.header-contact ul li i {
margin-right: 5px;
color: #fff;
}
.header-contact ul li a {
color: #fff;
}




 
header .nav-item  { 
margin-right:30px;
position: static !important;
}
 
header .nav-link {
color:var(--dark);
font-weight:700;
font-size:14px;
padding:15px 0 !important;
position: static !important;
font-family:'Poppins', sans-serif;
text-transform: uppercase;
}
 
header .nav-wrapper {
position:static;
width:100%;
}

.log-menu {
display: flex;
align-items: center;
padding: 15px 0 15px 15px;
height:100%;
} 

.log-menu .log-menu-welcome p span {
font-weight:700;
padding-left:5px;
}
.log-menu p { 
color:#111;
margin:0;
}
.log-menu i { 
color:#fff; 
font-size: 22px;
}
.log-menu .dropdown-toggle {
margin-left:15px;
display: block;
border-radius: 25px; 
padding: 4px 15px;
background: var(--blue);
}
.log-menu .dropdown-toggle:after {
color:#fff;
}
.log-menu .dropdown-menu ul {
display: block;
margin: 0;
padding: 15px 30px 15px 15px;
border-radius: 0;
}
.log-menu .dropdown-menu ul li {
display: block;
padding: 10px 0;
}
.log-menu .dropdown-menu ul li a {
color:#111;
}
.log-menu .dropdown-menu i {
color: #111;
margin-right: 10px;
}




/*NAV MENU*/
  

ul.navbar-menu {
margin:0;
padding:0 30px;
list-style:none;
width: 100%;
}
ul.navbar-menu li a {
color:#111;
padding:1px 10px;
border:1px solid transparent;
border-radius:5px;
display:block;
margin-bottom:1px;
font-weight:600;
}
ul.navbar-menu li a:hover, ul.navbar-menu li a.active {
background:#e6e6e7; 
border:1px solid #e6e6e7; 
}
ul.navbar-menu li a i {
margin-right: 10px;
font-size: 18px;
vertical-align: middle;
color:var(--blue);
}

.nav-elements ul {
display:flex;
list-style:none;
margin:0;
padding:0;
height:100%;
} 

.nav-elements li {
justify-content: space-between;
display: inline-flex;
align-items: center;
height: 100%;
border-radius: 0;
line-height: 1;
vertical-align: middle;
margin-left: 10px;
border-radius: 0;
}
 
.nav-elements ul.login li a { 
background: #fff; 
padding: 10px 25px;
border-radius: 30px;
font-family: 'Space Grotesk', sans-serif;
font-weight: 700;
margin: 12px 0 13px;
border:1px solid #ccc;
}
.nav-elements ul.login li a:hover, .nav-elements ul.login li a:focus {  

}
.nav-elements ul.login li a.btn-register {  
background:var(--blue);
color: #fff; 
border-color:transparent;
}
 

.lang {
padding: 0;
}
.lang .language { 
height: 100%;
border-right: 1px solid rgba(255,255,255,0.3);
border-left: 1px solid rgba(255,255,255,0.3);
margin-left: 15px;
}
.lang .language .btn {
justify-content: space-between;
display: inline-flex !important;
align-items: center;
height: 100%; 
line-height: 1;
padding: 3px 32px;
background-color:transparent;
color: #fff;
border-radius: 0;
}

.lang .language .btn:hover, .lang .language .btn:focus {
outline: none;
box-shadow: none;
}

.lang .language .dropdown-nav .dropdown-menu {
width: auto;
}



 
/*SOCIAL*/
.social {
margin: 0 !important;
padding: 15px 30px;
list-style: none;
position: absolute;
bottom: 0;
width: 100%;
border-top: 1px solid #ddd;
}

.social li a i {
font-size: 14px;
}

.social li {
display: inline-block;
}

.social li a {
display: block;
padding: 0 10px;  
}


 

/*SEARCH*/ 
.search-form { 
height: 100%;
width:100%;
border: none;
z-index: 99;
display: flex;
align-items: center; 
border-radius: 5px;
}

.search-form:after {
display: inline-block;
content: "\F52A";
font-family: "bootstrap-icons";
color: #fff;
font-size: 12px;
position: absolute;
margin-left: 12px;
background:var(--blue);
padding: 4px 8px;
border-radius: 50%;
}

.search-form .search-field { 
outline: none;
font-size: 14px;
border: 1px solid rgba(0,0,0,.16);
background: transparent;
padding: 10px 30px 10px 60px;
color: #111;
opacity: 1 !important;
width: 100%;
border-radius: 5px; 
}
.search-form .search-field::placeholder {
    opacity: .7;
}

.search-form .search-field:focus {
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
outline: none;
}

.search-form.search-active {
opacity: 1;
pointer-events: all
}

.search-form .container {
position: relative; 
}

.search-form .close-button {
position: absolute;
right: 15px;
top: 0;
z-index: 2;
cursor: pointer;
display: inline-block;
padding: 5px;
width: 60px;
text-align: center;
height: 100%;
border-radius: 0;
border: none;
background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M5.29289322,5.29289322 C5.68341751,4.90236893 6.31658249,4.90236893 6.70710678,5.29289322 L6.70710678,5.29289322 L12,10.585 L17.2928932,5.29289322 C17.6533772,4.93240926 18.2206082,4.90467972 18.6128994,5.20970461 L18.7071068,5.29289322 C19.0976311,5.68341751 19.0976311,6.31658249 18.7071068,6.70710678 L18.7071068,6.70710678 L13.415,12 L18.7071068,17.2928932 C19.0675907,17.6533772 19.0953203,18.2206082 18.7902954,18.6128994 L18.7071068,18.7071068 C18.3165825,19.0976311 17.6834175,19.0976311 17.2928932,18.7071068 L17.2928932,18.7071068 L12,13.415 L6.70710678,18.7071068 C6.34662282,19.0675907 5.77939176,19.0953203 5.38710056,18.7902954 L5.29289322,18.7071068 C4.90236893,18.3165825 4.90236893,17.6834175 5.29289322,17.2928932 L5.29289322,17.2928932 L10.585,12 L5.29289322,6.70710678 C4.93240926,6.34662282 4.90467972,5.77939176 5.20970461,5.38710056 Z' fill='%237a8085'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
}

.search-type {
position: fixed;
width: 100%;
height: 100%;
bottom: 0;
top: 0;
opacity: 0;
z-index: 97;
background: rgba(0,0,0,0.8);
-webkit-transition: opacity .7s;
transition: opacity .7s;
visibility: hidden;
}

.search-type.active, .search-type.m-active {
opacity: 1;
visibility: visible;
}

.search-menu {
display: none;
position: absolute;
z-index: 99;
top: 100%;
width: 100%;
left: 0;
}

.search-menu.is-active {
display: block;
}

.search-menu .search-wrapper {
position: relative;
height: 100%;
padding: 30px 0; 
background: #fff; 
height: 310px;
overflow: auto; 
box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
 

.search-menu .search-wrapper h6 {
color: var(--dark);
font-size: 14px;
margin-bottom: 20px;
}

.search-menu .search-wrapper .btn.full {
position: absolute;
bottom: 0;
left: 0; 
line-height: 52px;
background:  var(--blue);
border: none;
border-radius: 0;
color: #fff;
}

.search-menu .search-wrapper .search-list {
margin: 0;
padding: 0;
list-style: none;
}

.search-menu .search-wrapper .search-list li a {
font-size: 16px;
text-decoration: none;
color: var(--dark);
}

.search-menu .search-wrapper .search-list li span {
font-weight: 800;
}

.search-menu .search-wrapper .search-list li .badge {
font-size: 13px;
background:  var(--blue);
color: #fff;
margin-left: 10px;
border-radius: 50%;
}


.dropdown-menu .card-post .figure-caption h2 {
font-size: 18px;
}

.dropdown-menu .card-post .figure-caption {
padding-bottom: 0;
}


 

.nav-wrapper .dropdown-title {
display: flex;
align-items: center;
}

.nav-wrapper .dropdown-title h2 {
display: inline-block;
font-size: 20px;
}

.nav-wrapper .dropdown-title a {
display: inline-block;
margin-left: auto;
margin-top: -10px;
font-size: 14px !important;
text-decoration: underline;
color: var(--red);
font-weight: 700;
}

.nav-wrapper .dropdown-title a i {
display: inline-block;
vertical-align: middle;
}
.nav-wrapper .dropdown-img {
     height:200px;
     overflow:hidden;
 }
.nav-wrapper .dropdown-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown .reading {
    padding-left:0 !important;
}
.dropdown .reading:before {
   content:none !important;
}

.dropdown .figure-caption h2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-moz-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
font-size:16px;
}










 

 

/*FOOTER*/
footer {
background: #f2f3f4; 
position:relative; 
}

footer h5 { 
font-size: 16px;
}

footer a { 
text-decoration: none;
}

footer a:hover { 
}

footer li, footer p, footer a { 
font-size: 12px;
}
footer .footer-top {
border-bottom: 1px solid rgba(255,255,255,0.5);
padding-bottom: 45px;
} 
footer .warning {
background:#222;
text-align:justify;
padding:30px 0 15px;
border-top:1px solid rgba(255,255,255,0.1);
}
footer .warning p {
font-size:11px;
color: #b2b2b3;
}
footer .warning h6 { 
color: #b2b2b3;
}

/*footer .footer-logo {
height: 100%;
padding: 70px 0 30px 0;
}

footer .footer-logo img {
padding: 0 0 15px;
max-width: 90%;
margin-bottom: 30px;
}

footer .footer-logo li {
font-size: 13px;
line-height: 1.5;
}*/

footer .footer-menu {
margin: 0;
}

footer .footer-menu h5 {
font-size: 16px; 
}

footer .footer-menu ul {
margin: 0;
padding: 0;
list-style: none;
}

footer .footer-menu ul li {
display: inline-block;
}

footer .footer-menu ul li a {
display: block;
padding: 5px 10px 5px 0;
position: relative;
text-decoration: underline;
}

footer .copyright {
font-size: 13px;
padding: 20px 0;
background: #fff;
border-top: 1px solid rgba(0,0,0,0.16); 
}

footer .copyright ul {
margin: 10px 0 0;
padding: 0;
}

footer .copyright ul li {
display: inline-block;
}

footer .copyright ul li a {
display: block;
margin: 0 15px 0 0;
position: relative;
text-decoration: none; 
}

footer .copyright p {
margin: 5px 0 0; 
}



footer .footer-list-menu ul {
list-style: none;
padding: 0;
}

footer .footer-support-wr {
border-top: 1px solid #ddd;
padding-top: 15px;
}

footer .support {
display: flex;
}

footer .support i {
font-size: 42px;
padding-right: 15px;
}

footer .support h3 {
font-weight: 400;
margin-bottom: 0;
font-size: 18px;
}

footer .support h2 {
font-size: 20px;
margin-bottom: 0;
}

.footer-place {
padding:70px 0 35px;
}


footer .address ul {
margin: 0;
padding: 0;
list-style: none;
}

footer .address ul li {
line-height: 1.4;
margin-bottom: 10px;
color:#b2b2b3;
}

footer .address ul li i {
margin-right: 7px;
}

footer .address ul li span {
display: block;
}

footer .address ul li:first-child {
}


footer .newclick {
font-size: 13px;
padding: 10px 0; 
color:var(--dark);
text-align:right;
}

footer .newclick a, .newclick a:hover {
font-size: 13px; 
font-weight:800;
color:var(--dark);
font-family: 'Open Sans', sans-serif;
}

footer .footer-logo {
margin-top: 45px;
}

footer .footer-logo img {
max-height: 40px; 
filter:brightness(100);
}


.footer-list {
width: 30%;
float: left;
margin-bottom: 10px;
padding: 0;
}

.footer-list ul {
margin: 0;
padding: 0;
list-style: none;
}

.footer-list .no-dropdown a {
color: #fff;
font-weight: 800;
font-size: 16px;
}

.scroll-top {
position:fixed;
bottom:0;
right:20px;
display:inline-block;
cursor:pointer;
}

.scroll-top i { 
-webkit-animation-name: moveDown !important;
animation-name: moveDown !important;
font-size:32px;
}
.scroll-top:hover i { 
-webkit-animation-name: moveUp !important;
animation-name: moveUp !important;
}
 
 










/*SLIDER*/
.slider {
margin: 0;
}

.slide figure  {
height:400px;
border-radius:var(--border-radius);
overflow:hidden;
}
.slide .swiper-slider, .slide .swiper-wrapper {
height:100%;
}
.slide .figure-caption { 
width: 100%;
padding: 15px 0 1px;
border:none;
}

.slide .figure-caption h2 { 
font-size: 16px;  
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}


.slide  a.slider-link {
padding: 7px 0;
margin-top: 15px;
display: inline-block;
font-weight: 700;
border-bottom: 1px solid var(--dark);
}
.slide a.slider-link:hover { 
border-color: var(--blue);
color: var(--blue);
}

.slide img {
height: 100% !important;
width: 100%;
object-fit: cover;
}

.slide .swiper-slide {
}

.swiper-pagination-bullet {
background: #cbcbcb;
color: #fff;
font-weight: 700;
font-size: 14px;
margin-right:7px !important;
}
.swiper-pagination-bullet-active {
    background:var(--yellow);
}

.title {
position: relative; 
width: 100%;
z-index: 1;
margin-bottom: 15px;
} 

.title h2 {
display: inline-block; 
line-height: 1;
padding-right: 10px;
z-index: 1;
margin-bottom: 0;
text-transform: uppercase;
}

/*.title:after {
position: absolute;
content: "";
height: 1px;
background: var(--border);
width: 100%;
bottom: 50%;
left: 0;
z-index: -1;
}*/


.figure-caption { 
padding: 15px 0;
margin-top: -2px;
}

.figure-caption .date, .figure-caption .reading, .agenda-right-content .reading {
margin-top: 15px;
margin-bottom: 7px;
display: inline-block;
line-height: 1;
position: relative;
}

.figure-caption .reading, .agenda-right-content .reading {
margin-left: 10px; 
}

/*.figure-caption .reading::before, .agenda-right-content .reading::before {
content: '.';
display: inline-block;
font-size: 24px;
font-weight: 600;
color: #b2b2b2;
line-height: 1;
position: absolute;
top: -11px;
left: 0;
}

*/


/*LAST BLOG*/
.last-blog .title:before {
background: #fff;
width: 2px;
height: 12px;
right: -2px;
position: absolute;
content: "";
}

.last-blog img {
width: 100px;
height: 84px;
object-fit: cover; 
box-shadow: var(--box-shadow);
margin-right: 15px;
}

.last-blog .blog-list { 
margin-bottom: 6px;
padding-right: 15px; 
overflow: hidden;
position:relative;
background:#fff;
}

.last-blog .blog-list:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}

.last-blog p {
line-height: 1.2;
margin-top: 5px;
}

.last-blog span.date {
font-size: 12px;

display: block;
padding-right: 10px;
width: 40px;
border-right: 1px solid var(--border);
margin-right: 10px;
}
.last-blog span.date strong {
font-size: 20px;
font-weight: 700;
display: block; 
}

.last-blog .blog-list-img {
border-radius: var(--border-radius);
overflow: hidden;
flex-shrink: 0 !important;
margin-right: 15px;
}
.last-blog a {
  display: flex;
  align-items: center;
}


/*LIST BLOG*/
.list-blog .figure-caption span {
margin-top: 0;
}

.list-blog .blog-list-img {
border-radius: var(--border-radius);
overflow: hidden;
flex-shrink: 0 !important;
margin-right: 15px;
}

.list-blog img {
width: 130px;
height: 90px;
object-fit: cover;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
}

.list-blog .blog-list-content p {
line-height: 1.45;
margin-top: 5px;
}


.list-blog .blog-list-content .figure-caption {
    padding:0;
    border:none;
}
.list-blog .blog-list-content .figure-caption h3 {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}




.list-blog .blog-list {
margin-top: 10px;
position: relative;
height: 100px; 
padding-top: 11px;
}

.list-blog .btn {
height: 52px;
line-height: 52px;
}
/*POST*/
.card-post {
position: relative; 
overflow: hidden;
}

.card-post a,.card-post h3 {
}
.card-post .title {
margin-bottom: 20px;
}
.card-post .figure-caption {
width: 100%;
padding: 20px 0;  
border:none;
}
.card-post .figure-caption p {
}
.card-post .figure-caption h2 {
margin-bottom: 0;
font-size: 16px;
}
.card-post .figure-caption h2 a { 
}
.card-post img {
width: 100%;
}

.card-post .category {
position: absolute;
right: 0;
top: 0;
padding: 5px 15px;
background: #e27371;
z-index: 9;
}

.categories {
margin: 0 0 60px; 
background-color:transparent !important;
box-shadow:none !important;
}



.categories .row > [class*="col-"]:nth-of-type(2) .category {
background: #82cdbd;
}

.categories .row > [class*="col-"]:nth-of-type(3) .category {
background: #deaf47;
}

.categories .row > [class*="col-"]:nth-of-type(4) .category {
background: #78c96a;
}

.categories .card-post img {
/*-webkit-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;*/
-webkit-transition: .3s cubic-bezier(.165,.84,.44,1);
-moz-transition: .3s cubic-bezier(.165,.84,.44,1);
transition: .3s cubic-bezier(.165,.84,.44,1);
height: 248px;
width: 100%;
object-fit: cover;
border-radius:var(--border-radius);
}

.categories .card-post:hover img {
-webkit-filter: grayscale(0);
filter: grayscale(0);
filter: none;
}

.categories .stretched-link:after {
text-indent: -9999px;
z-index: 10;
}

.categories span.link {
color: #fff;
font-weight: 600;
text-decoration: none;
}
.categories .card-post:hover span.link {
border-bottom:1px solid;
}

.categories .row > [class*="col-"] .card-post:hover span.link {
border-color: #f05d5b;
}

.categories .row > [class*="col-"]:nth-of-type(2) .card-post:hover span.link {
border-color: #82cdbd;
}

.categories .row > [class*="col-"]:nth-of-type(3) .card-post:hover span.link {
border-color: #deaf47;
}

.categories .row > [class*="col-"]:nth-of-type(4) .card-post:hover span.link {
border-color: #78c96a;
}



.authors { 
    margin-top:20px;
}

.daily-authors__author {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.daily-authors__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70px;
  flex: 0 0 70px;
  height: 70px;
  width: 70px;
  margin-right: 12px;
  border-radius: 50%;
} 
.daily-authors__heading {
  -webkit-box-orient: vertical;
  color: var(--black-two);
  display: -webkit-box;  
  height: 32px;
  -webkit-line-clamp: 2; 
  margin-bottom: 8px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  line-height: 1.5;
} 
.daily-authors__date {
  color: var(--brown-grey);
  display: block;
  font-size: 10px;
  line-height: 12px;
  margin-bottom:8px;
}
.daily-authors__author-name {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
}




 
 

.search-menu {
display:none;
}
.search-menu.is-active {
display: block;
position: absolute;
width: 100%;
background: #fff;
z-index: 99;
top: 72px;
}
.user-letter  {
border: 1px solid var(--border);
font-weight: 900;
border-radius: 50%;
margin: 15px auto;
font-size: 20px !important;
padding: 5px 10px !important;
}


 
.top-title { 
border-bottom: 1px solid var(--border);
padding: 10px 0; 
backface-visibility: hidden;
position: sticky;
z-index:9;
background:rgba(255,255,255,0.97);
top:0;
}
.top-title h2 { 
margin-bottom:0;
font-size:18px;
}

.swiper-categories-menu {
margin: 30px 0;
border-bottom: 1px solid #ddd;
padding-bottom: 30px;
}
.swiper-categories-menu .figure-caption {
    border:1px solid #ddd;
    text-align:center;
}
.swiper-categories-menu a {
font-size: 14px;
font-weight: 700;
display: block;
padding: 15px;
}


.swiper-box {
border-bottom: 1px solid #ddd;
padding-bottom: 30px;
}
.swiper-box  .swiper-slide {
padding-bottom:1px;
} 
.swiper-box .swiper-img {
height: 200px;
overflow: hidden;
display: flex;
align-items: center;
border: 1px solid #ddd;
}
.swiper-box .swiper-img img {
object-fit:cover;
object-position:center;
}
.swiper-box .figure-caption a {
font-size: 16px;
margin-top: 16px;
display: block;
}
.swiper-box .figure-caption h3 {
font-size:14px;
}
.swiper-box .figure-caption h3 i {
margin-right:7px;
}
.swiper-box .figure-caption h4 {
font-size:13px;
font-weight:300;
}





.list-content .badge {
color:#111; 
display: flex;
align-items: center;
border-radius: 30px; 
font-size: 20px;
}

 

.other-companies {
    border-top:1px solid #ddd;
    margin-top:1rem;
    padding-top:1rem;
}
ul.list-list { 
    margin:0;
    padding:0;
    list-style:none;
}
ul.list-list li {  
    padding:12px 0;
}
ul.list-list li:last-child { 
    border-bottom:none; 
}
 ul.list-list li span {
    font-weight:700; 
    margin-right:10px;
}
ul.list-list li i { 
    margin-right:10px;
}






/*FİRMA DETAY DİĞER FUARLAR*/
.company-fair-list  {   
padding-top: 30px;
padding-bottom: 30px;
background:#fff;
}
.company-fair-list .card-post { 
    margin-bottom:15px;
}
.company-fair-list .card-post img.rounded-circle {
    width: 32px;
    height: 32px;
}
.company-fair-list .card-post a, .company-fair-list .card-post h3 {
  color: #fff;
  font-size: 20px;
}

.company-fair-list .list-group-item-action:focus, .company-fair-list .list-group-item-action:hover {
    background-color:transparent;
}


  

/*LOGIN - SIGNUP*/
.login-content {
padding: 30px 30px 30px 0;
}

.login-content .tab-content > .tab-pane {
padding: 15px 0;
border-radius: 0;
}

.nav-tab-login .nav-link {
border: none;
background: transparent;
font-size: 22px;
font-weight: 700;
padding: 15px 0; 
position: relative;
display: inline-block;
color: var(--color-gray-400);
}

.nav-tab-login .nav-link:last-child { 
margin-left:30px;
}

.nav-tab-login .nav-link:after {
position: absolute;
content: "";
height: 4px;
width: 100%;
bottom: 12px;
left: 0;
background: var(--color-gray-400);
}

.nav-tab-login .nav-link.active {
color: var(--dark);
}

.nav-tab-login .nav-link.active:after {
background: var(--dark);
}
.btn-member {
color: #fff;
padding: 20px 45px;
}
.newsletter-box .btn-member i { 
    display:none;
}
.btn-member:hover, .btn-member:focus, .btn-member:active {
background: var(--black);
color: #fff;
}

.forms .form-control { 
padding: 7px 20px;
height: 44px; 
background: #fff;
border: 2px solid #e5e5e5;
color: #4b4b4b;
min-height: 48px;
text-align: left;
border-radius: 7px;
}

.forms .form-control:focus {
border: 2px solid var(--black);
box-shadow: none;
}

.forms .form-group label {
font-weight: 700; 
margin-bottom: 5px;
}

.forms textarea.form-control {
height: auto;
}

.forms .form-control.select {
-webkit-appearance: auto !important;
-moz-appearance: auto !important;
appearance: auto !important;
}

.form-control:disabled, .form-control[readonly] {
opacity: .5;
}

.forms .form-group {
    margin-bottom:1rem;
}

.forms .input-group-text {
height: 100%;
border: 2px solid var(--border);
border-left: none;
background: var(--color-gray-100);
}

 
 
.auth-links {
    margin-top: 15px;
    margin-bottom: 15px;
}

.auth-links p {
margin-bottom: 5px;
}

.auth-links p a {
text-decoration: underline;
font-size: 13px;
}

.member_cancel {
text-decoration: underline;
}

.text-sm, .text-sm p {
font-size: 14px !important;
}

.register-form-desc {
margin: 15px 0;
padding: 15px 0;
border-bottom: 1px solid var(--border);
border-top: 1px solid var(--border);
}


.btn-member:hover, .btn-member:focus, .btn-member:active {
  background: #272635;
  color: #fff;
}  
.btn-member {
  color: #fff;
  padding: 20px 45px;
  background: #272635;
}




/*BLOG*/

.posts.posts-cats {
}
.post-inner-content .date {
margin-bottom: 5px;
font-size: 12px;
}
.post-inner-content h3 {
font-size: 16px;
color: #111;
}
.posts .post-item {
  margin-bottom: 30px;
  background:#fff; 
  border-radius:var(--border-radius);
}
.posts .post-inner {
padding: 15px 0;
min-height: 145px;
border-radius: 10px;
}
.posts .post-inner p { 
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis; 
}
.posts .post-inner h6 {
font-size: 12px;
font-weight: 600 !important;
margin-bottom: 18px;
margin-top: 3px;
}
.posts .post-inner .post-inner-content p { 
position:relative;
padding-left: 24px
}
.posts .post-inner .post-inner-content p:after {
display: inline-block;
content: "\F1E4";
font-family: "bootstrap-icons"; 
font-size: 14px;
position: absolute;
left:0;
color:#ff385c;  
}

.posts figure.post-gallery {
margin: 0; 
overflow: hidden;
border-radius: var(--border-radius);
}
.posts figure.post-gallery img {
height: 240px;
width: 100%;
object-fit: cover;
object-position: center;
} 
.posts .list-group-item {
padding:0;
}
.detail-swiper {
padding: 0;
margin: 15px -12px;
}
.detail-swiper .swiper {
background:#fff;
}
.detail-swiper .swiper-img {
height:auto;
}
.detail-swiper .figure-caption {
padding:0;
margin-top:0;
}
.post-elements {
display:flex;
margin-bottom: 10px;
}
.post-elements p { 
margin-bottom: 0;
}
.post-cat-link {
text-decoration:underline;
margin-left:auto;
color:#222;
}
.post-button {
  border: 1px solid #222;
  background: transparent;
  color: #222;
  padding: 7px 25px;
  font-size: 13px;
}
.post-button:hover {
  border: 1px solid var(--blue); 
  color: var(--blue); 
}

.post-inner-content .date {
  margin-bottom: 5px;
  font-size: 12px;
  width:auto;
}
.post-inner-content .reading {
  border-right: 1px solid #ddd;
  margin-right: 15px;
  margin-bottom:5px;
  padding-right: 15px;
  font-size: 12px;
}
.date {
  border-right: 1px solid #ddd;
  margin-right: 10px;
  padding-right: 10px;
  width: 110px;
}
.company-link {
text-decoration:underline;
font-weight:600;
font-size:11px;
}



.list-content-blog-detail {
margin-top:30px;
}
.blog-detail h1 { 
font-size:32px;
margin-top: 30px;
}
.blog-detail .elements span { 
margin-right:10px;
}
.blog-detail-content p {
font-size: 16px;
text-align: left !important;
}
.blog-detail-content img { 
    max-width:100%;
}


.dp-pager {
padding: 45px 0;
width: 100%;
text-align: center;
display: block;
border-top: 1px solid #ddd; 
}

.dp-pager .aspNetDisabled {
opacity: .2;
}

.dp-pager .btn {
border: 1px solid var(--dark);
border-radius: 0;
padding: 10px 15px;
}

.dp-pager .btn-active {
background: #eee;
}

 

.tags-blog {
padding:30px 0; 
}
.tags-blog h5 {
margin-bottom:20px;
}
.tags-blog a {
padding:10px 30px; 
display:inline-block;
color:var(--dark);
margin-bottom:7px; 
border: 1px solid #ddd;
}
.tags-blog a:hover { 
background: var(--blue); 
color:#fff;
}

 


/*SHARE*/
.share {
margin: 15px 0;
padding: 15px 0;
list-style: none;
}

.share li {
display: inline-block;
margin-right: 7px;
}

.share li a {
color: #fff;
padding: 10px 15px;
}

.share li a.facebook {
background: #3b5998;
}

.share li a.twitter {
background: #00aced;
}

.share li a.linkedin {
background: #007bb6;
}


.footer-center {
border-top:1px solid var(--border);
padding-top:15px;
margin-top:15px;
}


.f-search {
background:#fff; 
margin-bottom:5px; 
}
.f-search .form-select-group { 
}
.f-search .form-select { 
font-size: 14px;
margin-right: 10px;
border-radius: 5px;
margin-bottom: 0;
height: 41px;
border: 1px solid #bfc8d2; 
font-weight:700;
} 
.f-search .form-select:hover, .f-search .form-select:focus, .f-search input:hover, .f-search input:focus {
box-shadow:none;
}
.f-search .form-select:last-child { 
margin-right:0;
}
.f-search .form-control { 
font-size: 14px; 
border-radius: 5px;
margin-bottom: 0;
height: 41px;
border: 1px solid #bfc8d2; 
font-weight:400;
}
.f-search input { 
font-size: 14px;
border-radius:0;
height: 40px;
}

.f-search .btns-search {
    width:auto;
    display:flex;
}

.f-search .btns-search .btn { 
background: var(--blue);
color: #fff;
border-radius: 5px;
font-size: 14px;
height: 40px;
display: inherit;
}
.f-search .btns-search .btn:last-child { 
background:var(--site-color-two); 
margin-left:5px;
}


.site-right {
min-height:100%;
}
.site-right .sticky-top {
top:100px;
z-index:8;
padding-bottom:60px;
}

.list-content-featured { 
}
.list-content-featured .list-group-item{
padding: 0.76rem 0;
} 

.list-content-featured .list-group-item:first-child {
padding-top:0 !important;
}

.list-group-item {
border:none;
padding: .5rem 0;
background: transparent;
}

.list-group-item img{
border:1px solid #ddd;
border-radius:var(--border-radius);
width: 90px;
height: 90px;
}

.list-content {
margin-bottom:30px;
}



.m-title { 
background: #fff;
padding: 30px 0 10px;
border-top: 1px solid #ddd; 
}
.m-title h1 {
margin-bottom: 0;
color:var(--site-color-two);
display:inline-block;
}
.m-title h2 {  
position:relative; 
margin-left:30px;
margin-bottom: 0;
padding-left:30px;
font-size:22px;
display:inline-block;
color:#fff;
}
.m-title h2:after { 
content:"\F280";
position:absolute;
left:-7px; 
font-family: "bootstrap-icons"; 
font-size: 18px;
margin-top: 1px; 
} 


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
    padding-left:30px;
    padding-right:30px;
    }

    .details .container { 
    }
}

.hr {
height:1px;
width:100%;
background:#ddd;
margin:45px 0;
}

 



.locations-content {
height: 110px; 
margin-bottom:30px;
position:relative;
}
.locations-content:after {
content:"";
position:absolute;
height:100%;
width:10px;
right:0;
top:0;
background:#bbb;
z-index:1;
border-radius: 5px;
}
.locations-content ul {
margin:0;
padding:0;
list-style:none;
}

.ss-wrapper {
overflow: hidden;
height: 100%;
width:100%;
position: relative;
z-index: 1; 
float:left;
}

.ss-content {
height: 100%;
width: calc(100% + 18px);
padding: 0;
position: relative;
right: -18px;
overflow: auto;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin-left: -18px;
}

.ss-scroll {
position: relative;
background:  var(--blue);
width: 9px;
border-radius: 5px;
top: 0;
z-index: 2;
cursor: pointer;
opacity: 1;
transition: opacity 0.25s linear;
}

.ss-container:hover .ss-scroll {
opacity: 1;
}

.ss-grabbed {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}




/*MASTER PAGE*/
body.master {
} 

.tl {
    margin-bottom:30px;
}


/*FİRMALAR LİSTE*/
.list-content-companies .list-group-item {
    background:#fff;
    padding:15px;
    margin-bottom:5px;
}
.list-content-companies .list-group-item h2 {
    font-size:18px;
}


/*FİRMA DETAY FİRMALAR LİSTE*/
.list-content-other {
    padding:45px 0;
    margin-bottom:0;
}
.list-content-other .list-group-item {
    background:#fff;
    padding:15px;
    margin-bottom:5px;
}
.list-content-other .list-group-item h2 {
    font-size:18px;
}

/*FİRMALAR ARAMA SONUÇLARI*/
.list-content-search {
    padding:0;
    margin-bottom:0;
}
.list-content-search .list-group-item {
    background:#fff;
    padding:15px;
    margin-bottom:5px;
}
.list-content-search .list-group-item h2 {
    font-size:18px;
}





/*FİRMA DETAY*/
.company-info-wrapper {
background:#272635;
padding:30px 0;
}
.company-info-wrapper h1, .company-info-wrapper, .company-info-wrapper p {
color:#fff;
}
.company-info {
display:flex;
}
.company-info .company-info-left {
width: 180px;
box-shadow: 0 0 5px rgba(0,0,0,.12);
border-radius: var(--border-radius);
overflow: hidden;
margin-right: 30px;
}
.company-info .company-info-right a {
color:#fff;
text-decoration:underline;
}
.company-info .company-info-right ul {
margin: 15px 0;
padding: 0;
}
.company-info .company-info-right ul li {
display:inline-block;
margin-right:10px;
}
.company-content {
background:#f4f5f9;
padding:30px 0;
}




.share-f ul {
margin: 0 !important;
padding: 0;
list-style: none;
}

.share-f ul li a i {
font-size: 20px;
}

.share-f ul li {
display: inline-block;
border-bottom:none;
padding-bottom:0;
}

.share-f ul li a {
display: block;
padding: 0 5px;
color: var(--dark);
}




/*FUAR (ÜRÜN) DETAY*/

.fair-detail-info p {
    font-size:20px;
}
.other {
    background:#fff;
    padding:30px 0;
}


.user-page {
    padding:45px 0;
}

.white-section {
    background:#fff;
    padding:15px 0;
}

.user-widget { 
border: 2px solid rgb(221, 221, 221);
border-radius: 7px;
}

.user-widget ul {
    margin:0;
    padding:15px 30px;
    list-style:none;
}
.user-widget ul li a {
    display:block;
    padding:7px 0;
    font-weight:700;
    font-size:14px;
}

.user-widget h2 {
padding: 30px;
border-bottom: 2px solid rgb(221, 221, 221);
background:#fff;
font-weight:700;
border-radius: 7px 7px 0 0;
}
.user-widget h2 span {
display:block;
font-weight:300;
font-size:14px;
}


.address .list-group-item {
    margin-bottom:5px;
    border:2px solid rgb(221, 221, 221);
    align-items:center;
    padding:0;
}
.address .list-group-item div { 

}
.address .list-group-item div:first-child {  
    font-weight:700;
    font-size:16px;
    width:200px;
    padding: 10px 30px;
}
.address .list-group-item div:last-child { 
    text-align:right;  
}
.address .list-group-address-header .list-group-item  {
    background:#fff;
}
.address .list-group-address-header .list-group-item div:last-child  {
width:100%;
padding:15px;
}
.address ul.process {
margin: 0;
padding: 0;
list-style: none;
width: 140px;
border-left: 1px solid #ddd;
}
.address ul.process li {
  border-bottom: 1px solid #ddd;
}
.address ul.process li:last-child { 
  border-bottom: none;
}
.address ul.process li a { 
font-size:12px;
font-weight:400;
padding: 15px;
display:block;
min-height:48px;
}
.address ul.process li:first-child i {
    color:#7ac70c;
}
.address ul.process li:last-child i {
    color:#ff385c;
}
.address .list-group-item i {
    padding-right:10px;
    font-size:16px;
}


.forms.forms-address-new {
  background: #fff;
  padding: 30px;
  border: 2px solid #ddd;
  border-radius: 5px;
}

.forms-address-new-title {
    display:flex;
}


 
body { 
  --side-width: 17rem; 
}
 


.site-sidebar { 
  background-color: #fff;
  border-right: 1px solid rgba(0,0,0,.16);
  width: var(--side-width);
  padding-top: 0;
  flex-shrink: 0;
  position: fixed;
  z-index: 990;
  left: 0;
  top:0;
  bottom: 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.2s;
  -webkit-overflow-scrolling: touch;
}
.site-sidebar .hr {  
   margin:15px 0;
}


.cities { 
}
.cities a {
  padding: 10px;
  background: #f2f3f4;
  display: block;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
}



.accordion-button:hover, .accordion-button:focus {
box-shadow:none;
background:#fff;
}
.accordion-button:not(.collapsed) {
color: #0c63e4;
background-color: #fff;
box-shadow: none;
}
.accordion-body {
padding: 0 0 1rem 0;
}
.accordion-item {
border:none;
}
.accordion-button {
border-top:1px solid #ddd;
padding: 1rem 0;
border-radius:0 !important;
font-weight: 700;
color: var(--dark) !important;
}

.accordion .accordion-item:first-child .accordion-button {
border-top:none;
}