
/* Dark Theme Support - Safe Implementation */
:root {
  --theme-bg: #ffffff;
  --theme-text: #212529;
  --theme-navbar-bg: #051830;
  --theme-topbar-bg: #e9ecef;
}

html[data-bs-theme="dark"] {
  --theme-bg: #1a1a1a;
  --theme-text: #ffffff;
  --theme-navbar-bg: #000000;
  --theme-topbar-bg: #2d2d2d;
}

/* Theme Toggle Button */
#themeToggle:focus{color:#000}

#themeToggle {
  /* border-radius: 20px; */
  transition: all 0.3s ease;
  padding: 10px 10px !important;
}

#themeToggle:hover {
  transform: scale(1.05);
}

/* Dark Theme Overrides - Only Essential */
html[data-bs-theme="dark"] #themeToggle:focus{color:#000}

html[data-bs-theme="dark"] body {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

html[data-bs-theme="dark"] .header .topbar {
  background-color: var(--theme-topbar-bg) !important;
}

html[data-bs-theme="dark"] .header .navbar {
  background-color: var(--theme-navbar-bg) !important;
}

html[data-bs-theme="dark"] .topbar-date,
html[data-bs-theme="dark"] .topbar a {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .modal-content,
html[data-bs-theme="dark"] .card {
  background-color: #2d2d2d;
  color: var(--theme-text);
  border-color: #404040;
}

html[data-bs-theme="dark"] .form-control {
  background-color: #2d2d2d;
  color: var(--theme-text);
  border-color: #404040;
}

html[data-bs-theme="dark"] .btn-close {
  filter: invert(1);
}

/* Dark mode for content sections */
html[data-bs-theme="dark"] .bg-white {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .border-r {
  border-color: #404040 !important;
}

html[data-bs-theme="dark"] .shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.075) !important;
}

html[data-bs-theme="dark"] .section-title h2,
html[data-bs-theme="dark"] .section-title h3,
html[data-bs-theme="dark"] .section-title h4 {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .blog-post-details h5,
html[data-bs-theme="dark"] .blog-post-details h5 a {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .blog-post-meta,
html[data-bs-theme="dark"] .blog-post-meta a {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] .blog-post-time a {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] .truncate-2 a:hover {
  color: #0d6efd !important;
}

/* Dark mode for badges and buttons */
html[data-bs-theme="dark"] .badge {
  color: #ffffff !important;
}

html[data-bs-theme="dark"] .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

/* Dark mode for carousel and other components */
html[data-bs-theme="dark"] .owl-carousel .owl-nav button {
  background-color: #404040 !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .owl-carousel .owl-nav button:hover {
  background-color: #0d6efd !important;
}

/* Dark mode for any remaining white backgrounds */
html[data-bs-theme="dark"] .container .bg-white,
html[data-bs-theme="dark"] .row .bg-white,
html[data-bs-theme="dark"] div.bg-white {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

/* Dark mode for sidebar components */
html[data-bs-theme="dark"] .sidebar {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .sidebar .section-title h2 {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .sidebar .blog-post-details h6,
html[data-bs-theme="dark"] .sidebar .blog-post-details h6 a {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .sidebar .blog-post-meta a {
  color: var(--theme-text-secondary) !important;
}

/* Dark mode for footer */
html[data-bs-theme="dark"] .footer {
  background-color: #1a1a1a !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .footer h2,
html[data-bs-theme="dark"] .footer h3,
html[data-bs-theme="dark"] .footer h4,
html[data-bs-theme="dark"] .footer h5 {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .footer a {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] .footer a:hover {
  color: #0d6efd !important;
}

html[data-bs-theme="dark"] .footer-bottom {
  background-color: #000000 !important;
  color: var(--theme-text) !important;
}

/* Dark mode for search popup */
html[data-bs-theme="dark"] #search {
  background-color: rgba(26, 26, 26, 0.95) !important;
}

html[data-bs-theme="dark"] .search-popup input {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
  border-color: #404040 !important;
}

html[data-bs-theme="dark"] .search-popup input::placeholder {
  color: var(--theme-text-secondary) !important;
}

/* Dark mode for any text elements */
html[data-bs-theme="dark"] h1,
html[data-bs-theme="dark"] h2,
html[data-bs-theme="dark"] h3,
html[data-bs-theme="dark"] h4,
html[data-bs-theme="dark"] h5,
html[data-bs-theme="dark"] h6 {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] p,
html[data-bs-theme="dark"] span {
  color: var(--theme-text);
}

html[data-bs-theme="dark"] span:hover {
  color: #000 !important;
}

html[data-bs-theme="dark"] a {
  color: var(--theme-text-secondary);
}

html[data-bs-theme="dark"] a:hover {
  color: #0d6efd;
}

/* Dark mode for specific sections found in templates */
html[data-bs-theme="dark"] .news-latest-posts .bg-white,
html[data-bs-theme="dark"] .news-sport-posts {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .widget.post-widget {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .news-tab .nav-pills .nav-link {
  /* background-color: #404040 !important; */
  color: var(--theme-text) !important;
  border-color: #404040 !important;
}

html[data-bs-theme="dark"] .news-tab .nav-pills .nav-link.active {
  /* background-color: #0d6efd !important; */
  color: #ffffff !important;
}

html[data-bs-theme="dark"] .news-tab .nav-pills .nav-link:hover {
  background-color: #0d6efd !important;
  color: #ffffff !important;
}

html[data-bs-theme="dark"] .tab-content {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

/* Dark mode for blog post styles */
html[data-bs-theme="dark"] .blog-post.post-style-01,
html[data-bs-theme="dark"] .blog-post.post-style-02,
html[data-bs-theme="dark"] .blog-post.post-style-03,
html[data-bs-theme="dark"] .blog-post.post-style-04,
html[data-bs-theme="dark"] .blog-post.post-style-004,
html[data-bs-theme="dark"] .blog-post.post-style-0001 {
  background-color: transparent !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .blog-post-details h4,
html[data-bs-theme="dark"] .blog-post-details h5,
html[data-bs-theme="dark"] .blog-post-details h6,
html[data-bs-theme="dark"] .blog-post-details h4 a,
html[data-bs-theme="dark"] .blog-post-details h5 a,
html[data-bs-theme="dark"] .blog-post-details h6 a {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .blog-post-details p {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] .blog-title a:hover {
  color: #0d6efd !important;
}

/* Dark mode for truncate classes */
html[data-bs-theme="dark"] .truncate-2,
html[data-bs-theme="dark"] .truncate-3 {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .truncate-2 a,
html[data-bs-theme="dark"] .truncate-3 a {
  color: var(--theme-text) !important;
}

/* Dark mode for badge styles */
html[data-bs-theme="dark"] .badge.badge-large {
  color: #ffffff !important;
}

html[data-bs-theme="dark"] .badge.text-blue {
  color: #60a5fa !important;
}

html[data-bs-theme="dark"] .badge.text-primary {
  color: #60a5fa !important;
}

/* Dark mode for specific container sections */
html[data-bs-theme="dark"] .space-sm-ptb .bg-white {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .border-r {
  border-color: #404040 !important;
}

/* Dark mode for images with overlay */
html[data-bs-theme="dark"] .bg-overlay-black-93 {
  filter: brightness(0.8);
}

/* Dark mode for additional classes found in templates */
html[data-bs-theme="dark"] .bg-grey {
  background-color: var(--theme-topbar-bg) !important;
}

html[data-bs-theme="dark"] .inner-header {
  background-color: #2d2d2d !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .bg-transparent {
  background-color: transparent !important;
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .text-white {
  color: var(--theme-text) !important;
}

html[data-bs-theme="dark"] .border-0 {
  border-color: transparent !important;
}

/* Dark mode for form controls with bg-transparent */
html[data-bs-theme="dark"] .form-control.bg-transparent {
  background-color: rgba(45, 45, 45, 0.3) !important;
  color: var(--theme-text) !important;
  border-color: #404040 !important;
}

html[data-bs-theme="dark"] .form-control.bg-transparent::placeholder {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] .form-control.bg-transparent:focus {
  background-color: rgba(45, 45, 45, 0.5) !important;
  color: var(--theme-text) !important;
  border-color: #0d6efd !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

/* Ad Blocker Detection Modal Styles */
#adBlockerModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

#adBlockerModal .modal-header {
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  color: #000;
  border: none;
  padding: 1.5rem;
}

#adBlockerModal .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}

#adBlockerModal .modal-body {
  background: #ffffff;
}

#adBlockerModal .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

#adBlockerModal .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#adBlockerModal .btn-warning {
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

#adBlockerModal .btn-warning:hover {
  background: linear-gradient(135deg, #ff8f00, #f57c00);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

#adBlockerModal .btn-outline-secondary {
  border: 2px solid #6c757d;
  font-weight: 600;
  transition: all 0.3s ease;
}

#adBlockerModal .btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  transform: translateY(-1px);
}

#adBlockerModal .alert-info {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border: 1px solid #2196f3;
  border-radius: 10px;
}

/* Dark mode for Ad Blocker Modal */
html[data-bs-theme="dark"] #adBlockerModal .modal-body {
  background-color: #2d2d2d;
  color: var(--theme-text);
}

html[data-bs-theme="dark"] #adBlockerModal .card.bg-light {
  background-color: #404040 !important;
  color: var(--theme-text);
}

html[data-bs-theme="dark"] #adBlockerModal .text-muted {
  color: var(--theme-text-secondary) !important;
}

html[data-bs-theme="dark"] #adBlockerModal .alert-info {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  border-color: #3182ce;
  color: var(--theme-text);
}

/* Ad Blocker Detection Test Element */
.ads-test-element {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
}

/* Common ad blocker target classes for detection */
.advertisement,
.ads,
.adsbox,
.ad-banner,
.google-ads {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
}

/* Smooth transitions for theme changes */
body, .header, .modal-content, .card, .form-control, .bg-white, .section-title, .blog-post-details, .news-sport-posts, .widget, .nav-pills .nav-link {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.space-ptb {
padding: 10px 0;
}
.space-pt {
padding: 50px 0 0;
}
.space-pb {
padding: 0 0 50px;
}
.space-lg-ptb {
padding: 100px 0;
}
.space-lg-pt {
padding: 100px 0 0;
}
.space-lg-pb {
padding: 0 0 20px;
}
.space-sm-ptb {
padding: 30px 0;
}
.space-sm-pt {
padding: 30px 0 0;
}
.space-sm-pb {
padding: 0 0 30px;
}
.mt-n9 {
margin-top: -200px;
}
/*bg-color*/
.bg-red {
background: #dc3545;
}
.bg-blue {
background: #0d6efd !important;
}
.bg-yellow {
background: #ffc107 !important;
}
.bg-pink {
background: #d63384 !important;
}
.bg-orange {
background: #fd7e14 !important;
}
.bg-purple {
background: #6610f2 !important;
}
.bg-skyblue {
background: #0dcaf0 !important;
}
.bg-light {
background: #e4eaf7 !important;
}
.bg-dark {
background: #051830 !important;
}
.bg-primary {
background: #5a9ef3 !important;
}
.bg-green {
background: #5d9711 !important;
}
.text-red {
color: #dc3545 !important;
}
.text-blue {
color: #0d6efd !important;
}
.text-yellow {
color: #ffc107 !important;
}
.text-pink {
color: #d63384 !important;
}
.text-orange {
color: #fd7e14 !important;
}
.text-purple {
color: #6610f2 !important;
}
.text-skyblue {
color: #0dcaf0 !important;
}
.text-light {
color: #e4eaf7;
}
.text-dark {
color: #051830;
}
.text-primary {
color: #5a9ef3 !important;
}
.text-green {
color: #5d9711 !important;
}
.border-radius {
border-radius: 6px;
}
.bg-overlay-black-10 {
position: relative;
z-index: 1;
}
.bg-overlay-black-10:before {
background: rgba(5, 24, 48, 0.1);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-20 {
position: relative;
z-index: 1;
}
.bg-overlay-black-20:before {
background: rgba(5, 24, 48, 0.2);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-30 {
position: relative;
z-index: 1;
}
.bg-overlay-black-30:before {
background: rgba(5, 24, 48, 0.3);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-40 {
position: relative;
z-index: 1;
}
.bg-overlay-black-40:before {
background: rgba(5, 24, 48, 0.4);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.bg-overlay-black-50 {
position: relative;
z-index: 1;
}
.bg-overlay-black-50:before {
background: rgba(5, 24, 48, 0.5);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-60 {
position: relative;
z-index: 1;
}
.bg-overlay-black-60:before {
background: rgba(5, 24, 48, 0.6);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-70 {
position: relative;
z-index: 1;
}
.bg-overlay-black-70:before {
background: rgba(5, 24, 48, 0.7);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-80 {
position: relative;
z-index: 1;
}
.bg-overlay-black-80:before {
background: rgba(5, 24, 48, 0.8);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-overlay-black-90 {
position: relative;
z-index: 1;
}
.bg-overlay-black-90:before {
background: rgba(5, 24, 48, 0.9);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 0;
}
.bg-holder {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
width: 100%;
}
/*form-group*/
.form-group {
margin-bottom: 1rem;
}
.font-xxxl {
font-size: 40px;
line-height: 40px;
}
@media (min-width: 1200px) {
.container {
max-width: 1440px;
}
}
@media (max-width: 1200px) {
.container {
max-width: 100%;
}
.space-lg-ptb {
padding: 80px 0;
}
.space-lg-pt {
padding: 80px 0 0;
}
.space-lg-pb {
padding: 0 0 80px;
}
}
@media (max-width: 991px) {
.space-lg-ptb {
padding: 60px 0;
}
.space-lg-pt {
padding: 60px 0 0;
}
.space-lg-pb {
padding: 0 0 60px;
}
}
@media (max-width: 767px) {
.space-lg-ptb {
padding: 50px 0;
}
.space-lg-pt {
padding: 50px 0 0;
}
.space-lg-pb {
padding: 0 0 50px;
}
.mt-n9 {
margin-top: 0px;
}
}
@media (max-width: 575px) {
.space-ptb {
padding: 40px 0;
}
.space-pt {
padding: 40px 0 0;
}
.space-pb {
padding: 0 0 40px;
}
}

body {
font-family: "Red Hat Display", sans-serif;
font-weight: 600;
font-style: normal;
font-size: 16px;
color: #5c667d;
overflow-x: hidden;
background: #f1f7ff;
}
a {
outline: medium none !important;
color: #5a9ef3;
transition: all 0.3s ease-in-out;
text-decoration: none !important;
}
a:focus {
color: #5a9ef3;
text-decoration: none !important;
}
a:hover {
color: #5a9ef3;
text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family:"Red Hat Display", sans-serif;
font-weight: normal;
color: #000000;
margin-top: 0px;
text-transform: capitalize;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: inherit;
}
h1 {
font-size: 62px;
font-weight: 700;
}
h2 {
font-size: 36px;
font-weight: 700;
}
h3 {
font-size: 32px;
font-weight: 700;
}
h4 {
font-size: 28px;
}
h5 {
font-size: 24px;
}
h6 {
font-size: 22px;
}
small {
font-size: 14px;
font-weight: normal;
}
p {
font-weight: normal;
line-height: 24px;
}
.container {
max-width: 1430px;
}
ul {
padding: 0px;
margin: 0px;
list-style: none;
}
input.form-control {
height: 50px;
}
.blockquote {
font-size: 16px;
font-style: italic;
display: block;
padding: 40px;
background: #e4eaf7;
border: 1px solid #e4eaf7;
position: relative;
border-radius: 6px;
}
.blockquote i {
z-index: 0;
font-size: 30px;
line-height: 30px;
}
.form-control:focus {
box-shadow: none;
border-color: #5a9ef3;
}
input {
outline: medium none !important;
}
@media (max-width: 991px) {
h1 {
font-size: 52px;
font-weight: 700;
}
h2 {
font-size: 32px;
font-weight: 700;
}
h3 {
font-size: 28px;
font-weight: 700;
}
h4 {
font-size: 28px;
}
h5 {
font-size: 22px;
}
h6 {
font-size: 20px;
}
}
@media (max-width: 767px) {
h1 {
font-size: 42px;
font-weight: 700;
}
h2 {
font-size: 28px;
font-weight: 700;
}
h3 {
font-size: 26px;
font-weight: 700;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 20px;
}
h6 {
font-size: 18px;
}
}

/*Section Title*/
.section-title {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid #2875d4;
padding-bottom: 18px;
margin-bottom: 30px;
}
.section-title h2 {
font-size: 26px;
color:#333333;
}
.section-title h2::first-letter {
font-size: 28px;
color:#2875d4;
}
.section-title h2 i {
font-size: 24px;
color: #5a9ef3;
margin-right: 15px;
}
.section-title .title {
display: flex;
align-items: center;
}
.section-title .title i {
margin-right: 15px;
}
hr {
border-top: 1px solid #d1d8e6;
opacity: 1;
}
/*Countrys*/
.countrys {
background: #e4eaf7;
padding: 15px;
border-radius: 6px;
}
.countrys .country-01 h4 {
font-family: "Red Hat Display", sans-serif;
font-weight: 600;
font-size: 16px;
color: #000000;
margin-bottom: 10px;
}
.countrys .country-02 h4 {
font-family: "Red Hat Display", sans-serif;
font-weight: 600;
font-size: 16px;
color: #000000;
margin-bottom: 10px;
}
.countrys .country-date p {
font-size: 12px;
font-weight: bold;
color: #000000;
text-align: center;
margin-bottom: 0;
}
.countrys .country-flag {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 16px;
border-top: 1px solid #d1d8e6;
}
.countrys .country-flag img {
width: 50px;
}
.newsletter {
background: #e4eaf7;
padding: 30px;
text-align: center;
border-radius: 6px;
}
.newsletter i {
font-size: 60px;
margin-bottom: 25px;
color: #5c667d;
}
.newsletter p {
margin-bottom: 25px;
font-size: 16px;
line-height: 24px;
}
.newsletter .form-control {
padding: 14px 20px;
height: 50px;
font-size: 14px;
border-color: #ffffff;
transition: all 0.3s ease-in-out;
color: #051830;
border-radius: 6px;
}
.newsletter .form-control:focus {
box-shadow: none;
border-color: #5a9ef3;
}
.newsletter .newsletter-box input {
margin-bottom: 10px;
}
.newsletter .newsletter-box button {
display: block;
width: 100%;
}
/*follow style 01*/
.follow-style-01 .social-box {
padding: 12px 20px;
border-radius: 6px;
border: 1px solid #e4eaf7;
}
.follow-style-01 .social-box .social {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}
.follow-style-01 .social-box .social a.fans-icon {
color: #4876a3;
}
.follow-style-01 .social-box .social a i {
font-size: 24px;
}
.follow-style-01 .social-box .social span {
font-size: 16px;
color: #ffffff;
}
.follow-style-01 .social-box .social:before {
content: '';
top: 45%;
position: absolute;
border: 1px dashed #d1d8e6;
left: 30px;
width: calc(100% - 70px);
}
.follow-style-01 .social-box .follower-btn a {
text-align: center;
border-radius: 6px;
color: #ffffff;
display: block;
padding: 2px 25px;
margin-top: 5px;
}
.follow-style-01 .social-box .fans a {
background: #4876a3;
}
.follow-style-01 .facebook-fans .social span {
color: #4876a3;
}
.follow-style-01 .twitter-follower .social .twitter-icon i {
color: #20b5e6;
}
.follow-style-01 .twitter-follower .social span {
color: #20b5e6;
}
.follow-style-01 .twitter-follower .follower a {
background: #37bde9;
}
.follow-style-01 .you-tube .social .tube-icon i {
color: #dd4237;
}
.follow-style-01 .you-tube .social span {
color: #dd4237;
}
.follow-style-01 .you-tube .subscriber a {
background: #dd4237;
}
.follow-style-01 .instagram-Follower .social .instagram-icon i {
color: #d25b7a;
}
.follow-style-01 .instagram-Follower .social span {
color: #d25b7a;
}
.follow-style-01 .instagram-Follower .instagrams a {
background: #d25b7a;
}
/*Follow Style 02*/
.follow-style-02 .facebook-fans {
background: #336699;
}
.follow-style-02 .social-box {
padding: 12px 20px;
border-radius: 6px;
}
.follow-style-02 .social-box .social {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}
.follow-style-02 .social-box .social a i {
font-size: 24px;
color: #fff;
}
.follow-style-02 .social-box .social span {
font-size: 16px;
color: #ffffff;
}
.follow-style-02 .social-box .social:before {
content: '';
top: 45%;
position: absolute;
border: 1px dashed #d1d8e6;
left: 30px;
width: calc(100% - 70px);
}
.follow-style-02 .social-box .follower-btn a {
text-align: center;
border-radius: 6px;
color: #ffffff;
display: block;
padding: 2px 25px;
margin-top: 5px;
}
.follow-style-02 .social-box .fans a {
background: #4876a3;
}
.follow-style-02 .twitter-follower {
background: #20b5e6;
}
.follow-style-02 .twitter-follower .follower a {
background: #37bde9;
}
.follow-style-02 .you-tube {
background: #d92c20;
}
.follow-style-02 .you-tube .subscriber a {
background: #dd4237;
}
.follow-style-02 .instagram-Follower {
background: #cd486b;
}
.follow-style-02 .instagram-Follower .instagrams a {
background: #d25b7a;
}
/*Follow Style 03*/
.follow-style-03 .social ul {
display: block;
}
.follow-style-03 .social ul li {
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #336699;
padding: 11px 20px;
border-radius: 6px;
margin-right: 0;
}
.follow-style-03 .social ul li .facebook-icon a {
font-size: 16px;
color: #336699;
font-weight: 600;
}
.follow-style-03 .social ul li .facebook-icon a i {
padding-right: 10px;
}
.follow-style-03 .social ul li .facebook-content {
align-items: center;
display: flex;
}
.follow-style-03 .social ul li .facebook-content span {
font-size: 16px;
color: #336699;
font-weight: 600;
margin-right: 10px;
}
.follow-style-03 .social ul li .facebook-content a {
background: #336699;
padding: 1px 20px;
font-size: 12px;
border-radius: 100px;
color: #fff;
}
.follow-style-03 .social ul li.twitter {
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #20b5e6;
padding: 11px 20px;
border-radius: 6px;
margin-top: 10px;
}
.follow-style-03 .social ul li.twitter .twitter-icon a {
font-size: 16px;
color: #20b5e6;
font-weight: 600;
}
.follow-style-03 .social ul li.twitter .twitter-icon a i {
padding-right: 10px;
}
.follow-style-03 .social ul li.twitter .twitter-content {
align-items: center;
display: flex;
}
.follow-style-03 .social ul li.twitter .twitter-content span {
font-size: 16px;
color: #20b5e6;
font-weight: 600;
margin-right: 10px;
}
.follow-style-03 .social ul li.twitter .twitter-content a {
background: #20b5e6;
padding: 1px 20px;
font-size: 12px;
border-radius: 100px;
color: #fff;
}
.follow-style-03 .social li.youtube {
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #d92c20;
padding: 11px 20px;
border-radius: 6px;
margin-top: 10px;
}
.follow-style-03 .social li.youtube .youtube-icon a {
font-size: 16px;
color: #d92c20;
font-weight: 600;
}
.follow-style-03 .social li.youtube .youtube-icon a i {
padding-right: 10px;
}
.follow-style-03 .social li.youtube .youtube-content {
align-items: center;
display: flex;
}
.follow-style-03 .social li.youtube .youtube-content span {
font-size: 16px;
color: #d92c20;
font-weight: 600;
margin-right: 10px;
}
.follow-style-03 .social li.youtube .youtube-content a {
background: #d92c20;
padding: 1px 20px;
font-size: 12px;
border-radius: 100px;
color: #fff;
}
.follow-style-03 .social li.instagrams {
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #cd486b;
padding: 11px 20px;
border-radius: 6px;
margin-top: 10px;
}
.follow-style-03 .social li.instagrams .instagram-icon a {
font-size: 16px;
color: #cd486b;
font-weight: 600;
}
.follow-style-03 .social li.instagrams .instagram-icon a i {
padding-right: 10px;
}
.follow-style-03 .social li.instagrams .instagram-content {
align-items: center;
display: flex;
}
.follow-style-03 .social li.instagrams .instagram-content span {
font-size: 16px;
color: #cd486b;
font-weight: 600;
margin-right: 10px;
}
.follow-style-03 .social li.instagrams .instagram-content a {
background: #cd486b;
padding: 1px 20px;
font-size: 12px;
border-radius: 100px;
color: #fff;
}
/*Follow Style 04*/
.follow-style-04 .social ul {
display: block;
}
.follow-style-04 .social ul li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 11px 20px;
border-radius: 6px;
background: #336699;
margin-right: 0px;
margin-top: 10px;
}
.follow-style-04 .social ul li .social-icon a {
font-size: 16px;
color: #ffffff;
font-weight: 500;
}
.follow-style-04 .social ul li .social-icon a i {
padding-right: 10px;
}
.follow-style-04 .social ul li .social-content {
align-items: center;
display: flex;
}
.follow-style-04 .social ul li .social-content span {
font-size: 16px;
color: #ffffff;
font-weight: 500;
margin-right: 10px;
}
.follow-style-04 .social ul li .social-content a {
padding: 1px 20px;
font-size: 12px;
border-radius: 100px;
color: #ffffff;
}
.follow-style-04 .social ul li.facebook {
background: #336699;
}
.follow-style-04 .social ul li.facebook .social-content a {
background: #517da8;
}
.follow-style-04 .social ul li.twitter {
background: #20b5e6;
}
.follow-style-04 .social ul li.twitter .social-content a {
background: #41c0ea;
}
.follow-style-04 .social ul li.youtube {
background: #d92c20;
}
.follow-style-04 .social ul li.youtube .social-content a {
background: #df4b41;
}
.follow-style-04 .social ul li.instagrams {
background: #cd486b;
}
.follow-style-04 .social ul li.instagrams .social-content a {
background: #d46381;
}
/*follow style 05*/
.follow-style-05 .social ul {
display: flex;
flex-wrap: wrap;
}
.follow-style-05 .social ul li {
text-align: center;
margin-right: 30px;
}
.follow-style-05 .social ul li a {
font-size: 30px;
color: #ffffff;
background: #336699;
border-radius: 6px;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
width: 60px;
height: 60px;
line-height: 60px;
}
.follow-style-05 .social ul li a:hover {
color: #fff;
}
.follow-style-05 .social ul li .user-like {
padding-top: 10px;
}
.follow-style-05 .social ul li .user-like span {
display: block;
font-size: 16px;
}
.follow-style-05 .social ul li .user-like span.user {
font-size: 12px;
padding-top: 2px;
}
.follow-style-05 .social ul li.twitter a {
background: #20b5e6;
}
.follow-style-05 .social ul li.youtube a {
background: #d92c20;
}
.follow-style-05 .social ul li.instagrams a {
background: #cd486b;
}
.text-light1{
color:#e0e0e0;
}
/*social-rounded*/
.social-icon.social-rounded ul li a {
color: #ffffff;
width: 50px;
height: 50px;
justify-content: center;
align-items: center;
display: flex;
text-align: center;
border: 1px solid #ffffff;
border-radius: 100%;
margin-right: 30px;
font-size: 18px;
}
.social-icon.social-rounded ul li a:hover {
background: #5a9ef3;
border: 1px solid #5a9ef3;
}
/*Destination*/
.destination {
position: relative;
overflow: hidden;
}
.destination .destination-img {
position: relative;
}
.destination .destination-img img {
overflow: hidden;
transition: transform 1s cubic-bezier(0.25, 0.04, 0, 0.93);
transform: translate3d(0, 0, 0) scale(1.06);
}
.destination .destination-img:before {
z-index: 1;
position: absolute;
width: 100%;
left: 0;
right: 0;
bottom: 0;
content: "";
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
top: auto;
height: 40%;
transition: all .35s;
}
.destination .destination-detail {
position: absolute;
bottom: -20px;
left: 0;
right: inherit;
padding: 0 30px;
width: 100%;
transition: all 0.3s ease-in-out;
z-index: 9;
}
.destination .destination-detail .destination-info span {
margin-bottom: 15px;
}
.destination .destination-detail .destination-info h4 {
font-weight: 700;
margin-bottom: 0;
color: #ffffff;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.destination .destination-detail .destination-info h4 a {
background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
background-image: -ms-linear-gradient(transparent 95%, currentColor 1px);
background-repeat: no-repeat;
background-size: 0 100%;
background-position: 0 -1px;
transition: all 0.6s cubic-bezier(0.45, 0, 0.14, 1.03);
overflow: hidden;
}
.destination .destination-detail .destination-content {
margin-top: 15px;
display: flex;
align-items: center;
justify-content: space-between;
opacity: 0;
}
.destination .destination-detail .destination-content .upload-box {
display: flex;
align-items: center;
}
.destination .destination-detail .destination-content .upload-box a {
width: 30px;
height: 30px;
flex: 0 0 30px;
display: flex;
justify-content: center;
align-items: center;
background: #80848b;
border-radius: 100%;
color: #fff;
}
.destination .destination-detail .destination-content .upload-box a i {
font-size: 12px;
}
.destination .destination-detail .destination-content .upload-box span.dots {
width: 5px;
height: 5px;
border-radius: 5px;
background: #ffffff;
position: relative;
display: flex;
margin-left: 30px;
}
.destination .destination-detail .destination-content .upload-box span.dots:before {
position: absolute;
content: "";
left: -8px;
top: 0;
width: 5px;
height: 5px;
background: #ffffff;
border-radius: 5px;
}
.destination .destination-detail .destination-content .upload-box span.dots:after {
position: absolute;
content: "";
right: -8px;
top: 0;
width: 4px;
height: 4px;
background: #ffffff;
border-radius: 5px;
}
.destination .destination-detail .destination-content .upload-box .share-box {
position: relative;
z-index: 99;
}
.destination .destination-detail .destination-content .upload-box .share-box > a {
height: auto;
width: auto;
background-color: inherit;
display: inline-block;
margin-left: 25px;
}
.destination .destination-detail .destination-content .upload-box .share-box .share-box-social {
position: absolute;
border-radius: 6px;
background-color: #ffffff;
padding: 5px;
opacity: 0;
visibility: hidden;
position: absolute;
left: 0;
bottom: 100%;
transition: all 0.3s ease-in-out;
min-width: 160px;
}
.destination .destination-detail .destination-content .upload-box .share-box .share-box-social li {
transition: all 0.5s ease-in-out;
}
.destination .destination-detail .destination-content .upload-box .share-box .share-box-social li a {
background-color: transparent;
color: #5c667d;
padding: 10px 15px;
font-size: 14px;
width: auto;
height: auto;
display: block;
border-radius: 3px;
}
.destination .destination-detail .destination-content .upload-box .share-box .share-box-social li a i {
font-size: 14px;
padding-right: 10px;
}
.destination .destination-detail .destination-content .upload-box .share-box .share-box-social li:hover {
color: #5a9ef3;
background-color: #e4eaf7;
visibility: visible;
}
.destination .destination-detail .destination-content .upload-box .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.destination .destination-detail .destination-content .blog-post-meta {
display: flex;
align-items: center;
}
.destination .destination-detail .destination-content .blog-post-meta .blog-post-comment {
margin-right: 25px;
}
.destination .destination-detail .destination-content .blog-post-meta .blog-post-comment a {
color: #ffffff;
}
.destination .destination-detail .destination-content .blog-post-meta .blog-post-comment a i {
padding-right: 10px;
}
.destination .destination-detail .destination-content .blog-post-meta .blog-post-share a {
color: #ffffff;
}
.destination .destination-detail .destination-content .blog-post-meta .blog-post-share a i {
padding-right: 10px;
}
.destination:hover .destination-img img {
transform: translate3d(3%, 0, 0) scale(1.06);
}
.destination:hover .destination-detail {
bottom: 20px;
}
.destination:hover .destination-detail .destination-info h4 a {
background-size: 100% 100%;
color: inherit;
}
.destination:hover .destination-detail .destination-content {
opacity: 1;
}
/*Search*/
.search ul li a {
color: #000000;
display: flex;
}
.search ul li a:hover {
color: #5a9ef3;
}
#search {
position: absolute;
top: 55px;
left: 0px;
width: 100%;
background-color: #f5f5f5;
opacity: 0;
visibility: hidden;
transform: scale3d(0.8, 0.8, 0.8);
transition: 0.3s;
z-index: 999;
padding: 27px 0px;
}
#search .search-popup {
display: flex;
}
#search.search-style-02 {
top: 0px;
}
#search.open {
opacity: 1;
visibility: visible;
transform: scale3d(1, 1, 1);
}
#search input[type="search"] {
width: 100%;
color: #5c667d;
background: #ffffff;
border: 1px solid #e4eaf7;
font-size: 16px;
height: 50px;
font-weight: 300;
border-radius: 6px 0px 0px 6px;
margin: 0px auto;
margin-top: 0px;
padding-left: 30px;
padding-right: 30px;
outline: none;
text-transform: capitalize;
}
#search .btn {
border-radius: 0px 6px 6px 0px;
}
#search .close {
position: absolute;
z-index: 9;
top: 50%;
right: 15px;
background-color: #041f42;
color: #ffffff;
opacity: 1;
padding: 11px 19px;
font-size: 18px;
border-radius: 6px;
border: transparent;
transition: all 0.3s ease-in-out;
transform: translate(0%, -50%);
}
#search .close:hover {
background-color: #5a9ef3;
}
#search .close i {
position: relative;
z-index: -1;
}
/*breaking-news*/
.breaking-news {
background-color: #041f42;
padding: 7px;
margin-bottom: 30px;
}
.breaking-news .news-btn {
background-color: #5a9ef3;
display: inline-block;
padding: 6px 15px;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
border-radius: 4px;
color: #ffffff;
}
.breaking-news .owl-carousel.arrow-styel-03 {
padding-right: 90px;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav {
opacity: 1;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav button {
height: 24px;
width: 24px;
font-size: 12px;
color: #5a9ef3;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav button.owl-prev {
left: inherit;
right: 30px;
top: 14px;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav button.owl-prev .fa-arrow-left-long:before {
content: "\f053" !important;
font-family: "Font Awesome 6 Free";
font-weight: 900;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav button.owl-next {
top: 14px;
}
.breaking-news .owl-carousel.arrow-styel-03 .owl-nav button.owl-next .fa-arrow-right-long:before {
content: "\f054" !important;
font-family: "Font Awesome 6 Free";
font-weight: 900;
}
.breaking-news .owl-carousel.arrow-styel-03:hover .owl-nav button.owl-next {
right: 0;
}
.breaking-news .owl-carousel.arrow-styel-03 .news-post {
padding-right: 15px;
}
/*add-banner*/
.add-banner {
margin-top: 30px;
}
.add-banner a {
position: relative;
overflow: hidden;
display: block;
}
.add-banner a:before {
position: absolute;
top: 0;
left: -75%;
z-index: 2;
display: block;
content: '';
width: 50%;
height: 100%;
background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
-webkit-transform: skewX(-25deg);
transform: skewX(-25deg);
}
.add-banner a:hover:before {
-webkit-animation: shine 2.0s;
animation: shine 2.0s;
}
.add-banner a img {
border-radius: 6px;
}
.add-widget .add-banner {
margin-top: 0px;
}
.add-widget .add-banner a:hover:before {
-webkit-animation: shine 1.0s;
animation: shine 1.0s;
}
/*inner-header*/
.inner-header {
padding: 15px 0;
background: #e1ebff;
}
.inner-header .breadcrumb {
margin-bottom: 0;
}
.inner-header .breadcrumb li:before {
content: none;
}
/* blog-post post-style-10 */
.blog-post.post-style-10 .blog-details .blog-post-details span.text-purple:before {
background: #6610f2;
}
.blog-post.post-style-10 .blog-details .blog-post-details span.text-red:before {
background: #dc3545;
}
.blog-post.post-style-10 .blog-details .blog-post-details span.text-primary:before {
background: #5a9ef3;
}
.blog-post.post-style-10 .blog-details .blog-post-details span.text-skyblue:before {
background: #0dcaf0;
}
.blog-post.post-style-10 .blog-details .blog-post-details span.text-orange:before {
background: #fd7e14;
}
/*Home 05*/
.news-politics-post .sidebar-img a {
position: relative;
overflow: hidden;
display: block;
}
.news-politics-post .sidebar-img a img {
border-radius: 6px;
}
.news-politics-post .sidebar-img a:before {
position: absolute;
top: 0;
left: -75%;
z-index: 2;
display: block;
content: '';
width: 50%;
height: 100%;
background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
transform: skewX(-25deg);
}
.news-politics-post .sidebar-img a:hover:before {
animation: shine 1.0s;
}
/* Home 06*/
.news-medical-posts ul.current-list li {
position: relative;
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px solid #e4eaf7;
font-family: zilla;
font-weight: 600;
color: #5c667d;
}
.news-medical-posts ul.current-list li span {
padding-left: 15px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.news-medical-posts ul.current-list li span:before {
content: "";
position: absolute;
top: 8px;
left: 0;
border: 1px solid #051830;
width: 6px;
height: 6px;
border-radius: 50px;
}
.news-medical-posts ul.current-list li:last-child {
margin-bottom: 0px;
padding-bottom: 0px;
border-bottom: none;
}
ul.current-news li {
position: relative;
font-family: zilla;
font-weight: 600;
color: #5c667d;
font-size: 18px;
}
ul.current-news li span.border-end:after {
content: "";
position: absolute;
top: 0px;
right: 0;
width: 1px;
height: 60px;
}
/* page-pagination */
.page-pagination .pagination {
grid-gap: 10px;
}
.page-pagination .pagination .page-link {
display: flex;
align-items: center;
width: 40px;
height: 30px;
justify-content: center;
border: none;
color: #041f42;
padding: 0;
background: #e4eaf7;
border-radius: 6px;
}
.page-pagination .pagination .page-link:hover, .page-pagination .pagination .page-link.active {
color: #ffffff;
background: #5a9ef3;
}
.page-pagination .pagination .page-link:focus, .page-pagination .pagination .page-link:active {
outline: none;
box-shadow: none;
}


/*contact us*/
.contact-info {
padding-right: 50px;
}
.contact-info .map-info .map {
margin-bottom: 15px;
}
.contact-info .map-info h4 {
font-weight: bold;
}
.form-info {
padding: 40px;
}
.contact-chat {
padding: 50px;
background-color: #041f42;
border-radius: 6px;
}
.contact-chat .btn {
margin-top: 40px;
}
.contact-chat .btn:hover {
background-color: #ffffff;
color: #5a9ef3;
}
.contact-online {
padding: 50px;
background-color: #5a9ef3;
border-radius: 6px;
}
.contact-online h4 {
margin-top: 40px;
margin-bottom: 0;
}
.contact-us {
padding: 50px;
background-color: #e4eaf7;
border-radius: 6px;
}
.contact-us h4 {
margin-top: 40px;
margin-bottom: 0;
}



/* Back to top */
.progress-wrap {
position: fixed;
z-index: 99;
right: 30px;
bottom: 30px;
height: 40px;
width: 40px;
cursor: pointer;
display: block;
border-radius: 50px;
box-shadow: inset 0 0 0 2px #041f42;
opacity: 0;
visibility: hidden;
transform: translateY(15px);
}
.progress-wrap::before {
position: absolute;
font-family: "Font Awesome 6 Free";
content: "\f062";
text-align: center;
line-height: 40px;
opacity: 1;
height: 40px;
width: 40px;
font-size: 16px;
color: #5a9ef3;
}
.progress-wrap svg path {
fill: none;
}
.progress-wrap svg.progress-circle path {
stroke: #5a9ef3;
stroke-width: 4;
}
.progress-wrap.active-progress {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
/* Responsive*/
@media (max-width: 1299px) {
.follow-style-01 .social-box .follower-btn a {
padding: 2px 10px;
}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
.follow-style-05 .social ul li {
margin-right: 10px;
}
.follow-style-05 .social ul li a {
width: 50px;
height: 50px;
font-size: 22px;
}
}
@media (max-width: 1199px) {
.news-popup.modal .modal-content .modal-body .popup-content {
padding: 25px 40px;
}
}
@media (max-width: 991px) {
#search {
padding: 16px 0px;
top: 87px;
}
#search.search-style-03 {
top: 90px;
}
.video-box {
margin-right: 0;
margin-bottom: 30px;
}
.section-title h2 {
font-size: 24px;
}
.news-popup.modal .modal-content .btn-close {
background-color: #ffffff;
padding: 10px;
}
.news-popup.modal .modal-content .modal-body .popup-bg {
border-radius: 6px 6px 0px 0px;
}
.news-popup.modal .modal-content .modal-body .popup-bg img {
border-radius: 6px 6px 0px 0px;
}
.news-popup.modal .modal-content .modal-body .popup-content {
padding: 20px 20px;
}
.news-popup.modal .modal-content .modal-body .popup-content .newsletter .title {
margin-bottom: 10px;
}
.news-popup.modal .modal-content .modal-body .popup-content .newsletter p {
margin-bottom: 20px;
}
.news-popup.modal .modal-content .modal-body .popup-content .newsletter .newsletter-box {
margin-bottom: 20px;
}
.news-popup.modal .modal-content .modal-body .popup-content .newsletter .form-check {
margin-bottom: 20px;
}
.news-medical-posts .current-list {
margin-top: 30px;
}
.news-medical-posts .current-news {
margin-bottom: 30px;
}
.news-medical-posts .current-news li span {
border-right: inherit !important;
}
.explore-products .table-responsive .table.coin-table {
margin-bottom: 0;
}
.progress-wrap {
right: 30px;
bottom: 30px;
}
}
@media (max-width: 767px) {
#search {
top: 0;
padding: 16px 0px;
}
#search.search-style-02 {
padding: 31px 0;
}
#search.search-style-03 {
top: 40px;
}
.breaking-news .news-btn {
margin-bottom: 15px;
}
.lion-section .lion-content .blog-title.right-blog {
border-left: 0;
padding-left: 0;
margin-bottom: 0;
}
.news-medical-posts .current-list {
margin-top: 0;
}
.form-info {
padding: 20px;
}
}
@media (max-width: 575px) {
#search {
padding: 11px 0px;
}
}

/*follow style 05*/
.follow-style-05 .social ul li {
margin-right: 20px;
}
.follow-style-05 .social ul li a {
font-size: 20px;
width: 45px;
height: 45px;
line-height: 45px;
}


/*****************************
Badge
*****************************/
.badge {
font-size: 12px;
text-transform: uppercase;
padding: 0;
z-index: 1;
font-weight: 600;
}
.badge-small {
padding: 4px 15px;
font-weight: 600;
}
.badge-medium {
padding: 6px 15px;
font-weight: 600;
}
.badge-large {
padding: 7px 15px;
font-weight: 600;
}
/*badge-style-02*/
.badge-style-02 {
position: relative;
color: #0d6efd;
font-weight: 600;
font-size: 14px;
margin-left: 6px;
}
.badge-style-02:before {
content: '';
height: 2px;
display: block;
width: 5px;
background: #0d6efd;
top: 50%;
position: absolute;
left: -10px;
margin-right: 0px;
}
.badge-style-02.text-red:before {
background: #dc3545;
}
.badge-style-02.text-blue:before {
background: #0d6efd;
}
.badge-style-02.text-yellow:before {
background: #ffc107;
}
.badge-style-02.text-pink:before {
background: #d63384;
}
.badge-style-02.text-orange:before {
background: #fd7e14;
}
.badge-style-02.text-purple:before {
background: #6610f2;
}
.badge-style-02.text-skyblue:before {
background: #0dcaf0;
}
.badge-style-02.text-primary:before {
background: #5a9ef3;
}
/*badge-style-03*/
.badge-style-03 {
position: relative;
color: #041f42;
font-size: 14px;
margin-left: 52px;
font-weight: 700;
}
.badge-style-03:before {
content: '';
height: 2px;
display: block;
width: 20px;
background: #041f42;
top: 6px;
position: absolute;
left: -32px;
margin-right: 0px;
}
/*****************************
Banner
*****************************/
.banner-content {
padding-top: 200px;
}
/*****************************
Banner style 02
*****************************/
.destination-list-item {
display: flex;
position: relative;
flex-wrap: wrap;
}
.destination-item {
width: 25%;
position: relative;
}
.destination-item:before {
content: "";
background: rgba(255, 255, 255, 0.1);
height: 100%;
width: 2px;
display: inline-block;
position: absolute;
right: 0;
top: 0;
z-index: 1;
-webkit-backdrop-filter: blur(9px);
backdrop-filter: blur(9px);
}
.destination-item .destination {
z-index: 2;
background: rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
}
.destination-item .destination-img img {
opacity: 0;
}
.destination-item.active .destination {
background: transparent;
-webkit-backdrop-filter: blur(9px);
backdrop-filter: blur(9px);
}
.destination-item.active .destination .destination-detail {
bottom: 20px;
}
.destination-item.active .destination .destination-detail .destination-content {
opacity: 1;
}
.destination-item-img {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-repeat: no-repeat;
background-size: cover;
transition: all 0.3s ease-in-out;
}

/* banner-new-style */
.banner-new-style {
padding: 0 90px;
margin-top: 100px;
display: inline-block;
}
.banner-new-style .blog-post.post-style-12 {
background: #f3f7ff;
display: flex;
align-items: center;
height: 100%;
}
.banner-new-style .blog-post.post-style-12 .blog-details {
padding: 60px;
}
.banner-new-style .blog-post.post-style-12 .blog-details h4 {
margin-bottom: 30px;
}
.banner-new-style .blog-post.post-style-12 .blog-details .btn {
margin-top: 40px;
}
.banner-new-style .banner-new-img {
height: 100%;
object-fit: cover;
}
.banner-new-style .banner-new-img img {
height: 100%;
width: 100%;
object-fit: cover;
}
@media (max-width: 1430px) {
.banner-new-style {
padding: 0 0px;
}
.banner-new-style .banner-new-img img {
width: 100%;
}
}
@media (max-width: 991px) {
.banner-new-style .blog-post.post-style-12 .blog-details {
padding: 60px 60px 60px 60px;
}
}
@media (max-width: 767px) {
.destination-list-item .destination-item {
width: 50%;
}
.destination-list-item .destination-item .destination-img img {
height: 350px;
}
.destination-list-item .destination-item .destination .destination-detail .destination-content {
flex-wrap: wrap;
margin-top: 8px;
}
.destination-list-item .destination-item .destination .destination-detail .destination-content .upload-box {
margin-bottom: 6px;
}
.banner-new-style {
padding: 0;
margin-top: 90px;
}
.banner-new-style .blog-details {
padding: 0px 30px 30px 30px;
}
.banner-new-style .banner-new-img img {
width: 100%;
}
}
@media (max-width: 575px) {
.destination-list-item .destination-item {
width: 100%;
}
.destination-list-item .destination-item .destination-img img {
height: 200px;
}
.banner-section .destination-list-item .destination .destination-detail {
padding: 0px 15px;
}
.banner-section .destination-list-item .destination .destination-detail .destination-info span {
margin-bottom: 6px;
}
.banner-section .destination-list-item .destination .destination-detail .destination-info h4 {
font-size: 16px;
line-height: 24px;
}
.banner-section .destination-list-item .destination .destination-detail .destination-content .upload-box .share-box .share-box-social {
display: flex;
}
.banner-section .destination-list-item .destination .destination-detail .destination-content .upload-box .share-box .share-box-social li a {
padding: 10px 5px;
text-align: center;
}
.banner-new-style .blog-post.post-style-12 .blog-details {
padding: 30px 30px 30px 30px;
}
.banner-new-style .blog-post.post-style-12 .blog-details h4 {
font-size: 26px;
line-height: 42px;
}
}
@supports (-webkit-backdrop-filter: blur(9px)) or (backdrop-filter: blur(9px)) {
.destination-item:before,
.destination-item.active .destination {
-webkit-backdrop-filter: blur(9px);
backdrop-filter: blur(9px);
}
}
/*****************************
Blog Post
*****************************/
.blog-post {
position: relative;
}
.blog-post .blog-image {
overflow: hidden;
position: relative;
border-radius: 10px;
perspective: 1px;
}
.blog-post .blog-image img {
border-radius: 6px;
position: relative;
overflow: hidden;
transition: transform 1s cubic-bezier(0.25, 0.04, 0, 0.93);
transform: translate3d(0, 0, 0) scale(1.06);
width: 100%;
}
.blog-post .blog-image:before {
z-index: 1;
position: absolute;
width: 100%;
left: 0;
right: 0;
bottom: 0;
content: "";
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
top: auto;
height: 70%;
transition: all .35s;
}
.truncate-2 {
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.truncate-3 {
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.blog-post .blog-post-details .blog-title a {
background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
background-image: -ms-linear-gradient(transparent 95%, currentColor 1px);
background-repeat: no-repeat;
background-size: 0 100%;
background-position: 0 -1px;
transition: all 0.6s cubic-bezier(0.45, 0, 0.14, 1.03);
}
.blog-post .blog-post-details .blog-title a:focus {
color: inherit;
}
.blog-post .blog-post-details .blog-title a:hover {
color: inherit;
}
.blog-post .blog-post-details .blog-post-meta {
display: flex;
align-items: center;
margin-top: 10px;
font-size: 14px;
}
.blog-post .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 14px;
color: #5c667d;
}
.blog-post .blog-post-details .blog-post-meta .blog-post-author a img {
height: 30px;
border-radius: 50%;
margin: 0px;
width: auto;
display: inline-block;
margin-right: 10px;
}
.blog-post .blog-post-details .blog-post-meta .blog-post-time a {
color: #5c667d;
}
.blog-post .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post:hover .blog-title a {
background-size: 100% 100%;
color: inherit;
}
.blog-post:hover img {
transform: translate3d(3%, 0, 0) scale(1.06);
}
.blog-post-image img {
border-radius: 6px;
}
/* Post Style 01 */
.blog-post.post-style-01 {
position: relative;
cursor: pointer;
}
.blog-post.post-style-01 .blog-image{
background: #000000;
}
.blog-post.post-style-01 .blog-image img{
height:453px;
opacity: 0.5;
}
.blog-post.post-style-01 .blog-image img{
height:453px;
opacity: 0.5;
}
.blog-post.post-style-01 .blog-post-details {
position: absolute;
left: 0;
right: 0;
width: 100%;
z-index: 2;
bottom: 20px;
padding: 0px 30px;
}
.blog-post.post-style-01 .blog-post-details a.tag {
font-size: 12px;
line-height: 12px;
color: #ffffff;
padding: 6px 20px;
text-transform: uppercase;
font-weight: bold;
}
.blog-post.post-style-01 .blog-post-details a.tag:focus {
box-shadow: none;
}
.blog-post.post-style-01 .blog-post-details h3 {
margin-top: 20px;
color: #ffffff;
}
.blog-post.post-style-01 .blog-post-details h4 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 24px;
line-height: 32px;
}
.blog-post.post-style-01 .blog-post-details h5 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 20px;
line-height: 1.5;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: 10px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author {
margin-right: 20px;
margin-bottom: 10px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 16px;
color: #ffffff;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 30px;
border-radius: 50%;
margin: 0px;
width: auto;
display: inline-block;
margin-right: 10px;
transform: inherit;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time {
margin-bottom: 10px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time a {
color: #ffffff;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post.post-style-01:hover h3 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-01:hover h4 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-01:hover h5 a {
background-size: 100% 100%;
color: #ffffff;
}
/* Post Style 001 */
.blog-post.post-style-001 {
position: relative;
cursor: pointer;
}
.blog-post.post-style-001 .blog-image{
background: #000000;
}
.blog-post.post-style-001 .blog-image img{
height:380px;
opacity: 0.5;
width: 100%;
}
.blog-post.post-style-001 .blog-post-details {
position: absolute;
left: 0;
right: 0;
width: 100%;
z-index: 2;
bottom: 20px;
padding: 0px 30px;
}
.blog-post.post-style-001 .blog-post-details a.tag {
font-size: 12px;
line-height: 12px;
color: #ffffff;
padding: 6px 20px;
text-transform: uppercase;
font-weight: bold;
}
.blog-post.post-style-001 .blog-post-details a.tag:focus {
box-shadow: none;
}
.blog-post.post-style-001 .blog-post-details h3 {
margin-top: 20px;
color: #ffffff;
}
.blog-post.post-style-001 .blog-post-details h4 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 24px;
line-height: 32px;
}
.blog-post.post-style-001 .blog-post-details h5 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 20px;
line-height: 1.5;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: 10px;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-author {
margin-right: 20px;
margin-bottom: 10px;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 16px;
color: #ffffff;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 30px;
border-radius: 50%;
margin: 0px;
width: auto;
display: inline-block;
margin-right: 10px;
transform: inherit;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-time {
margin-bottom: 10px;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-time a {
color: #ffffff;
}
.blog-post.post-style-001 .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post.post-style-001:hover h3 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-001:hover h4 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-001:hover h5 a {
background-size: 100% 100%;
color: #ffffff;
}
/* Post Style 0001 */
.blog-post.post-style-0001 {
position: relative;
cursor: pointer;
}
.blog-post.post-style-0001 .blog-image{
background: #000000;
}
.blog-post.post-style-0001 .blog-image img{
height:300px;
opacity: 0.5;
width: 100%;
}
.blog-post.post-style-0001 .blog-post-details {
position: absolute;
left: 0;
right: 0;
width: 100%;
z-index: 2;
bottom: 20px;
padding: 0px 30px;
}
.blog-post.post-style-0001 .blog-post-details a.tag {
font-size: 12px;
line-height: 12px;
color: #ffffff;
padding: 6px 20px;
text-transform: uppercase;
font-weight: bold;
}
.blog-post.post-style-0001 .blog-post-details a.tag:focus {
box-shadow: none;
}
.blog-post.post-style-0001 .blog-post-details h3 {
margin-top: 20px;
color: #ffffff;
}
.blog-post.post-style-0001 .blog-post-details h4 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 24px;
line-height: 32px;
}
.blog-post.post-style-0001 .blog-post-details h5 {
margin-top: 15px;
color: #ffffff;
font-weight: bold;
margin-bottom: 0px;
font-size: 20px;
line-height: 1.5;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-top: 10px;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-author {
margin-right: 20px;
margin-bottom: 10px;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 16px;
color: #ffffff;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 30px;
border-radius: 50%;
margin: 0px;
width: auto;
display: inline-block;
margin-right: 10px;
transform: inherit;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-time {
margin-bottom: 10px;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-time a {
color: #ffffff;
}
.blog-post.post-style-0001 .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post.post-style-001:hover h3 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-0001:hover h4 a {
background-size: 100% 100%;
color: #ffffff;
}
.blog-post.post-style-0001:hover h5 a {
background-size: 100% 100%;
color: #ffffff;
}
/* Post Style 02 */
.blog-post.post-style-02 {
position: relative;
overflow: hidden;
}
.blog-post.post-style-02 .blog-image img{
height:220px;
}
.blog-post.post-style-02 .badge {
position: absolute;
top: 15px;
right: 15px;
z-index: 9;
}
.blog-post.post-style-02 .badge:focus {
box-shadow: none;
}
.blog-post.post-style-02 .blog-post-details {
margin-top: 15px;
}
.blog-post.post-style-02 .blog-post-details h6 {
font-size: 16px;
line-height: 24px;
font-weight: bold;
margin-bottom: 10px;
color: #000000;
}
.blog-post.post-style-02 .blog-post-details h6 a:hover {
color: #000000;
}
.blog-post.post-style-02 .blog-post-details .blog-post-time a {
color: #5c667d;
}
.blog-post.post-style-02 .blog-post-details .blog-post-time a i {
margin-right: 10px;
}
/* Post Style 03 */
.blog-post.post-style-03 {
position: relative;
overflow: hidden;
}
.blog-post.post-style-03 .blog-image img{
height:300px;
}
.blog-post.post-style-03 .badge {
position: absolute;
top: 15px;
right: 15px;
z-index: 9;
}
.blog-post.post-style-03 .badge:focus {
box-shadow: none;
}
.blog-post.post-style-03 .blog-post-details {
margin-top: 15px;
}
.blog-post.post-style-03 .blog-post-details h6 {
font-size: 21px;
line-height: 1.5;
font-weight: bold;
margin-bottom: 10px;
color: #000000;
}
.blog-post.post-style-03 .blog-post-details h6 a:hover {
color: #000000;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta {
display: flex;
align-items: center;
margin-top: 10px;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 16px;
color: #5c667d;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 20px;
border-radius: 50%;
margin: 0px;
width: auto;
display: inline-block;
margin-right: 10px;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta .blog-post-time {
margin-left: 10px;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta .blog-post-time a {
color: #5c667d;
}
.blog-post.post-style-03 .blog-post-details .blog-post-meta .blog-post-time a i {
margin-right: 10px;
color: #5a9ef3;
}
.blog-post.post-style-03 .blog-post-details p {
margin-top: 10px;
}
.blog-post.post-style-03:hover .blog-post-author a img {
transform: translate3d(0%, 0, 0) scale(1);
}
/* Post Style 04 */
.blog-post.post-style-04 {
display: flex;
margin-bottom: 15px;
align-items: center;
padding-bottom: 15px;
border-bottom: 1px solid #CCC;
}
.blog-post.post-style-04:last-child{
border:none;
}
.blog-post.post-style-04 .blog-image {
min-width: 130px;
width: 130px;
margin-right: 25px;
border-radius: 6px;
}
.blog-post.post-style-04 .blog-image img {
border-radius: 6px;
height: 90px;
position: relative;
overflow: hidden;
transition: transform 1s cubic-bezier(0.25, 0.04, 0, 0.93);
transform: translate3d(0, 0, 0) scale(1.06);
}
.blog-post.post-style-04 .blog-image img:hover {
transform: translate3d(3%, 0, 0) scale(1.06);
}
.blog-post.post-style-04 .blog-image:before {
background: rgba(5, 24, 48, 0.1);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 9;
}
.blog-post.post-style-04 .blog-post-details .badge {
padding: 0px;
font-size: 12px;
font-weight: bold;
line-height: 12px;
text-transform: uppercase;
}
.blog-post.post-style-04 .blog-post-details .badge:focus {
box-shadow: none;
}
.blog-post.post-style-04 .blog-post-details h6 {
font-size: 15.5px;
font-weight: 700;
margin-top: 4px;
margin-bottom: 10px;
color: #000000;
line-height: 24px;
}
.blog-post.post-style-04 .blog-post-details h6 a:hover {
color: #000000;
}
.blog-post.post-style-04 .blog-post-details .blog-post-time a {
color: #5c667d;
}
.blog-post.post-style-04 .blog-post-details .blog-post-time a i {
margin-right: 10px;
color: #5c667d;
}
.blog-post.post-style-04 .blog-post-details .blog-post-meta {
margin-top: 0;
}
.blog-post.post-style-04:hover img {
transform: translate3d(3%, 0, 0) scale(1.06);
}
/* Post Style 04 */
.blog-post.post-style-004 {
display: flex;
margin-bottom: 15px;
align-items: center;
padding-bottom: 15px;
border-bottom: 1px solid #CCC;
}
.blog-post.post-style-004:last-child{
border:none;
}
.blog-post.post-style-004 .blog-image {
min-width: 270px;
width: 240px;
margin-right: 25px;
border-radius: 6px;
}
.blog-post.post-style-004 .blog-image img {
border-radius: 6px;
height: 150px;
position: relative;
overflow: hidden;
transition: transform 1s cubic-bezier(0.25, 0.04, 0, 0.93);
transform: translate3d(0, 0, 0) scale(1.06);
}
.blog-post.post-style-004 .blog-image img:hover {
transform: translate3d(3%, 0, 0) scale(1.06);
}
.blog-post.post-style-004 .blog-image:before {
background: rgba(5, 24, 48, 0.1);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 9;
}
.blog-post.post-style-004 .blog-post-details .badge {
padding: 0px;
font-size: 12px;
font-weight: bold;
line-height: 12px;
text-transform: uppercase;
}
.blog-post.post-style-004 .blog-post-details .badge:focus {
box-shadow: none;
}
.blog-post.post-style-004 .blog-post-details h6 {
font-size: 15.5px;
font-weight: 700;
margin-top: 4px;
margin-bottom: 10px;
color: #000000;
line-height: 24px;
}
.blog-post.post-style-004 .blog-post-details h6 a:hover {
color: #000000;
}
.blog-post.post-style-004 .blog-post-details .blog-post-time a {
color: #5c667d;
}
.blog-post.post-style-004 .blog-post-details h4 {
font-size: 22px;
font-weight: 700;
margin-top: 4px;
margin-bottom: 10px;
color: #000000;
line-height: 1.4;
}
.blog-post.post-style-004 .blog-post-details h4 a:hover {
color: #000000;
}
.blog-post.post-style-004 .blog-post-details .blog-post-time a {
color: #5c667d;
}
.blog-post.post-style-004 .blog-post-details .blog-post-time a i {
margin-right: 10px;
color: #5c667d;
}
.blog-post.post-style-004 .blog-post-details .blog-post-meta {
margin-top: 0;
}
.blog-post.post-style-004:hover img {
transform: translate3d(3%, 0, 0) scale(1.06);
}
/* Post Style 05 */
.blog-post.post-style-05 {
display: flex;
align-items: center;
margin-bottom: 30px;
}
.blog-post.post-style-05:last-child {
margin-bottom: 0px;
}
.blog-post.post-style-05 .blog-post-date {
flex: 0 0 13%;
}
.blog-post.post-style-05 .blog-post-date a {
color: #5c667d;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
}
.blog-post.post-style-05 .blog-post-date h2 {
font-size: 36px;
line-height: 36px;
font-weight: 900;
margin-bottom: 0;
margin-top: 7px;
}
.blog-post.post-style-05 .blog-image {
min-width: 160px;
width: 160px;
margin-right: 30px;
position: relative;
}
.blog-post.post-style-05 .blog-image img {
border-radius: 6px;
position: relative;
}
.blog-post.post-style-05 .blog-image .video-icon {
position: absolute;
z-index: 9;
bottom: 10px;
right: 10px;
}
.blog-post.post-style-05 .blog-image .video-icon a i {
background: #ffffff;
padding: 5.5px 4.6px;
border-radius: 6px;
line-height: 16px;
}
.blog-post.post-style-05 .blog-image:before {
background: rgba(5, 24, 48, 0.09);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 9;
}
.blog-post.post-style-05 .blog-post-details h6 {
font-size: 20px;
font-weight: 700;
margin-top: 15px;
margin-bottom: 8px;
color: #000000;
line-height: 24px;
}
.blog-post.post-style-05 .blog-post-details h6 a:hover {
color: #000000;
}
.blog-post.post-style-05 .blog-post-details .blog-view a {
color: #5c667d;
}
.blog-post.post-style-05 .blog-post-details .blog-view a:last-child {
padding-left: 35px;
position: relative;
}
.blog-post.post-style-05 .blog-post-details .blog-view a:last-child:before {
content: "";
position: absolute;
background: #ffffff;
height: 4px;
width: 4px;
border-radius: 50%;
left: 15px;
top: 9px;
}
.video-section .blog-style-vertical {
overflow: auto;
height: 550px;
padding-right: 20px;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-date a {
color: #ffffff;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-date h2 {
color: #ffffff;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-details h6 {
color: #ffffff;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-details h6 a:hover {
background-size: 100% 100%;
color: #ffffff;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-details .blog-view a {
color: #ffffff;
}
.video-section .blog-style-vertical .blog-post.post-style-05:hover {
background-size: 100% 100%;
color: #ffffff;
}
.video-section .blog-style-vertical::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #22364f;
border-radius: 100px;
}
.video-section .blog-style-vertical::-webkit-scrollbar {
width: 3px;
background-color: #5d6e83;
border-radius: 100px;
}
.video-section .blog-style-vertical::-webkit-scrollbar-thumb {
background-color: #5d6e83;
}
/* Post Style 06 */
.blog-post.post-style-06 {
border: 1px solid #e4eaf7;
border-radius: 6px;
}
.blog-post.post-style-06 .blog-image {
border-radius: 6px 6px 0px 0px;
}
.blog-post.post-style-06 .blog-details {
padding: 23px 15px;
}
.blog-post.post-style-06 .blog-details .blog-post-details {
text-align: center;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-title {
margin: 20px 0 15px 0;
font-size: 18px;
font-weight: 700;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03 {
color: #0d6efd;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03:before {
background: #0d6efd;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-red {
color: #dc3545;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-red:before {
background: #dc3545;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-blue {
color: #0d6efd;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-blue:before {
background: #0d6efd;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-yellow {
color: #ffc107;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-yellow:before {
background: #ffc107;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-pink {
color: #d63384;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-pink:before {
background: #d63384;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-orange {
color: #fd7e14;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-orange:before {
background: #fd7e14;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-purple {
color: #6610f2;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-purple:before {
background: #6610f2;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-skyblue {
color: #0dcaf0;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-skyblue:before {
background: #0dcaf0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-light {
color: #e4eaf7;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-light:before {
background: #e4eaf7;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-dark {
color: #051830;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-dark:before {
background: #051830;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-primary {
color: #5a9ef3;
margin-left: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .badge-style-03.text-primary:before {
background: #5a9ef3;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta {
justify-content: center;
padding-bottom: 15px;
border-bottom: 1px solid #e4eaf7;
margin-bottom: 10px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.post-style-06 .blog-details .blog-content p {
text-align: center;
margin-bottom: 0;
}
/* Post Style 07 */
.blog-post.post-style-07 {
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 6px;
border: 1px solid #d1d8e6;
padding: 20px;
}
.blog-post.post-style-07 .blog-post-details {
width: 100%;
}
.blog-post.post-style-07 .blog-post-details .blog-title {
font-weight: 600;
padding-top: 15px;
margin-bottom: 0;
font-size: 22px;
line-height: 30px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta {
display: flex;
padding-top: 22px;
flex-wrap: wrap;
margin-top: 0;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-user {
margin-right: 15px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-user a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-user a img {
margin: 0 5px;
height: 20px;
border-radius: 50%;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-user a i {
margin-right: 10px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-time a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-time a i {
margin-right: 10px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 0;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-user a img {
transform: inherit;
}
.blog-post.post-style-07 .post-image {
overflow: hidden;
border-radius: 6px;
flex: 0 0 210px;
perspective: 1px;
}
.blog-post.post-style-07 .post-image img {
border-radius: 6px;
transform: scale(1.001) rotate(0);
transition: transform .9s ease;
will-change: transform;
}
.blog-post.post-style-07:hover img {
transform: scale(1.1) rotate(1.1deg);
}
/* Post Style 08 */
.blog-post.post-style-08 {
border-radius: 6px;
border: 1px solid #e4eaf7;
}
.blog-post.post-style-08 .blog-image {
overflow: hidden;
border-radius: 6px 6px 0px 0px;
}
.blog-post.post-style-08 .blog-image img {
border-radius: 6px 6px 0px 0px;
transform: scale(1.001) rotate(0);
transition: transform .9s ease;
will-change: transform;
}
.blog-post.post-style-08 .blog-image span {
font-weight: bold;
position: absolute;
top: 20px;
left: 20px;
}
.blog-post.post-style-08 .blog-details {
padding: 25px 15px;
position: relative;
}
.blog-post.post-style-08 .blog-details .author-img {
height: 50px;
flex: 0 0 50px;
width: 50px;
border: 4px solid #ffffff;
border-radius: 100px;
position: absolute;
z-index: 9;
left: 0;
top: -10%;
right: 20px;
display: flex;
margin-left: auto;
}
.blog-post.post-style-08 .blog-details .author-img img {
border-radius: 100px;
}
.blog-post.post-style-08 .blog-details .author-img i {
height: 15px;
width: 15px;
flex: 0 0 15px;
font-size: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 100px;
background: #0d6efd;
color: #ffffff;
position: absolute;
right: 0;
bottom: 0px;
}
.blog-post.post-style-08 .blog-details .blog-post-details {
text-align: center;
}
.blog-post.post-style-08 .blog-details .blog-post-details h6 {
margin: 10px 0 18px 0;
font-weight: 700;
}
.blog-post.post-style-08 .blog-details .blog-post-details .badge-style-03 {
color: #0d6efd;
margin-left: 0;
}
.blog-post.post-style-08 .blog-details .blog-post-details .badge-style-03:before {
background: #0d6efd;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta {
justify-content: center;
padding-bottom: 27px;
border-bottom: 1px solid #e4eaf7;
flex-wrap: wrap;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 20px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 10px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 20px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.post-style-08 .blog-details .blog-content {
padding-top: 20px;
}
.blog-post.post-style-08 .blog-details .blog-content p {
text-align: center;
margin-bottom: 10px;
}
.blog-post.post-style-08:hover .blog-image img {
transform: scale(1.1) rotate(1.1deg);
}
.blog-post.post-style-08:hover .blog-details .author-img img {
transform: inherit;
}
/* Post Style 09 */
.blog-post.post-style-09 .blog-image {
position: relative;
border-radius: 6px;
}
.blog-post.post-style-09 .blog-image img {
border-radius: 6px;
}
.blog-post.post-style-09 .blog-post-details {
position: absolute;
background: #ffffff;
margin: -50px 30px 0px 30px;
z-index: 1;
position: relative;
padding: 40px;
text-align: center;
border-radius: 6px;
}
.blog-post.post-style-09 .blog-post-details p {
margin-bottom: 0px;
}
.blog-post.post-style-09 .blog-post-details h5 {
margin: 10px 0px;
font-weight: 700;
}
.blog-post.post-style-09 .blog-post-details h5 a:hover {
color: #000000;
}
.blog-post.post-style-09 .blog-post-details h5 a:focus {
color: inherit;
}
/* Post Style 10 */
.blog-post.post-style-10 .blog-image:before {
background: inherit !important;
}
.blog-post.post-style-10 .blog-details {
padding: 13px 0;
}
.blog-post.post-style-10 .blog-details .blog-post-details h6 {
margin: 10px 0 24px 0;
font-size: 20px;
line-height: 24px;
font-weight: 700;
}
.blog-post.post-style-10 .blog-details .blog-post-details .badge-style-03 {
color: #0d6efd;
margin-left: 32px;
}
.blog-post.post-style-10 .blog-details .blog-post-details .badge-style-03:before {
background: #0d6efd;
}
.blog-post.post-style-10 .blog-details .blog-content {
padding-bottom: 15px;
border-bottom: 2px solid #e4eaf7;
}
.blog-post.post-style-10 .blog-details .blog-content p {
margin-bottom: 0;
}
/* Post Style 11 */
.blog-post.post-style-11 {
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 6px;
border: 1px solid #d1d8e6;
}
.blog-post.post-style-11 .blog-image {
overflow: hidden;
border-radius: 6px 0px 0px 6px;
width: 415px;
min-width: 415px;
}
.blog-post.post-style-11 .blog-image img {
border-radius: 6px 0px 0px 6px;
transform: scale(1.001) rotate(0);
transition: transform .9s ease;
will-change: transform;
}
.blog-post.post-style-11 .blog-image img:hover {
transform: scale(1.1) rotate(1.1deg);
}
.blog-post.post-style-11 .blog-post-details {
width: 60%;
padding: 34px;
}
.blog-post.post-style-11 .blog-post-details span.badge {
padding: 7px 23px;
}
.blog-post.post-style-11 .blog-post-details h4 {
font-size: 20px;
font-weight: 600;
padding-top: 16px;
margin-bottom: 0;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta {
display: flex;
padding: 10px 0 20px 0;
flex-wrap: wrap;
border-bottom: 1px solid #e4eaf7;
margin-bottom: 10px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-user {
margin-right: 15px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-user a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-user a img {
margin: 0 5px;
height: 20px;
border-radius: 50%;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-user a i {
margin-right: 10px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-time a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-time a i {
margin-right: 10px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.post-style-11 .blog-post-details p {
margin-bottom: 20px;
}
.blog-post.post-style-11:hover .blog-image img {
transform: translate3d(3%, 0, 0) scale(1.06);
}
.blog-post.post-style-11:hover .blog-post-details h4 a {
background-size: 100% 100%;
}
.blog-post.post-style-11:hover .blog-post-details .blog-post-meta .blog-post-user a img {
transform: translate3d(0, 0, 0) scale(1);
}
/* Post Style 12 */
.blog-post.post-style-12 .blog-details {
padding: 40px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta {
display: flex;
padding: 20px 0 29px 0;
flex-wrap: wrap;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-user {
margin-right: 15px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-user a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-user a img {
margin: 0 5px;
height: 20px;
border-radius: 50%;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-user a i {
margin-right: 10px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-time a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-time a i {
margin-right: 10px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 1;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-12 .blog-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.post-style-12 .blog-details h4 {
font-size: 36px;
line-height: 52px;
font-weight: 900;
margin-bottom: 0;
}
/* Post Style 13 */
.blog-post.post-style-13 {
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid #d1d8e6;
}
.blog-post.post-style-13 .blog-post-details .badge {
margin-bottom: 12px;
font-weight: 700;
}
.blog-post.post-style-13 .blog-post-details .blog-title {
font-size: 18px;
font-weight: 700;
line-height: 24px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-comment a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.banner-post-style {
padding: 100px;
}
.blog-post.banner-post-style .blog-post-meta {
display: flex;
padding: 20px 0 30px 0;
flex-wrap: wrap;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-user {
margin-right: 15px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-user a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-user a img {
margin: 0 5px;
height: 20px;
border-radius: 50%;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-user a i {
margin-right: 10px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-time {
margin-right: 15px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-time a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-time a i {
margin-right: 10px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-comment {
margin-right: 15px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-comment a {
color: #5c667d;
display: flex;
align-items: center;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-comment a i {
margin-right: 10px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box {
position: relative;
z-index: 9;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box a {
color: #5c667d;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box a i {
margin-right: 10px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box .share-box-social {
opacity: 0;
visibility: hidden;
position: absolute;
left: 50%;
bottom: 100%;
background: #5a9ef3;
padding: 10px;
transition: all 0.3s ease-in-out;
border-radius: 3px;
transform: translate(-50%, 0px);
display: flex;
justify-content: center;
min-width: 150px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box .share-box-social:before {
width: 0;
height: 0;
border-style: solid;
border-width: 6px 6px 0 6px;
border-color: #5a9ef3 transparent transparent transparent;
content: "";
position: absolute;
left: 50%;
bottom: -6px;
z-index: 99;
margin-left: -3px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box .share-box-social li {
display: flex;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box .share-box-social li a {
padding: 0 8px;
color: #ffffff;
font-size: 12px;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box .share-box-social li a:last-child {
padding-right: 0;
}
.blog-post.banner-post-style .blog-post-meta .blog-post-share .share-box:hover .share-box-social {
opacity: 1;
visibility: visible;
margin-bottom: 6px;
}
.blog-post.banner-post-style .blog-title {
font-size: 62px;
font-weight: 800;
line-height: 82px;
color: #000000;
margin-bottom: 30px;
}
.blog-post.banner-post-style .blog-post-content p {
margin-bottom: 35px;
font-size: 16px;
line-height: 26px;
font-weight: normal;
color: #5c667d;
}
/*Madical Section*/
.madical-section .blog-post.post-style-07 {
padding: 11px 13px;
}
.madical-section .blog-post.post-style-07 .post-image {
flex: 0 0 135px;
margin-right: 25px;
perspective: 1px;
}
.madical-section .blog-post.post-style-07 .blog-post-details {
width: inherit;
}
.madical-section .blog-post.post-style-07 .blog-post-details .badge-small {
padding: 4px 12px;
font-size: 10px;
}
.madical-section .blog-post.post-style-07 .blog-post-details .blog-title {
padding-top: 8px;
font-size: 16px;
line-height: 20px;
}
.madical-section .blog-post.post-style-07 .blog-post-details .blog-post-meta {
padding-top: 9px;
}
.madical-section .blog-post.post-style-07 .blog-post-details .blog-post-meta a {
font-size: 12px;
}
/*filters-group */
.filters-group button {
z-index: 1;
font-size: 16px;
font-weight: 500;
transition: all 0.5s ease-in-out;
margin: 0 4px;
border: none;
background-color: inherit;
color: #5c667d;
text-transform: uppercase;
}
.filters-group button:hover {
color: #5a9ef3;
box-shadow: none;
outline: none;
background-size: 300% 100%;
}
.filters-group button:focus {
box-shadow: none;
outline: none;
color: #ffffff;
}
.filters-group button:active {
box-shadow: none;
outline: none;
color: #5a9ef3;
}
.filters-group button.active {
background-size: 300% 100%;
color: #5a9ef3;
}
.explore-products .filters-group {
position: absolute;
top: -70px;
right: 6px;
}
/*news-post*/
.news-post {
display: flex;
align-items: center;
}
.news-post .news-image {
width: 28px;
height: 28px;
flex: 0 0 28px;
margin-right: 15px;
border-radius: 4px;
}
.news-post .news-image img {
border-radius: 4px;
}
.news-post .news-post-details {
width: 95%;
}
.news-post .news-post-details .news-title {
font-size: 16px;
font-weight: normal;
color: #ffffff;
margin-bottom: 0;
line-height: 1;
}
.news-post .news-post-details .news-title a {
background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
background-image: -ms-linear-gradient(transparent 95%, currentColor 1px);
background-repeat: no-repeat;
background-size: 0 100%;
background-position: 0 -1px;
transition: all 0.6s cubic-bezier(0.45, 0, 0.14, 1.03);
display: inline-block;
white-space: nowrap;
overflow: hidden;
max-width: 100%;
text-overflow: ellipsis;
}
.news-post .news-post-details .news-title a:focus {
color: inherit;
}
.news-post .news-post-details .news-title a:hover {
background-size: 100% 100%;
color: #5a9ef3;
}
/*blog-style-01*/
.blog-post-share-box {
padding: 25px 0px;
border-bottom: 1px solid #e4eaf7;
border-top: 1px solid #e4eaf7;
}
.blog-post-share-box .blog-post.post-style-07 {
padding: 0;
}
.blog-post-share-box .blog-post.post-style-07 .blog-post-details {
width: 100%;
}
.blog-post-share-box .badges a {
border: 1px solid #e4eaf7;
padding: 8px 10px;
background-color: transparent;
color: #5c667d;
}
.blog-post-share-box .badges a:hover {
background-color: #5a9ef3;
color: #ffffff;
}
.navigation.post-navigation .nav-previous {
width: 42%;
margin-right: 3%;
transition: all 0.5s ease-in-out;
}
.navigation.post-navigation .nav-next {
width: 42%;
margin-left: 3%;
text-align: right;
transition: all 0.5s ease-in-out;
}
.navigation.post-navigation .blog-post-nav-media img {
border-radius: 6px;
width: 85px;
height: 85px;
object-fit: cover;
}
.navigation.post-navigation .nav-previous .nav-left {
width: 70%;
}
.navigation.post-navigation .nav-previous .nav-left .nav-title {
font-size: 16px;
font-weight: 500;
color: #5c667d;
margin: 5px 20px 0px 0px;
}
.navigation.post-navigation .nav-next .nav-right {
width: 70%;
}
.navigation.post-navigation .nav-next .nav-right .nav-title {
color: #5c667d;
font-size: 16px;
font-weight: 500;
margin: 5px 0px 0px 20px;
}
/* Responsive */
@media screen and (min-width: 1400px) and (max-width: 1600px) {
.banner-section .banner-content {
padding-top: 150px;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 50px 50px 100px 100px;
}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
.blog-post.post-style-01 .blog-post-details {
padding: 0px 20px;
}
.blog-post.post-style-01 .blog-post-details h5.blog-title {
font-size: 20px;
line-height: 26px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author {
margin-right: 10px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 14px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 25px;
margin-right: 6px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time a {
font-size: 14px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time a i {
margin-right: 6px;
}
.blog-post.post-style-09 .blog-post-details {
padding: 20px;
margin: -50px 20px 0px 20px;
}
}
@media (max-width: 1399px) {
.filters-group button {
padding: 12px 25px;
}
.banner-section .banner-content {
padding-top: 130px;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 50px 50px 100px 100px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-title {
font-size: 52px;
line-height: 62px;
}
}
@media (max-width: 1199px) {
.explore-products .filters-group {
position: inherit;
top: 0;
right: 0;
margin-bottom: 30px;
}
.explore-products .filters-group button {
padding: 12px 40px;
}
.blog-post.post-style-11 {
display: block;
}
.blog-post.post-style-11 .blog-image {
width: 100%;
border-radius: 6px 6px 0px 0px;
}
.blog-post.post-style-11 .blog-image img {
border-radius: 6px 6px 0px 0px;
}
.blog-post.post-style-11 .blog-post-details {
width: 100%;
}
.banner-section .banner-content {
padding-top: 100px;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 0px 100px 100px 100px;
}
}
@media (max-width: 991px) {
.filters-group button {
margin: 0 5px 10px;
}
.filters-group button:first-child {
margin-left: 0;
}
.filters-group button:last-child {
margin-right: 0;
}
.blog-post.post-style-11 .post-info {
padding: 10px 20px 10px 20px;
}
.blog-post.post-style-11 .post-info .blog-post-meta {
padding: 15px 0 15px 0;
}
.blog-post.post-style-11 .post-info p {
margin-bottom: 15px;
}
/* News Latest Posts*/
.news-latest-posts .blog-post.post-style-01 {
margin-bottom: 25px;
}
/* News Sport Posts*/
.news-sport-posts .blog-post.post-style-03 {
margin-bottom: 20px;
}
.blog-post.post-style-01 .blog-post-details {
padding: 0px 20px;
}
/* blog-style-07*/
.madical-section .blog-post.post-style-07 .post-image {
flex: 0 0 210px;
}
.madical-section .blog-post.post-style-07 .blog-post-details {
width: 100%;
}
.banner-section .banner-content {
padding-top: 20px;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 0px 50px 50px 50px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-post-meta {
padding-bottom: 20px;
}
.blog-post.post-style-12 .blog-details .blog-post-meta {
padding: 0px 0 29px 0;
}
}
@media (max-width: 767px) {
/* blog-style-11*/
.blog-post.post-style-11 {
display: block;
}
.blog-post.post-style-11 .post-image {
width: 100%;
min-width: 100%;
}
.blog-post.post-style-11 .post-info {
padding: 30px;
width: 100%;
}
.news-medical-posts .blog-post.post-style-01 {
margin-bottom: 30px;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 0px 50px 50px 50px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-title {
font-size: 42px;
line-height: 52px;
margin-bottom: 20px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-post-content p {
margin-bottom: 25px;
}
.blog-post.post-style-09 .blog-post-details {
padding: 20px;
margin: -50px 20px 0px 20px;
}
}
@media (max-width: 575px) {
.blog-post.post-style-01 .blog-post-details h3,
.blog-post.post-style-01 .blog-post-details h4,
.blog-post.post-style-01 .blog-post-details h5 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 20px;
line-height: 24px;
}
.blog-post.post-style-04 {
display: block;
}
.blog-post.post-style-04 .blog-image {
width: 100%;
margin-bottom: 15px;
}
.blog-post.post-style-004 .blog-image {
width: 100%;
margin-bottom: 15px;
}
.blog-post.post-style-004 {
display: block;
margin-bottom: 15px;
align-items: center;
padding-bottom: 15px;
border-bottom: 1px solid #CCC;
}
.blog-post.post-style-004:last-child{
border:none;
}
.blog-post.post-style-004 .blog-image {
min-width: 100%;
width: 100%;
margin-right: 25px;
border-radius: 6px;
}
.blog-post.post-style-004 .blog-image img{
height:auto;
}
.blog-post.post-style-04 .blog-image img{
height:auto;
}
.blog-post.post-style-03 .blog-image img{
height:auto;
}
.blog-post.post-style-05 {
display: block;
margin-bottom: 35px;
}
.blog-post.post-style-05 .blog-image {
width: 100%;
margin-bottom: 20px;
}
.blog-post.post-style-05 .blog-post-date {
position: absolute;
z-index: 9;
left: 15px;
top: 15px;
text-align: center;
background: #ffffff;
padding: 10px;
border-radius: 6px;
}
.blog-post.post-style-05 .blog-post-date h2 {
font-size: 24px;
line-height: 16px;
}
.blog-post.post-style-11 .blog-image {
min-width: 100%;
}
.blog-post.post-style-11 .blog-post-details {
padding: 20px;
}
.blog-post.post-style-07 {
display: block;
}
.blog-post.post-style-07 .blog-post-details {
width: 100%;
}
.blog-post.post-style-07 .post-image {
margin-top: 20px;
}
.blog-post.post-style-06 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
.blog-post.post-style-07 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
.blog-post.post-style-08 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
.blog-post.post-style-11 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
.blog-post.post-style-12 .blog-details .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box .share-box-social {
display: block;
min-width: 0;
}
/* blog-style-07*/
.madical-section .blog-post.post-style-07 {
padding: 20px;
}
.madical-section .blog-post.post-style-07 .post-image {
margin: 0;
}
.madical-section .blog-post.post-style-07 .blog-post-details {
margin-top: 15px;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-date a {
color: #5c667d;
}
.video-section .blog-style-vertical .blog-post.post-style-05 .blog-post-date h2 {
color: #000000;
}
.banner-section .banner-content .blog-post.banner-post-style {
padding: 0px 30px 30px 30px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-title {
font-size: 32px;
line-height: 38px;
margin-bottom: 10px;
}
.banner-section .banner-content .blog-post.banner-post-style .blog-post-details .blog-post-content p {
margin-bottom: 15px;
}
.navigation.post-navigation .nav-previous {
width: 100%;
margin-right: 0%;
}
.navigation.post-navigation .nav-previous .nav-left {
width: 100%;
}
.navigation.post-navigation .nav-next {
width: 100%;
margin-left: 0%;
}
.navigation.post-navigation .nav-next .nav-right {
width: 100%;
}
.news-latest-posts.blog-single-04 .blog-post.post-style-01 .blog-post-details {
bottom: 10px;
}
}
@media (max-width: 391px) {
.blog-post.post-style-01 .blog-post-details {
bottom: 10px;
padding: 0px 20px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author {
margin-right: 10px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a {
font-size: 14px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-author a img {
height: 25px;
margin-right: 6px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time a {
font-size: 14px;
}
.blog-post.post-style-01 .blog-post-details .blog-post-meta .blog-post-time a i {
margin-right: 6px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-time {
margin-right: 10px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-time i {
margin-right: 6px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-comment {
margin-right: 10px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-comment a i {
margin-right: 6px;
}
.blog-post.post-style-13 .blog-post-details .blog-post-meta .blog-post-share .share-box a i {
margin-right: 6px;
}
.news-latest-posts.blog-single-04 .blog-post.post-style-01 .blog-image img {
height: 180px;
}
}
/*****************************
Button
*****************************/
.btn {
border: none;
z-index: 1;
position: relative;
font-size: 16px;
padding: 13px 40px;
overflow: hidden;
border-radius: 6px;
transition: all 0.3s ease-in-out;
}
.btn:focus {
box-shadow: none;
outline: none;
color: #ffffff;
}
.btn:active {
box-shadow: none;
outline: none;
color: #ffffff;
}
.btn:active:focus {
box-shadow: none;
}
.btn-primary {
background: #5a9ef3;
color: #ffffff;
}
.btn-primary:hover {
color: #ffffff;
background: #041f42;
}
.btn-primary:focus {
box-shadow: none;
outline: none;
color: #ffffff;
background: #041f42;
}
.btn-primary:active {
box-shadow: none;
outline: none;
color: #ffffff;
background: #041f42;
}
.btn-secondary {
background: #041f42;
color: #ffffff;
}
.btn-secondary:hover {
color: #ffffff;
background: #5a9ef3;
}
.btn-secondary:focus {
box-shadow: none;
outline: none;
color: #ffffff;
background: #5a9ef3;
}
.btn-secondary:active {
box-shadow: none;
outline: none;
color: #ffffff;
background: #5a9ef3;
}
.btn-link {
padding: 0;
margin-top: 15px;
text-decoration: none;
color: #5a9ef3;
font-weight: 600;
}
.btn-link:hover {
color: #000000;
}
/*****************************
Category
*****************************/
.category {
cursor: pointer;
position: relative;
background: #e4eaf7;
border-radius: 6px;
}
.category:before {
background: transparent;
}
.category .category-image {
overflow: hidden;
position: relative;
transition: all 0.4s ease-in-out;
opacity: 0;
height: 80px;
border-radius: 6px;
perspective: 1px;
}
.category .category-image img {
transform: scale(1);
transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 100%;
object-fit: cover;
perspective: 1px;
}
.category .category-name {
transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
top: 50%;
bottom: inherit;
position: absolute;
left: 0;
right: 0;
width: 100%;
z-index: 2;
padding: 0px 30px;
}
.category .category-name h6 {
display: flex;
color: #000000;
width: 100%;
font-size: 20px;
font-weight: bold;
margin-bottom: 0px;
transition: all 0.4s ease-in-out;
text-transform: uppercase;
}
.category .category-name h6 span {
font-size: 20px;
font-weight: bold;
color: #000000;
margin-left: auto;
transition: all 0.4s ease-in-out;
}
.category:hover .category-image {
opacity: 1;
}
.category:hover h6 {
color: #ffffff;
}
.category:hover h6 span {
color: #ffffff;
}
.category:hover .category-image img {
transform: scale(1.1);
}
/* category-02 */
.category-02 {
cursor: pointer;
position: relative;
border-radius: 6px;
}
.category-02 .category-image {
overflow: hidden;
position: relative;
transition: all 0.4s ease-in-out;
height: 80px;
border-radius: 6px;
}
.category-02 .category-image img {
transform: scale(1);
transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 100%;
object-fit: cover;
}
.category-02 .category-name {
transform: translate(0, -50%);
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
top: 50%;
bottom: inherit;
position: absolute;
left: 0;
right: 0;
width: 100%;
z-index: 2;
padding: 0px 30px;
}
.category-02 .category-name .category-content {
font-size: 20px;
text-transform: uppercase;
color: #ffffff;
}
.category-02 .category-name .category-icon {
font-size: 20px;
color: #ffffff;
}
.category-02 .category-name .category-count {
font-size: 20px;
text-transform: uppercase;
color: #ffffff;
}
.category-02:hover .category-image img {
transform: scale(1.1);
}
/* category-03 */
.category-03-list {
display: flex;
flex-wrap: wrap;
}
.category-03-list li {
width: 50%;
}
.category-03 {
position: relative;
cursor: pointer;
border-radius: 6px;
margin-bottom: 15px;
}
.category-03 .category-img {
position: relative;
border-radius: 6px;
overflow: hidden;
perspective: 1px;
}
.category-03 .category-img img {
border-radius: 6px;
transform: scale(1);
transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
min-height: 100%;
object-fit: cover;
}
.category-03 .category-img:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
background-image: url("../images/category/overlay.png");
top: 0;
left: 0;
}
.category-03 .category-details {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
}
.category-03 .category-details .category-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.category-03 .category-details .category-icon {
margin-bottom: 15px;
font-size: 30px;
color: #ffffff;
display: inline-block;
width: 100%;
text-align: center;
opacity: 0;
transition: all 0.5s ease-in-out;
}
.category-03 .category-details .category-title {
font-size: 20px;
font-weight: normal;
display: inline-block;
width: 100%;
text-align: center;
opacity: 0;
transition: all 0.5s ease-in-out;
}
.category-03 .category-details .category-title a {
color: #ffffff;
}
.category-03 .category-details .category-title a:hover {
color: #ffffff;
}
.category-03 .category-details .category-count {
border-radius: 6px;
position: absolute;
top: 5px;
right: 5px;
opacity: 0;
transition: all 0.5s ease-in-out;
background-color: #5a9ef3;
color: #ffffff;
font-size: 16px;
font-weight: normal;
height: 35px;
width: 35px;
display: flex;
flex: 0 0 35px;
align-items: center;
justify-content: center;
}
.category-03:hover .category-img img {
transform: scale(1.1) rotate(1.1deg);
}
.category-03:hover .category-details .category-icon,
.category-03:hover .category-details .category-title,
.category-03:hover .category-details .category-count {
opacity: 1;
}
@media (max-width: 479px) {
.category-03-list li {
width: 100%;
}
.category-03-list li:last-child .category-03 {
margin-bottom: 0px;
}
.category-03 {
margin-right: 0 !important;
margin-left: 0 !important;
}
}
/*****************************
Form
*****************************/
.sign-in {
background-color: #e4eaf7;
padding: 146px 0px;
}
.sign-in .sign-in-bg {
height: 100%;
width: 100%;
background: url(../images/bg/sign-in-bg.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
border-radius: 6px 0px 0px 6px;
}
.sign-in .sign-in-box {
padding: 80px 50px;
background: #ffffff;
border-radius: 0px 6px 6px 0px;
}
.sign-in .sign-in-box .login-social-media .btn {
padding: 13px 20px;
color: #ffffff;
border-radius: inherit;
}
.sign-in .sign-in-box .login-social-media .btn.google {
background-color: #cc3333;
}
.sign-in .sign-in-box .login-social-media .btn.twitter {
background-color: #20b5e6;
}
.sign-in .sign-in-box .login-social-media .btn.Facebook {
background-color: #3b5998;
}
.sign-in .sign-in-box .login-with {
position: relative;
}
.sign-in .sign-in-box .login-with:before {
content: "";
border-top: 1px solid #dbdbdb;
margin: 0 auto;
position: absolute;
top: 50%;
left: 0;
width: 100%;
z-index: 1;
}
.sign-in .sign-in-box .login-with > span {
background-color: #ffffff;
padding: 0 10px;
position: relative;
z-index: 2;
}
.sign-in .sign-in-box .form-control {
padding: 14px 20px;
height: 50px;
font-size: 14px;
border-color: #ededed;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
color: #7c8087;
border-radius: 6px;
box-shadow: inherit;
}
.sign-in .sign-in-box form .form-check .form-check-label {
padding-left: 15px;
}
.sign-in .sign-in-box form .form-check .form-check-input {
float: inherit;
}
.sign-in .sign-in-box form .sign-btn {
margin-top: 30px;
}
.sign-in .sign-in-box form ul {
display: flex;
justify-content: center;
margin-top: 20px;
}
.sign-up.sign-in {
padding: 100px 0px;
}
/*Contact-form*/
.form-info {
box-shadow: 1px 1px 5px 1px rgba(4, 31, 66, 0.1);
}
.form-info form .form-control {
height: 50px;
border-radius: 6px;
border-color: transparent;
}
.form-info form textarea.form-control {
min-height: calc(1.5em + (0.75rem + 2px));
height: auto !important;
}
@media (max-width: 1199px) {
.sign-in .sign-in-box {
padding: 50px 30px;
border-radius: 6px;
}
}
@media (max-width: 991px) {
.sign-in {
padding: 80px 0px;
}
.sign-in .sign-in-box {
border-radius: 6px;
}
.sign-up.sign-in {
padding: 80px 0px;
}
}
@media (max-width: 767px) {
.sign-in {
padding: 60px 0px;
}
.sign-in .sign-in-box {
padding: 30px 30px;
}
.sign-up.sign-in {
padding: 60px 0px;
}
}
@media (max-width: 575px) {
.sign-in {
padding: 40px 0px;
}
.sign-in .sign-in-box .login-social-media .btn {
width: 100%;
}
.sign-up.sign-in {
padding: 40px 0px;
}
}
/*****************************
Owl carousel
*****************************/
.owl-carousel .owl-nav {
opacity: 0;
transition: all 0.5s ease;
}
.owl-carousel .owl-nav button.owl-prev {
position: absolute;
top: 45%;
left: 0px;
transform: translateY(-50%);
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: #041f42;
background-color: #ffffff !important;
box-shadow: 1px 1px 5px 1px rgba(4, 31, 66, 0.1);
border-radius: 6px;
transition: all 0.5s ease;
}
.owl-carousel .owl-nav button.owl-prev:hover {
background: #5a9ef3 !important;
border-color: #5a9ef3 !important;
color: #ffffff;
}
.owl-carousel .owl-nav button.owl-next {
position: absolute;
top: 45%;
right: 0px;
transform: translateY(-50%);
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: #041f42;
background-color: #ffffff !important;
box-shadow: 1px 1px 5px 1px rgba(4, 31, 66, 0.1);
border-radius: 6px;
transition: all 0.5s ease;
}
.owl-carousel .owl-nav button.owl-next:hover {
background: #5a9ef3 !important;
border-color: #5a9ef3 !important;
color: #ffffff;
}
.owl-carousel:hover .owl-nav {
opacity: 1;
}
.owl-carousel:hover .owl-nav button.owl-prev {
left: -20px;
}
.owl-carousel:hover .owl-nav button.owl-next {
right: -20px;
}
.owl-carousel .owl-dots {
display: inline-block;
width: 100%;
text-align: center;
margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot {
height: 22px;
width: 22px;
line-height: 22px;
text-align: center;
display: inline-block;
border: 1px solid transparent;
border-radius: 100%;
margin: 0 5px;
}
.owl-carousel .owl-dots .owl-dot span {
height: 12px;
width: 12px;
display: inline-block;
border-radius: 100%;
background-color: #383838;
}
.owl-carousel .owl-dots .active.owl-dot {
border: 1px solid #5a9ef3;
}
.owl-carousel .owl-dots .active.owl-dot span {
background-color: inherit;
background-image: linear-gradient(to right, #4968ea, #46aef2, #46aef2, #4968ea);
}
/*arrow-styel-02*/
.owl-carousel.arrow-styel-02 .owl-nav {
opacity: 1;
}
.owl-carousel.arrow-styel-02 .owl-nav button.owl-prev {
top: -66px;
right: 40px;
left: initial;
}
.owl-carousel.arrow-styel-02 .owl-nav button.owl-next {
top: -66px;
}
.owl-carousel.arrow-styel-02:hover .owl-nav button.owl-prev {
left: initial;
}
.owl-carousel.arrow-styel-02:hover .owl-nav button.owl-next {
right: 0px;
}
/*arrow-styel-04*/
.owl-carousel.arrow-styel-04 .owl-nav {
opacity: 1;
}
.owl-carousel.arrow-styel-04 .owl-nav button {
background-color: #00193a !important;
color: #ffffff;
}
.owl-carousel.arrow-styel-04 .owl-nav button.owl-prev {
top: 29px;
height: 96px;
border-radius: 0;
}
.owl-carousel.arrow-styel-04 .owl-nav button.owl-prev .fa-arrow-left-long:before {
content: "\f053" !important;
font-family: "Font Awesome 6 Free";
font-weight: 900;
}
.owl-carousel.arrow-styel-04 .owl-nav button.owl-next {
top: 29px;
height: 96px;
border-radius: 0 6px 6px 0px;
}
.owl-carousel.arrow-styel-04 .owl-nav button.owl-next .fa-arrow-right-long:before {
content: "\f054" !important;
font-family: "Font Awesome 6 Free";
font-weight: 900;
}
/*owl-carousel-vertical*/
.owl-carousel.owl-carousel-vertical {
transform: rotate(90deg);
}
.owl-carousel.owl-carousel-vertical .owl-item .item {
transform: rotate(-90deg);
}
@media (max-width: 1599px) {
.owl-carousel:hover .owl-nav button.owl-prev {
left: 0px;
}
.owl-carousel:hover .owl-nav button.owl-next {
right: 0px;
}
}
@media (max-width: 570px) {
.section-title {
padding-right: 80px;
}
.section-title h2 {
font-size: 22px;
}
}
/*****************************
Select
*****************************/
.select2-container .select2-selection--single {
height: auto;
outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0px;
}
.select2-container--default .select2-selection--single {
border-radius: 0px;
border: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #e4eaf7;
font-weight: normal;
line-height: inherit;
text-transform: capitalize;
}
.bigdrop {
min-width: 196px !important;
}
.select2-results__options {
padding: 8px 2px;
}
.select2-container {
width: 100% !important;
}
.select2-container--default .select2-results__option--highlighted {
border-radius: 0;
transition: all 0.2s ease-in-out;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
transition: all 0.3s ease-in-out;
}
input[type="radio"]:radio {
background-color: #5a9ef3;
}
/* Select Dropdown Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
top: 14px;
right: 10px;
height: 21px;
width: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
content: "\f107";
font-family: "Font Awesome 5 Free";
font-style: normal;
font-weight: 900;
color: #5c667d;
}
.select2-container--default .select2-search--dropdown {
padding: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border: 1px solid #e4eaf7;
}
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: #e4eaf7;
transition: all 0.3s ease-in-out;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background: rgba(48, 201, 106, 0.1);
color: #5a9ef3;
transition: all 0.3s ease-in-out;
}
.select2-dropdown {
border: none;
border-radius: 0px;
z-index: 9;
}
.select-border .select2-container--default .select2-selection--single {
border: 1px solid #e4eaf7;
height: 50px;
line-height: 20px;
padding: 15px 20px;
border-radius: 6px;
}
.select-border .select2-container--default .select2-selection--single .select2-selection__arrow {
top: 16px;
right: 20px;
}
.select2-results__option[aria-selected] {
text-transform: capitalize;
transition: all 0.3s ease-in-out;
font-size: 14px;
}
.select2-container--default .select2-results > .select2-results__options {
border: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #5c667d;
}
.select2-container--open .select2-dropdown {
background: #ffffff;
padding: 7px;
border: 1px solid rgba(61, 209, 213, 0.1);
box-shadow: 0px 2px 5px 0px rgba(5, 24, 48, 0.1);
}
.select2-search--dropdown .select2-search__field {
border: 1px solid #e4eaf7;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.04);
}
.select2-container--default .select2-selection--single {
height: 50px;
padding: 15px 20px;
}
.custom-control-input:radio {
background-color: #5a9ef3;
}
.newsletter .search input::placeholder {
color: #ffffff;
}
.form-check .form-check-input {
float: inherit;
box-shadow: none;
}
.form-check-input:checked {
background-color: #5a9ef3;
border-color: #5a9ef3;
box-shadow: inherit;
}
/*****************************
Sidebar
*****************************/
.sidebar {
padding: 18px 30px 3px 30px;
border-radius: 6px;
}
.sidebar .widget {
margin-bottom: 30px;
}
.sidebar .widget .filters-group {
position: inherit;
top: 0px;
right: 0px;
}
.sidebar .widget:last-child {
margin-bottom: 0;
}
.sidebar .widget .price-filter {
display: flex;
}
.sidebar .widget .price-filter a {
margin-left: auto;
}
.sidebar .widget .sidebar-img img {
border-radius: 6px;
}
.sidebar .widget.widget-tag .widget-title {
margin-bottom: 10px;
}
.sidebar .widget.widget-tag ul {
display: flex;
flex-wrap: wrap;
}
.sidebar .widget.widget-tag ul li {
display: inline-block;
margin-right: 10px;
margin-top: 10px;
}
.sidebar .widget.widget-tag ul li a {
padding: 10px 20px;
display: block;
color: #041f42;
background: #e4eaf7;
border-radius: 6px;
}
.sidebar .widget.widget-tag ul li a:hover {
background: #041f42;
color: #ffffff;
}
.sidebar .widget-title {
border-bottom: 1px solid #d1d8e6;
padding-bottom: 15px;
margin-bottom: 20px;
font-weight: bold;
font-size: 22px;
}
.sidebar .sidebar-category ul {
margin-bottom: 0px;
}
.sidebar .sidebar-category ul li {
margin-bottom: 15px;
}
.sidebar .sidebar-category ul li:last-child {
margin-bottom: 0;
}
.sidebar .sidebar-category ul li:last-child .category {
margin-bottom: 0;
}
.sidebar .sidebar-category .sidebar-img {
margin-top: 30px;
}
.sidebar .sidebar-category .sidebar-img img {
border-radius: 6px;
}
.sidebar .news-tab .nav {
position: inherit;
top: 0;
margin-bottom: 20px;
}
.sidebar .voting-widget {
background-color: #e4eaf7;
border-radius: 6px;
border: 5px solid rgba(228, 234, 247, 0.3);
padding: 25px;
margin-bottom: 0px;
}
.sidebar .voting-widget .voting-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 25px;
}
.sidebar .voting-widget .title {
font-size: 20px;
font-weight: 700;
margin-bottom: 20px;
}
.sidebar .voting-widget .team-progress .team {
margin-bottom: 10px;
position: relative;
}
.sidebar .voting-widget .team-progress .team .progress {
position: relative;
height: 30px;
border-radius: 6px;
background-color: #ffffff;
}
.sidebar .voting-widget .team-progress .team .progress .percentage {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: #000000;
}
.sidebar .voting-widget .team-progress .team .progress .team-name {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 15px;
display: flex;
align-items: center;
color: #ffffff;
}
.sidebar .voting-widget .team-progress .team .progress .team-name .flags-icon {
padding-right: 10px;
}
.sidebar .voting-widget .team-progress .team-1 .progress .progress-bar {
background-color: #fd7e14;
}
.sidebar .voting-widget .team-progress .team-2 {
margin-bottom: 0px;
}
.sidebar .voting-widget .team-progress .team-2 .progress .progress-bar {
background-color: #0d6efd;
}
.sidebar .search-widget {
position: relative;
}
.sidebar .search-widget input[type=search] {
width: 100%;
color: #5c667d;
background: #ffffff;
border: 1px solid #e4eaf7;
font-size: 16px;
height: 50px;
font-weight: 300;
border-radius: 6px;
margin-top: 0px;
padding-left: 20px;
padding-right: 60px;
outline: none;
text-transform: capitalize;
}
.sidebar .search-widget .btn {
position: absolute;
top: 0;
right: 0;
padding: 13px 20px;
border-radius: 0px 6px 6px 0px;
}
.sidebar .search-widget .btn i {
padding-right: 0px;
}
/* Responsive */
@media (max-width: 1199px) {
.sidebar .widget.post-widget .news-tab {
padding-top: 0;
}
.sidebar .widget.sidebar-category .follow-style-01 {
margin-bottom: 15px;
}
}
@media (max-width: 991px) {
.sidebar {
margin-top: 30px;
}
}
@media (max-width: 767px) {
.sidebar {
padding: 25px 20px;
}
}
/*****************************
Tabs
*****************************/
.news-tab {
position: relative;
}
.news-tab .nav {
position: absolute;
right: 0;
top: -70px;
padding-bottom: 15px;
border-bottom: 2px solid #2875d4;
}
.news-tab .nav .nav-item {
margin-right: 20px;
}
.news-tab .nav .nav-item .nav-link {
font-size: 22px;
font-weight: bold;
color: #333333;
padding: 0px;
border-radius: 0px;
outline: none;
}
@media (min-width: 1192px) and (max-width: 1388px) {
.news-tab .nav .nav-item .nav-link {
font-size: 17px;
font-weight: bold;
color: #333333;
padding: 0px;
border-radius: 0px;
outline: none;
}
.news-tab .nav .nav-item {
margin-right: 10px;
}
.news-tab .nav li{
border-right:1px solid #000000;
padding-right: 10px;
}
}
@media (min-width: 1035px) and (max-width: 1191px) {
.news-tab .nav .nav-item .nav-link {
font-size: 15px;
font-weight: bold;
color: #333333;
padding: 0px;
border-radius: 0px;
outline: none;
}
.news-tab .nav .nav-item {
margin-right: 10px;
}
.news-tab .nav li{
border-right:1px solid #000000;
padding-right: 5px;
}
}
@media (min-width: 992px) and (max-width: 1034px) {
.news-tab .nav .nav-item .nav-link {
font-size: 14px;
font-weight: bold;
color: #333333;
padding: 0px;
border-radius: 0px;
outline: none;
}
.news-tab .nav .nav-item {
margin-right: 10px;
}
.news-tab .nav li{
border-right:1px solid #000000;
padding-right: 5px;
}
}
.news-tab .nav li{
border-right:1px solid #000000;
padding-right: 18px;
}
.news-tab .nav li:last-child  {
border-right: none;
}
.news-tab .nav .nav-item .nav-link:hover {
color: #5a9ef3;
}
.news-tab .nav .nav-item .nav-link:focus {
color: #5c667d;
}
.news-tab .nav .nav-item .nav-link:focus-visible {
outline: none;
}
.news-tab .nav .nav-item .nav-link.active {
background-color: inherit;
color: #5a9ef3;
}
.news-tab .nav .nav-item:last-child {
margin-right: 0px;
}
.news-tab .current-news.blog-title {
font-size: 18px;
font-weight: 600;
padding-right: 24px;
line-height: 24px;
position: relative;
color: #5c667d;
border-right: 1px solid #e4eaf7;
}
/* Responsive */
@media screen and (min-width: 992px) and (max-width: 1199px) {
.news-tab .nav {
position: inherit;
top: 0px;
}
}
@media (max-width: 767px) {
.news-tab .nav {
position: inherit;
top: 0px;
}
.news-tab .current-news.blog-title {
border-right: none;
padding-right: 0;
}
.news-medical-posts .current-news {
margin-bottom: 20px;
}
}
@media (max-width: 575px) {
.news-tab {
padding-top: 0px;
}
.news-tab .nav {
top: 0;
}
.news-tab .nav .nav-item {
margin-right: 16px;
}
.news-politics-posts .blog-post.post-style-06 {
margin-bottom: 30px;
}
}
@media (max-width: 496px) {
.news-tab .nav .nav-item {
margin-right: 10px;
margin-bottom: 5px;
}
.news-tab .nav .nav-item .nav-link {
font-size: 16px;
}
}
/*****************************
Team
*****************************/
.team {
text-align: center;
position: relative;
}
.team .team-img {
position: relative;
overflow: hidden;
}
.team .team-img img {
border-radius: 6px;
}
.team .team-img ul {
display: flex;
justify-content: center;
margin-bottom: 0;
position: absolute;
bottom: -40px;
left: 0;
right: 0;
opacity: 1;
transition: all 0.5s ease-in-out;
}
.team .team-img ul li a {
display: block;
margin: 0 5px;
color: #ffffff;
background: #5a9ef3;
line-height: 40px;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
transition: all 0.5s ease-in-out;
}
.team .team-img ul li a:hover {
color: #ffffff;
background: #041f42;
}
.team .team-info {
padding: 25px 0px 0px;
}
.team .team-info .team-name {
color: #041f42;
font-size: 20px;
font-weight: 700;
}
.team .team-info .team-name:hover {
color: #5a9ef3;
}
.team .team-info p {
font-size: 16px;
margin-bottom: 25px;
}
.team:hover .team-img {
z-index: 9;
position: relative;
}
.team:hover .team-img ul {
bottom: 15px;
}
.team:hover .team-info {
z-index: 9;
position: relative;
}
/*****************************
responsive
*****************************/
@media (max-width: 575px) {
.team .team-img img {
width: 100%;
}
}
/*****************************
Header
*****************************/
.header .navbar {
padding: 5px 0px;
}
.head-back {
background-image: url(../images/head-back.jpg);
background-size: cover;
}
.header .navbar .navbar-brand {
padding: 0;
margin-right: 30px;
}
.header .navbar .navbar-nav .nav-item .nav-link {
font-size: 15px;
color: #ffffff;
padding: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.header .navbar .navbar-nav .nav-item .nav-link {
font-size: 11.2px;
color: #ffffff;
padding: 8px;
}
}
@media (min-width: 1200px) and (max-width: 1320px) {
.header .navbar .navbar-nav .nav-item .nav-link {
font-size: 13.5px;
color: #ffffff;
padding: 8px;
}
}
.header .navbar .navbar-nav .nav-item .nav-link:hover {
color: #5a9ef3;
}
.header .navbar .navbar-nav .nav-item .nav-link i {
font-size: 10px;
margin-left: 7px;
}
.header .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle:after {
display: none;
}
.header .navbar .navbar-nav .nav-item .megamenu-fullwidth {
min-height: 300px;
width: calc(100% - 30px);
left: 25px;
}
.header .navbar .navbar-nav .nav-item .megamenu-screen {
min-height: 330px;
}
.header .navbar .navbar-nav .nav-item.active .nav-link {
color: #5a9ef3;
}
.header .navbar .navbar-nav .dropdown-menu li.active > a {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.header .navbar .navbar-nav .dropdown-menu li:hover > a {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.header .navbar .navbar-nav .dropdown-menu li > a:hover {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.header .navbar .navbar-nav .dropdown-menu .inner-mega-menu .nav-item .dropdown-item {
font-size: 16px;
padding: 7px 0px;
}
.header .navbar .navbar-nav .dropdown-menu .inner-mega-menu .nav-item .dropdown-item:active, .header .navbar .navbar-nav .dropdown-menu .inner-mega-menu .nav-item .dropdown-item:hover {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.header .navbar .navbar-nav .dropdown-menu .inner-mega-menu .nav-item .dropdown-item.active {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.header .navbar .navbar-nav .dropdown-menu .inner-mega-menu .blog-post.post-style-02 .blog-post-details .blog-title {
font-size: 18px;
}
.header .topbar {
padding: 7px 0px;
border-bottom: 1px solid #e4eaf7;
}
.header .topbar .topbar-date {
padding-right: 20px;
margin-right: 20px;
border-right: 1px solid #e4eaf7;
}
.header .topbar .topbar-date .date i {
margin-right: 6px;
}
.header .topbar .top-menu {
display: flex;
align-items: center;
}
.header .topbar .top-menu li {
list-style-type: none;
margin-right: 15px;
}
.header .topbar .top-menu li a {
color: #5c667d;
font-size: 16px;
padding: 0;
font-weight: 500;
}
.header .topbar .top-menu li a:hover {
color: #5a9ef3;
}
.header .topbar .top-menu li:last-child {
margin-right: 0px;
}
.header .topbar .topbar-right {
display: flex;
align-items: center;
}
.header .topbar .user {
margin-right: 20px;
}
.header .topbar .user a {
color: #5c667d;
}
.header .topbar .user a:hover {
color: #5a9ef3;
}
.header .topbar .user a img {
margin-right: 5px;
}
.header .topbar .news-language {
margin-right: 20px;
}
.header .topbar .news-language .dropdown-toggle {
color: #5c667d;
}
.header .topbar .news-language .dropdown-toggle i {
margin-left: 8px;
}
.header .topbar .news-language .dropdown-toggle:hover {
color: #5a9ef3;
}
.header .topbar .news-language .dropdown-toggle:after {
display: none;
}
.header .topbar .news-language .dropdown-toggle img {
margin-right: 5px;
width: 20px;
height: auto;
}
.header .topbar .news-language .dropdown-menu {
top: 50% !important;
padding: 10px;
box-shadow: 0px 2px 5px 0px rgba(5, 24, 48, 0.1);
border: none;
}
.header .topbar .news-language .dropdown-menu .dropdown-item {
color: #5c667d;
font-size: 16px;
padding: 5px 0px;
}
.header .topbar .news-language .dropdown-menu .dropdown-item img {
margin-right: 8px;
width: 20px;
height: auto;
}
.header .topbar .news-language .dropdown-menu .dropdown-item:hover {
color: #5a9ef3;
background-color: inherit;
}
.header .add-listing {
display: flex;
align-items: center;
}
.header .add-listing .header-search {
margin-right: 20px;
}
.header .add-listing .header-search .search a i {
font-size: 18px;
color: #5c667d;
transition: all 0.3s ease-in-out;
}
.header .add-listing .header-search .search a i:hover {
color: #5a9ef3;
}
.header .add-listing .side-menu a {
cursor: pointer;
}
.header .add-listing .side-menu a i {
color: #5c667d;
font-size: 24px;
}
.header .add-listing .side-menu a:hover i {
color: #5a9ef3;
}
.header .add-listing .clock {
background-color: #5a9ef3;
display: inline-block;
color: #ffffff;
padding: 5px 18px;
border-radius: 6px;
font-size: 16px;
margin-right: 15px;
min-width: 135px;
text-align: center;
}
.navbar-brand .logo-light {
display: none;
}
.weather {
display: flex;
align-items: center;
margin-right: 20px;
}
.weather .weather-icon {
margin-right: 15px;
}
.weather .weather-temprecher {
font-size: 24px;
font-weight: bold;
color: #5c667d;
position: relative;
margin-right: 15px;
}
.weather .weather-temprecher:before {
position: absolute;
content: "";
height: 7px;
width: 7px;
border-radius: 100%;
border: 2px solid #5c667d;
right: 0;
top: 0;
}
.weather .weather-address span {
display: block;
}
.weather .weather-address .place {
font-size: 16px;
color: #5c667d;
font-family: "Zilla Slab", serif;
font-weight: 600;
}
.weather .weather-address .date {
font-size: 12px;
color: #5c667d;
}
.social ul {
list-style-type: none;
display: flex;
align-items: center;
}
.social ul li {
list-style-type: none;
margin-right: 15px;
}
.social ul li a {
color: #5c667d;
font-size: 16px;
padding: 0;
}
.social ul li a:hover {
color: #5a9ef3;
}
.social ul li:last-child {
margin-right: 0px;
}
/*megamenu*/
.megamenu {
padding: 20px 20px;
width: 100%;
}
.megamenu > div > li > ul {
padding: 0;
margin: 0;
}
.megamenu > div > li > ul > li {
list-style: none;
}
.megamenu > div > li > ul > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.428571429;
color: #5c667d;
white-space: normal;
}
.megamenu > div > li > ul > li > a:hover {
text-decoration: none;
color: #5c667d;
background-color: #5c667d;
}
.megamenu > div > li > ul > li > a:focus {
text-decoration: none;
color: #5c667d;
background-color: #5c667d;
}
.megamenu.dropdown-header {
color: #5a9ef3;
font-size: 18px;
}
.dropdown-submenu {
position: relative;
padding: 7px 0 7px 0;
display: block;
color: #041f42;
}
/*Header Transparent*/
.header.header-transparent {
background-color: transparent;
}
.header.header-transparent .navbar .navbar-nav .nav-item .nav-link {
color: #ffffff;
}
.header.header-transparent .navbar .navbar-nav .nav-item .nav-link:hover {
color: #5a9ef3;
}
.header.header-transparent .navbar .nav-item.active .nav-link {
color: #5a9ef3;
}
.header.header-transparent .add-listing .header-search .search a i {
color: #ffffff;
}
.header.header-transparent .add-listing .header-search .search a:hover i {
color: #5a9ef3;
}
.header.header-transparent .add-listing .side-menu a i {
color: #ffffff;
}
.header.header-transparent .add-listing .side-menu a:hover i {
color: #5a9ef3;
}
.header.header-transparent .weather .weather-temprecher {
color: #ffffff;
}
.header.header-transparent .weather .weather-temprecher:before {
border: 2px solid #ffffff;
}
.header.header-transparent .weather .weather-address .place {
color: #ffffff;
}
.header.header-transparent .weather .weather-address .date {
color: #ffffff;
}
/*Header Style 02*/
.header.header-style-02 {
padding: 0px 90px;
position: absolute;
width: 100%;
left: 0;
z-index: 9;
}
.header.header-style-02 .navbar {
padding: 20px 0px;
}
.header.header-style-02 .news-headlin {
width: 27%;
height: 40px;
overflow: hidden;
display: flex;
position: relative;
}
.header.header-style-02 .news-headlin .news-headlin-title {
display: flex;
position: absolute;
top: 0;
left: 0;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 100%;
white-space: nowrap;
transform: scale(1);
transition: all 1s ease;
}
.header.header-style-02 .news-headlin .news-headlin-title span {
animation: scrollText 30s infinite linear;
font-size: 16px;
font-weight: normal;
}
@keyframes scrollText {
from {
transform: translateX(0%);
}
to {
transform: translateX(-50%);
}
}
.header-transparent.header-style-02:after {
z-index: 1;
position: absolute;
width: 100%;
left: 0;
right: 0;
bottom: 0;
content: "";
background: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
top: 0;
height: 100px;
-webkit-transition: all .35s;
transition: all .35s;
z-index: -1;
}
/*sticky header*/
.header.is-sticky {
position: fixed !important;
width: 100%;
background: #ffffff;
box-shadow: 1px 1px 5px 1px rgba(4, 31, 66, 0.1);
top: 0;
z-index: 999;
transition: 0.5s ease-in-out;
animation: stickySlideDown 1.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.header.is-sticky .topbar {
display: none !important;
}
.header.is-sticky .logo {
display: none !important;
}
.header.is-sticky .banner_ad {
display: none !important;
}
.header.is-sticky .navbar {
padding: 5px 0px;
}
.header.is-sticky .add-listing .header-search {
display: none;
}
.header.header-transparent.is-sticky {
background: #051830;
}
@keyframes stickySlideDown {
0% {
opacity: 0.7;
transform: translateY(-100%);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.news-headlin {
margin-right: 30px;
color: #ffffff;
font-size: 16px;
width: 400px;
}
/*Header Style 03*/
.header-style-03 {
width: 50%;
position: fixed;
left: 0;
top: 0;
z-index: 999;
padding: 0px 90px;
}
.navbar-nav-style-03 .nav-item .nav-link {
position: relative;
padding: 10px;
color: #5c667d;
}
.navbar-nav-style-03 .nav-item .nav-link i {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.navbar-nav-style-03 .nav-item .nav-link:hover {
color: #5a9ef3;
}
.navbar-nav-style-03 .nav-item ul.dropdown-menu.show {
position: relative !important;
border: none;
transform: none !important;
}
.navbar-nav-style-03 .nav-item .dropdown-menu {
padding: 10px;
transition: 0.5s ease-in-out;
background-color: #e4eaf7;
}
.navbar-nav-style-03 .nav-item .dropdown-menu li .dropdown-item {
font-size: 16px;
color: #5c667d;
}
.navbar-nav-style-03 .nav-item .dropdown-menu li .dropdown-item:hover {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
}
.navbar-nav-style-03 .nav-item .dropdown-menu li.active .dropdown-item {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
}
.navbar-nav-style-03 .nav-item.active .nav-link {
color: #5a9ef3;
}
.navbar-nav-style-03 .nav-link.dropdown-toggle:after {
display: none;
}
.offcanvas.offcanvas-start .offcanvas-body .navbar-nav-style-03 .nav-item .dropdown-menu li.active a {
padding-left: 10px;
}
.offcanvas.offcanvas-start {
width: 800px;
background: #ffffff;
border-right: inherit;
padding: 50px 100px;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close {
background: inherit;
position: relative;
display: inline-block;
width: 5px;
height: 5px;
overflow: hidden;
opacity: 1;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close:before {
content: '';
position: absolute;
height: 4px;
width: 100%;
top: 50%;
left: 0;
margin-top: -1px;
background: #5c667d;
transform: rotate(45deg);
transition: all 0.3s ease-in-out;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close:after {
content: '';
position: absolute;
height: 4px;
width: 100%;
top: 50%;
left: 0;
margin-top: -1px;
background: #5c667d;
transform: rotate(-45deg);
transition: all 0.3s ease-in-out;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close:focus {
box-shadow: inherit;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close:hover:before {
background: #5a9ef3;
}
.offcanvas.offcanvas-start .offcanvas-header .btn-close:hover:after {
background: #5a9ef3;
}
.offcanvas.offcanvas-start .offcanvas-body {
overflow: auto;
height: 550px;
}
.offcanvas.offcanvas-start .offcanvas-body ul.navbar-nav-style-03 li.nav-item a {
padding: 15px 0;
}
.offcanvas.offcanvas-start .offcanvas-body ul.navbar-nav-style-03 li.nav-item .dropdown-menu li a.dropdown-item {
padding: 10px 0;
}
.offcanvas.offcanvas-start .offcanvas-body ul.navbar-nav-style-03 li.nav-item .dropdown-menu li.active a.dropdown-item {
padding-left: 10px;
}
.offcanvas.offcanvas-start .offcanvas-body ul.navbar-nav-style-03 li .sidebar-post {
margin-top: 50px;
padding-bottom: 50px;
border-bottom: 1px solid #ebf0f9;
}
.offcanvas.offcanvas-start .offcanvas-body .social-icons {
display: flex;
margin-top: 40px;
}
.offcanvas.offcanvas-start .offcanvas-body .social-icons li {
margin-right: 60px;
}
.offcanvas.offcanvas-start .offcanvas-body .social-icons li:last-child {
margin-right: 0px;
}
.offcanvas.offcanvas-start .offcanvas-body .social-icons li a {
font-size: 22px;
color: #5c667d;
}
.offcanvas.offcanvas-start .offcanvas-body .social-icons li a:hover {
color: #5a9ef3;
}
.offcanvas.offcanvas-start .offcanvas-body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
background-color: #fff;
border-radius: 100px;
}
.offcanvas.offcanvas-start .offcanvas-body::-webkit-scrollbar {
width: 3px;
background-color: #fff;
border-radius: 100px;
}
.offcanvas.offcanvas-start .offcanvas-body::-webkit-scrollbar-thumb {
background-color: #fff;
}
.offcanvas.offcanvas-start .offcanvas-body .navbar-nav-style-03 .nav-item .dropdown-menu li .dropdown-item:hover {
padding-left: 10px;
}
/*Header Style 04*/
.header.header-style-04 {
padding: 0px 90px;
position: absolute;
width: 100%;
left: 0;
z-index: 999;
}
.header.header-style-04 .navbar {
padding: 28px 0px;
}
/*Header Style 06*/
.header.header-style-06.is-sticky {
border-bottom: none;
}
.header.header-style-06.is-sticky .navbar {
border-bottom: none;
margin-bottom: 0;
padding: 10px 0px;
}
.header.header-style-06.is-sticky .navbar .navbar-brand {
display: inline-block !important;
}
.header.header-style-06.is-sticky .navbar .navbar-nav .nav-item:first-child .nav-link {
padding-left: 10px;
}
.header.header-style-06.is-sticky .trending .news-headlin {
width: 450px;
}
.header.header-style-06 .topbar {
padding: 20px 0px;
}
.header.header-style-06 .topbar .topbar-right .news-language {
margin-right: 0;
}
.header.header-style-06 .navbar {
border-bottom: 1px solid #e4eaf7;
margin-bottom: 2px;
padding: 2px 0px;
background: #041f42;
}
.header.header-style-06 .navbar .navbar-nav .nav-item:first-child .nav-link {
padding-left: 0px;
}
.header.header-style-06 .navbar .add-listing .search a i {
color: #ffffff;
}
.header.header-style-06 .navbar .add-listing .side-menu a i {
color: #ffffff;
}
.header.header-style-06 .trending {
display: flex;
align-items: center;
}
.header.header-style-06 .trending .title {
font-size: 16px;
color: #ffffff;
padding-right: 15px;
}
.header.header-style-06 .trending .news-headlin {
width: 630px;
height: 40px;
overflow: hidden;
display: flex;
position: relative;
margin-right: 60px;
}
.header.header-style-06 .trending .news-headlin .news-headlin-title {
display: flex;
position: absolute;
top: 0;
left: 0;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 100%;
white-space: nowrap;
transform: scale(1);
transition: all 1s ease;
}
.header.header-style-06 .trending .news-headlin .news-headlin-title ul {
display: flex;
align-items: center;
animation: scrollText 30s infinite linear;
}
.header.header-style-06 .trending .news-headlin .news-headlin-title ul li {
font-weight: normal;
font-size: 16px;
color: #ffffff;
position: relative;
padding-right: 10px;
}
.header.header-style-06 .navbar-nav .nav-item .nav-link {
color: #ffffff;
}
@media (min-width: 992px) {
.header .navbar .dropdown-menu {
margin: 0px;
min-width: 200px;
font-size: 16px;
border-radius: 6px;
padding: 10px;
border-color: transparent;
left: 0;
transform: translate3d(-10px, 15px, 0);
transition: all 0.3s ease-in-out;
transition-property: opacity, visibility, transform;
transform-origin: top center;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
visibility: hidden;
opacity: 0;
display: block !important;
}
.header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
left: 100%;
right: auto;
transform: translate3d(0, 10px, 0);
}
.header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
right: 100%;
left: auto;
transform: translate3d(-15px, 10px, 0);
}
.header .navbar .dropdown-menu.megamenu {
left: 0;
}
.header .navbar .dropdown-menu.megamenu.megamenu-screen {
width: calc(100% - 20px);
left: 20px;
}
.header .navbar .dropdown > .dropdown-menu {
top: 100%;
margin-top: 0px;
}
.header .navbar .dropdown > .dropdown-menu.megamenu {
top: 100%;
}
.header .navbar .dropdown:hover > .dropdown-menu {
transform: translate3d(-10px, 0px, 0);
visibility: visible;
opacity: 1;
}
.navbar-nav .dropdown-menu.dropdown-menu-lg {
min-width: 630px;
}
.navbar-nav .dropdown-menu.dropdown-menu-md {
min-width: 450px;
}
.navbar-nav .mega-menu {
position: static;
}
.navbar-nav .mega-menu ul {
display: none;
}
.navbar-nav .mega-menu:hover ul {
display: block;
}
.navbar-nav .mega-menu li .inner-mega-menu {
display: none;
}
.navbar-nav .mega-menu li.selected .inner-mega-menu {
display: block;
}
.navbar-nav .mega-menu .dropdown-menu li {
display: flex;
}
.navbar-nav .mega-menu .dropdown-menu li a {
width: 15%;
}
.navbar-nav .mega-menu .dropdown-menu li .inner-mega-menu {
position: absolute;
left: calc(2% - -15%);
top: 20px;
right: 20px;
}
.navbar-nav .mega-menu .dropdown-menu a.dropdown-item.active {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.navbar-nav .mega-menu .dropdown-menu a.dropdown-item:active {
background: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
padding-left: 10px;
border-radius: 6px;
}
.navbar-nav li:hover > ul.dropdown-menu {
visibility: visible;
opacity: 1;
}
.dropdown-submenu {
position: relative;
padding: 7px 0 7px 0;
display: block;
color: #041f42;
font-weight: 400;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
}
.dropdown-menu > li > a:hover:after {
text-decoration: underline;
transform: rotate(-90deg);
}
.dropdown-menu .dropdown-item {
padding: 7px 0 7px 0;
}
.dropdown-menu .dropdown-item:focus {
background-color: transparent;
}
.header.header-style-04 .navbar .navbar-collapse {
justify-content: center;
}
.categories-mobile {
display: none;
}
}
@media (max-width: 1699px) {
.header.header-style-02 {
padding: 0px 20px;
}
.header.header-style-02 .news-headlin {
margin-right: 20px;
width: 18%;
}
}
@media (max-width: 1430px) {
.header.header-style-04 {
padding: 0px 0px;
}
}
@media (max-width: 1399px) {
.header.header-style-02 {
padding: 0px 10px;
}
.header.header-style-02 .news-headlin {
width: 16%;
}
.header.header-style-02 .navbar .navbar-brand {
margin-right: 15px;
}
.header.header-style-02 .navbar .navbar-nav .nav-item .nav-link {
padding: 10px 6px;
}
.header.header-style-06 .trending .news-headlin {
width: 500px;
}
.header.header-style-06.is-sticky .trending .news-headlin {
width: 350px;
}
}
@media (max-width: 1299px) {
.header.header-style-02 {
padding: 0px 15px;
}
.header.header-style-02 .add-listing .header-search {
margin-right: 10px;
}
.header.header-style-02 .add-listing .clock {
margin-right: 10px;
}
.header.header-style-02 .weather {
margin-right: 10px;
}
.header.header-style-02 .weather .weather-icon {
margin-right: 10px;
}
.header.header-style-02 .weather .weather-temprecher {
margin-right: 10px;
}
.header.header-style-02 .navbar .navbar-nav .nav-item .nav-link {
font-size: 14px;
}
.header.header-style-06 .trending .news-headlin {
width: 370px;
}
.header.header-style-06.is-sticky .trending .title {
padding-right: 30px;
}
.header.header-style-06.is-sticky .trending .news-headlin {
width: 250px;
margin-right: 40px;
}
}
@media (max-width: 1199px) {
.header .navbar .navbar-brand {
margin-right: 10px;
}
.header .navbar .navbar-brand img {
height: 30px;
}
.header .add-listing .clock {
margin-right: 10px;
}
.header .add-listing .header-search {
margin-right: 10px;
}
.weather {
margin-right: 10px;
}
.weather .weather-icon {
margin-right: 10px;
}
.weather .weather-temprecher {
margin-right: 10px;
}
.header.header-style-02 {
padding: 0px;
}
.header.header-style-02 .navbar .navbar-brand {
margin-right: 10px;
}
.header.header-style-02 .news-headlin {
width: 26%;
margin-right: 10px;
}
.header.header-style-02 .weather {
display: none;
}
.header.header-style-03 {
width: 100%;
padding: 0 30px;
background-color: rgba(255, 255, 255, 0.8);
}
.header.header-style-03 .navbar {
padding: 20px 0px;
}
.header.header-style-03.is-sticky {
background-color: white;
}
.header.header-style-03.is-sticky .navbar {
padding: 15px 0px;
}
.header.header-style-04 {
padding: 0px 0px;
}
.header.header-style-04 .navbar .navbar-nav .nav-item .nav-link {
padding: 10px;
}
.header.header-style-06 .trending .news-headlin {
width: 250px;
}
.header.header-style-06 .topbar .topbar-date {
padding-right: 8px;
margin-right: 8px;
font-size: 14px;
}
.header.header-style-06 .topbar .top-menu li {
margin-right: 10px;
}
.header.header-style-06 .topbar .top-menu li a {
font-size: 14px;
}
.header.header-style-06.is-sticky .trending .title {
padding-right: 15px;
}
.header.header-style-06.is-sticky .trending .news-headlin {
width: 150px;
margin-right: 20px;
}
}
@media (max-width: 991px) {
.header .topbar .topbar-right {
justify-content: center;
}
.header .navbar-collapse {
position: absolute;
top: 100%;
z-index: 999;
background: #ffffff;
width: 100%;
max-height: 350px;
overflow: auto;
left: 0;
margin-top: -1px;
margin-left: 0px;
border-radius: 6px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.header .navbar {
padding: 20px 0px;
}
.header .navbar .navbar-brand img {
height: auto;
}
.header .navbar .navbar-nav {
align-items: initial;
}
.header .navbar .navbar-nav .nav-item {
margin-right: 0;
}
.header .navbar .navbar-nav .nav-item .nav-link {
color: #5c667d;
padding: 10px 15px;
font-size: 16px;
}
.header .navbar .navbar-nav .nav-item .nav-link i {
position: absolute;
right: 20px;
top: 20px;
}
.header .navbar .navbar-nav .nav-item .inner-mega-menu {
display: none;
}
.header .navbar .navbar-nav .dropdown.mega-menu .megamenu {
width: 100%;
margin: 0 auto;
min-height: auto;
}
.header .navbar .dropdown-menu {
font-size: 16px;
border-radius: 0px;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
background: inherit;
padding: 0 30px;
border-radius: 6px;
}
.header .navbar .dropdown-menu .dropdown-item {
padding: 10px 0px;
}
.header .navbar .dropdown-menu .dropdown-item.active {
padding-left: 10px;
background-color: rgba(48, 201, 106, 0.07);
color: #5a9ef3;
}
.header .navbar .nav-title {
margin-top: 20px;
}
.header .navbar .navbar-toggler {
position: absolute;
right: 12px;
box-shadow: none;
transition: 0.5s ease-in-out;
background: #5a9ef3;
color: #ffffff;
padding: 15px;
border-radius: 4px;
display: flex;
height: 40px;
width: 45px;
justify-content: center;
align-items: center;
}
.header .navbar .add-listing {
padding-right: 50px;
}
.header .navbar .add-listing .menu-btn {
display: none;
}
.header.is-sticky .navbar {
padding: 10px 0px;
}
.header.header-transparent .navbar .navbar-nav .nav-item .nav-link {
color: #5c667d;
}
.header.header-transparent .navbar .navbar-nav .nav-item.active .nav-link {
color: #5a9ef3;
}
.header.header-style-02 {
position: inherit;
background-color: #051830;
padding: 0px;
}
.header.header-style-02 .navbar .navbar-brand img {
height: auto;
}
.header.header-style-02 .navbar .navbar-nav .nav-item .nav-link {
padding: 10px 15px;
font-size: 16px;
}
.header.header-style-02 .news-headlin {
width: 48%;
margin-right: 10px;
}
.header.header-style-03 .navbar .add-listing {
padding-right: 0px;
}
.header.header-style-06 .trending .news-headlin {
width: 250px;
}
.header.header-style-06 .navbar {
padding: 15px 0px;
}
.header.header-style-06 .navbar .navbar-nav .nav-item:first-child .nav-link {
padding-left: 15px;
}
.header.header-style-06.is-sticky .trending .title {
padding-right: 30px;
}
.header.header-style-06.is-sticky .trending .news-headlin {
width: 300px;
margin-right: 30px;
}
.categories-desktop {
display: none;
}
}
@media (max-width: 767px) {
.header .weather {
display: none;
}
.header .add-listing .clock {
display: none;
}
.header.header-style-02 .navbar {
padding-top: 50px;
}
.header.header-style-02 .news-headlin {
position: absolute;
top: -40px;
width: 90%;
left: 0;
right: 0;
margin: 0 auto;
}
.header.header-style-02.is-sticky .navbar {
padding-top: 10px;
}
.header.header-style-02.is-sticky .news-headlin {
display: none;
}
.header.header-style-04 {
padding: 0px 0px;
}
.header.header-style-06 .navbar {
padding-top: 15px;
}
.header.header-style-06 .trending {
display: none;
}
.header.header-style-06.is-sticky .trending {
display: none;
}
.offcanvas.offcanvas-start {
padding: 30px;
}
.offcanvas.offcanvas-start .offcanvas-header {
padding-top: 0;
}
}
@media (max-width: 575px) {
.header .navbar {
padding: 15px 0;
}
.header .navbar .add-listing {
padding-right: 60px;
}
.header.header-style-06 .trending {
display: none;
}
.header.header-style-06 .trending .title {
padding-right: 10px;
font-size: 14px;
}
.header.header-style-06 .trending .news-headlin {
width: 60%;
margin-right: 10px;
}
.header.header-style-06 .trending .news-headlin ul li {
font-size: 14px;
}
#search input[type="search"] {
padding-left: 10px;
padding-right: 10px;
}
#search input[type="search"] .close {
right: 10px;
}
#search .btn {
font-size: 14px;
padding: 14px 15px;
}
}
/*****************************
Footer
*****************************/
.footer {
background-color: #00142f;
padding-top: 20px;
}
.footer .main-footer {
padding-bottom: 15px;
}
.footer .footer-about .footer-logo {
margin-bottom: 25px;
display: block;
width: 400px;
}
.footer .footer-about p {
color: #ffffff;
font-size: 14px;
line-height: 24px;
margin-bottom: 35px;
}
.footer .footer-about p a {
color: #ffffff;
font-size: 16px;
font-weight: 600;
line-height: 24px;
padding-left: 15px;
padding-right: 15px;
border-right: 1px solid #ffffff;
}
.footer .footer-about p a:hover {
color: #2875d4;
cursor: pointer;
}
.footer .footer-about p a:last-child {
border-right: none;
}
.footer .footer-title {
color: #ffffff;
font-size: 22px;
font-weight: 600;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
}
.footer .footer-title:before {
position: absolute;
content: "";
height: 2px;
width: 60px;
background-color: #5a9ef3;
left: 0;
bottom: 0;
}
.footer .footer-menu li a {
margin-bottom: 17px;
display: block;
transition: 0.5s;
position: relative;
color: #e2e2e2;
}
.footer .footer-menu li a i {
margin-right: 10px;
font-size: 12px;
}
.footer .footer-menu li a:hover {
color: #5a9ef3;
padding-left: 5px;
}
.footer .footer-post {
padding-right: 35px;
}
.footer-bottom{
background: #000;
padding: 10px 0;
}
.footer-bottom p{
font-size: 13px;
}
@media (max-width: 991px) {
.footer .footer-about {
padding-right: 0;
}
.footer .footer-about p {
margin-bottom: 15px;
}
.footer .footer-post {
padding-right: 0;
}
}
@media (max-width: 767px) {
.footer {
padding-top: 50px;
}
.footer .main-footer {
padding-bottom: 16px;
}
}
@media (max-width: 479px) {
.footer {
padding-top: 40px;
}
.footer .main-footer {
padding-bottom: 6px;
}
.footer .footer-post .blog-post {
display: block;
}
.footer .footer-post .blog-post .blog-image {
width: 100%;
margin-bottom: 15px;
}
}
.border-r{
border-radius: 6px;
}
.blog-post-title h3{
font-size: 22px;
font-weight: 700;
line-height: 1.4;
}