/*=========================== FOOTER 1 STYLE ===========================*/
.bg-footer1 {
    background: #272c33;
    color: #b5b5b5;
    font-size: 16px;
}

.footer-about{
    text-align: left;
    padding: 20px 0px;
}

.footer-about .logo img {
    width: 160px; 
}

.footer-about .text {
    color: #fff;
    line-height: 30px;
    margin-top: 20px; 
}

.footer-about .link-wrapper .footer-title .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff; 
}

.footer-about ul.footer-social {
    margin-top: 20px; 
}

.footer-about ul.footer-social a {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    margin: 0px;
}

.footer-about ul.footer-social a:hover {
    transform: scale(1.05);
}

.footer-about ul.footer-social li {
    display: inline-block;
    margin-right: 10px; 
}

.footer-about ul.footer-contact {
    margin-top: 25px; 
    list-style-type: none;
}

.footer-about ul.footer-contact li {
    margin-top: 10px; 
}

.footer-about ul.footer-contact li i {
    font-size: 22px;
}

.footer-about ul.footer-contact li .icon {
    width: 20px;
    color: #fff;
    text-align: center;
    border-radius: 50%;    
    display: inline-block;
    margin-right: 10px;
}

.footer-about ul.footer-contact li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
}

.footer-about ul.footer-contact li a:hover {
    color: #CA2A2A; 
    text-decoration: none;
}

.footer-about ul.footer-contact li span {
    color: #FFFFFF;
}

@media (max-width: 768px){
    .footer-about{
        text-align: center;
        border-bottom: 1px solid #FFFFFF;
    }
}

.footer-link{
    padding-top: 20px;
}

.footer-link .link-wrapper .footer-title .title {
    font-size: 20px;
    font-weight: 700;
    color: #fff; 
}

.footer-link .link-wrapper .footer-title .icon {
    display: none;
}

.footer-link ul.footer-contact {
    list-style-type: none;
    padding: 0px 15px;
}

.footer-link ul.footer-contact li {
    margin-top: 10px; 
}

.footer-link ul.footer-contact li a {
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
}

.footer-link ul.footer-contact li a:hover {
    color: #CA2A2A; 
    text-decoration: none;
}

@media (max-width: 768px){
    .footer-link .link-wrapper .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-link .link-wrapper .footer-title .title{
        font-size: 19px;
    }

    .footer-link .link-wrapper .footer-title .icon {
        display: block;
    }
}
/*=========================== FOOTER 1 STYLE ===========================*/

/*=========================== FOOTER 2 STYLE ===========================*/
.bg-footer2 {
    background: #181b1f;
    color: #b5b5b5;
    font-size: 12px;
}

.copyright-content-area {
    text-align: left;
}

.copyright-policy-area {
    text-align: right;
}

.copyright-policy-area a{
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; 
}

.copyright-policy-area a:hover {
    color: #CA2A2A; 
    text-decoration: none;
}

@media (max-width: 760px){
    .copyright-content-area {
        text-align: center;
    }
    
    .copyright-policy-area {
        text-align: center;
    }
}
/*=========================== FOOTER 2 STYLE ===========================*/

/*=========================== POPUP COOKIE css ===========================*/
.cookie-notice {
    position: fixed;
    width: 100%;
    bottom: -90px;
    z-index: 999;
    opacity: 0;
    transition: all 1.20s ease;
}

.cookie-notice.cookie-notice-hide {
    opacity: 1;
    bottom: -90px;
}

.cookie-notice.cookie-notice-show {
    opacity: 1;
    bottom: 0px;
}

@media (min-width: 768px) {
    .cookie-notice {
        bottom: -140px;
        transition: all 1.50s ease;
    }
    
    .cookie-notice.cookie-notice-hide {
        bottom: -140px;
    }
}

@media (min-width: 360px) {
    .cookie-notice {
        bottom: -180px;
        transition: all 2s ease;
    }
    
    .cookie-notice.cookie-notice-hide {
        bottom: -270px;
    }
}

.cookie-notice .background {
    background-color: rgb(99 0 0 / 90%);
    color: #fff;
    padding: 15px 0px;
    box-shadow: 0px -5px 20px #540a0a;
}

.cookie-content {
    font-size: 14px;
}

.cookie-notice .cookie-content {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

@media (min-width: 1200px) {
    .cookie-notice .cookie-content {
        width: 65%;
        margin-bottom: 0px;
        text-align: left;
    }
}

.cookie-notice .cookie-btn {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}

@media (min-width: 1200px) {
    .cookie-notice .cookie-btn {
        width: 30%;
        text-align: right;
    }
}

.cookie-notice .cookie-header {
    text-align: right;
    display: none;
}

.cookie-notice .cookie-header .btn-cookie-close {
    color: #fff!important;    
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.cookie-notice .cookie-header .btn-cookie-close:focus {
    color: #fff!important;    
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.cookie-notice .cookie-btn .btn-setting {
    min-width: 100px!important;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.15)!important;
    border: solid 2px #fff!important;
    background-color: transparent!important;
    color: #fff!important;
    font-size: 16px!important;
    /* padding: 0!important; */
    font-weight: 400!important;
    transition: all .4s ease;
}

.cookie-notice .cookie-btn .btn-accept {
    margin-left: 8px!important;
    min-width: 100px!important;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.15)!important;
    border: solid 2px #fff!important;
    background-color: #dc3545!important;
    color: #fff!important;
    font-size: 16px!important;
    height: 40px!important;
    /* padding: 0!important; */
    font-weight: 400!important;
    transition: all .4s ease;
}

@media screen and (max-width: 576px) 
{
    .cookie-notice .cookie-btn .btn-setting {
        font-size: 14px!important;
        margin-right: 10px!important;
    }

    .cookie-notice .cookie-btn .btn-accept {
        font-size: 14px!important;
        margin-left: 10px!important;
    }
}

.cookie-notice .cookie-btn .btn-cookie-close {
    color: #fff!important;    
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

.cookie-notice .cookie-btn .btn-cookie-close:focus {
    color: #fff!important;    
    box-shadow: 0 0 0 0rem rgb(0 123 255 / 25%);
}

@media (max-width: 1200px) {
    .cookie-notice .cookie-btn .btn-cookie-close {
        display: none;
    }

    .cookie-notice .cookie-header {
        text-align: right;
        display: block;
    }
}

.cookie-choice {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: 0.25rem;
}

.cookie-choice .cookie-choice-header {
    padding: 0.75rem 1.00rem;
    background-color: #dc3545;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.cookie-choice .cookie-choice-header a{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    padding-left: 5%;
    width: 60%;
}

.cookie-choice .cookie-choice-header .header{
    font-weight: 600;
}

.cookie-choice .cookie-choice-header .choice{
    color: #FFFFFF;
    font-size: 14px;
}

.cookie-choice .cookie-choice-detail {
    background-color: rgb(220 53 69/ 80%);
    color: #FFFFFF;
}

.cookie-choice .cookie-choice-detail .content {
    padding: 0.75rem 1.00rem;
}

.cookie-choice .cookie-choice-detail p {
    line-height: 26px;
    margin: 0px; 
    font-size: 14px;
}

.cookie-choice .collapsible-link::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    position: absolute;
    top: calc(50% - 1px);
    right: 95%;
    display: block;
    transition: all 0.3s;
}
  
.cookie-choice .collapsible-link::after {
    content: '';
    width: 2px;
    height: 14px;
    background: #FFFFFF;
    position: absolute;
    top: calc(50% - 7px);
    right: calc(95% + 6px);
    display: block;
    transition: all 0.3s;
}
  
.cookie-choice .collapsible-link[aria-expanded='true']::after {
    transform: rotate(90deg) translateX(-1px);
}
  
.cookie-choice .collapsible-link[aria-expanded='true']::before {
    transform: rotate(180deg);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    top: 3px;
    margin-bottom: 0px;
}

.switch input {
    display:none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: #2196F3;
}
  
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 30px;
}
  
.slider.round:before {
    border-radius: 50%;
}

/*red color
-------------------------------
*/
.slider-red {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #a9a9a9;
    -webkit-transition: .4s;
    transition: .4s;
    border: 2px solid #FFFFFF;
}

.slider-red:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider-red {
    background-color: #ffc107;
    border: 2px solid #FFFFFF;
}

input:focus + .slider-red {
    box-shadow: 0 0 1px #FE2712;
}

input:checked + .slider-red:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider-red.round {
    border-radius: 34px;
}

.slider-red.round:before {
    border-radius: 50%;
}
  
/*=========================== POPUP COOKIE css ===========================*/

/*===== BACK TO TOP =====*/
.back-to-top {
    font-size: 20px;
    color: #fff;
    position: fixed;
    /* right: 34px;
    bottom: 100px; */
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background: -webkit-linear-gradient(left, #361cc1 0%, #2e82ef 100%);
    background: -o-linear-gradient(left, #361cc1 0%, #2e82ef 100%);
    background: linear-gradient(to right, #ca2a2a 0%, #da4d4d 100%);
    text-align: center;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: none; 
}

.back-to-top:hover {
    color: #fff; 
}