.sidebar-box {
    position: relative;
    width: 100%;
    display: block;
    padding: 2.5rem;
}

.subscribe-box {
    position: relative;
    width: 100%;
    display: block;
}

.subscribe-box input {
    padding-top: 15px;
    padding-bottom: 15px;
}

.form-control {
    font-family: var(--font);
    font-weight: 400;
    padding: 0.8rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:active,
.form-control:focus {
    border-color: var(--primary-color);
    background-color: transparent;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.subscribe-box .btn.subscribe-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.separator-wrap {
    width: 100%;
    min-height: 1px;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    flex-direction: row;
    flex-wrap: no-wrap;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.separator-wrap p {
    margin-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.separator {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    min-width: 10%;
}

.separator-line {
    position: relative;
    height: 1px;
    display: block;
    top: 1px;
    width: 100%;
    border-top: 1px solid #e3e3e3;
}

.separator-line.med {
    border-top-width: 3px;
}

.separator-line.big {
    border-top-width: 8px;
    border-radius: 2px;
}

.separator-line.dashed {
    border-top-style: dashed;
    outline: none;
}

.list-style {
    margin: 0;
    list-style: none;
}

.list-style li {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.1rem;
}

.list-style li:first-child {
    margin-top: 0;
}

.list-style li:last-child {
    margin-bottom: 0;
}

.list-style.square li:before,
.list-style.circle-o li:before,
.list-style.circle li:before {
    font-family: 'Font Awesome 6 Free';
    color: var(--primary-color);
    font-size: 0.5rem;
    margin-right: 15px;
    display: inline-block;
    line-height: 1.1rem;
    height: 1.1rem;
    vertical-align: middle;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.list-style.circle li:before {
    content: '\f111';
}

.list-style.circle-o li:before {
    content: '\f10c';
}

.list-style.square li:before {
    content: '\f0c8';
}

.list-style li i {
    font-size: 0.8rem;
    line-height: 1.1rem;
    height: 1.1rem;
    width: 20px;
    text-align: left;
    margin-right: 10px;
}

.list-style a.btn-link {
    background-color: transparent;
    text-decoration: none;
    color: #212121;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.list-style a.btn-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    background-color: transparent;
    box-shadow: none;
}

/* Video Hover Image */
.video-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

.video-wrapper,
figure.vimeo,
figure.youtube {
    margin: 0;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure.youtube a img,
figure.vimeo a img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: none;
}

figure.vimeo a:after,
figure.youtube a:after {
    content: '';
    width: 60px;
    height: 60px;
    background: #212121;
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:after,
figure.youtube:hover a:after {
    box-shadow: 0px 0px 0px 1000px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

figure.vimeo a:before,
figure.youtube a:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--primary-color);
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -5px;
    display: block;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

figure.vimeo:hover a:before,
figure.youtube:hover a:before {
    border-left: 8px solid #fff;
    color: var(--primary-color);
}

figure.vimeo a:hover img,
figure.youtube a:hover img {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

figure.vimeo a img,
figure.youtube a img {
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: scale(1);
    transform: scale(1);
}
