@import"https://fonts.googleapis.com/css2?family=Montserrat&display=swap";

@font-face {
    font-family: "Helvetica";
    src: url("Helvetica.woff2") format("woff2"), url("Helvetica.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Helvetica";
    src: url("Helvetica-Bold.woff2") format("woff2"), url("Helvetica-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@media(min-width: 1200px) {
    html {
        scrollbar-width: thin;
        scrollbar-color: #00b4d8 #ddd;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: #ddd
}

::-webkit-scrollbar-thumb {
    background-color: #00b4d8;
    border: 3px solid #ddd
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    overflow-x: hidden
}

.loader_wrapper {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999
}

.loader_wrapper .loader {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-32px, -32px)
}

a {
    text-decoration: none !important
}

input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #929295
}

input::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #929295
}

input:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #929295
}

input:-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #929295
}

header {
    height: 100px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999
}

header nav {
    display: none
}

@media(min-width: 1200px) {
    header nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%
    }
}

header nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    gap: 30px
}

header nav ul li {
    display: inline-flex;
    justify-content: space-between;
    align-items: center
}

header nav ul li a {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 21px;
    color: #383434;
    text-transform: uppercase
}

header nav ul li a:hover {
    color: #00b4d8
}

header nav ul li a.last {
    border-radius: 6px;
    background-color: transparent;
    color: #6b6b6e;
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00b4d8;
    margin-left: 30px
}

header nav ul li a.last:hover {
    color: #fff;
    background-color: #00b4d8
}

header .hamburger_wrapper {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9;
    position: absolute;
    right: 15px;
    top: 14px;
    padding: 14px 8px;
    border: 2px solid #fff;
    background-color: #fff;
    margin-top: 10px
}

@media(min-width: 1200px) {
    header .hamburger_wrapper {
        display: none
    }
}

header .hamburger_wrapper .hamburger_icon {
    width: 30px;
    height: 22px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

header .hamburger_wrapper .hamburger_icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #00b4d8;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

header .hamburger_wrapper .hamburger_icon span:nth-child(even) {
    left: 50%
}

header .hamburger_wrapper .hamburger_icon span:nth-child(6) {
    width: 0%
}

header .hamburger_wrapper .hamburger_icon span:nth-child(odd) {
    left: 0px
}

header .hamburger_wrapper .hamburger_icon span:nth-child(1),
header .hamburger_wrapper .hamburger_icon span:nth-child(2) {
    top: 0px
}

header .hamburger_wrapper .hamburger_icon span:nth-child(3),
header .hamburger_wrapper .hamburger_icon span:nth-child(4) {
    top: 9px
}

header .hamburger_wrapper .hamburger_icon span:nth-child(5),
header .hamburger_wrapper .hamburger_icon span:nth-child(6) {
    top: 18px
}

header .hamburger_wrapper.open .hamburger_icon span {
    background: #00b4d8
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(1),
header .hamburger_wrapper.open .hamburger_icon span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(2),
header .hamburger_wrapper.open .hamburger_icon span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(1) {
    left: 2px;
    top: 6px
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(2) {
    left: calc(50% - 2px);
    top: 5px
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(3) {
    left: -50%;
    opacity: 0
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(4) {
    left: 100%;
    opacity: 0
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(5) {
    left: 3px;
    top: 15px
}

header .hamburger_wrapper.open .hamburger_icon span:nth-child(6) {
    left: calc(50% - 3px);
    top: 15px;
    width: 50%
}

header .hamburger_wrapper:hover .hamburger_icon span:nth-child(6) {
    width: 50%
}

header .mobile_menu_wrapper {
    background-color: #00b4d8;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 100px;
    z-index: 99999;
    transition: all .3s ease;
    overflow-y: auto;
    opacity: 0;
    left: -100%;
    border-top: 1px solid #fff
}

header .mobile_menu_wrapper.open {
    left: 0;
    transition: all .3s ease;
    opacity: 1
}

header .mobile_menu_wrapper nav.mobile_nav {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

header .mobile_menu_wrapper nav.mobile_nav a.link {
    margin: 10px 30px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    transition: all .3s ease;
    font-weight: 500
}

header .mobile_menu_wrapper nav.mobile_nav a.link:hover {
    color: #fff;
    transition: all .3s ease
}

header .mobile_menu_wrapper nav.mobile_nav a.link_btn {
    background-color: #fff;
    color: #00b4d8;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 7px;
    padding: 5px 15px;
    width: 212px;
    display: inline-block;
    border: 1px solid #fff;
    transition: all .3s ease;
    font-weight: 500;
    margin-top: 15px;
    text-align: center
}

header .mobile_menu_wrapper nav.mobile_nav a.link_btn:hover {
    color: #fff;
    background-color: transparent;
    transition: all .3s ease
}

main.landing_page {
    overflow: hidden
}

main.landing_page section.clock {
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    position: relative
}

main.landing_page section.clock .container {
    position: relative
}

main.landing_page section.clock .wrapper {
    background-image: url("../images/clock_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-top: -100px
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper {
        margin-top: 0
    }
}

main.landing_page section.clock .wrapper .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper .wrap {
        align-items: flex-end
    }
}

main.landing_page section.clock .wrapper .time {
    font-family: "Helvetica";
    font-weight: 700;
    font-size: 75px;
    line-height: 0;
    color: #373737
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .time {
        font-size: 120px
    }
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper .time {
        font-size: 170px
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .time {
        font-size: 231px
    }
}

main.landing_page section.clock .wrapper .time span {
    font-family: "Helvetica";
    font-weight: 400;
    font-size: 30px;
    line-height: 144px;
    color: #373737;
    margin-left: 20px
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .time span {
        font-size: 50px
    }
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper .time span {
        font-size: 80px
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .time span {
        font-size: 125px
    }
}

main.landing_page section.clock .wrapper .date {
    font-weight: 400;
    font-size: 26px;
    line-height: 15px
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .date {
        font-size: 30px;
        line-height: 20px
    }
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper .date {
        font-size: 34px;
        line-height: 30px
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .date {
        font-size: 45px;
        line-height: 55px
    }
}

main.landing_page section.clock .wrapper .text {
    font-weight: 400;
    font-size: 15px;
    line-height: 29px;
    color: #595858;
    display: block;
    margin: 10px 0 35px;
    text-decoration: underline
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .text {
        font-size: 18px
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .text {
        font-size: 24px
    }
}

main.landing_page section.clock .wrapper .small_boxes_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper {
        gap: 20px
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper {
        gap: 30px
    }
}

main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes {
    background: #373737;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 110px;
    height: 90px;
    padding: 20px
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes {
        width: 130px;
        height: 110px
    }
}

main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    display: block
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country {
        font-size: 17px;
        margin-bottom: 5px
    }
}

main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country_time {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #fff
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country_time {
        font-size: 17px
    }
}

main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country_time span {
    font-size: 10px
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .small_boxes_wrapper .small_boxes .country_time span {
        font-size: 12px
    }
}

main.landing_page section.clock .wrapper .vertical_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 0;
    color: #373737;
    line-height: 75px
}

@media(min-width: 768px) {
    main.landing_page section.clock .wrapper .vertical_text {
        transform: rotate(90deg) translate(65px, -210px);
        position: absolute;
        right: 0;
        top: 50%;
        font-size: 22px
    }
}

@media(min-width: 1200px) {
    main.landing_page section.clock .wrapper .vertical_text {
        transform: rotate(90deg) translate(-50px, -210px)
    }
}

@media(min-width: 1600px) {
    main.landing_page section.clock .wrapper .vertical_text {
        font-size: 32px;
        transform: rotate(90deg) translate(-50px, -310px)
    }
}

main.landing_page section.clock .request_free_trial_wrapper {
    position: relative;
    left: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

@media(min-width: 1200px) {
    main.landing_page section.clock .request_free_trial_wrapper {
        position: absolute
    }
}

main.landing_page section.clock .request_free_trial_wrapper .btn_free_trial {
    background-color: #00b4d8;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 7px;
    padding: 5px 15px;
    width: 212px;
    height: 47px;
    border: 1px solid #00b4d8;
    transition: all .3s ease;
    font-weight: 500;
    text-align: center;
    font-family: "Helvetica";
    display: flex;
    justify-content: center;
    align-items: center
}

main.landing_page section.clock .request_free_trial_wrapper .btn_free_trial:hover {
    color: #00b4d8;
    background-color: transparent;
    transition: all .3s ease
}

main.landing_page section.features {
    background-color: #4e4c4c;
    padding: 80px 0 50px;
    width: 100%;
    position: relative;
    margin-top: 40px
}

@media(min-width: 1200px) {
    main.landing_page section.features {
        margin-top: 100px;
        padding: 150px 0 120px
    }
}

main.landing_page section.features .icon {
    position: absolute;
    right: auto;
    width: 200px;
    height: 200px;
    bottom: -125px;
    left: 50%;
    margin-left: -100px
}

@media(min-width: 992px) {
    main.landing_page section.features .icon {
        right: -100px;
        width: 250px;
        top: -50px;
        height: 250px;
        left: auto
    }
}

main.landing_page section.features .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    background-color: #1c1c1e;
    border-radius: 13px;
    padding: 120px 10px 40px;
    height: calc(100% - 30px);
    min-height: 600px
}

main.landing_page section.features .wrap .img_wrap {
    min-height: 100px
}

main.landing_page section.features .wrap span.heading {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #fff;
    display: block;
    padding: 15px 0 0
}

main.landing_page section.features .wrap span.details {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    text-align: center;
    display: block;
    margin-top: 25px
}

section.solutions {
    position: relative;
    height: auto;
    min-height: 450px;
    margin-top: 220px
}

@media(min-width: 768px) {
    section.solutions {
        min-height: 250px
    }
}

@media(min-width: 992px) {
    section.solutions {
        margin-top: 185px
    }
}

section.solutions .container {
    height: 100%
}

section.solutions .container .row {
    height: 100%
}

section.solutions .container .row .col-md-7,
section.solutions .container .row .col-md-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

section.solutions .rectangle_bg {
    position: absolute;
    left: 30px;
    right: 0;
    top: -90px;
    z-index: -1
}

@media(min-width: 1200px) {
    section.solutions .rectangle_bg {
        left: 200px
    }
}

@media(min-width: 1600px) {
    section.solutions .rectangle_bg {
        left: 400px
    }
}

section.solutions .hexagon_outer {
    width: 100px;
    height: 57.735px;
    background: #00b4d8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1.3)
}

@media(min-width: 768px) {
    section.solutions .hexagon_outer {
        transform: scale(1.7)
    }
}

section.solutions .hexagon_outer.first {
    left: 40px
}

@media(min-width: 768px) {
    section.solutions .hexagon_outer.first {
        left: 0
    }
}

section.solutions .hexagon_outer.second {
    left: 85px
}

@media(min-width: 768px) {
    section.solutions .hexagon_outer.second {
        left: 90px
    }
}

section.solutions .hexagon_outer.third {
    left: -90px;
    top: 130px
}

@media(min-width: 768px) {
    section.solutions .hexagon_outer.third {
        left: -105px;
        top: 165px
    }
}

section.solutions .hexagon_outer.fourth {
    top: 130px;
    left: -40px
}

@media(min-width: 768px) {
    section.solutions .hexagon_outer.fourth {
        top: 165px;
        left: -10px
    }
}

section.solutions .hexagon_outer::before {
    content: "";
    position: absolute;
    top: -28.8675px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 28.8675px solid #00b4d8
}

section.solutions .hexagon_outer::after {
    content: "";
    position: absolute;
    bottom: -28.8675px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 28.8675px solid #00b4d8;
    z-index: -1
}

section.solutions .hexagon_inner {
    width: 100px;
    height: 57.735px;
    background: #fff;
    position: relative;
    transform: scale(0.95)
}

section.solutions .hexagon_inner::before {
    content: "";
    position: absolute;
    top: -28.374px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 28.8675px solid #fff
}

section.solutions .hexagon_inner::after {
    content: "";
    position: absolute;
    bottom: -28.374px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 28.8675px solid #fff;
    z-index: 99
}

section.solutions .hexagon_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

section.solutions .hexagon_inner p {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    margin-bottom: 5px
}

section.solutions .hexagon_inner span {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 400;
    font-size: 8px;
    line-height: 10px;
    display: block;
    position: relative;
    z-index: 99
}

section.solutions p.text {
    font-family: "Helvetica";
    color: #383434;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin: 220px 0 0
}

@media(min-width: 768px) {
    section.solutions p.text {
        margin: 0
    }
}

@media(min-width: 1200px) {
    section.solutions p.text {
        font-size: 36px;
        line-height: 42px
    }
}

section.solutions p.text span {
    font-family: "Helvetica";
    color: #383434;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    display: block;
    margin-top: 15px
}

@media(min-width: 1200px) {
    section.solutions p.text span {
        font-size: 28px;
        line-height: 33px
    }
}

section.download_mobile_app {
    height: auto;
    margin-top: 0;
    position: relative;
    min-height: 650px;
    padding: 40px 0
}

@media(min-width: 768px) {
    section.download_mobile_app {
        height: 650px;
        margin-top: 150px
    }
}

section.download_mobile_app .container {
    position: relative;
    z-index: 99;
    height: 100%
}

section.download_mobile_app .container .row {
    height: 100%
}

section.download_mobile_app .container .row .col-md-6 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

section.download_mobile_app .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .29)
}

section.download_mobile_app p.text {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #fff;
    text-align: center
}

@media(min-width: 1200px) {
    section.download_mobile_app p.text {
        font-size: 36px;
        line-height: 42px
    }
}

section.download_mobile_app p.text span {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 20px
}

@media(min-width: 1200px) {
    section.download_mobile_app p.text span {
        font-size: 28px;
        line-height: 33px
    }
}

section.download_mobile_app a.link {
    width: 100%;
    max-width: 300px;
    height: 70px;
    background: #00b4d8;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-top: 20px;
    border: 2px solid #00b4d8;
    margin-bottom: 30px
}

section.download_mobile_app a.link:hover {
    background-color: transparent
}

section.packages {
    padding: 50px 0 0
}

@media(min-width: 1200px) {
    section.packages {
        padding: 100px 0
    }
}

section.packages h6 {
    color: #383434;
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 50px;
    text-align: center
}

@media(min-width: 1200px) {
    section.packages h6 {
        font-size: 48px;
        line-height: 56px;
        margin-bottom: 100px
    }
}

section.packages .card_wrap {
    background: #fff;
    border: 2px solid #4e4c4c;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .25);
    border-radius: 20px;
    padding: 40px 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px
}

@media(min-width: 768px) {
    section.packages .card_wrap {
        padding: 80px 15px 40px
    }
}

section.packages .card_wrap p.heading {
    font-family: "Helvetica";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #383434;
    margin-bottom: 5px
}

section.packages .card_wrap span.details {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #383434;
    text-align: center;
    display: block
}

section.packages .card_wrap p.price {
    font-family: "Montserrat", sans-serif;
    color: #00b4d8;
    font-weight: bold;
    font-size: 34px;
    line-height: 40px;
    padding: 50px 0 0px;
    margin-bottom: 5px
}

section.packages .card_wrap p.tenure {
    margin-bottom: 60px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #383434;
    text-align: center;
    display: block
}

section.packages .card_wrap .link {
    border: 1px solid #00b4d8;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #383434;
    width: 200px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Helvetica"
}

section.packages .card_wrap .link:hover {
    background-color: #00b4d8;
    color: #fff
}

section.request_demo {
    background-color: #4e4c4c;
    padding: 80px 0
}

@media(min-width: 1200px) {
    section.request_demo {
        padding: 120px 0
    }
}

section.request_demo .request_demo_text_wrapper h6 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    font-family: "Helvetica"
}

@media(min-width: 1200px) {
    section.request_demo .request_demo_text_wrapper h6 {
        font-size: 48px;
        line-height: 56px;
        margin-top: 40px
    }
}

section.request_demo .request_demo_text_wrapper p.caption {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    font-family: "Montserrat", sans-serif
}

@media(min-width: 1200px) {
    section.request_demo .request_demo_text_wrapper p.caption {
        font-size: 26px;
        line-height: 31px
    }
}

section.request_demo .request_demo_text_wrapper p.description {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin: 30px 0 0
}

@media(min-width: 1200px) {
    section.request_demo .request_demo_text_wrapper p.description {
        font-size: 26px;
        line-height: 31px;
        margin: 45px 0 20px
    }
}

section.request_demo .request_demo_text_wrapper .key_points_ul {
    list-style: none;
    padding: 30px 0 0 0
}

@media(min-width: 1200px) {
    section.request_demo .request_demo_text_wrapper .key_points_ul {
        padding: 30px 0 0 50px
    }
}

section.request_demo .request_demo_text_wrapper .key_points_ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    padding: 10px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #fff
}

@media(min-width: 1200px) {
    section.request_demo .request_demo_text_wrapper .key_points_ul li {
        font-size: 26px;
        line-height: 31px
    }
}

section.request_demo .request_demo_text_wrapper .key_points_ul li:before {
    content: "";
    background-image: url("../images/tick_icon.png");
    background-repeat: no-repeat;
    display: inline-flex;
    align-items: center;
    width: 27px;
    height: 29px
}

section.request_demo .form_wrapper {
    border-radius: 30px;
    background-color: #1c1c1e;
    padding: 50px 40px 60px
}

section.request_demo .form_wrapper p.heading {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    color: #fff;
    margin-bottom: 25px;
    font-family: "Helvetica"
}

section.request_demo .form_wrapper .form-control {
    background-color: transparent;
    border: none;
    height: 45px;
    margin-bottom: 25px;
    border-bottom: 1px solid #929295;
    border-radius: 0;
    padding: 0;
    color: #fff
}

section.request_demo .form_wrapper .form-control:focus {
    outline: none;
    box-shadow: none
}

section.request_demo .form_wrapper .form-check {
    margin: 20px 0
}

section.request_demo .form_wrapper .flex_two_elements {
    display: flex;
    justify-content: space-between
}

section.request_demo .form_wrapper .flex_two_elements select.form-control {
    width: 60px;
    color: #929295
}

section.request_demo .form_wrapper .flex_two_elements input.form-control {
    width: calc(100% - 80px)
}

section.request_demo .form_wrapper .form-check-input {
    border: 2px solid #929295;
    filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.25));
    border-radius: 2px;
    background-color: transparent;
    width: 18px;
    height: 18px
}

section.request_demo .form_wrapper .form-check-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #929295;
    padding-left: 15px
}

section.request_demo .form_wrapper .btn_submit {
    background: #929295;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, .25);
    border-radius: 9px;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 250px;
    height: 60px;
    margin-top: 20px;
    text-transform: uppercase
}

section.request_demo .form_wrapper .btn_submit:hover {
    background-color: #00b4d8;
    color: #fff
}

footer {
    background-color: #fff;
    padding: 30px 0
}

@media(min-width: 1200px) {
    footer {
        padding: 120px 0 50px
    }
}

footer .footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px
}

@media(min-width: 768px) {
    footer .footer_wrapper {
        justify-content: space-between;
        align-items: center;
        flex-direction: row
    }
}

footer .footer_wrapper .social_icons {
    padding: 0;
    margin: 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 15px
}

footer .footer_wrapper .social_icons li a img {
    width: 30px
}

@media(min-width: 1200px) {
    footer .footer_wrapper .social_icons li a img {
        width: auto
    }
}

footer .footer_wrapper .footer_menu {
    padding: 0;
    margin: 0;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    list-style: none;
    gap: 15px;
    flex-direction: column
}

@media(min-width: 768px) {
    footer .footer_wrapper .footer_menu {
        justify-content: flex-end;
        align-items: center;
        list-style: none;
        gap: 40px;
        flex-direction: row
    }
}

footer .footer_wrapper .footer_menu li a {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #373737;
    font-family: "Helvetica"
}

@media(min-width: 1200px) {
    footer .footer_wrapper .footer_menu li a {
        font-size: 24px;
        line-height: 28px
    }
}

footer .footer_wrapper .footer_menu li a:hover {
    color: #00b4d8
}

footer hr {
    border-top: 1px solid #3f3f3f;
    margin: 30px 0
}

footer .bottom_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column
}

@media(min-width: 992px) {
    footer .bottom_bar {
        flex-direction: row;
        gap: 30px
    }
}

footer .bottom_bar .copy_text {
    color: #383434;
    font-weight: 400;
    font-size: 14px;
    line-height: 11px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif
}

@media(min-width: 768px) {
    footer .bottom_bar .copy_text {
        font-size: 18px;
        line-height: 23px
    }
}

footer .bottom_bar .bottom_links {
    padding: 0;
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none
}

@media(min-width: 768px) {
    footer .bottom_bar .bottom_links {
        gap: 20px
    }
}

footer .bottom_bar .bottom_links li a {
    color: #383434;
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    text-decoration-line: underline !important;
    font-family: "Montserrat", sans-serif
}

@media(min-width: 576px) {
    footer .bottom_bar .bottom_links li a {
        font-size: 14px
    }
}

@media(min-width: 768px) {
    footer .bottom_bar .bottom_links li a {
        font-size: 18px;
        line-height: 23px
    }
}

footer .bottom_bar .bottom_links li a:hover {
    color: #00b4d8
}

/*# sourceMappingURL=styles.css.map */