@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
}

.arcscissors h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.bg-video video {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-arcscissors-container {
    max-width: 612px;
    margin: auto;
    padding: 60px 16px;
}

.arcscissors img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.arcscissors {
    text-align: center;
}

.arcscissors h1 {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.bg-video {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
}

.arcscissors-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arcscissors-card h3 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
}

.single-card {
    position: relative;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: rgb(34, 19, 26);
    color: rgb(241, 232, 232);
    box-shadow: rgba(241, 232, 232, 0.24) 0px 2px 8px 0px;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
    border-radius: 0px;
}

.single-card:hover {
    box-shadow: rgba(241, 232, 232, 0.24) 0px 4px 12px 0px;
    transform: scale(1.01);
}

.single-card p {
    position: absolute;
    bottom: 16px;
    left: 24px;
    width: calc(100% - 48px);
    font-weight: 500;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.single-card img {
    vertical-align: bottom;
    width: 100%;
    height: 100%;
}

.single-card:before {
    content: "";
    height: 50%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.single-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-box ul li a {
    min-height: 64px !important;
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: block;
    padding: 18px 20px;
    border: 2px solid rgb(34, 19, 26);
    background-color: rgb(34, 19, 26);
    color: rgb(241, 232, 232);
    box-shadow: rgba(241, 232, 232, 0.24) 0px 2px 8px 0px;
    transform: scale(1);
    transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99), box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
}

.single-box ul li a:hover {
    box-shadow: rgba(241, 232, 232, 0.24) 0px 4px 12px 0px;
    transform: scale(1.01);
}

.social-icon {
    display: flex;
    align-items: center;
    margin-top: .5rem;
    justify-content: center;
}

.social-icon svg {
    fill: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
}

.single-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon a {
    padding: .5rem;
    transform: scale(1);
    display: block;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.social-icon a:hover {
    transform: scale(1.07);
}

@media screen and (max-width: 767px) {

    .arcscissors h2,
    .single-box ul li a,
    .single-card p {
        font-size: 14px;
    }
}

.hide {
    display: none;
}

.top-navigation .container, div#primary .entry-header, #masthead.site-header {
    display: none;
}