@charset "utf-8";
/* CSS Document */
.btn-whatsapp {
    position: relative;
    display: inline-block;
    box-sizing: content-box;
    width: 70px;
    height: 70px;
    border-radius: 100%;
	border: none;
	outline: none !important;
    background-color: #25D366;
}
.btn-whatsapp:hover:before {
    background-color: #06A3DA;
}
.btn-whatsapp:hover:after {
    background-color: #06A3DA;
}
.btn-whatsapp:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}
.btn-whatsapp:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
	background: url("img/ws-logo.webp") center center no-repeat;
    border-radius: 100%;
    transition: all 200ms;
}
.btn-whatsapp span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--light);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}
.btn-more {
    position: relative;
    display: inline-block;
    width: 72px;
    height: 70px;
	border-color: transparent;
    border-radius: 0;
    background-color: transparent;
	background-image: url("img/right-arrow-a.svg");
}
.btn-more:hover {
	background-image: url("img/right-arrow-b.svg");
	border-width: 3px;
	background-color: aliceblue;
}
.btn-more:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, .7);
    border-radius: 0;
    animation: pulse-border 1500ms ease-out infinite;
}
.btn-more:after {
    content: "";
    position: absolute;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    display: inline-flex;
    width: 70px;
    height: 70px;
    background-color: transparent;
	
    border-radius: 0;
    transition: all 200ms;
}
.btn-play {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    border: 2px solid transparent;
    outline: none !important;
    background-color: #fff !important;
	background: url("img/play-carousel-a.svg") center center no-repeat;
}
.btn-play:hover {
    border-color: #fff;
    background-color: transparent !important;
	background: url("img/play-carousel-b.svg") center center no-repeat;
}
.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background-color: #fff;
	border: 2px solid transparent;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}
.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background-color: transparent;
	border: 2px solid transparent;
    border-radius: 100%;
    transition: all 200ms;
}
.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 20px solid var(--primary);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}
.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}
.modal-video .modal-body {
    position: relative;
    padding: 0px;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #252525;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}
.modal-title {
    margin-bottom: 0;
	margin-left: 1rem;
    line-height: 1.5;
	color: #BFBAB0
}
.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: .5rem .9rem .5rem auto
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #17171C;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0px;
    outline: 0
}
.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}