/*============================== Global ==============================*/
body {
    background: var(--bodyDark);
}
p {
    color: var(--text2);
}
ul li {
    color: var(--text2);
}

/*============================ Header ============================*/
header {
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: var(--bodyDark);
}
header nav {
    padding: 0!important;
}
header nav .navbar-brand {
    z-index: 1;
    transition: all 0.7s ease 0s;
}
header nav .navbar-brand img {
    width: 118px;
    transition: all 0.7s ease 0s;
}
header nav .navbar-nav li .nav-link {
    font-size: 12px;
    line-height: 1;
    padding: 16px 18px !important;
    border-radius: 6px;
    font-weight: 600;
    color: var(--textLight1) !important;
    position: relative;
}
header nav .navbar-nav li .nav-link:after {
    content: '●';
    position: absolute;
    right: -3px;
    display: inline-block;
}
header nav .navbar-nav li:last-child .nav-link:after {
    content: none;
}
header nav .navbar-nav li .nav-link:hover {
    color: var(--theme)!important;
}
header nav .navbar-nav li.active .nav-link {
    color: var(--theme)!important;
}
/*============================ //Header ============================*/

/*============================ Blog Area Wrap ============================*/
.blog-area-wrap {
    position: relative;
    width: 100%;
    padding: 100px 0;
}
.blog-area-wrap .blog-mid-width {
    max-width: 710px;
    margin: 0 auto;
}
.blog-area-wrap .blog-mid-width .back-link {
    color: var(--textLight2);
    font-size: 13px;
    font-weight: 400;
}
.blog-area-wrap .blog-mid-width .back-link:hover {
    text-decoration: none;
    color: var(--theme);
}
.blog-area-wrap .blog-mid-width .headline-area {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin: 60px 0;
}
.blog-area-wrap .blog-mid-width .headline-area h1 {
    color: var(--white);
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}
.blog-area-wrap .blog-mid-width .headline-area .blog-tabs .tab-item {
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    line-height: 24px;
    background: transparent;
    padding: 4px 8px;
}
.blog-area-wrap .blog-mid-width .headline-area .blog-tabs .tab-item.active {
    color: var(--white);
}
.blog-all {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
}
.blog-all .single-blog {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.blog-all .single-blog h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    color: var(--white)
}
.blog-all .single-blog .blog-author {
   display: flex;
   align-items: center;
   gap: 10px;
   width: 100%;
}
.blog-all .single-blog .blog-author .authr-details {
   display: flex;
   align-items: center;
   gap: 6px;
   width: 100%;
}
.blog-all .single-blog .blog-author .authr-details .authr-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.40);
    position: relative;
    padding-right: 14px;
    padding-left: 4px;
}
.blog-all .single-blog .blog-author .authr-details .authr-info:after {
    content: '●';
    position: absolute;
    right: -3px;
    display: inline-block;
}
.blog-all .single-blog .blog-author .authr-details .authr-info:last-child:after {
    content: none;
}
.blog-all .single-blog p {
    color: var(--textLight2);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.blog-all .single-blog a {
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
    border-bottom: 1px solid var(--textLight1);
    padding: 3px 0;
}
/*============================ //Blog Area Wrap ============================*/

/*============================ Footer ============================*/
footer {
  position: relative;
  width: 100%;
  background: var(--darkPrimary);
}

footer .footer-top {
    padding: 150px 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .footer-top .foot-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}
footer .footer-top .foot-menu a {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white)
}
footer .footer-top .foot-menu a i {
    vertical-align: middle;
    margin-right: 10px;
    font-size: 4px;
}
footer .foot-contact .footer-logo {
    width: 116px;
    margin-bottom: 30px;
}
footer .foot-contact p {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white)
}

footer .footer-bottom {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .footer-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}
footer .footer-block .box-zig {
    width: 12px;
    height: 12px;
    border-radius: 1px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: colorchange 4s infinite linear;
    animation: colorchange 4s infinite linear;
}
@-webkit-keyframes colorchange {
    0% { background: #FFF; } 
    15% { background: transparent; }
    28% { background: #FB8B02;}
    36% {background: transparent;}
    48% {background: #6402FA;}
    56% { background: transparent;} 
    83% { background: #02A9FA; }
    100% { background: transparent;}
}
footer .footer-bottom p {
  color: var(--textLight2);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
}
/*============================ //Footer ============================*/
      
@media (max-width: 767px) {
    .navbar-light .navbar-toggler-icon {
       background-image: url('https://imagedelivery.net/XYPCTx1RfzadZ3NdvQYJrQ/a29dd08c-28f2-4f3d-654f-4ce23666a200/public');
       background-size: 15px;
       background-position: 10px 18px;
    } 
    header nav .navbar-nav li .nav-link:after {
        content: none;
    }
}