/*** 3. Basic Default ***/
body {
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 20px;
    height: 100%;
    color: var(--black-color);
    background: #fff; }
a,
button{
    cursor:pointer;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
a:hover,
a:focus{
    text-decoration: none; }
ul{
    margin: 0;
    padding: 0;
    list-style-type: none; }
button:focus,
input:focus,
a:focus{
    outline: 0;
    background: transparent; }
::-webkit-input-placeholder { color: #797979 !important; }
::-moz-placeholder { color: #797979 !important; }
:-ms-input-placeholder { color: #797979 !important; }
input:-moz-placeholder { color: #797979 !important; }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type=number] { -moz-appearance:textfield; }
.compensate-for-scrollbar { margin-right: 17px !important; }

/* Header */
#header_fixed {
    background: #fff;
    width: 100%;
    z-index: 8000;
    position: fixed;
    top: -150px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
#header_fixed.fixed {
    visibility: visible;
    opacity: 1;
    top: 0; }
#header_fixed #header_logo{
    padding-top: 10px;
    padding-bottom: 10px; }
#header_fixed #header_logo img{
    max-height: 40px;
    width: auto; }

#header_fixed .wrapper,
header .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between; }
#header_logo{
    padding-top: 20px;
    padding-bottom: 20px; }

/*** Menu style ***/
.navbar-default {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    min-height: 40px; }
.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover{
    background-color: transparent; }

.nc-caret{ 
    font-size: 12px;
    height: 16px;
    margin-left: 9px;
    display: flex;
    align-items: center;
    margin-top: 1px; }

.navbar-content, 
.navbar-content .dropdown-menu {
    font-family: var(--primary-font);
    font-weight: var(--primary-font-medium);
    font-size: 15px; }
.navbar-content{
    position: relative;
    padding: 0;  }
.navbar-content li {
    margin: 0 25px;
    position: relative; }
.navbar-content li.first-item { margin-left: 0; }
.navbar-content li.last-item { margin-right: 0; }
.navbar-content li a {
    padding: 10px 0;
    color: var(--second-color) !important;
    line-height: 20px;
    display: flex;
    align-items: center; }
.navbar-content li a:hover,
.navbar-content li.active a {
    color: var(--primary-color) !important; }

.navbar-content .dropdown-menu {
    display: block;
    opacity: 0;
    top: 150%;
    left: -20px;
    box-shadow: 0 0 3px rgba(0,0,0,0.4);
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,1);
    padding: 0;
    width: 280px;
    visibility: hidden;
    z-index: 25000 !important;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease; }
.navbar-content .channels .dropdown-menu { width: 210px; }
.navbar-content .last-item .dropdown-menu { width: 215px; }
.navbar-content .dropdown:hover .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
    z-index: 9999; }
.navbar-content .dropdown-menu li { margin: 0; }
.navbar-content .dropdown-menu li a {
    font-weight: var(--second-font-normal);
    padding: 11px 20px;
    color: var(--black-color) !important;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.1); }
.navbar-content .dropdown-menu li a:hover {
    background: var(--primary-color);
    color: #fff !important; }

/* Content */
.columns-container{ padding: 50px 0 60px 0; }

#breadcrumb {
    height: 160px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--second-color);
    background-image: url(../img/bg-smallbanner.png);
    background-repeat: no-repeat;
    background-position: left bottom; }
#breadcrumb .shape1,
#breadcrumb .shape2{
    position: absolute;
    top: 20px; }
#breadcrumb .shape1{ 
    right: 0;
    opacity: 0.1; }
#breadcrumb .shape2{ right: -100px; }
#breadcrumb h1{
    margin: 10px 0 15px 0;
    color: #fff;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    font-size: 28px; }
#breadcrumb .path{
    display: flex;
    align-items: center;
    overflow: hidden;
    line-height: 20px;
    color: #fff;
    font-size: 13px; }
#breadcrumb .path a{ color: #ababab; }
#breadcrumb .path a:hover{ color: #fff; }
#breadcrumb .path .pipe{
    font-size: 12px;
    margin: 0 10px;
    opacity: 0.6; }

#design{ padding: 70px 0; }

/* Blog */
.d-flex { display: flex !important; }
.justify-content-start, 
.justify-content-left { 
    justify-content: flex-start !important; }
.justify-content-end,
.justify-content-right { 
    justify-content: flex-end !important; } 
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; } 
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }
.right-column {
    flex: none;
    width: 360px;
    padding-right: 30px; }
.right-column .box {
    background-color: #f8fafd;
    border: 1px solid var(--silver-color);
    border-radius: 5px;
    margin-bottom: 30px; }
.right-column .box-head {
    display: flex;
    align-items: center;
    padding: 0 30px;
    height: 60px;
    border-bottom: 1px solid var(--silver-color);
    font-weight: var(--primary-font-bold);
    font-size: 15px; }
.right-column .box-body { padding: 25px 30px; }
.right-column .box-body .categories li { margin-bottom: 15px; }
.right-column .box-body .categories li:last-child { margin-bottom: 0; }
.right-column .box-body .categories li a {
    height: 24px;
    color: var(--black-color);
    position: relative; }
.right-column .box-body .categories li a:hover { color: var(--primary-color); }
.right-column .box-body .categories li a .badge {
    background-color: #ddecf7;
    font-weight: var(--primary-font-bold);
    height: 20px;
    color: var(--black-color);
    padding: 0 7px;
    line-height: 20px; }
.right-column .recents li { margin-bottom: 20px; }
.right-column .recents li:last-child { margin-bottom: 0; }
.right-column .recent-img {
    width: 95px;
    border-radius: 3px;
    overflow: hidden; }
.right-column .recent-info {
    flex: none;
    width: 148px; }
.right-column .recent-info h5 {
    margin: 0;
    line-height: 20px;
    font-weight: var(--primary-font-bold);
    max-height: 40px;
    overflow: hidden;
    font-size: 14px; }
.right-column .recent-info h5 a { color: var(--black-color); }
.right-column .recent-info h5 a:hover { color: var(--primary-color); }
.right-column .recent-info .date { margin-top: 12px; }
.right-column .recent-info .date-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 15px; }
.right-column .recent-info .date-icon svg { width: 11px; }
.right-column .recent-info .date-txt {
    color: var(--gray-color);
    text-transform: capitalize; }
.right-column .tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -10px; }
.right-column .tags a {
    display: block;
    margin: 10px 0 0 10px;
    line-height: 30px;
    color: var(--gray-color);
    border-radius: 3px;
    padding: 0 10px;
    background-color: var(--silver-color); }
.right-column .tags a:hover {
    color: #fff;
    background-color: var(--black-color); }
.center-column { width: calc(100% - 360px); }
.center-column .list-blog {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    width: 750px;
    margin: 0 auto; } 
.center-column a.head-link { display: block; }
.center-column a.head-link:hover { box-shadow: 0px 10px 60px 0px rgba(0,0,0,0.1); }
.center-column .element-img {
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    position: relative; }
.center-column .element-img:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #020407;
    opacity: 0;
    z-index: 1;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease; }
.center-column a.head-link:hover .element-img:after { opacity: 0.2; }
.center-column .element-img span.play {
    position: absolute;
    width: 120px;
    height: 120px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
.center-column .element-img span.play .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    padding-left: 5px;
    z-index: 4; }
.center-column .element-img span.play .play-icon svg{ width: 40px; }
.center-column .element-img span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
.center-column .element-img span.play .ripple-1 { animation-delay: 0s; }
.center-column .element-img span.play .ripple-2 { animation-delay: 0.3s; }
.center-column .element-img span.play .ripple-3 { animation-delay: 1.7s; }
.center-column .element-info {
    background-color: #f8fafd;
    border: 1px solid var(--silver-color);
    border-top: none;
    border-radius: 0 0 5px 5px;
    padding: 40px; }
.center-column .element-info .title {
    font-weight: var(--primary-font-bold);
    font-size: 15px;
    line-height: 22px;
    color: var(--black-color);
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column a.head-link:hover .element-info .title { color: var(--primary-color); }
.center-column .element-info .tags { margin-top: 10px; }
.center-column .element-info .date-icon, 
.center-column .element-info .tags-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 15px; }
.center-column .element-info .date-icon svg, 
.center-column .element-info .tags-icon svg {
    width: 11px; }
.center-column .element-info .tags-box {
    line-height: 22px;
    max-height: 66px;
    overflow: hidden; }
.center-column .element-info .tags-txt {
    margin-right: 5px;
    color: var(--gray-color); }
.center-column .element-info .date { margin-top: 10px; }
.center-column .element-info .date-txt {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize; }
.center-column .element-info .description {
    margin-top: 15px;
    color: var(--gray-color);
    max-height: 44px;
    overflow: hidden;
    line-height: 22px; }
.center-column .pagination-box{
    width: 750px;
    margin: 40px auto 0 auto; }
.center-column .pagination-box .count{ color: var(--gray-color); }
.center-column .pagination-box .count b{ font-weight: var(--primary-font-bold); }
.center-column .pagination{ 
    margin: 0;
    border-radius: 0; }
.center-column .pagination span{ cursor: default !important; }
.center-column .pagination svg{ width: 22px; }
.center-column .pagination li{ margin-right: 8px; }
.center-column .pagination li:last-child{ margin-right: 0; }
.center-column .pagination span,
.center-column .pagination a{
    border-radius: 3px;
    display: block;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ddecf7;
    padding: 0;
    text-align: center;
    line-height: 40px;
    color: var(--black-color);
    margin: 0; }
.center-column .pagination .pagination-nav span,
.center-column .pagination .pagination-nav a{
    display: flex;
    align-items: center;
    justify-content: center; }
.center-column .pagination span:hover,
.center-column .pagination span:focus{
    background-color: #ddecf7;
    color: var(--black-color); }
.center-column .pagination .pagination-nav span{ color: #fff !important; }
.center-column .pagination a:hover{
    background-color: var(--silver-color);
    color: var(--black-color); }
.center-column .pagination .active span{
    background-color: var(--primary-color);
    color: #fff; }
.center-column .article-blog {
    width: 750px;
    margin: 0 auto; }
.center-column .article-img {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 500px; }
.center-column .article-img img { transform: translateY(-33px); }
.center-column .article-img a {
    position: relative;
    display: block;
    height: 100%;
    width: 100%; }
.center-column .article-img a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #020407;
    opacity: 0;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column .article-img a:hover:after { opacity: 0.2; }
.center-column .article-img a span.play {
    position: absolute;
    width: 180px;
    height: 180px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2; }
.center-column .article-img a span.play .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    padding-left: 7px;
    z-index: 4; }
.center-column .article-img a span.play .play-icon svg { width: 60px; }
.center-column .article-img a span.play .ripple{
    position: absolute;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,.5);
    animation: ripple 2s linear infinite;
    transition: background 0.1s ease;
    z-index: 3; }
.center-column .article-img a span.play .ripple-1 { animation-delay: 0s; }
.center-column .article-img a span.play .ripple-2 { animation-delay: 0.3s; }
.center-column .article-img a span.play .ripple-3 { animation-delay: 1.7s; }
.center-column .article-info {
    padding: 30px;
    background-color: #f8fafd;
    border: 1px solid var(--silver-color);
    border-top: none;
    border-radius: 0 0 10px 10px; }
.center-column .article-info .date-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 15px; }
.center-column .article-info .date-icon svg { width: 11px; }
.center-column .article-info .date-txt, 
.center-column .article-info .share h2 {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: capitalize; }
.center-column .article-info .share h2 {
    margin: 0 8px 0 0;
    font-weight: var(--primary-font-normal);
    line-height: 22px; }
.center-column .article-info .share li { margin-left: 7px; }
.center-column .article-info .share li a, 
.center-column .article-info .share li button {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    border: none;
    text-align: center;
    line-height: 24px;
    font-size: 13px; }
.center-column .article-info .share li a:hover, 
.center-column .article-info .share li button:hover {
    background-color: var(--primary-color);
    color: #fff; } 
.center-column .article-info h1.title {
    margin: 30px 0;
    font-size: 22px;
    font-weight: var(--primary-font-bold);
    line-height: 34px; }
.center-column .article-info .description h1{
    line-height: 30px;
    font-size: 20px;
    font-weight: var(--primary-font-bold); 
    line-height: 34px;
    margin: 0 0 15px 0; }
.center-column .article-info .description p+h1,
.center-column .article-info .description ul+h1{ 
    margin-top: 20px; }
.center-column .article-info .description h2{
    line-height: 26px;
    font-size: 18px;
    font-weight: var(--primary-font-bold);
    margin: 0 0 10px 0; }
.center-column .article-info .description p+h2,
.center-column .article-info .description ul+h2{ 
    margin-top: 15px; }
.center-column .article-info .description h3{
    line-height: 26px;
    font-size: 16px;
    font-weight: var(--primary-font-medium);
    margin: 0 0 10px 0; }
.center-column .article-info .description p{
    color: var(--gray-color);
    line-height: 26px; }
.center-column .article-info .description p strong,
.center-column .article-info .description p b{
    font-weight: var(--primary-font-medium);
    color: var(--black-color); }
.center-column .article-info .description ul{ margin: 15px 0; }
.center-column .article-info .description li{
    position: relative;
    color: var(--gray-color);
    line-height: 26px;
    padding-left: 20px;
    margin-bottom: 5px; }
.center-column .article-info .description li:last-child{ margin-bottom: 0; }
.center-column .article-info .description li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color); }
.center-column .article-info .description p a,
.center-column .article-info .description li a{
    color: var(--gray-color);
    text-decoration: underline; }
.center-column .article-info .description p a:hover,
.center-column .article-info .description li a:hover{ 
    color: var(--black-color); }
.center-column .article-info .tags {
    flex-wrap: wrap;
    margin-top: 30px; }
.center-column .article-info .tags a {
    margin-top: 10px;
    margin-right: 20px;
    color: var(--gray-color); }
.center-column .article-info .tags a:hover { color: var(--black-color); }
.center-column .article-info .tags-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddecf7;
    color: var(--black-color);
    margin-right: 10px;
    transition: 0.3s ease;
    -o-transition: 0.3s ease;
    -webkit-transition: 0.3s ease; }
.center-column .article-info .tags-icon svg { width: 11px; }
.center-column .article-info a:hover .tags-icon {
    background-color: var(--primary-color);
    color: #fff; }
.center-column .article-info .back { margin-top: 40px; }
.center-column .article-info .back a {
    display: inline-block;
    background-color: transparent;
    color: var(--black-color);
    text-transform: uppercase;
    padding: 0 40px 0 20px;
    line-height: 40px;
    height: 44px;
    position: relative;
    font-size: 13px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
    border: 1px solid var(--black-color);
    border-radius: 3px; } 
.center-column .article-info .back a:before {
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f30b";
    font-size: 11px;
    position: absolute;
    right: 20px;
    top: 0; }
.center-column .article-info .back a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff; }
@keyframes ripple{
    0%{transform:scale(.2);opacity:0}
    50%{opacity:.9}
    100%{transform:scale(1em);opacity:0}
}




/* Footer */
footer{
    background: #1f242e;
    padding: 70px 0;
    color: #fff; }
footer .info{
    position: relative;
    padding-top: 100px;
    background-image: url(../img/logo-white.png);
    background-repeat: no-repeat;
    background-position: 15px top; }
footer .info ul{
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px; }
footer .info ul:last-of-type{ margin-bottom: 0; }
footer .info li{ 
    line-height: 24px;
    color: #cfcfcf; } 
footer .info ul.phone li a{ 
    font-size: 18px;
    color: #fff;
    font-weight: var(--primary-font-bold); }
footer .info ul.phone li a:hover{ text-decoration: underline; } 
footer .links{ 
    padding-left: 30px;
    margin-top: 5px; }
footer .links .widget-html p{ 
    margin: 35px 0 0 0;
    font-weight: var(--primary-font-medium); }
footer .links .widget-html p img{ margin-left: 10px; }
footer .links .widget-html li{
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px; }
footer .links .widget-html li:last-child{ margin-bottom: 0; }
footer .links .widget-html li:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 2px solid var(--primary-color); }
footer .links .widget-html li a{ color: #cfcfcf; }
footer .links .widget-html li a:hover{ color: #fff; }
footer .links .social-block{ margin-top: 30px; }
footer .links .social-block,
footer .links .social-block ul{
    display: flex;
    align-items: center; }
footer .links .social-block h2{
    margin: 0 7px 0 0;
    font-size: 14px;
    font-weight: var(--primary-font-medium); }
footer .links .social-block li{ margin: 0 5px; }
footer .links .social-block li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--second-color);
    font-size: 13px;
    padding: 2px 0 0 0; }
footer .links .social-block li a:hover{
    background: var(--primary-color);
    color: #fff; }
footer .contact{ padding-left: 45px; }
footer .contact .contact-head{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
footer .contact h4{
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    font-size: 22px;
    line-height: 22px;
    margin: 0;
    color: #fff;
    flex: none;
    padding-right: 20px; }
footer .contact p.error{
    margin-bottom: 15px;
    color: #ea0a0a; }
footer .contact .form-group.alice { display: none; }
footer .contact .form-top { display: flex; }
footer .contact .form-top .left{
    flex: none;
    width: 60%;
    margin-right: 12px; }
footer .contact .form-group {
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
    width: 100%; }
footer .contact .form-control {
    padding: 0 20px;
    height: 40px;
    box-shadow: none;
    border-radius: 0;
    border: 2px solid #fff;
    background: #fff;
    color: var(--black-color); }
footer .contact .form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none; }
footer .contact .form-group textarea {
    height: 94px;
    line-height: 22px;
    padding: 12px 20px; }
footer .contact .ptd{ 
    margin: 18px 0 20px 0 !important;
    padding-top: 1px;
    display: flex;
    align-items: center; }
footer .contact .ptd label {
    font-weight: var(--primary-font-normal);
    margin: 0;
    color: #cfcfcf; }
footer .contact .ptd label a{
    font-weight: var(--primary-font-medium);
    color: #fff; }
footer .contact .ptd label a:hover{ text-decoration: underline; }
footer .contact .ptd div.checker {
    margin-right: 14px;
    width: 20px;
    height: 20px;
    top: -1px; }
footer .contact .ptd div.checker span {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px; }
footer .contact .submit{ 
    margin-bottom: 0 !important;
    display: flex;
    align-items: center; }
footer .contact .submit button{
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 0 55px 2px 40px;
    line-height: 40px;
    height: 44px;
    position: relative;
    font-size: 13px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    box-shadow: 0px 8px 15px rgba(0,0,0,0.1);
    border-radius: 3px; }
footer .contact .submit button:before {
    font-family: "FontAwesome5";
    font-weight: 900;
    content: "\f30b";
    font-size: 11px;
    position: absolute;
    right: 35px;
    top: 0; }
footer .contact .submit button:hover { 
    background: var(--primary-color);
    border-color: var(--primary-color); }
footer .contact .submit .sending {
    padding: 0 60px 0 30px;
    background: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    position: relative;
    line-height: 42px;
    height: 44px;
    font-family: var(--second-font);
    font-weight: var(--second-font-medium);
    border-radius: 3px; }
footer .contact .submit .sending:before{
    content: "";
    position: absolute;
    right: 30px;
    top: 11px;
    width: 20px;
    height: 20px;
    background: url(../img/ajax-loader.gif) no-repeat;
    background-size: cover; }

.copyright {
    color: var(--gray-color);
    text-align: center;
    line-height: 20px;
    padding: 20px 0; }

.wa-mobile {
    position: fixed;
    width: 56px;
    height: 56px;
    right: 25px;
    bottom: 25px;
    z-index: 9000; }
.wa-mobile a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    line-height: 56px;
    text-align: center;
    font-size: 34px;
    background: #25d366; }
.wa-mobile a:hover { background: #128c7e; }


/*** 3. Basic Default (Responsive) ***/
@media (min-width: 992px) and (max-width: 1200px) {
    
}

@media (min-width: 767px) and (max-width: 991px) {
    
}

@media (max-width: 767px) {
    .navbar-default { min-height: 0; }
    .navbar-default .navbar-toggle {
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 9999;
        margin: 0;
        border: 0;
        border-radius: 0;
        width: 40px;
        height: 40px;
        font-size: 20px;
        color: #fff;
        background: var(--primary-color); }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background: var(--primary-color); }
    .navbar-default .navbar-content{
        position: fixed;
        right: -100%;
        top: 0;
        z-index: 9998;
        width: 80%;
        height: 100% !important;
        background: rgba(255,255,255,0.9);
        padding-top: 70px;
        border-top: none;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        -o-transition: 0.4s ease;
        -webkit-transition: 0.4s ease; }
    .navbar-default .collapse{ display: block; }
    .navbar-default .navbar-content.in{ right: 0%; }
    .navbar-default .navbar-content ul {
        margin: 0;
        float: inherit;
        box-shadow: none; }

    .navbar-content li {
        margin: 0 !important;
        padding: 0; }
    .navbar-content li a {
        color: var(--black-color) !important;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 15px 30px;
        display: block;
        height: inherit;
        line-height: 20px; }
    .navbar-content li a:hover, 
    .navbar-content li.active a {
        background-color: transparent !important;
        color: var(--primary-color) !important;
        padding: 15px 30px !important;
        border-color: transparent !important; }
    .navbar-content li.request a {
        line-height: 48px;
        height: 50px;
        border-radius: 0; }
    .navbar-content li.request a:hover {
        padding: 0 40px 0 20px !important;
        background-color: var(--primary-color) !important;
        color: #fff !important; }

    .navbar-content .dropdown-menu {
        left: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important; }
    .navbar-content .dropdown-menu ul { padding: 0; }
    .navbar-content .open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important; }
    .navbar-content .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .navbar-content .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important; }
    .navbar-content .dropdown-menu li {
        border-bottom: none;
        padding-bottom: 0; }
    .navbar-content .dropdown-menu ul li a {
        font-size: 14px;
        padding: 12px 30px !important; }    

    .product-container .product-right {
        width: 100% !important;
        padding-left: 0 !important; }


    /* Blog */
    .d-flex.no-flex { display: block !important; }
    .center-column { width: 100%; }
    .center-column .list-blog {
        grid-template-columns: repeat(1, 1fr);
        width: 330px;
        margin: 0 auto; }
    .center-column .pagination-box {
        width: 330px;
        margin: 30px auto; }
    .center-column .pagination li { margin-right: 4px; }
    .center-column .pagination span, 
    .center-column .pagination a {
        width: 30px;
        height: 30px;
        line-height: 30px; }
    .center-column .article-blog { 
        width: 100%;
        margin-bottom: 40px; }
    .center-column .article-img { height: inherit; }
    .center-column .article-img img { transform: none; }
    .center-column .article-img a span.play {
        width: 120px;
        height: 120px; }
    .center-column .article-img a span.play .play-icon {
        width: 50px;
        height: 50px;
        padding-left: 4px; }
    .center-column .article-img a span.play .play-icon svg { width: 40px; }
    .center-column .article-img a span.play .ripple{
        width: 120px;
        height: 120px; }
    .right-column {
        width: 330px;
        padding-right: 0;
        margin: 0 auto; }



    .wa-mobile {
        right: 15px;
        bottom: 15px; }
}

@media (min-width: 479px) and (max-width: 767px) {
    
}
