@font-face {
    font-family: 'Geomanist Regular';
    src: url('GeomanistFont/geomanist-regular-webfont.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist Bold';
    src: url('GeomanistFont/hinted-Geomanist-Bold.ttf');
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Geomanist Regular';
}

.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.container-big {
    width: 1200px;
    margin: 0 auto;
}

/* ------------ SPEED ANIMATION ---------- */
.thin {
    position: absolute;
    width: 100px;
    height: 6px;
    background-color: rgb(212, 227, 255);
    transform-origin: 450px 0;
    top: 475px;
    border-radius: 0 100% 100% 0;
}

.thin:nth-child(1) {
    transform: rotate(6.4285714286deg);
}

.thin:nth-child(2) {
    transform: rotate(19.2857142857deg);
}

.thin:nth-child(3) {
    transform: rotate(32.1428571429deg);
}

.thin:nth-child(4) {
    transform: rotate(45deg);
}

.thin:nth-child(5) {
    transform: rotate(57.8571428571deg);
}

.thin:nth-child(6) {
    transform: rotate(70.7142857143deg);
}

.thin:nth-child(7) {
    transform: rotate(83.5714285714deg);
}

.thin:nth-child(8) {
    transform: rotate(96.4285714286deg);
}

.thin:nth-child(9) {
    transform: rotate(109.2857142857deg);
}

.thin:nth-child(10) {
    transform: rotate(122.1428571429deg);
}

.thin:nth-child(11) {
    transform: rotate(135deg);
}

.thin:nth-child(12) {
    transform: rotate(147.8571428571deg);
}

.thin:nth-child(13) {
    transform: rotate(160.7142857143deg);
}

.thin:nth-child(14) {
    transform: rotate(173.5714285714deg);
}

.thick {
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: rgb(183, 204, 255);
    border-radius: 22px;
    transform-origin: 450px 0;
    top: 475px;
}

.thick:nth-child(15) {
    transform: rotate(12.3428571429deg);
}

.thick:nth-child(16) {
    transform: rotate(25.2deg);
}

.thick:nth-child(17) {
    transform: rotate(38.0571428571deg);
}

.thick:nth-child(18) {
    transform: rotate(50.9142857143deg);
}

.thick:nth-child(19) {
    transform: rotate(63.7714285714deg);
}

.thick:nth-child(20) {
    transform: rotate(76.6285714286deg);
}

.thick:nth-child(21) {
    transform: rotate(89.4857142857deg);
}

.thick:nth-child(22) {
    transform: rotate(102.3428571429deg);
}

.thick:nth-child(23) {
    transform: rotate(115.2deg);
}

.thick:nth-child(24) {
    transform: rotate(128.0571428571deg);
}

.thick:nth-child(25) {
    transform: rotate(140.9142857143deg);
}

.thick:nth-child(26) {
    transform: rotate(153.7714285714deg);
}

.thick:nth-child(27) {
    transform: rotate(166.6285714286deg);
}

#speedometer {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    width: 900px;
    height: 470px;
    background-color: #f1f5ff;
    border-top-left-radius: 470px;
    border-top-right-radius: 470px;
}

.center {
    width: 65px;
    height: 35px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background-color: #d4e3ff;
    position: absolute;
    top: 435px;
    left: 0;
    right: 0;
    box-shadow: 0 0 4px 0 #fff;
    margin: auto;
}

.str {
    position: absolute;
    width: 345px;
    height: 6px;
    background-color: rgb(212, 227, 255);
    transform-origin: 100% 0;
    transform: rotate(100deg);
    top: 462px;
    left: 109px;
    border-radius: 100% 0 0 100%;
    animation: speed 5s 1, speed-second 4s 5s infinite;
}

@keyframes speed {
    0% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(130deg);
    }
}

@keyframes speed-second {
    0% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(130deg);
    }
}

/* -----------   HEADER + BANNER   ------------- */

.nav-link.active {
    color: #f93740 !important;
}

header {
    height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    background-image: url('/banner.svg');
    background-color: #f1f5ff;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.mobile-nav {
    display: none;
}

.header-top {
    position: fixed;
    width: 100%;
    height: 120px;
    border-bottom: 1px solid rgb(191, 209, 255);
    background-color: #f1f5ff;
    z-index: 10;
    transition: .5s all;
}

.header-top.active {
    background-color: #fff;
    height: 80px;
}

.header-top.active nav a {
    color: #2b2b2b;
}

.header-top.active nav a:hover {
    color: #fa3740;
}

.header-top.active nav .white-btn {
    background-color: #1b5eff;
    color: #fff;
}

.header-top.active .logo {
    background-image: url('/Assets/logo.png');
    width: 300px;
    height: 43px;
}

.header-top.active nav a::after {
    border-bottom: 2px solid #fa3740;
    margin-top: 33px;
}

nav a {
    font-size: 16px;
    color: #0d1c2a;
    padding: 0 20px;
    position: relative;
    transition: .5s all;
    font-weight: 700;
}

nav a:hover {
    color: #f93740;
}

nav a:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 2px solid #f93740;
    margin-top: 53px;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: scale(0, 1);
}

nav a:hover:after {
    opacity: 1;
    transform: scale(1);
}

nav .white-btn {
    background-color: #fff;
    color: #3c89fa;
    width: 120px;
    height: 55px;
    display: inline-block;
    line-height: 55px;
    text-align: center;
    border-radius: 60px;
    transition: .5s all;
}

nav .white-btn:hover:after {
    opacity: 0;
}

nav .white-btn:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: #3c89fa;
}

.logo {
    background-image: url('/Assets/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 335px;
    height: 50px;
    display: block;
    transition: .5s all;
}

.content {
    position: relative;
    color: #fff;
    font-family: 'Geomanist Bold';
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 31px;
    line-height: 28px;
    margin-top: 13%;
    z-index: 1;
}

.content .large {
    font-size: 70px;
    line-height: 105px;
    margin-bottom: 25px;
    background-color: #f1f5ff;
    width: auto;
    display: table;
    margin: auto;
    padding: 10px 30px 0 30px;
    color: #0d1c2a;
}

.content .one-line {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    font-family: 'Geomanist Regular';
    margin-top: 25px;
}

.one-line a {
    padding: 18px 25px;
    color: #396ff6;
    font-size: 27px;
}

.one-line span {
    margin: 0 30px;
    width: 2px;
    height: 46px;
    background-color: #396ff6;
}

.header-top .container {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

nav {
    float: right;
}

.title {
    font-family: 'Geomanist Bold';
    font-size: 50px;
    color: #ffffff;
    text-align: center;
}

.glide__arrow--next {
    right: 0;
}

.glide__arrow--prev {
    transform: rotate(180deg);
}

.glide__arrow {
    background-image: url('/Assets/arrow-blue.svg');
    width: 30px;
    height: 55px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}

.recommend-carousel {
    position: relative;
}

.recommend-carousel .glide__arrow {
    top: 20%;
}

.recommend-carousel .glide__slide {
    text-align: center;
}

.recommend-carousel .glide__slide img {
    max-width: 155px;
    max-height: 44px;
}

.recommend-carousel .glide__slides {
    align-items: center;
    transition: .5s all;
}

.recommend-carousel .glide__slides a:hover {
    cursor: pointer;
    opacity: .7;
}

/* -----------   CLIENTS   ------------- */

.our-clients {
    padding: 110px 0 100px 0;
}

.clients-carousel {
    width: 100%;
    position: relative;
}

.clients-carousel .glide__arrow {
    top: 38%;
}

.clients-carousel img {
    width: 100%;
}


.our-clients .title {
    margin: 0;
}

.our-clients .slick-next {
    right: 12px;
    top: 38%;
}

.our-clients .slick-prev {
    left: -32px;
    top: 39%;
}


/* -----------   PERFORMANCE   ------------- */

.performance-report {
    width: 100%;
    padding-top: 110px;
}

.performance-report .subtitle {
    margin-bottom: 65px !important;
}

.performance-report img {
    width: 100%;
}

.graphic {
    position: relative;
    height: 850px;
}

.big-bullet p {
    line-height: 27px;
}


.bullet {
    position: absolute;
    margin: auto;
    background-color: #3970f6;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    border: 5px solid #d4e1ff;
    transition: .5s all;
    font-size: 18px;
    z-index: 2;
}

.bullet:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: #1b5eff;
}

.bullet span {
    position: absolute;
    font-size: 8vw;
    font-family: 'Geomanist Bold';
    top: 28%;
    color: rgba(213, 225, 255, 0.28);
    z-index: -1;
    pointer-events: none;
}

.bullet#monitor {
    left: 0;
    right: 25%;
    top: 49px;
    width: 200px;
    height: 200px;
}

.bullet#analyze {
    left: 23%;
    right: 0;
    top: 11px;
    width: 190;
    height: 190;
}

.bullet#prioritize {
    left: 56%;
    right: 0;
    top: 207px;
    width: 180px;
    height: 180px;
}

.bullet#optimize {
    top: 472px;
    left: 0;
    right: -51%;
    width: 170px;
    height: 170px;
}

.bullet#validate {
    left: 0;
    right: -15%;
    top: 598px;
    width: 160px;
    height: 160px;
}

.bullet#release {
    left: 0;
    right: 25%;
    top: 557px;
    width: 150px;
    height: 150px;
}

.bullet#cyrcle {
    right: -8%;
    left: 0;
    top: 90px;
    width: 600px;
    height: 600px;
    border-color: #d5e1ff;
    background-color: #ffffff;
    z-index: -1;
}

.second .blue-btn {
    background-color: #396ff6;
}

.big-bullet {
    width: 500px;
    height: 500px;
    background-color: #ffb434;
    color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 160px;
    left: 30px;
    z-index: -1;
    text-align: center;
}

.performance-report .big-bullet .title {
    width: 100%;
    font-size: 25px;
    margin: 0 auto 10px auto;
    line-height: 45px;
    color: #fff;
    background-color: transparent;
    padding: 0;
}

.rounded {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    height: fit-content;
    margin: auto;
    transition: .5s all;
}

.rounded.active {
    visibility: visible;
    opacity: 1;
}

.our-plans {
    padding-top: 110px;
}

/* -----------   CONTACT   ------------- */

.contact {
    padding-top: 90px;
}

.contact .blue-btn {
    margin: 0 auto;
}
#success-message {
    display: none;
    background-color: #dafff8;
    border: 1px solid #0bc9a5;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 30px;
}
#failure-message {
    background-color: #fedddf;
    border: 1px solid #fa3740;
    padding: 12px;
    border-radius: 6px;
    display: none;
    margin-bottom: 30px;
}
#email-alert,
#name-alert,
#company-alert,
#website-alert{
    position: relative;
    display: block;
    bottom: 30px;
    left: 40px;
    color: #f93740;
}
#email-alert p,
#name-alert p,
#company-alert p,
#website-alert p {
    margin: 0;
}
#mail_name.error,
#mail_email.error,
#mail_company.error,
#mail_website.error {
    color: #f93740;
    border: 1px solid  #f93740;
}
.contact .blue-btn:hover {
    background-color: rgba(11, 201, 165, 0.69);
}

.video .subtitle {
    background-color: #3970f6;
}

.performance-report .subtitle {
    background-color: #FFB434;
}

.our-plans .subtitle {
    background-color: #fa3740;
}

.our-clients .subtitle {
    background-color: #5442AE;
}

.about-us .subtitle {
    background-color: #3970f6;
}

.contact .subtitle {
    background-color: #07C9A5;
}

.we-recommend .subtitle {
    background-color: #5442AE;
    margin-bottom: 50px !important;
}

#video-overlay {
    background-color: rgb(32 32 32 / 40%);
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: -6px;
    right: -6px;
    border-radius: 15px;
    opacity:1;
    transition:1s;
}

#video-overlay.remove {
    opacity:0;
}

.contact .title,
.video .title,
.our-plans .title,
.about-us .title,
.performance-report .title,
.our-clients .title,
.we-recommend .title {
    text-align: center;
    width: auto;
    display: table;
    margin: 0 auto;
    padding: 9px 30px 0 30px;
    line-height: 60px;
    color: #0d1c2a;
}

.contact .subtitle,
.video .subtitle,
.our-plans .subtitle,
.about-us .subtitle,
.performance-report .subtitle,
.our-clients .subtitle,
.we-recommend .subtitle,
.about-us .subtitle {
    color: #ffffff;
    font-family: 'Geomanist Bold';
    font-size: 18px;
    text-align: center;
    margin-top: 15px;
    width: auto;
    display: table;
    margin: 10px auto;
    padding: 10px 20px 5px 20px;
    letter-spacing: .02em;
}

.contact input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: 'Geomanist Regular';
}

.contact input::-ms-input-placeholder {
    /* Microsoft Edge */
    font-family: 'Geomanist Regular';
}

form {
    margin: 0 auto;
    width: 570px;
    margin-top: 65px;
    margin-bottom: 105px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
}

form input {
    width: 100%;
    height: 68px;
    border: 1px solid #D6D6D7;
    color: #000;
    border-radius: 70px;
    margin-bottom: 40px;
    outline: 0;
    transition: .5s all;
    padding-left: 40px;
    font-size: 16px;
    font-family: 'Geomanist Regular';
}

form input::placeholder {
    font-size: 14px;
    color: #a9a9a9;
    font-family: 'Geomanist Regular';
}

.contact-form label {
    font-size: .75em;
    position: absolute;
    top: -8px;
    left: 35px;
    background-color: #fff;
    padding: 0 5px;
    opacity: 0;
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateY(50%);
    display: block;
    pointer-events: none;
    color: #999;
}

.contact-form input:not(:placeholder-shown)+label {
    opacity: 1;
    transform: translateY(0);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.contact-form input {
    width: 100%;
    background-color: #fff;
}

.contact-form div {
    position: relative;
}

input::-webkit-input-placeholder {
    color: #aaa;
    transition: color 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

input:not(:placeholder-shown):focus+label {
    color: #3970f6;
}

form input:focus {
    border-color: #3970f6;
}

.blue-btn {
    width: 180px;
    height: 55px;
    line-height: 55px;
    color: #fff;
    background-color: #0bc9a5;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    display: block;
    text-align: center;
    transition: .5s all;
    font-family: 'Geomanist Regular';
}

.blue-btn:hover {
    cursor: pointer;
    background-color: rgba(57, 111, 246, .75);
    outline: 0;
}

.blue-btn:focus {
    outline: 0;
}


/* -----------   TESTIMONIALS   ------------- */

.testimonials {
    background-color: #FAFAFA;
    padding: 50px 0 100px 0;
}

.testimonials .title {
    text-align: center;
}

.review-box {
    border: 6px solid #EDF2FE;
    background-color: #fff;
    border-radius: 15px;
}

.review-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 60px auto 45px auto;
    text-align: center;
    display: block;
}

.review-text {
    line-height: 28px;
    font-size: 16px;
    color: rgba(0, 0, 0, 50%);
    padding: 0 30px 20px 30px;
    text-align: center;
}

.position {
    font-size: 16px;
    color: rgba(0, 0, 0, 50%);
    font-style: italic;
    text-align: center;
    line-height: 0;
    margin-bottom: 55px;
}

.reviewer {
    text-align: center;
    color: #3c89fa;
    font-size: 18px;
    font-family: 'Geomanist Bold';
}

/* --------------- ABOUT US ---------------- */

.about-us {
    background-color: #f1f5ff;
    padding: 110px 0;
    position: relative;
    /* background-image: url('/Assets/banner.svg'); */
    background-size: 57%;
    background-position: center;
}

.about-us .text {
    margin: 60px auto 0 auto;
    max-width: 61%;
    line-height: 30px;
    letter-spacing: .02em;
    text-align: left;
}

.about-us .text span {
    font-size: 19px;
    font-family: 'Geomanist Bold';
    color: #0d1c2a;
}


/* ------------ VIDEO ------------ */

.video {
    padding: 110px 0 0 0;
}

.video-container {
    width: 100%;
    height: 675px;
    margin: 65px 0;
    position: relative;
}

.play.remove {
    display: none;
}

.play {
    background-image: url('Assets/play.svg');
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 0px;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 1);
    margin: auto;
    z-index: 1;
}

.play:hover {
    cursor: pointer;
}

.video-container iframe,
video {
    width: 100%;
    height: inherit;
}

.video .blue-btn {
    margin: 0 auto;
}

.blue-shape-top,
.blue-shape-bottom {
    background-image: url('Assets/video_top_shape.svg');
    background-size: contain;
    width: 500px;
    height: 500px;
    background-repeat: no-repeat;
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.blue-shape-top {
    top: -125px;
}

.blue-shape-bottom {
    top: 52%;
    right: 0;
}


/* ------------ HOW IT WORKS ----------- */

.package-header {
    padding: 40px 25px;
    font-family: 'Geomanist Bold';
    font-size: 28px;
    color: #fff;
}

.package-box:first-of-type .package-header {
    background-color: #FB3640;
    background-image: url('/Assets/frontend.svg');
    background-size: 32%;
    background-repeat: no-repeat;
    background-position: 104% 100%;
}

.package-box:nth-child(2) .package-header {
    background-color: #3970f6;
    background-image: url('/Assets/server.svg');
    background-size: 29%;
    background-repeat: no-repeat;
    background-position: 101% 101%;
}

.package-box .blue-btn {
    background-color: #fff;
    color: #2b2b2a;
}

.package-box .blue-btn:hover {
    background-color: rgba(255, 255, 255, 0.73);
    cursor: pointer;
}

.package-header .quote {
    font-size: 20px;
    font-family: 'Geomanist Regular';
    margin-bottom: 40px;
}

.package-header p {
    margin-bottom: 10px;
}

.package-body {
    max-height: 0;
    transition: .2s all;
    opacity: 0;
    visibility: hidden;
}

.package-body.first {
    border: 4px solid #ffb8b8;
}

.package-body.second {
    border: 4px solid #80B3FF;
}

.package-body h2 {
    font-family: 'Geomanist Bold';
    font-size: 25px;
    color: #0D1B2A;
    line-height: 30px;
}

.package-body.first h2 span {
    color: #FB3640;
}

.package-body.second h2 span {
    color: #277CF8;
}

.package-body.first .package-footer .blue-btn {
    background-color: #FB3640;
}

.package-body.first .package-footer .blue-btn:hover {
    background-color: rgba(251, 54, 64, 0.73);
    cursor: pointer;
}

.package-body h2 span {
    font-size: 18px;
    text-align: left;
    display: block;
}

.package-body.open {
    max-height: 1900px;
    opacity: 1;
    visibility: visible;
    display: inline-block;
    padding: 25px 15px;
    border-radius: 8px;
}

.package-body p {
    line-height: 26px;
    font-size: 15px;
}

.package-body .column {
    width: 23%;
    display: inline-block;
    padding: 0 10px;
    vertical-align: top;
}

.packages-container {
    display: table;
    margin-top: 65px;
}

.package-box:first-child {
    margin-right: 3%;
    float: left;
}

.package-box {
    box-shadow: 0px 3px 6px rgba(186, 186, 186, 56%);
    border-radius: 8px;
    overflow: hidden;
    width: 48.5%;
    margin-bottom: 30px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    transition: .2s all;
}

.package-box.move-to-bottom {
    margin-bottom: 0;
    margin-top: 30px;
    border-radius: 8px 8px 0 0;
    box-shadow: none;
}

.package-box ul li {
    list-style: none;
    line-height: 25px;
    opacity: .75;
    position: relative;
    padding: 5px 25px;
}

.package-box ul {
    padding-left: 25px;
}

.package-box ul li::before {
    content: '';
    background-image: url('Assets/arrow-blue.svg');
    background-size: 6px;
    width: 20px;
    height: 20px;
    background-position: center;
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    top: 8px;
    left: 0;
}

.package-footer {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(194, 194, 194, 0.47);
    padding-top: 10px;
    margin: 10px 10px 0 10px;
}

.package-footer .price-box p {
    font-family: 'Geomanist Bold';
    font-size: 20px;
    color: #475059;
    line-height: 30px;
    margin-bottom: 0;
}

.package-footer .price-box .span {
    font-size: 14px;
}

.we-recommend {
    margin: 110px 0;
}



/* ----------- FOOTER ----------- */

footer {
    margin-top: 105px;
    padding: 30px 0 25px 0;
    background-image: url('/banner.svg');
    background-color: #f1f5ff;
    background-size: 100%;
    background-position: center;
    background-repeat: repeat;
    border-top: 1px solid rgb(191, 209, 255);
}

footer .logo {
    width: 325px;
    margin-bottom: 30
}

footer hr {
    border: 1px solid #6d98ff;
}

footer a,
footer p {
    font-size: 16px;
    color: #0d1d2a;
    font-family: 'Geomanist Regular';
}

footer p {
    background-color: #f1f5ff;
    padding: 7px;
    width: auto;
    display: table;
    font-weight: 700;
}

footer .nav {
    padding: 60px 0 25px 0;
}

.scroll-to-top {
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url('Assets/Arrow-top-blue.svg');
    background-repeat: no-repeat;
    background-position: center;
    transition: .5s all;
}

footer .scroll-to-top:hover {
    cursor: pointer;
    opacity: .7;
}


/* -----------   Privacy Policy Page   ------------- */

.privacy-policy {
    height: 400px;
    position: relative;
}

.privacy-policy .content {
    margin-top: 70px;
}

.privacy-policy .content p {
    margin: 10px 0;
}

.privacy-policy .content .large {
    margin: 20px auto;
    margin-top: 180px;
}

.privacy-policy-text h4 {
    color: #3c89fa;
    font-family: 'Geomanist Bold';
    font-size: 18px;
}

.privacy-policy-text p {
    line-height: 27px;
}

.privacy-policy-text ul li {
    padding: 5px 0;
}

.privacy-policy-text .contact-info p {
    line-height: 14px;
    font-weight: bold;
}


/* -------------- Responsive ----------- */

@media only screen and (min-width: 1200px) {

    .video-container iframe,
    video {
        border: 7px solid #F1F5FF;
        border-radius: 20px;
    }
    .bullet span {
        font-size: 91px;
    }
}

@media only screen and (max-width: 480px) {
    .content {
        margin-top: 33vw !important;
    }
    header {
        height: 540px;
        position: relative;
    }

    .thick {
        width: 20px;
        height: 2px;
    }

    .thin {
        width: 35px;
        height: 3px;
    }

    .thin,
    .thick {
        transform-origin: 150px 0;
    }

    #speedometer {
        width: 300px;
        height: 300px;
    }

    .str {
        width: 100px;
        height: 2px;
        left: -100px;
        right: 0;
        bottom: 175px;
        margin: auto;
    }

    .play {
        width: 60px;
        height: 60px;
    }

    .center {
        width: 20px;
        height: 15px;
        top: 285px;
    }

    .one-line a {
        padding: 15px 0px;
        font-size: 16px;
        line-height: 21px;
    }

    .one-line span {
        margin: 0 15px;
    }

    .package-box {
        margin-bottom: 0;
    }

    .package-body.first {
        margin-bottom: 0;
    }

    footer a,
    footer p {
        display: block;
    }
    .mobile-none {
    display: none;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .thick {
        width: 20px;
        height: 2px;
    }

    .thin {
        width: 35px;
        height: 3px;
    }

    .thin,
    .thick {
        transform-origin: 230px 0;
    }

    #speedometer {
        width: 460px;
        height: 300px;
    }

    .package-box:first-child {
        order: 1;
        margin-bottom: 0;
    }

    .one-line a {
        padding: 15px 5px;
        font-size: 16px;
    }

    .str {
        width: 190px;
        height: 2px;
        left: -190px;
        bottom: 170px;
        right: 0;
        margin: auto;
    }

    .center {
        width: 20px;
        height: 13px;
        top: 287px;
    }
}
@media only screen and (max-width: 768px) {
    .header-top nav a {
        font-size: 13px !important;
    }
    #email-alert, #name-alert, #company-alert, #website-alert {
        bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .content .large span {
        font-size: 10vw;
    }
    .bullet span {
        font-size: 6vw;
        top: 17%;
    }

    .privacy-policy {
        height: 315px;
    }

    .mobile-nav {
        display: block;
        width: 33px;
        height: 20px;
        position: absolute;
        z-index: 1;
    }

    .thin,
    .thick {
        top: 300;
    }

    .blue-shape-top,
    .blue-shape-bottom {
        display: none;
    }

    #navigation_menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        padding: 100px 0;
        background-color: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 0;
        transition: all .5s;
    }

    #navigation_menu.open {
        opacity: 1;
        visibility: visible;
        width: 100%;
    }

    .one-line span {
        height: 25px;
    }

    .blue-shape-top {
        width: 100%;
    }

    .video {
        padding: 50px 0 0 0;
    }

    #navigation_menu a,
    #navigation_menu .white-btn {
        width: 100%;
        display: block;
        color: #3c89fa;
        background-color: #fff;
        text-align: center;
        padding: 20px 0;
        height: auto;
        line-height: 16px;
        text-transform: uppercase;
        font-family: 'Geomanist Bold';
        letter-spacing: 1;
    }

    #navigation_menu a:hover::after {
                opacity: 0;
    }

    .header-top #navigation_menu a {
        padding: 18px 0;
    }

    .container {
        width: 90%;
    }

    .header-top.active .logo,
    .logo {
        width: 217px;
        margin: 0 auto;
        height: 30px;
    }

    .mobile-nav input {
        width: 50px;
        height: 50px;
        left: -6px;
        top: -15px;
        position: absolute;
        opacity: 0;
        z-index: 2;
    }

    .mobile-nav span {
        display: block;
        width: 100%;
        height: 4px;
        margin-bottom: 5px;
        background: #000;
        border-radius: 10px;
        z-index: 1;
        transform-origin: 4px 0;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background-color 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    }

    .header-top.active .mobile-nav span {
        background: #000;
    }

    .mobile-nav span:first-child {
        transform-origin: 0 0;
    }

    .mobile-nav span:nth-last-child(2) {
        transform-origin: 0 100%;
    }

    .mobile-nav input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-10px, -20px);
        background: #2b2b2b;
    }

    .mobile-nav input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    .mobile-nav input:checked~span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, 11px);
    }

    .our-plans {
        padding-top: 0;
    }

    .package-body .column {
        width: 100%;
        padding: 0;
    }

    .content {
        width: 80%;
        margin-top: 23vw;
        font-size: 4vw;
        line-height: 4vw;
    }

    .performance-report .subtitle {
        margin-bottom: 30px;
    }

    .package-footer {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .package-footer .price-box {
        text-align: center;
        margin-bottom: 30px;
    }

    .privacy-policy .content {
        margin-top: 85px;
    }

    .header-top {
        height: 85px;
    }

    .our-clients {
        padding: 50px 0 25px 0;
    }

    .our-clients .slick-prev {
        left: -12px;
    }

    .our-clients .slick-next {
        right: 10px;
    }

    .title {
        font-size: 32px;
    }

    .our-clients .title {
        padding: 0;
        text-align: center;
    }

    .performance-report {
        padding-top: 50px;
    }

    .performance-report .title {
        line-height: 65px;
        margin: 0 auto 0 auto;
    }

    .package-body p {
        font-size: 14px;
    }

    .package-body h2 {
        font-size: 22px;
    }

    .graphic {
        height: 104vw;
    }

    .bullet#monitor {
        right: 0;
        width: 20vw;
        height: 20vw;
        top: 0px;
    }

    .bullet#analyze {
        left: 63vw;
        right: 0;
        top: 16vw;
        width: 20vw;
        height: 20vw;
    }

    .bullet#release {
        right: 65vw;
        top: 16vw;
        width: 20vw;
        height: 20vw;
    }

    .bullet#validate {
        left: 0;
        right: 65vw;
        top: 48vw;
        width: 20vw;
        height: 20vw;
    }

    .bullet#prioritize {
        left: 65vw;
        top: 48vw;
        width: 20vw;
        height: 20vw;
    }

    .bullet#optimize {
        right: 0;
        width: 20vw;
        height: 20vw;
    }

    .bullet#cyrcle {
        left: 0;
        right: 0;
        top: 9vw;
        width: 70vw;
        height: 70vw;
    }

    .big-bullet {
        width: 60vw;
        height: 60vw;
        top: 16vw;
        right: 0;
        left: 0;
        margin: auto;
        background-color: transparent;
        color: #0d1c2a;
    }

    .bullet#optimize {
        top: 69vw;
    }

    .big-bullet p {
        line-height: 18px;
        font-size: 12px;
    }
    .rounded {
        width: 72%;
    }

    .performance-report .big-bullet .title {
        font-size: 19px;
        line-height: 20px;
        color: #0d1c2a;
    }

    .bullet {
        font-size: 13px;
    }

    form {
        width: 100%;
        margin-top: 45px;
        margin-bottom: 45px;
    }

    form input {
        height: 60px;
        margin-bottom: 20px;
    }

    .video-container {
        height: 250px;
        margin: 40px 0 0 0;
    }

    .package-box {
        width: 100%;
    }

    .package-header {
        font-size: 22px;
    }

    .package-header .quote {
        font-size: 16px;
    }

    .blue-btn {
        width: 170px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }

    .about-us .text {
        margin: 30px auto 0 auto;
        max-width: 95%;
        font-size: 14px;
    }

    .about-us .text span {
        font-size: 17px;
    }

    .contact {
        padding-top: 50px;
    }

    .about-us {
        background-color: #ebf1ff;
        padding: 50px 0;
    }

    .we-recommend {
        margin: 60px 0;
    }

    .packages-container {
        display: flex;
        flex-flow: column;
    }

    .package-box:first-child {
        order: 1;
    }

    .package-body.first {
        order: 2;
        margin-bottom: 30px;
    }

    .package-box:nth-child(2) {
        order: 3;
    }

    .package-body.second {
        order: 4;
    }

    .contact .subtitle,
    .video .subtitle,
    .our-plans .subtitle,
    .about-us .subtitle,
    .performance-report .subtitle {
        font-size: 16px;
        margin-top: 0;
        line-height: 24px;
    }

    footer {
        padding: 40px 0 5px 0;
        margin-top: 0;
    }

    footer .nav {
        padding: 60px 0 25px 0;
        display: flex;
        flex-flow: column;
        text-align: center;
    }

    footer p {
        margin-top: 0;
    }

    footer a,
    footer p {
        padding: 10px;
        margin-right: 0;
        text-align: center;
    }

    footer .logo {
        width: 220px;
        display: block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {

    .container,
    .container-big {
        width: 90%;
    }

    .content {
        margin-top: 23%;
    }

    .content .large {
        font-size: 66px;
        line-height: 90px;
    }

    #speedometer {
        width: 767px;
    }

    .one-line a {
        padding: 10px 20px;
        font-size: 18px;
    }

    .str {
        width: 278px;
    }

    .thin,
    .thick {
        transform-origin: 385px 0;
    }

    .package-header .quote {
        font-size: 16px;
    }

    .package-header p {
        margin-bottom: 10px;
        line-height: 38px;
    }

    .title {
        font-size: 42px;
    }

    .performance-report .big-bullet p.title {
        font-size: 21px;
    }

    .big-bullet p {
        font-size: 14px;
    }
    .header-top.active .logo {
        width: 255px;
        height: 33px;
    }
    .header-top {
        height: 90px;
    }
    .logo {
        width: 255px;
        height: 33px;
    }
    .header-top nav a {
        padding: 0 5px;
        font-size: 14px;
    }

    .video-container {
        height: 480px;
    }

    nav .white-btn {
        width: 105px;
        height: 48px;
        line-height: 48px;
    }

    .our-clients .title {
        padding: 40px 0 20px 0;
        text-align: center;
    }

    .performance-report {
        padding-top: 20px;
    }

    .our-plans {
        padding-top: 10px;
    }

    .our-clients,
    .about-us {
        padding: 60px 0;
    }

    .package-body .column {
        width: 46%;
    }

    .contact {
        padding-top: 60px;
    }

    .video {
        padding: 100px 0 50px 0;
    }

    footer a,
    footer p {
        margin-right: 25px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .package-header {
        font-size: 28px;
        line-height: 40px;
    }

    .package-header-title {
        font-size: 2.1vw;
    }

    .package-header .quote {
        margin-bottom: 30px;
        margin-top: 5px;
    }

    .package-body .column {
        width: 22.3%;
    }

    .our-plans {
        padding-top: 0;
    }

    .content {
        margin-top: 20%;
    }
}

@media only screen and (max-width: 1200px) {

    .container,
    .container-big {
        width: 90%;
    }

    nav a {
        padding: 0 10px;
    }

    .content .large {
        font-size: 6vw;
        line-height: 9vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .bullet#monitor {
        right: 20vw;
        width: 16vw;
        height: 16vw;
        top: 29px;
    }

    .bullet#analyze {
        left: 28vw;
        top: 0vw;
        width: 15vw;
        height: 15vw;
    }

    .bullet#release {
        right: 20vw;
        top: 48vw;
        width: 11vw;
        height: 11vw;
    }

    .bullet#validate {
        left: 5vw;
        top: 51vw;
        width: 12vw;
        height: 12vw;
    }

    .bullet#optimize {
        top: 39vw;
        left: 8vw;
        width: 13vw;
        height: 13vw;
    }

    .bullet#prioritize {
        left: 58vw;
        top: 17vw;
        width: 14vw;
        height: 14vw;
    }

    .big-bullet {
        width: 42vw;
        height: 42vw;
        top: 12vw;
        right: 2vw;
    }

    .bullet#cyrcle {
        right: -8vw;
        left: 0;
        top: 6vw;
        width: 52vw;
        height: 52vw;
    }

    .graphic {
        height: 80vw;
    }
}