/*  FONTS
====================================*/



/*  DEFAULT
====================================*/

img {
    max-width: 100%;
    height: auto;
}

svg {
    fill: currentColor;
}

.icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    vertical-align: -0.15em;
}

.icon-xs {
    width: 0.5rem;
    height: 0.5rem;
}

.icon-sm {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: -0.35em;
}

.icon-2x {
    width: 2rem;
    height: 2rem;
}

.icon-24 {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-28 {
    width: 28px;
    height: 28px;
}

.icon-38 {
    width: 38px;
    height: 38px;
}

.icon-3x {
    width: 3rem;
    height: 3rem;
}

.icon-4x {
    width: 4rem !important;
    height: 4rem !important;
}

.icon-5x {
    width: 5rem;
    height: 5rem;
}

.circle {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.help-block {
    font-size: 13px;
    padding: 0.25rem 0;
    display: block;
}

.has-error .error {
    color: #b30000 !important;
}

.has-error .form-control,
.has-error .custom-checkbox .custom-control-label::before {
    border-color: #b30000 !important;
}

.has-error .form-control::placeholder,
.has-error .custom-checkbox .custom-control-label {
    color: red !important;
}

.block {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.block-top {
    padding-top: 2rem;
}

.block-bottom {
    padding-bottom: 2rem;
}

.block-after{
    position: relative;
    overflow: hidden;
    padding-bottom:1rem;
}

.block-after::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom:0;
    width: 12rem;
    height: 10px;
    margin-left:-6rem;
    background-color: #B61B1B;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.block-after-bg {
    position: relative;
    padding-bottom: 8rem !important;
}
.block-after-bg:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 72px;
    background: url(../img/bg_block_after.png) no-repeat bottom center;
}

.title-bottom-line {
    position: relative;
    padding-bottom: 0.75rem;
}
.title-bottom-line:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4.8rem;
    height: 3px;
    background-color: #B61B1B;
}
.title-bottom-line.text-center:after {
    left: 50%;
    margin-left:-2.4rem;
}



.box {
    position: relative;
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 3px 5px 1rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}


.box:not(.no-hover):hover {
    color:#fff;
    background-color: #B61B1B;
}

.text-facebook {
    color: #3b5999;
}

.text-twitter {
    color: #55acee;
}

.text-youtube {
    color: #cd201f;
}

.text-instagram {
    color: #000;
}

.text-linkedin {
    color: #0077B5;
}

.text-border {
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    opacity: 0.07;
    font-weight: bold;
    font-size: 10vw;
    white-space: nowrap;
    position: absolute;
    top: 25%;
    left: 50%;
    margin-left: -13vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/*  HEADER
====================================*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.page-header{
    position: relative;
    background-color: #E6E6E6;
}
.page-header .navbar-expand-xl .navbar-nav .nav-link{
    color:#424242;
    border-radius: 0;
}
.page-header .navbar-expand-xl .navbar-nav .nav-link:hover{
    color: var(--primary) !important;
}
.page-header .navbar-brand__logo {
    display: none;
}
.page-header .navbar-brand__logo-fixed {
    display: block;
}
.page-header .navbar-expand-xl .navbar-nav .nav-item:hover .nav-link{
    color: var(--primary) !important;
}

.navbar-brand__logo {
    width: 117px;
    height: 50px;
}
.navbar-brand__logo-fixed {
    display: none;
}
.header--fixed .navbar-brand__logo {
    display: none;
}
.header--fixed .navbar-brand__logo-fixed {
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
}
.navbar-expand-xl .navbar-nav .nav-link{
    color:#FFFDFD;
    font-weight: 500;
    border-bottom:3px solid transparent;
}
.header--fixed .navbar-expand-xl .navbar-nav .nav-link{
    color:#424242;
    border-radius: 0;
}
.navbar-expand-xl .navbar-nav .nav-item:hover .nav-link{
    color:#FFFDFD;
    border-bottom-color: var(--primary);
}
.header--fixed  .navbar-expand-xl .navbar-nav .nav-item:hover .nav-link {
    color: #424242;
    border-bottom-color: var(--primary);
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown:hover .nav-link {
    background-color: transparent;
    border-color: #FFF1F4;
}
.navbar-nav .nav-link.active {
    color: #fff;
    background-color: #B61B1B;
    border-color: #B61B1B;
}

.navbar-toggler {
    position: relative;
    height: 2rem;
    width: 2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    margin-left: .5rem;
    background-color:#B61B1B;
}

.navbar-toggler i {
    display: block;
    position: absolute;
    top: 9px;
    right: 22.5%;
    width: 55%;
    height: 3px;
    transition: all 0.4s;
    border-radius: 1rem;
    background-color: #fff;
}

.navbar-toggler i:nth-child(2) {
    top: 15px;
    transition: all 0s;
}

.navbar-toggler i:nth-child(3) {
    top: 21px;
}

.menu--open,
.menu--open body {
    overflow: hidden;
}

.menu--open .navbar-toggler,
.btn-toggler.active {
    z-index: 19999;
}

.menu--open .navbar-toggler i:first-child,
.navbar-toggler.active i:first-child {
    top: 15px;
    -webkit-transform: rotate(135deg) !important;
    transform: rotate(135deg) !important;
}

.menu--open .navbar-toggler i:nth-child(2),
.navbar-toggler.active i:nth-child(2) {
    opacity: 0;
    left: 60px;
}

.menu--open .navbar-toggler i:nth-child(3),
.navbar-toggler.active i:nth-child(3) {
    top: 15px;
    -wekit-transform: rotate(-135deg) !important;
    transform: rotate(-135deg) !important;
}

.menu--open .bg-navbar {
    visibility: visible;
    z-index: 5999;
    opacity: 0.8;
}

.bg-navbar,
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.header--fixed .header .navbar,
.header-color.header--fixed .navbar {
    -webkit-animation: transform-top 0.4s;
    animation: transform-top 0.4s;
    height:74px;
}

.header--fixed .navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    -webkit-animation: transform-top 0.4s;
    animation: transform-top 0.4s;
    z-index: 16999;
    background-color: #fff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
}


/*  MAIN SLIDER
====================================*/
.main-slider {
    position: relative;
}

.main-slider .slick-track {
    display: flex;
}

.main-slider .slick-slide {
    position: relative;
    display: flex;
    height:auto;
}
.main-slider .slick-slide:before{
    position: absolute;
    content: "";
    background-color: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    display: block;
}

.main-slider .slider-bg {
    width:100%;
    max-height:900px;
    object-fit: cover;
}
.main-slider .slider-body {
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    display:flex;
}

.main-slider .slider-text {
    position: relative;
    font-size: 2.2rem;
    font-weight: 600;
}

.main-slider .slider-media {
    position: relative;
    z-index:20;
}
.main-slider .slider-image {
    display: inline-block;
}
.main-slider .custom-dots {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    z-index: 10;
    
}
.main-slider .slick-dots {
    transform: translate(0,0);
    margin:0;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 14px rgb(0 0 0 / 16%);
}





/*  MAIN
====================================*/

.card-product .card-img-top {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    height:280px;
}
.card-product .card-img-top img {
    object-fit: cover;
    height:100%;
    width: 100%;
    transition: transform 0.3s;
}
.card-product .card-title {
    font-size:1.25rem;
    color: #000;
}

.card-product:hover .card-img-top > img {
    transform:scale(1.1);
}
.card-product:hover .card-title {
    color: #B61B1B;
}

.block-account__body {
    position: relative;
}

.slider-account .slick-slide {
    height:auto;
}
.box-account {
    display:flex;
    flex-direction: column;
    align-items: center;
    font-size:14px;
    width:100%;
    border-radius: 4px;
    margin-bottom:0 !important;
    transition: all 0.3s;
    padding:1.5rem 0;
}
.box-account h3 {
    font-size:1rem;
    flex: 0 0 auto;
}
.box-account:not(:hover) h3 {
    color: #464646;
}
.box-account p {
    flex: 1 1 auto;
    line-height:20px;
}
.box-account .btn {
    min-width: 7rem;
    flex: 0 0 auto;
}
.box-account:hover {
    box-shadow: 0 3px 6px rgba(249,25,66,0.44);
}
.box-account:hover h3 {
    color: #fff;
    transition: all 0.3s;
}

.box-account:hover .box-account__icon {
    color: #fff;
    filter: brightness(0) invert(1);
}
.box-account:hover .btn-outline-primary,
.box-account .btn-outline-primary:not(:disabled):not(.disabled):active {
    color:#B61B1B;
    background-color: #fff;
    border-color: #fff;
    box-shadow:0 3px 6px rgba(0,0,0,0.16);
}
/* Block Blog */
.block-blog .slick-dots {
    box-shadow:none;
    padding:0;
}
.content-banner {
    position: relative;
    display:block;
    width:100%;
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.content-banner:after {
    content:"";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
    background-color:#000;
    border-radius: 6px;
    opacity: .3;
    transition: opacity 0.3s;
    z-index:1;
}
.content-banner__img {
    width:100%;
    transition: transform 0.3s;
    height: 370px;
    position: relative;
    overflow: hidden;
}
.content-banner__img img{
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.content-banner__body {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    z-index:9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-banner__date {
    font-weight: bold;
}

.content-banner__text {
    max-height: 0;
overflow: hidden;
line-height: 1.5;
transition: all 0.5s -0.125s ease-in-out;
}
.content-banner__tag {
    font-size:12px;
    line-height: 1;
    padding:0.25rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    transition: all 0.3s;
    background-color:rgba(255,255,255,0.3);
}
.content-banner:hover {
    color: #fff;
}
.content-banner:hover:after {
    visibility: visible;
    opacity: 0.55;
}
.content-banner:hover .content-banner__img {
    transform: scale(1.1);
}
.content-banner:hover .content-banner__text {
    max-height: 180px;
    transition:all 0.5s ease;
}
.content-banner:hover .content-banner__tag {
    background-color:#B61B1B;
    color: #fff;
}


/*  FOOTER
====================================*/
.footer-logo {
    opacity: 0.7;
}
.footer-contact .icon {
    display:flex;
    align-items: center;
    justify-content: center;
}



/* .btn-icon */
.btn-icon svg {
    transition: transform 0.4s ease;
}

.btn-icon:hover svg {
    transition: transform 0.4s ease;
    transform: translateX(0.5rem);
}


/*  PAGE HERO
====================================*/
.page-hero {border-bottom: 1px solid var(--secondary)}
.page-hero__title {
    font-size:22px;
    font-weight: 400;
    color: #000;
}
.list-group {border-radius: 0}
.list-group .list-group-item{font-size: .875rem; font-weight: 500; border: 0; padding:.25rem .75rem; margin: .375rem 0; border-left: 2px solid var(--primary)}

.list-group .list-group-item.collapsed{border-color: var(--white)}
.list-group .list-group-item{}
.list-group-submenu {margin-left: 1rem}
.list-group .list-group-submenu .list-group-item{border-color: var(--white)}
.list-group .list-group-submenu .list-group-item.active {
    z-index: 2;
    color: var(--primary);
    background-color: transparent;
    border-color:var(--primary);
}
.product-img{
    height: 400px; overflow: hidden; border: 2px solid #ddd;
    margin-bottom: 2rem;
    position: relative;
}
.product-img img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}


/* Box Icon */
.box-icon {
    display:flex;
    padding: 0.75rem 1rem;
    background:url(../img/bg_box-icon.png) no-repeat left center;
    background-size:auto 100%;
    box-shadow:0 1px 6px rgba(0,0,0,0.1);
}
.box-icon__icon {
    width:56px;
    height:56px;
    display:flex;
    align-items: center;
    justify-content: center;
    color:#B61B1B;
    line-height: 0;
    background-color: #fff;
    border:3px solid #fff;
    border-radius: 50%;
    flex:0 0 auto;
    transition: all 0.3s;
}
.box-icon__body {
    display:flex;
    align-items:center;
    flex:1 1 auto;
    line-height: 1.4;
    padding-left:2rem;
}

.box-icon:hover {
    background-image:url(../img/bg_box-icon_hover.png);
}
.box-icon:hover .box-icon__icon {
    background-color:transparent;
    color: #fff;
}
.figure-text {
    color: #fff;
    text-align: center;
    padding:0.5rem;
    font-weight: 500;
    background-color:#192E3F;
}

/* Box İcontext */

.box-number {
    position: absolute;
    
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #B61B1B;
    border: 5px solid #FAFAFA;
    border-radius: 50%;
    transition: all 0.3s;
}

.box-number__left {
    top: -1.5rem;
    left: -1.5rem;
}
.box-number__right {
    top: -1.5rem;
    right: -1.5rem;
}
.box-number__top {
    top: -1.5rem;
    margin-left: -1.5rem;
    left:50%;
}

.box-icontext {
    text-align:center;
}

.box-icontext:not(:hover) .box-icontext__title {
    color: #2A2A2A;
}

.box-icontext__icon {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    width:4.5rem;
    height:4.5rem;
    color:#B61B1B;
    border:1px solid #B61B1B;
    border-radius: 50%;
}

.box-icontext__icon.no-circle {
    border:0;
    width:inherit;
    height:inherit;
}

.box-icontext:hover .box-icontext__icon:not(.no-circle) {
    background-color: #fff;
}

.box:hover .box-number {
    color: #B61B1B;
    background-color: #FFFFFF;
}
.box:hover .hover-white {
    color: #fff;
    filter: brightness(0) invert(1);
}

.table-accept-money {
    border-spacing: 5px;
    border-collapse: separate;
}

.table-accept-money thead th {
    color: #16462B;
    background-color:#D9EFE2;
}
.table-accept-money tbody td {
    vertical-align: middle;
    padding:0.5rem 0.75rem;
    color:#16462B;
    font-weight: 500;
}


/*  BLOG
====================================*/
.blog-hero, .search-hero {
    min-height: 225px;
    display: flex;
}

.blog-hero:before, .search-hero:before {
    height: 225px;
}

.blog-hero .container, .search-hero .container {
    display: flex;
}

.blog-hero .page-hero__wrapper, .search-hero .page-hero__wrapper {
    justify-content: center;
    width: 100%;
}

.blog-hero .page-hero__title, .search-hero .page-hero__title {
    color: #000;
    border-bottom-color: #fff;
}

.blog-hero .breadcrumb li a, .search-hero .breadcrumb li a,
.blog-hero .breadcrumb li, .search-hero .breadcrumb li,
.blog-hero .breadcrumb-item+.breadcrumb-item::before, .search-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

.blog-hero .breadcrumb .breadcrumb-item.active, .search-hero .breadcrumb .breadcrumb-item.active {
    color: #000;
    font-weight: bold;
}

.blog-hero .breadcrumb li:hover a, .search-hero .breadcrumb li:hover a {
    color: #000;
    text-decoration: underline;
}

/* Banner Box */
.blog-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-item__media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 0;
}

.blog-item__media::before {
    display: block;
    content: "";
    padding-top: 48%;
}

.blog-item__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-item__body {
    padding-top: 1rem;
}

.blog-item__date {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.blog-item__title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.blog-item__title a {
    color: inherit;
}

.blog-item:hover .blog-item__image {
    transform: scale(1.05);
}

.blog-item:hover .blog-item__title {
    color: #FED430;
}

/* Blog İtem */

.blog-item__banner .blog-item__media::before,
.blog-detail__media::before {
    padding-top: 52.25%;
}


.js-blog-list {
    margin-bottom: 2rem;
}

.js-blog-list .slick-list {
    margin-left: -1rem;
    margin-right: -1rem;
}

.js-blog-list .slick-slide {
    padding-left: 1rem;
    padding-right: 1rem;
}

.js-blog-list .slick-arrow {
    top: 100%;
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    border-radius: 0;
}

.js-blog-list .slick-prev {
    left: calc(50% - 2rem - 0.25rem);
}

.js-blog-list .slick-next {
    right: calc(50% - 2rem - 0.25rem);
}


/* Widget */
.widget {
    display: block;
    margin-bottom: 1.5rem;
}

.widget-title:after {
    content:"";
}
.widget-search .form-control {
    border-radius: 5px !important;
}
.widget-search .form-control:focus {
    background-color: #fff !important;
    border-color: #B61B1B !important;
}

.widget-search .input-group .input-group-append {
    position: absolute;
    right: 0;
    z-index: 9;
    height:100%;
}

.recent-list li {
    display: flex;
    align-items: center;
    padding:1rem 0;
    margin-bottom:0;
}
.recent-list li:first-child {
    padding-top:0 !important;
}
.recent-list li + li {
    border-top:1px solid #BCBCBC;
}
.recent-list li .media {
    width: 85px;
    flex: 0 0 85px;
    height: 85;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.recent-list li .media img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: all 0.3s;
}

.recent-list li .body {
    flex: 1 1 auto;
    padding-left: 1rem;
}

.recent-list li .body .date {
    display:inline-block;
    font-size: 12px;
    line-height: 1;
    color: #898989;
    padding:0.5rem;
    background-color:#F8F8F8;
    border-radius: 3px;
}

.recent-list li .body .title {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.recent-list li .body .title a {
    color: inherit;
}

.recent-list li:hover .body .title {
    color: #B61B1B;
}
.recent-list li:hover .media img {
    transform: scale(1.1);
}

.widget-social .social-menu li a {
    width:2.5rem;
    height:2.5rem;
    background-color:#F6F6F6;
    border-radius: 50%;
}


.widget-category ul li+li {
    border-top: 1px solid rgba(188,188,188,0.59);
}

.widget-category ul li a {
    position: relative;
    display: block;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #393939;
}

.widget-category ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 7px;
    height: 3px;
    background-color:#D7D7D7;
}

.widget-category ul li a:hover,
.widget-category ul li.active a {
    color: #B61B1B;
    text-decoration: none;
}
.widget-category ul li a:hover:before {
    background-color:#B61B1B;
}

.widget-tags ul {
    display: flex;
    flex-wrap: wrap;
}

.widget-tags ul li {
    flex: 0 0 auto;
    
}

.widget-tags ul li a,.tag {
    display: block;
    color: #A5A5A5;
    padding: 0.25rem .625rem;
    margin: 0 0.5rem 0.5rem 0;
    background-color: #F5F6F6;
}

.widget-tags ul li a:hover, .tag:hover {
    color: #fff;
    background: #B61B1B;
    text-decoration: none;
}

.blog-meta li {
    padding:0 0.25rem;
}
.blog-meta li + li:before {
    content:"|";
    line-height: 1;
    display: inline-block;
    padding-right: 0.5rem;
}
.blog-item__media {
    margin-bottom: 1rem;
}



.social-menu {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center !important;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-direction: row !important;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.social-menu li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    font-size: 1.125rem;
    color: #A0A0A0;
    white-space: nowrap;
    line-height: 1;
    padding: 0.5rem;
    transition: all 0.3s linear;
    margin-right: 0.75rem;
}

.social-menu li a img {
    border-radius: 0.25rem;
}

.article-social .social-menu li {
    margin-right: 0.75rem;
}

.article-social .social-menu li a {
    border-radius: 50%;
    margin: 0.25rem 0;
}

.article-social .social-menu__label {
    font-weight: bold;
}

.bg-facebook {
    color: #fff !important;
    background-color: #3b5999;
}
.bg-twitter {
    color: #fff !important;
    background-color: #55acee;
}
.bg-linkedin {
    color: #fff !important;
    background-color: #0077B5;
}
.bg-whatsapp {
    color: #fff !important;
    background-color: #25D366;
}
.bg-mail {
    color: #fff !important;
    background-color: #333333;
}

.hover-facebook:hover {
    color:#3b5999 !important;
}
.hover-twitter:hover {
    color:#55acee !important;
}
.hover-linkedin:hover {
    color:#0077B5 !important;
}
.hover-youtube:hover {
    color:#cd201f !important;
}
.hover-instagram:hover {
    color:#4E433C !important;
}

.article-tags ul li a {
    border-radius: 3px;
}

.search-hero .page-hero__body {
    max-width: 30rem;
    width:100%;
}
.search-hero .input-group-append {
    position: absolute;
    right: 0;
    z-index:9;
}

.search-result li {
    display:flex;
    flex-wrap:wrap;
    padding:1rem;
    margin-bottom: 1rem;
}
.search-result li:nth-child(2n+1) {
    background-color:#F5F6F6;
}

.search-result__media {
    flex: 0 0 auto;
    width:100%;
    
}
.search-result__media::before {
    padding-top: 52%;
}

.search-result__body{
    flex: 1 1 auto;
    width:100%;
    padding:1rem;
}
.search-result__body h5 {
    margin-bottom: 0.5rem;
}
.search-result__body a {
    color:inherit;
}
.search-result__body a:hover {
    color:#FEBE2C;
}
.search-result__body p {
    margin-bottom: 0;
}

.image-zoom {
    position: relative;
    overflow: hidden;
    display: block;
}

.image-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.image-zoom:hover img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

.article-body blockquote {
    position: relative;
    padding:0.5rem 0 0.5rem 1.75rem;
    margin:1.5rem 0;
}
.article-body blockquote:before {
    content:"";
    position: absolute;
    left:0;
    top:0;
    width:12px;
    height:100%;
    background-color:#B61B1B;
}
.article-body ul {
    list-style-type: square;
}
.article-body ul li {
    padding-top:0.125rem;
    padding-bottom: 0.125rem;
}


/* Rate */
.rate {
    display: inline-block;
}

.rate-input {
    position: absolute;
    top: -9999px;
}

.rate-label {
    float:right;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    color: #b7b7b7;
    margin-left: 0.75rem;
    margin-bottom: 0;
    position: relative;
    text-indent: 9999px;
    line-height: 1;
    width:1.75rem;
    height:1.75rem;
    background: url(../img/star_white.svg) no-repeat center center;
    background-size:cover;
}


.rate>.rate-input:checked~.rate-label {
    background-image: url(../img/star_active.svg);
}

.rate:not(:checked)>.rate-label:hover,
.rate:not(:checked)>.rate-label:hover~.rate-label {
    background-image: url(../img/star_active.svg);
}


.embed-map {
    padding-top:30rem;
}
.form-search .input-group .form-control {
    min-height: 4.5rem;
    padding-right: 8rem;
}
.form-search .input-group .input-group-append {
    right: 0.75rem;
    height: calc(100% - 1.5rem);
    top: 0.75rem;
}
.form-search .input-group .input-group-append > .btn {
    border-radius:5px;
}

/*  CROSS BROWSER
====================================*/
/*Internet Explorer */
/* IE-10 */
/* Safari */
.safari .form-control,
.safari .btn {
    line-height: normal;
}


/*  MEDIA QUERY
====================================*/

@media (max-width: 1199px) {

    html,
    body {
        overflow-x: hidden;
    }


    .navbar-collapse {
        position: fixed;
        display: block !important;
        align-items: flex-start;
        left: 0;
        top: 0;
        padding: 7rem 2rem 2rem 2rem;
        width: 100%;
        height: 100vh !important;
        max-width: 40rem;
        transform: translateX(-110%);
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
        transition: transform 0.5s;
        overflow: hidden;
        overflow-y: auto;
        z-index: 999;
    }

    .menu--open .navbar-collapse {
        transform: translateX(0%);
        z-index: 6999;
    }

   
    .navbar-nav {
        margin-bottom: 1.5rem;
    }

    .navbar-nav .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 0;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom-width: 0;
    }

    .navbar-nav .dropdown-toggle::after {
        position: absolute;
        right: 7px;
        top: 25px;
        transition: all 0.3s;
    }

    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar-nav .dropdown-menu {
        background-color: transparent;
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,0.075);
        box-shadow:none;
    }

    .navbar-nav .dropdown-item {
        padding-left: 1rem;
        padding-right: 1rem;
        color: #707070;
        font-size:14px;
    }

    .navbar-nav .dropdown-item.active {
        color: #FEC82E;
    }

    .navbar .social-menu {
        text-align:center;
        display:flex;
        max-width:280px;
    }
    .navbar .social-menu li {
        flex:1 1 auto;
    }
    .navbar .social-menu li a {
        margin-right: 0;
    }
    

    .main-slider .slider-bg {
        min-height: 70vh;
        object-fit: cover;
    }
    .table-account .btn-md {
        padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    }

}

@media (max-width: 991px) {
   
    .main-slider .slider-body>.row {
        flex-direction: column-reverse;
    }
    .main-slider .slider-text {
        line-height: 1.4;
    }
    .main-slider .slider-media {
        text-align: center;
        padding-left:0;
        padding-right:0;
        
    }

    .main-slider .slider-media img {
        margin: 0 auto;
        width:100%;
    }
    .main-slider .slider-content {
        padding-top:1rem;
    }
    .main-slider .slider-content img {
        max-height: 3.5rem;
    }

    .block-media__body {
        margin-bottom: -3rem;
    }

    .menu--open .navbar-brand {
        position: relative;
        z-index: 7999;
    }
    .slider-account .slick-slide {
        padding-top:1rem;
        padding-bottom: 1rem;
    }

    .navbar .social-menu li .icon {
        width:1.5rem;
        height:1.5rem;
        color: #707070;
    }
    .main-slider .slider-body {
        text-align: center;
    }
    .main-slider .slider-media img {
        max-height: 25rem;
    }
    .main-slider .play-icon {
        padding:0.5rem;
    }
    .main-slider .play-icon__inner {
        width:2.5rem;
        height:2.5rem;
    }
    .main-slider .custom-dots {
        text-align: center;
    }
    
    
}

@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }

    .header-top__link span,
    .main-slider .slick-slide:after,
    .article-prev-next .content-banner__text,
    .header-lang .nav-link span,
    .header-lang:before {
        display:none;
    }
    .navbar {
        padding-top:0.75rem;
        padding-bottom:0.75rem;
    }
    .header-button a {
        padding-left: 1rem;
        padding-right: 1rem;
        flex: 1 1 auto;

    }
    .header--fixed .header .navbar {
        height: 72px;
    }
    .navbar-collapse {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar .social-menu {
        max-width:100%;
    }
    .header-lang {
        margin-left: 0;
        padding-left:0;
    }
    
    .header-right {
        margin-left:auto;
    }
    .block-product {
        padding-top:3rem;
    }
    .card-product .card-title {
        font-size:13px;
        min-height: 2rem;
    }
    .card-product .font-sm {
        font-size:12px;
    }
    .card-product__rate {
        font-size:12px;
    }

    .card-product .js-chart {
        max-height: 60px;
    }
    .main-slider .slider-bg {
        min-height: 75vh;
    }
    .main-slider .slick-slide {
        padding-bottom:0;
    }
    .main-slider .slider-text {
        font-size:22px;
    }
    .main-slider .btn {
        padding: 0.5rem 0.5rem;
        font-size:13px;
    }
    .main-slider .custom-dots {
        bottom:0.5rem;
    }

    .block-account__body {
    }
    
    .table-account .table th, .table-account .table td {
        padding:0.5rem;
    }
    

    .box-step {
        width: calc(100% - 3rem);
        margin-left: auto;
        margin-right: auto;
    }
    .box-step {
        margin-bottom:2.5rem;
    }
    .content-banner__body {
        padding:1rem;
    }
    .content-banner__title {
        font-size:14px;
        margin-bottom: 0.5rem;
    }
    .block-contact .h4 {
        line-height: 1.6;
        font-size: 14px;
        max-width: 60%;
        margin: 1rem auto;
    }

    .footer-social {
        padding:1rem;
        background-color: #F4F4F4;
        border-radius: 5px;
        margin-bottom:1rem;
    }

    .box-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size:1.25rem;
        border-width: 3px;
    }
    .box-number__left {
        top: -1rem;
        left: -1rem;
    }
    .box-number__right {
        top: -1rem;
        right: -1rem;
    }
    .box-number__top {
        top: -1rem;
        margin-left:-1.25rem;
    }

    .table-accept-money {
        font-size:12px;
        line-height: 1.3;
        border-spacing: 2px;
        border-collapse: separate;
        text-align:center;
    }

    .table-accept-money td span {
        display:block;
        padding-top:0.25rem;
    }
    .metatrader-buttons .btn {
        min-width: inherit;
        font-size: 15px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .box-account p {
        font-size:10px;
        line-height: 1.3;
    }
    .footer-body {
        max-width: 70%;
        margin: 0 auto;
    }
    .content-banner__text {
        font-size:13px;
    }
    .block-after-bg {
        padding-bottom: 2rem !important;
    }
    .block-after-bg:after {
        height:2rem;
        background-size:200% auto;
    }
}

@media (max-width: 567px) {
    .card-product .js-chart {
        max-height: 2.5rem;
    }
}

@media (max-width: 374px) {}

@media (min-width: 568px) {}

@media (min-width: 568px) and (max-width: 767px) {}

@media (min-width: 768px) {
    .block {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .block-top {
        padding-top: 2.5rem;
    }

    .block-bottom {
        padding-bottom: 2.5rem;
    }

    .icon-md-2x {
        width: 2rem;
        height: 2rem;
    }

    .icon-md-3x {
        width: 3rem;
        height: 3rem;
    }

    .icon-md-4x {
        width: 4rem;
        height: 5rem;
    }

    .icon-md-5x {
        width: 5rem;
        height: 5rem;
    }

    .box-step {
        margin-bottom: 0 !important;
    }
    .footer-social-copyright {
        padding:1rem;
        background-color: #F4F4F4;
        border-radius: 5px;
    }
    .table-accept-money td span {
        display:inline-block;
        padding-left: 0.75rem;
    }

}

@media (min-width: 568px) and (max-width: 991px) {}

@media (min-width: 768px) and (max-width: 991px) {
    .widget-social .social-menu li a {
        width: 2.25rem;
        height: 2.25rem;
        margin-right: 0.5rem;
    }
}

@media (min-width: 992px) {
    .box {
        margin-bottom: 2rem;
    }
    .main-slider .slider-content {
        margin-bottom: 15%;
    }
    .main-slider .slider-media {
        text-align:right;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .box-icontext {
        padding:1.5rem;
    }
    .widget {
        margin-bottom: 2rem;
    }
    .box-currency {
        padding-top:2rem;
        padding-bottom:2rem;
    }
    .footer .list-arrow {
        position: relative;
        margin-top:-7px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {

    .block {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .block-top {
        padding-top: 4rem;
    }

    .block-bottom {
        padding-bottom: 4rem;
    }
    .box-icon__body {
        padding-left:3rem;
    }
    .widget {
        margin-bottom: 2.5rem;
    }
    .recent-list li {
        padding:1.5rem 0;
    }
    .box-currency {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .box-currency__icon {
        margin-top:0.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1360px) {}

@media (min-width: 1600px) {
    .main-slider .custom-dots {
        left: -5%;
    }
    .main-slider .slick-slide:after {
        background-size: auto 100%;
    } 
}

@media (min-width: 1200px) and (max-width: 1899px) {}

@media (min-width: 1900px) {
    .block {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .block-top {
        padding-top: 4.5rem;
    }

    .block-bottom {
        padding-bottom: 4.5rem;
    }

}

@media (min-width: 2100px) {}

@media (min-width: 2500px) {}

::selection {
    color: #ffffff;
    background-color: #2a2a2a;
}

::-moz-selection {
    color: #ffffff;
    background-color: #2a2a2a;
}

::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #B61B1B;
    border-radius: 0;
}