
/* introduction */
.introduction {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.introduction .bg {
    position: absolute;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    z-index: -1;
}

.introduction > div {
    background-color: rgba(255, 255, 255, 0.7);
}

/* services */
.services {
    position: relative;
}

.services .box {
    position: absolute;
    height: 50%;
    width: 50%;
}

.services .box1 {
    left: 0;
    top: 0;
    border-top: 3px solid black;
    border-left: 3px solid black;
}

.services .box2 {
    right: 0;
    bottom: 0;
    border-right: 3px solid black;
    border-bottom: 3px solid black;
}

.services .video {
    position: absolute;
    height: 100%;
    width: 100%;
}

.services .service-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.services .content * {
    z-index: 10;
}

.services .content h2 {
    color: #ffffff;
}

.services-card {
    opacity: 0;
    border-radius: 10px;
    text-decoration: None;
    color: black;
    transition-duration: 1s;
}

.card1 {
    transform: translateY(120px);
}

.card2 {
    transform: translateY(130px);
}

.card3 {
    transform: translateY(140px);
}

.card4 {
    transform: translateY(150px);
}

.card5 {
    transform: translateY(160px);
}

.card6 {
    transform: translateY(170px);
}

.services-card:hover {
    transform: scale(103%);
    background-color: cyan;
}

.services-card:hover svg {
    fill: #d9a404;
}

.services-card:hover h4 {
    color: black;
}

.services-card:hover p {
    color: #575757;
}

.services-card svg {
    height: 50px;
    fill: #ffc107;
}

.services-card h4 {
    color: #ffffff;
}

.services-card p {
    color: #a6a6a6;
}


/* specialties*/
.specialties {
    overflow: hidden;
}

.specialties .row > div {
    padding: 5px;
}

.svg-wrapper {
    height: 8rem;
    width: 8rem;
    background-color: rgb(255, 193, 7);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.specialties svg {
    height: 50px;
}

.fs, .ss, .fos {
    opacity: 0;
    transition-duration: 2s;
}

.fs {
    transform: translateX(-120px);
}

.ss {
    transform: translateY(120px);
}

.fos {
    transform: translateX(120px);
}

.move-to-place {
    transform: translate(0, 0);
    opacity: 1;
}
