:root {
    --say9-graph-blue: #50A2C8;
}

html.dark {
    --say9-graph-blue: #2DDCFF;
}

/* SEO Audit Hero */

#content_hero {
    margin-bottom: 40px;
    padding: 36px 120px;
}

#content_hero_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 20px 40px;
    max-width: 1620px;
    overflow: hidden;
}

.content_hero_content {
    grid-row: 1;
    grid-column: 1;
    max-width: 495px;
    margin-top: 160px;
}

.content_hero_title {
    font-size: 50px;
    line-height: 1.2em;
    font-weight: 700;
    width: 100%;
    margin-bottom: 24px;
    transition: color 0.3s ease-in-out;
}

.content_hero_txt {
    font-size: 18px;
    line-height: 1.2em;
    transition: color 0.3s ease-in-out;
}

.content_hero_btn {
    background-color: var(--say9-main-orange);
    padding: 9px 47.5px;
    width: fit-content;
    height: fit-content;
    font-weight: 500;
    color: rgba(252, 252, 252, 1);
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 160px;
    grid-row: 2;
    grid-column: 1;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.content_hero_btn:hover {
    box-shadow: 0 0 5.2px #FF8A3B99;
}

.content_hero_btn:active {
    box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .content_hero_btn:hover {
    box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .content_hero_btn:active {
    box-shadow: 0 0 7.5px #2DDCFFB2;
}

.content_hero_anim {
    grid-row: 1 / 3;
    grid-column: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    max-height: 580px;
    overflow: hidden;
}

.content_hero_anim canvas {
    max-width: 700px;
    object-fit: cover;
    transform: scale(1.3) translateY(-10%);
    background-image: url("../assets/images/content_writer.webp");
    background-size: cover;
}

/* SEO Services */

#services {
    margin-bottom: 90px;
    background-color: rgba(218, 234, 242, 0.4);
    padding: 50px 120px;
    transition: background-color 0.3s ease-in-out;
}

html.dark #services {
    background-color: rgba(40, 59, 69, 0.4);
}

.services_subtitle {
    color: var(--say9-main-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 22px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

#services_title {
    font-size: 44px;
    line-height: 1.2em;
    margin-bottom: 22px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.services_txt {
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 50px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

#services_wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.service_odd,
.service_even {
    display: grid;
    justify-content: space-between;
    gap: 30px 50px;
    padding: 30px 0;
}

.service_odd {
    grid-template-columns: minmax(0, 775px) 580px;
}

.service_even {
    grid-template-columns: 580px minmax(0, 775px);
}

.service_title {
    color: var(--say9-main-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    grid-row: 1;
    font-family: "Livvic", "Helvetica Neue", Arial, sans-serif;
    transition: color 0.3s ease-in-out;
}

.service_anim {
    grid-row: 1 / 3;
    border-radius: 25px;
    max-height: 490px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #DAEAF2;
}

.service_anim canvas {
    object-fit: contain;
}

@supports (-webkit-touch-callout: none) {
    .service_anim {
        background-color: rgb(224, 237, 244);
    }
}

.os-ios .service_anim,
.os-mac .service_anim {
    background-color: rgb(224, 237, 244);
}

.service_content {
    display: flex;
    flex-direction: column;
    grid-row: 2;
    row-gap: 30px;
}

.service_txt {
    color: var(--say9-text-blue);
    font-size: 18px;
    line-height: 1.2em;
    transition: color 0.3s ease-in-out;
}

.service_odd .service_title,
.service_odd .service_content,
.service_even .service_anim {
    grid-column: 2;
}

.service_odd .service_anim,
.service_even .service_title,
.service_even .service_content {
    grid-column: 1;
}

#keyword .service_title,
#content_audits .service_title {
    margin-top: 160px;
}

#content_writing .service_title {
    margin-top: 115px;
}

#keyword .service_title,
#keyword .service_content {
    max-width: 536px;
}

#content_writing .service_title,
#content_writing .service_content,
#content_audits .service_title,
#content_audits .service_content {
    max-width: 578px;
}

#keyword .service_content,
#content_audits .service_content {
    margin-bottom: 160px;
}

#content_writing .service_content {
    margin-bottom: 115px;
}

/* #content_audits .service_anim canvas {
    transform: scale(1.3);
    background-image: url("../assets/images/papers.webp");
}

#keyword .service_anim canvas {
    background-image: url("../assets/images/keys.webp");
}

#content_writing .service_anim canvas {
    background-image: url("../assets/images/delivery.webp");
} */

/* Team */

#team {
    margin-bottom: 90px;
    padding: 14px 120px;
}

.team_title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 12px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.team_txt {
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 30px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.team_video_wrap {
    border-radius: 6px;
    border: 10px solid rgba(218, 234, 242, 1);
    overflow: hidden;
    max-height: 484px;
    height: auto;
    line-height: 0;
    background-color: rgba(218, 234, 242, 1);
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

html.dark .team_video_wrap {
    background-color: rgba(80, 162, 200, 0.1);
    border-color: rgba(80, 162, 200, 0.1);
}

.team_video {
    display: block;
    height: auto;
    max-width: 100%;
    border-radius: 6px;
}

/* Case Studies */

#case_studies {
    padding: 14px 120px 0;
    overflow: hidden;
}

.case_studies_title {
    color: var(--say9-main-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 40px;
    text-align: center;
    transition: color 0.3s ease-in-out;
}

.case_studies_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 40px;
    padding-top: 5px;
}

.case_studies_item {
    width: 100%;
    height: 100%;
    max-width: 467px;
    border-radius: 20px;
    background-color: rgba(218, 234, 242, 1);
    box-shadow: 0 0 5.6px 0 rgba(80, 162, 200, 0.4);
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 12px 20px;
    transition: background-color 0.3s ease-in-out;
}

html.dark .case_studies_item:not(.your_item) {
    background-color: rgba(40, 59, 69, 1);
}

.case_studies_item.your_item {
    background-color: var(--say9-main-blue);
}

.study_viewport {
    margin-bottom: 35px;
    border: 5px solid rgba(80, 162, 200, 0.36);
    border-radius: 6px;
    width: 100%;
    display: flex;
    cursor: default;
    flex-direction: column;
    padding: 12px 6px 9px;
    background-color: rgba(255, 255, 255, 1);
    transition: border-color 0.3s ease-in-out;
}

html.dark .study_viewport {
    border-color: rgba(41, 90, 105, 1);
}

.case_studies_item.your_item .study_viewport {
    border-color: rgba(218, 234, 242, 1);
}

html.dark .case_studies_item.your_item .study_viewport {
    border-color: rgba(107, 230, 254, 1);
}


.viewport_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.viewport_top_rating {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--say9-main-blue);
    transition: color 0.3s ease-in-out;
}

.viewport_top_traffic {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2em;
    color: rgba(255, 138, 59, 1);
}

.viewport_center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 8px;
}

.viewport_center_ratings,
.viewport_center_traffics {
    display: flex;
    align-items: center;
    row-gap: 26px;
    flex-direction: column;
    margin: 5px 0 10px;
}

.rating {
    font-size: 9px;
    line-height: 14px;
    font-weight: 400;
    color: var(--say9-main-blue);
    transition: color 0.3s ease-in-out;
}

html.dark .rating {
    color: rgba(7, 72, 98, 0.6);
}

.traffic {
    font-size: 9px;
    line-height: 14px;
    font-weight: 400;
    color: rgba(255, 138, 59, 1);
}

.viewport_center_lines {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.backline {
    width: 100%;
    height: 1px;
    background-color: rgba(225, 225, 225, 1);
    position: absolute;
    left: 0;
}

.line_100 {
    top: 0;
}

.line_75 {
    top: 22%;
}

.line_50 {
    top: 44%;
}

.line_25 {
    top: 66%;
}

.line_0 {
    bottom: 0;
}

.blue_graph {
    position: absolute;
    bottom: 0;
    right: 15px;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    z-index: 100;
}

.orange_graph {
    position: absolute;
    bottom: -1px;
    left: -1px;
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    z-index: 101;
}

.viewport_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 4px;
}

.viewport_bottom_item {
    font-size: 9px;
    line-height: 1.2em;
    font-weight: 400;
    color: var(--say9-main-blue);
    transition: color 0.3s ease-in-out;
}

html.dark .viewport_bottom_item {
    color: rgba(7, 72, 98, 0.6);
}

.case_studies_pagination {
    bottom: 0 !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.case_studies_pagination .swiper-pagination-bullet {
    width: 26px;
    height: 6px;
    background-color: var(--say9-main-blue);
    border-radius: 43px;
    opacity: 0.4;
    margin: 0 2px !important;
    transition: opacity 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out, background-color 0.3s ease-in-out;
}

.case_studies_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 36px;
    height: 8px;
}


/*  */

.chart_container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    aspect-ratio: 420 / 189;
}

.chart_container#yourContainer {
    padding-top: 0;
}

.chart_container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chart_tooltip {
    position: absolute;
    display: none;
    pointer-events: none;
    flex-direction: column;
    will-change: transform, opacity;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 6px;
    border: 1px solid rgba(225, 225, 225, 1);
    width: 140px;
    padding: 6px 3px 8px;
}

.chart_tooltip#yourTooltip {
    width: 117px;
    height: 70px;
    align-items: center;
    justify-content: center;
}

.chart_title {
    color: var(--say9-main-blue);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 8px;
}

.chart_tooltip#yourTooltip .chart_title {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(7, 72, 98, 0.5);
}

.chart_label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart_label.domain {
    margin-bottom: 5px;
}

.chart_label_left {
    display: flex;
    align-items: center;
    column-gap: 2px;
}

.chart_circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.chart_circle.domain {
    background-color: var(--say9-graph-blue);
}

.chart_circle.traffic {
    background-color: #FF8A3B;
}

.chart_label_txt,
.chart_label_right {
    font-size: 9px;
    line-height: 1.2em;
    font-weight: 400;
    color: var(--say9-main-blue);
}

html.dark .chart_title,
html.dark .chart_label_txt,
html.dark .chart_label_right {
    color: #07486299;
}


/*  */

.study_logo {
    height: 34px;
    margin-bottom: 20px;
}

.study_logo svg {
    height: 100%;
    width: 100%;
}

.study_logo svg path.blue {
    fill: var(--say9-main-blue);
    transition: fill 0.3s ease-in-out;
}

.study_title {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 700;
    color: rgba(252, 252, 252, 1);
    margin-bottom: 20px;
}

.study_txt {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.case_studies_item.your_item .study_txt {
    color: rgba(252, 252, 252, 1);
}

.case_studies_btn {
    margin: 0 auto;
    width: fit-content;
    position: relative;
    cursor: pointer;
}

.case_studies_link {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    padding: 12px 34px;
    color: rgba(252, 252, 252, 1);
    border-radius: 24px;
    background-color: var(--say9-main-orange);
    width: fit-content;
    transition: box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.case_studies_btn:hover .case_studies_link {
    box-shadow: 0 0 5.2px #FF8A3B99;
}

.case_studies_btn .case_studies_link:active {
    box-shadow: 0 0 7.5px #FF8A3BB2;
}

html.dark .case_studies_btn:hover .case_studies_link {
    box-shadow: 0 0 5.2px #2DDCFF99;
}

html.dark .case_studies_btn .case_studies_link:active {
    box-shadow: 0 0 7.5px #2DDCFFB2;
}

.case_studies_btn_pos {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 10;
}

.case_studies_btn_left {
    border-radius: 24px 0 0 24px;
    left: 0;
}

.case_studies_btn_right {
    border-radius: 0 24px 24px 0;
    right: 0;
}

.hands {
    position: relative;
    max-width: 900px;
    width: 100%;
    height: 220px;
    margin: 0 auto;
}

.hand {
    width: 320px;
    height: 320px;
    position: absolute;
    bottom: -45px;
}

.left_hand {
    left: 30px;
    transform: rotateZ(32deg);
    transition: bottom 0.5s ease-in-out, left 0.5s ease-in-out;
}

.left_hand.active {
    bottom: -5px;
    left: 130px;
}

.right_hand {
    right: 30px;
    transform: rotateY(180deg) rotate(32deg);
    transition: bottom 0.5s ease-in-out, right 0.5s ease-in-out;
}

.right_hand.active {
    bottom: -5px;
    right: 130px;
}

@media screen and (max-width: 1440px) {
    /* SEO Audit Hero */

    #content_hero {
        padding: 50px 120px;
        margin-bottom: 30px;
    }

    .content_hero_title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .content_hero_txt {
        font-size: 14px;
    }

    .content_hero_anim canvas {
        max-width: 470px;
        transform: scale(1.5) translateY(-10%);
    }

    .content_hero_content {
        margin-top: 130px;
        max-width: 420px;
    }

    .content_hero_btn {
        margin-bottom: 130px;
    }

    /* SEO Services */

    #services {
        margin-bottom: 60px;
        padding: 35px 120px;
    }

    .services_subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    #services_title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .services_txt {
        font-size: 14px;
    }

    .service_odd,
    .service_even {
        padding: 14px 0;
    }

    .service_odd {
        grid-template-columns: minmax(0, 590px) 400px;
    }

    .service_even {
        grid-template-columns: 400px minmax(0, 590px);
    }

    .service_title {
        font-size: 30px;
    }

    .service_txt {
        font-size: 14px;
    }

    .service_anim {
        max-height: 340px;
    }

    #keyword .service_title,
    #keyword .service_content,
    #content_writing .service_title,
    #content_writing .service_content,
    #content_audits .service_title,
    #content_audits .service_content {
        max-width: 470px;
    }

    #keyword .service_title,
    #content_audits .service_title {
        margin-top: 120px;
    }

    #content_writing .service_title {
        margin-top: 90px;
    }

    #keyword .service_content,
    #content_audits .service_content {
        margin-bottom: 120px;
    }

    #content_writing .service_content {
        margin-bottom: 90px;
    }

    /* Team */

    #team {
        margin-bottom: 60px;
    }

    .team_title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .team_txt {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .team_video_wrap {
        border-width: 6px;
    }

    /* Case Studies */

    .case_studies_title {
        margin-bottom: 30px;
        font-size: 36px;
    }

    .case_studies_item {
        padding: 12px 10px 14px;
    }

    .study_viewport {
        margin-bottom: 20px;
    }

    .study_logo {
        height: 26px;
        margin-bottom: 14px;
    }

    .study_title {
        font-size: 21px;
        margin-bottom: 14px;
    }

    .study_txt {
        font-size: 16px;
    }

    .case_studies_link {
        font-size: 14px;
        padding: 12px 22px;
    }

    .hands {
        height: 140px;
        max-width: 650px;
    }

    .hand {
        width: 210px;
        height: 210px;
    }

    .left_hand.active {
        bottom: -2px;
        left: 105px;
    }

    .right_hand.active {
        bottom: -2px;
        right: 105px;
    }
}

@media screen and (max-width: 1350px) {
    /* Case Studies */

    #case_studies {
        padding: 14px 60px 0;
    }
}

@media screen and (max-width: 1200px) {
    /* SEO Audit Hero */

    #content_hero {
        padding: 30px 60px;
    }

    /* SEO Services */

    #services {
        padding: 35px 60px;
    }

    #keyword .service_title,
    #keyword .service_content,
    #content_writing .service_title,
    #content_writing .service_content,
    #content_audits .service_title,
    #content_audits .service_content {
        max-width: 400px;
    }

    .service_odd {
        grid-template-columns: minmax(0, 520px) 360px;
    }

    .service_even {
        grid-template-columns: 360px minmax(0, 520px);
    }

    /* Team */

    #team {
        padding: 14px 60px;
    }

    /* Case Studies */

    #case_studies {
        padding: 14px 16px 0;
    }
}

@media screen and (max-width: 1024px) {
    /* SEO Audit Hero */

    #content_hero {
        padding: 30px 16px;
    }

    .content_hero_anim canvas {
        max-width: 390px;
        transform: scale(1.3) translateY(-10%);
    }

    .content_hero_title {
        font-size: 32px;
    }

    .content_hero_content {
        margin-top: 100px;
    }

    .content_hero_btn {
        margin-bottom: 100px;
    }

    /* SEO services */

    #services {
        padding: 35px 16px;
    }

    #services_title {
        font-size: 32px;
    }

    .service_odd,
    .service_even {
        gap: 30px 40px;
    }

    .service_odd {
        grid-template-columns: minmax(0, 500px) 320px;
    }

    .service_even {
        grid-template-columns: 320px minmax(0, 500px);
    }

    .service_title {
        font-size: 24px;
    }

    .service_anim {
        max-height: 280px;
    }

    .service_content {
        row-gap: 20px;
    }

    #keyword .service_title,
    #content_audits .service_title {
        margin-top: 70px;
    }

    #content_writing .service_title {
        margin-top: 60px;
    }

    #keyword .service_content,
    #content_audits .service_content {
        margin-bottom: 90px;
    }

    #content_writing .service_content {
        margin-bottom: 60px;
    }

    /* Team */

    #team {
        padding: 14px 16px;
    }

    .team_title {
        font-size: 32px;
    }

    .team_video_wrap {
        height: 400px;
    }

    .team_video {
        height: 100%;
        max-width: unset;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Case Studies */

    #case_studies {
        padding: 14px 0 0;
    }

    .case_studies_wrapper {
        column-gap: 0;
        justify-content: unset;
    }

    .case_studies_pagination {
        display: flex;
        bottom: 14px !important;
    }

    .case_studies_btn {
        margin-top: 12px;
    }
}

@media screen and (max-width: 768px) {
    /* SEO Audit Hero */

    #content_hero {
        padding: 5.5px 16px;
    }

    .content_hero_anim canvas {
        max-width: 320px;
    }

    .content_hero_content {
        margin-top: 60px;
    }

    .content_hero_btn {
        margin-bottom: 60px;
    }

    .content_hero_title {
        font-size: 28px;
    }

    .content_hero_txt {
        font-size: 15px;
    }

    /* SEO Services */

    #services {
        padding: 14px 27px 25px;
        margin-bottom: 40px;
    }

    .services_subtitle {
        font-size: 15px;
    }

    #services_title {
        font-size: 22px;
    }

    .services_txt {
        margin-bottom: 30px;
    }

    #services_wrapper {
        row-gap: 30px;
    }

    .service_odd,
    .service_even {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 20px;
    }

    #services_wrapper .service_even .service_title,
    #services_wrapper .service_odd .service_title {
        grid-column: 1;
        max-width: 100%;
        font-size: 20px;
        margin-top: 0;
        text-align: center;
    }

    #services_wrapper .service_anim {
        grid-column: 1;
        grid-row: 2;
        margin: 0 auto;
        max-width: 600px;
    }

    .service_anim {
        height: 300px;
    }

    .service_anim canvas {
        max-width: 100%;
    }

    #services_wrapper .service_even .service_content,
    #services_wrapper .service_odd .service_content {
        grid-column: 1;
        grid-row: 3;
        max-width: 100%;
        gap: 10px;
        text-align: center;
    }

    #services_wrapper .service_even .service_content,
    #services_wrapper .service_odd .service_content {
        margin: 0 auto;
    }

    /* Team */

    #team {
        margin-bottom: 40px;
    }

    .team_title {
        font-size: 28px;
    }

    .team_video_wrap {
        height: 350px;
    }

    /* Case Studies */

    .case_studies_title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 650px) {
    .case_studies_btn {
        max-width: 360px;
        width: 100%;
    }

    .case_studies_link {
        max-width: 360px;
        width: 100%;
        text-align: center;
    }

    .left_hand {
        left: 2%;
    }

    .right_hand {
        right: 2%;
    }

    .left_hand.active {
        left: 5%;
    }

    .right_hand.active {
        right: 5%;
    }
}

@media screen and (max-width: 600px) {
    /* SEO Audit Hero */

    #content_hero_inner {
        grid-template-columns: 1fr;
    }

    .content_hero_content {
        max-width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .content_hero_title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .content_hero_anim {
        grid-row: 2;
        grid-column: 1;
        width: 100%;
        aspect-ratio: 600 / 430;
    }

    .content_hero_anim canvas {
        max-width: 100%;
        transform: scale(1.5) translateY(-10%);
    }

    .content_hero_btn {
        grid-row: 3;
        margin: 0 auto;
        max-width: 360px;
        width: 100%;
        text-align: center;
    }

    /* Team */

    .team_title {
        font-size: 22px;
    }

    .team_txt {
        font-size: 14px;
    }

    .team_video_wrap {
        height: 270px;
    }

    /* Case Studies */

    .case_studies_btn {
        max-width: 360px;
        width: 100%;
    }

    .case_studies_link {
        max-width: 360px;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 510px) {
    /* Case Studies */

    .hands {
        height: 120px;
    }

    .hand {
        width: 180px;
        height: 180px;
    }

    .left_hand {
        left: 0;
    }

    .right_hand {
        right: 0;
    }

    .left_hand.active {
        left: 2%;
    }

    .right_hand.active {
        right: 2%;
    }
}

@media screen and (max-width: 450px) {
    .left_hand {
        left: -3%;
    }

    .right_hand {
        right: -3%;
    }

    .left_hand.active {
        left: 0;
    }

    .right_hand.active {
        right: 0;
    }
}

@media screen and (max-width: 400px) {
    #services_wrapper .service_anim {
        max-height: 250px;
    }

    .viewport_top_rating {
        font-size: 8px;
    }

    .viewport_bottom_item {
        font-size: 7px;
    }

    .rating,
    .traffic {
        font-size: 7px;
    }
}