

@import url('https://fonts.googleapis.com/css?family=Heebo:400,700%7COpen+Sans:400,700');

:root {
    --color: #3c3163;
    --transition-time: 0.5s;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Open Sans';
    background: #fafafa;
}
:root {
  --surface-color: #fff;
  --curve: 40;
}





* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fef8f8;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 5vw;
  padding: 0;
  list-style-type: none;
}

.card {
  position: relative;
  display: block;
  height: 100%;  
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
}

.card__image {      
  width: 100%;
  height: auto;
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;      
  border-radius: calc(var(--curve) * 1px);    
  background-color: var(--surface-color);      
  transform: translateY(100%);
  transition: .2s ease-in-out;
}

.card:hover .card__overlay {
  transform: translateY(0);
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;    
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: .2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;      
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}       

.card:hover .card__header {
  transform: translateY(0);
}

.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;      
  border-radius: 50%;      
}

.card__title {
  font-size: 1em;
  margin: 0 0 .3em;
  color: #6A515E;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";  
  font-size: .8em; 
  color: #D7BDCA;  
}

.card__status {
  font-size: .8em;
  color: #D7BDCA;
}

.card__description {
  padding: 0 2em 2em;
  margin: 0;
  color: #D7BDCA;
  font-family: "MockFlowFont";   
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}    
a {
    color: inherit;
}

.cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
}

.card {
    font-family: 'Heebo';
    --bg-filter-opacity: 0.5;
    background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
    height: 20em;
    width: 15em;
    font-size: 1.4em;
    color: white;
    border-radius: 1em;
    padding: 0.5em;
    margin-bottom: 2em;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: all, var(--transition-time);
    position: relative;
    overflow: hidden;
    text-decoration: none;
	box-shadow: -1px 6px 24px -14px rgb(0 0 0 / 75%);
}

    .card:hover {
        transform: rotate(0);
    }

    .card h1 {
        margin: 0;
        font-size: 1em;
        line-height: 1.2em;
        color: white;
    }

    .card p {
        font-size: 0.75em;
        font-family: 'Open Sans';
        margin-top: 0.5em;
        line-height: 2em;
        color: #cccccc;
    }

    .card .tags {
        display: flex;
    }

        .card .tags .tag {
            font-size: 0.75em;
            background: rgba(255,255,255,0.5);
            border-radius: 39.3rem;
            padding: 0 0.5em;
            margin-right: 0.5em;
            line-height: 3.5em;
            transition: all, var(--transition-time);
        }

    .card:hover .tags .tag {
        background: var(--color);
        color: white;
    }

    .card .date {
        position: absolute;
        top: 420px;
        right: 0;
        font-size: 0.75em;
        padding: 1em;
        line-height: 1em;
        opacity: .8;
    }

    .card:before, .card:after {
        content: '';
        transform: scale(0);
        transform-origin: top left;
        border-radius: 50%;
        position: absolute;
        left: -50%;
        top: -50%;
        z-index: -5;
        transition: all, var(--transition-time);
        transition-timing-function: ease-in-out;
    }

    .card:before {
        background: #ddd;
        width: 250%;
        height: 250%;
    }

    .card:after {
        background: #002548;
        width: 200%;
        height: 200%;
    }

    .card:hover {
        color: var(--color);
		transform: scale(1.1);
    }

   
.card-grid-space .num {
    font-size: 3em;
    margin-bottom: 1.2rem;
    margin-left: 1rem;
}

.card-yazi {
    margin-top: 325px;
}

.info {
    font-size: 1.2em;
    display: flex;
    padding: 1em 3em;
    height: 3em;
}

    .info img {
        height: 3em;
        margin-right: 0.5em;
    }

    .info h1 {
        font-size: 1em;
        font-weight: normal;
    }

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
    .cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
    }

    .info {
        justify-content: center;
    }

    .card-grid-space .num {
        /margin-left: 0;
        /text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .cards-wrapper {
        padding: 4rem 2rem;
    }

    .card {
        max-width: calc(100vw - 4rem);
    }
}

@media screen and (max-width: 450px) {
    .info {
        display: block;
        text-align: center;
    }

        .info h1 {
            margin: 0;
        }
}


.fullwidth_block-slick-carousel.category-carousel .slick-slide {
    height: 320px;
}

.utf_dashboard_stat_icon {
    font-size: 40px;
}

.search_container_block {
    height: 640px;
}

}

@media only screen and (max-width: 1365px) {
    header.fullwidth_block.dashboard .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 15px;
        padding: 0 20px;
        width: 100%;
    }

    .dashboard #logo {
        background: transparent;
        position: absolute;
        width: 100%;
        margin: 0 auto;
        margin-top: 12px;
        width: 40%;
        top: 0;
        text-align: center;
        left: 0;
        right: 0;
    }

        .dashboard #logo a {
            margin-left: 0;
            display: inline-block;
            height: 100%;
        }

            .dashboard #logo a.dashboard-logo {
                display: none;
            }

            .dashboard #logo a img {
                top: 0;
                position: relative;
                transform: none
            }

    .utf_user_menu {
        margin: 0 25px 0 25px;
    }

        .utf_user_menu ul {
            right: 0;
            left: auto;
        }

            .utf_user_menu ul::before {
                right: 25px;
                left: auto;
            }
}

@media (max-width: 1239px) {
    #navigation.style_one {
        margin: 20px 0px 0px 0px;
        width: 100%;
        padding-top: 15px;
        padding-bottom: 0;
        position: relative;
    }

        #navigation.style_one:before {
            position: absolute;
            width: 100%;
            height: 1px;
            display: block;
            top: 0;
            left: 5px;
            content: "";
            background: #e8e8e8;
            width: 940px;
        }

    .utf_inner_booking_listing_list {
        line-height: 30px;
    }

    .fullwidth_block #navigation.style_one:before {
        background: linear-gradient(to right, #e8e8e8 90%, #fff);
    }

    .utf_listing_item-container.list-layout .utf_listing_item-image {
        flex: 3;
    }

    .utf_listing_slider, .utf_listing_slider .item {
        height: 30vh;
        min-height: 400px;
        max-height: 400px;
    }

    #header.cloned {
        display: none;
    }
}

@media (max-width: 1024px) {
    #navigation.style_one {
        margin: 0;
        padding-top: 0;
    }

        #navigation.style_one:before {
            display: none;
        }

    .header_widget {
        margin-bottom: 0px;
        height: 56px;
    }

    .fullwidth_block.dashboard .header_widget {
        margin-bottom: 5px;
        height: 56px;
    }

    .utf_testimonial_box {
        border-radius: 6px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1365px) {
    .utf_user_menu ul {
        right: -25px;
        left: auto;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1239px) {
    .fs-inner-container.map-fixed {
        padding-top: 165px;
    }

    .header_item_half {
        position: fixed;
        z-index: 999;
        float: left;
        width: 100%;
        background: #fff;
    }

    .utf_listing_item-container.compact .utf_star_rating_section, .utf_listing_item-container .utf_star_rating_section {
        padding: 15px 10px;
        left: 10px;
        right: 10px;
    }
}

@media only screen and (min-width: 1260px) and (max-width: 1360px) {
    .utf_listing_item-container .utf_star_rating_section {
        padding: 15px 10px;
        left: 10px;
        right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1239px) {
    .listing_item_social li {
        margin-bottom: 8px;
    }
}

@media (max-width: 991px) {
    .search_container_block {
        height: 800px;
    }

    .main_input_search_part {
        margin-top: 10px;
    }

    .main_inner_search_block {
        top: 60%
    }

    .main_popular_categories_list {
        padding-left: 0;
    }

    .main_popular_categories {
        margin-top: 10px !important;
    }

    .main_input_search_part select, .main_input_search_part select:focus {
        font-size: 16px;
        width: 100%;
        border: 1px solid #e0e0e0;
        box-shadow: 0 1px 3px 0px rgba(0,0,0,0.08);
        background: #fff;
        height: 55px;
        padding: 12px 18px;
        border-radius: 4px;
    }

    .slick_carousel_slider {
        overflow: hidden;
    }

    li.total-costs .col-md-8 {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 10px;
    }

    li.total-costs .col-md-4 {
        padding-right: 0;
        padding-left: 0;
    }

    #dashboard {
        padding-top: 0 !important;
    }

    .utf_dashboard_navigation {
        min-width: 90%;
        max-width: 90%;
        margin: 0 5%;
        border-radius: 6px;
        position: relative;
        min-height: auto;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        padding: 0;
        transition: all 0.3s;
    }

        .utf_dashboard_navigation.active {
            margin-top: 10px;
        }

            .utf_dashboard_navigation.active ul {
                margin-top: 0;
            }

            .utf_dashboard_navigation.active ul, .utf_dashboard_navigation.active {
                opacity: 1;
                visibility: visible;
                max-height: 900px;
            }

                .utf_dashboard_navigation ul, .utf_dashboard_navigation.active ul li ul, .utf_dashboard_navigation ul li ul {
                    visibility: hidden;
                    opacity: 0;
                    max-height: 0;
                    transition: all 0.3s;
                }

                .utf_dashboard_navigation.active ul li.active ul {
                    visibility: visible;
                    opacity: 1;
                    max-height: 300px;
                }

    #header_part.fixed {
        position: relative;
        top: 0;
        width: 100%;
    }

    .utf_dashboard_content {
        padding-bottom: 0;
        height: auto;
        margin-left: 0px;
    }

    header.fullwidth_block.dashboard .container {
        padding: 0 20px;
    }

    .main_inner_search_block {
        transform: translate(0, -51%);
    }

    a.utf_dashboard_nav_responsive {
        width: 100%;
        margin: 0 25px;
        margin-top: 20px;
        background-color: #333;
        border-radius: 6px;
        color: #fff;
        text-align: center;
        padding: 12px 20px;
        font-weight: 400;
        transition: 0.2s;
        display: block;
    }

        a.utf_dashboard_nav_responsive i {
            margin-right: 5px;
        }

    .utf_messages_block_inner {
        display: block;
    }

        .utf_messages_block_inner .utf_user_messages_block {
            max-width: 100%;
            width: 100%;
            border-right: none;
            display: none;
        }

    .main_input_search_part .button {
        text-align: center;
        width: 100%;
    }

    .main_input_search_part {
        border-radius: 10px;
        display: block;
        padding: 10px;
        max-height: 100%;
        background-color: rgba(255, 255, 255, 0.25);
        box-shadow: none;
    }

    .gray-style.main_input_search_part {
        background-color: #f7f7f7;
    }

    .gray-style .main_input_search_part_item, .main_input_search_part_item {
        border-color: transparent;
    }

        .gray-style .main_input_search_part_item .chosen-container-active.chosen-with-drop .chosen-single, .gray-style .main_input_search_part_item .chosen-container .chosen-drop {
            background: #fff;
        }

    .main_input_search_part button.button {
        margin-top: 0px;
        border-radius: 4px;
    }

    .main_input_search_part_item {
        margin-bottom: 10px;
    }

    .main_input_search_part_item, .main_input_search_part .main_input_search_part_item:nth-last-child(2) {
        padding: 0;
    }

        .main_input_search_part_item .chosen-container-single .chosen-single, .main_input_search_part_item .chosen-single.chosen-container-active, .gray-style .main_input_search_part_item .chosen-container-single .chosen-single, .gray-style .main_input_search_part_item .chosen-single.chosen-container-active, .gray-style.main_input_search_part input, .gray-style.main_input_search_part input:focus, .main_input_search_part input, .main_input_search_part input:focus {
            padding: 0 20px;
            height: 55px;
            line-height: 55px;
            border-radius: 4px;
            background: #fff;
            border: 0;
            box-shadow: 0 1px 3px 0px rgba(0,0,0,0.08);
        }

            .gray-style.main_input_search_part input, .gray-style.main_input_search_part input:focus, .main_input_search_part input, .main_input_search_part input:focus {
                padding: 0 20px;
            }

    .gray-style .main_input_search_part_item.location a {
        background: #fff;
    }

    .gray-style .main_input_search_part_item .chosen-single {
        border-bottom: 1px solid #e0e0e0;
        transition: border 0s;
    }

    .main_input_search_part_item .chosen-container-single .chosen-single, .main_input_search_part_item .chosen-container-active.chosen-with-drop .chosen-single {
        border: 0;
        box-shadow: none;
        transition: 0s;
    }

    .main_input_search_part_item .chosen-container-active.chosen-with-drop .chosen-single {
        border-bottom: 0;
    }

    .main_input_search_part_item .chosen-container .chosen-drop {
        border: 1px solid #e0e0e0;
        border-top: 0;
        border-radius: 0 0 4px 4px;
        box-shadow: none;
    }

    .gray-style .main_input_search_part_item .chosen-container-active.chosen-with-drop .chosen-single {
        border: none;
    }

    .main_input_search_part_item .chosen-single::after {
        display: none;
    }

    .simple-slick-carousel .slick-dotted .slick-slider {
        margin-bottom: 0;
        width: 100%;
        left: 0;
    }

    .box_icon_two.box_icon_with_line::before {
        display: none;
    }

    .container .row div.padding-right-30 {
        padding-right: 15px !important;
    }

    .utf_listing_item-container.list-layout:hover {
        transform: none;
    }

    .utf_listing_item-container.list-layout .utf_listing_item-inner {
        position: relative;
        top: auto;
        transform: none;
        padding: 30px;
        left: 0;
    }

    .utf_listing_item-container.list-layout .utf_listing_item {
        display: block;
        height: auto;
        padding: 0;
    }

        .utf_listing_item-container.list-layout .utf_listing_item .listing-badge {
            display: none;
        }

    .utf_listing_item-container.list-layout .utf_listing_item-image {
        min-height: auto;
    }

    .utf_listing_item-container.list-layout .utf_listing_item-details {
        position: relative;
        bottom: auto;
        right: auto;
        left: 0;
        top: -15px;
        margin: 0px 30px 15px 30px;
        padding: 5px 20px;
        background-color: #eee;
        border-radius: 50px;
        font-size: 14px;
        width: auto;
        display: inline-block;
    }

    #titlebar {
        padding: 40px 0 20px;
        margin-bottom: 60px;
    }

    .utf_panel_dropdown {
        margin-right: 4px;
        display: block;
        width: 100%;
    }

    .fullwidth_block-filters .sort-by {
        display: block;
        width: 100%;
    }

        .fullwidth_block-filters .sort-by label, .fullwidth_block-filters .sort-by .utf_sort_by_select_item {
            float: left;
            margin-top: 10px;
        }

    .utf_panel_dropdown {
        margin-top: 0;
        float: left;
        width: auto;
    }

        .utf_panel_dropdown a, .fullwidth_block-filters .sort-by .chosen-container-single .chosen-single {
            background: #f3f3f3;
        }

        .utf_panel_dropdown .utf_panel_dropdown-content, .fullwidth_block-filters .utf_panel_dropdown.float-right .utf_panel_dropdown-content {
            left: 0;
            right: auto;
            width: 400px;
            max-width: 70vw;
        }

    .fullwidth_block-filters .sort-by .chosen-container.chosen-with-drop .chosen-drop, .fullwidth_block-filters .sort-by .chosen-container .chosen-drop {
        left: 0;
        right: auto;
        margin-left: 0;
    }

    .fs-inner-container.map-fixed {
        height: 500px;
        position: relative;
        top: 0;
        padding-top: 0 !important;
        width: 100%;
    }

    .fs-inner-container.content {
        width: 100%;
        padding-top: 0 !important;
        overflow: hidden;
    }

    .buttons-to-right, .utf_dashboard_list_box .button.to-right {
        position: relative;
        transform: none;
        top: 0;
        margin: 10px 0 0 0;
        opacity: 1;
        right: auto;
    }

    .utf_list_box_listing_item-img {
        max-width: 168px;
    }

    .utf_add_review-photos {
        float: left;
        top: 0;
    }

    .utf_add_review-box {
        border-radius: 4px;
        background-color: #f9f9f9;
        padding: 36px;
        padding-bottom: 40px;
        margin-bottom: 30px;
        margin-top: 70px;
        display: inline-block;
        width: 100%;
        position: relative;
    }

    .utf_listing_slider .slick-next:hover, .utf_listing_slider .slick-next {
        right: 100px
    }

    .utf_listing_slider .slick-prev:hover, .utf_listing_slider .slick-prev {
        left: 100px
    }

    .utf_listing_slider, .utf_listing_slider .item {
        height: 30vh;
        min-height: 400px;
        max-height: 400px;
    }

    .listing-nav-container.cloned .listing-nav {
        display: none;
    }

    .utf_opening_day .chosen-container {
        vertical-align: initial;
    }

    .utf_dashboard_content .utf_dashboard_list_box-static {
        margin-bottom: 20px;
    }

    #googlemaps {
        height: 30vh !important;
        padding-bottom: 0 !important;
    }

    .utf_contact_map {
        display: block;
    }

        .utf_contact_map #utf_single_listing_map_block {
            flex: 1;
            position: relative;
            padding-top: 0;
            display: block;
            height: 300px;
        }

        .utf_contact_map .address-box-container {
            width: 100%;
        }
}

@media (max-width: 527px) {
    .utf_panel_dropdown {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .utf_listing_item-container.list-layout .utf_listing_item-inner {
        padding: 20px;
    }

    .utf_signin_form .social_bt.facebook_btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .utf_listing_features {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    #dialog_signin_part .mfp-close::after, #dialog_signin_part .mfp-close::before, #small-dialog .mfp-close::after, #small-dialog .mfp-close::before {
        top: 0px;
    }

    .slick-dots {
        bottom: -30px;
    }

    .utf_payment_logo {
        display: none;
    }

    .fs-container .fs-listings, .fs-switcher {
        padding: 0;
    }

    .fs-container div.search {
        padding: 40px 20px;
    }

    .listing_item_social li {
        margin-bottom: 8px;
    }

    .simple_slick_carousel_block {
        margin-left: 15px;
        margin-right: 15px;
    }

    .slick_carousel_slider {
        overflow: hidden;
    }

    .messages-headline_part h4 {
        display: block;
    }

    .message-action {
        display: inline-block;
        float: none;
        margin-top: 15px;
        background-color: #f2f2f2;
        border-radius: 50px;
        padding: 4px 20px;
        text-align: center;
    }

    .utf_glooph {
        width: 100%;
        margin: 5px 0;
    }

    .utf_add_listing_part_headline_part h3 {
        font-size: 18px;
    }

    .utf_add_listing_part_headline_part {
        padding: 20px;
        width: calc(100% + 40px);
        left: -20px;
    }

    .utf_dashboard_list_box-static {
        padding: 20px;
    }

    .utf_opening_day {
        margin-bottom: 10px;
    }

    .add_utf_listing_section {
        padding: 0 20px 20px 20px;
    }

    #bottom_backto_top {
        display: block;
        margin-bottom: 40px;
        margin-right: 15px;
    }

    .small_dialog_header {
        width: calc(100% + 30px);
        left: -15px;
        padding: 15px 20px;
    }

    #dialog_signin_part, #small-dialog {
        background: #fff;
        padding: 15px;
        padding-top: 0;
    }

        #dialog_signin_part .mfp-close, #small-dialog .mfp-close {
            top: 13px;
            right: 15px;
            width: 34px;
            height: 34px;
        }

    .utf_list_box_listing_item {
        display: block;
    }

    .utf_list_box_listing_item_content .inner {
        position: relative;
        top: 0;
        transform: translateY(0);
        display: inline-block;
    }

    .utf_list_box_listing_item-img {
        max-width: 100%;
    }

    .utf_list_box_listing_item_content {
        padding-left: 0;
        padding-top: 10px;
    }

    .pricing_info {
        overflow: hidden;
        padding: 10px 0 20px;
    }

    #titlebar {
        padding: 40px 0 20px;
        margin-bottom: 40px;
    }

    #utf_map_container.fullwidth_block-home-map .zoomControlWrapper {
        top: 15px !important;
    }

    .utf_pricing_container_block {
        display: block;
    }

    .plan.featured {
        transform: none;
    }

    #breadcrumbs {
        position: relative;
        display: block;
        margin-top: 5px;
    }

        #breadcrumbs ul li {
            margin: 0 10px 0 0;
        }

    .utf_by_comment .numerical-rating, .utf_by_comment .utf_star_rating_section {
        position: relative;
        right: 0;
        top: 7px;
        display: block;
        width: 100%;
        float: none;
        height: 30px;
    }

    .avatar {
        display: block;
    }

    .utf_comment_content {
        padding: 0;
    }

    .small_dialog_header h3 {
        padding: 0;
        margin: 0;
        font-size: 22px;
        padding-right: 80px;
        line-height: 30Px;
    }

    #dialog_signin_part, #small-dialog {
        max-width: 100vw;
    }

    .listing-nav li a {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
        width: 100%;
        display: block;
        padding-left: 0;
        border-color: #e8e8e8;
    }

    .listing-nav li {
        margin-right: 0;
        display: block;
    }

    .listing-nav-container .listing-nav li:first-child a {
        padding-top: 0;
    }

    .listing-nav-container.cloned .listing-nav li:first-child a.active, .listing-nav-container.cloned .listing-nav li:first-child a:hover, .listing-nav li:first-child a, .listing-nav li a.active, .listing-nav li a:hover {
        border-color: #e8e8e8;
    }

    .utf_dashboard_content .checkboxes label {
        width: 100%;
    }

    .pricing-list-item td {
        display: block;
        width: 100%;
        position: relative;
    }

        .pricing-list-item td .fm-input, .pricing-list-item td .fm-input.pricing-price, .pricing-list-item td .fm-input.pricing-name {
            max-width: 100%;
            margin-right: 0;
        }

        .pricing-list-item td .fm-close {
            text-align: left;
            position: absolute;
            top: 4px;
            right: 0;
        }

    .utf_about_author img {
        width: 70px;
        height: 70px;
    }

    .utf_about_description {
        margin: 2px 0 0 100px;
    }

    #posts-nav li {
        position: relative;
        width: 100%;
    }

        #posts-nav li a {
            padding: 0 !important;
        }

            #posts-nav li a::before {
                display: none;
            }

        #posts-nav li.next-post {
            text-align: left;
            margin-bottom: 30px;
        }

    .comments ul li ul {
        margin: 0;
    }

    .avatar img {
        max-width: 80px;
    }

    .utf_comment_content {
        padding: 0 0 0 85px;
    }

    .comments ul li ul li::before {
        top: 25px;
    }

    .comments ul li, .comments ul li ul li, .comments ul li ul li ul li, .comments ul li ul li ul li {
        margin-top: 20px;
    }

    .utf_comment_content {
        padding: 0 0 20px 0;
    }

    .testimonial::after {
        display: none;
    }

    .utf_testimonial_box {
        padding: 20px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 979px) {
    .utf_user_menu {
        display: block;
    }

    .utf_glooph {
        width: 47%;
    }
}

@media (max-width: 979px) {
    .main_input_search_part_item.location a {
        padding: 10px 0;
    }

    .utf_price_plan_features {
        margin-bottom: 30px;
    }

    .utf_booking_payment_option_form {
        margin-bottom: 40px;
    }

    .sidebar-search {
        margin-bottom: 70px;
        margin-top: 30px !important;
    }

    .chosen-container-single .chosen-single div {
        right: 0px;
    }

    .utf_box_widget .with-forms .chosen-container-single .chosen-single div {
        right: 22px;
    }

    #utf_add_listing_part .chosen-container-single .chosen-single div {
        right: 20px;
    }

    .main_input_search_part_item .chosen-container-single .chosen-single div {
        right: 0px;
    }

    .utf_user_menu {
        display: block;
        margin: 0px 0 30px 25px;
    }

    #contact {
        margin-bottom: 30px !important;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1366px) {
    .dashboard #logo {
        background: transparent;
        position: relative;
        width: 100%;
        margin: 0;
        margin-top: 0;
        width: 100%;
        top: 0;
        text-align: left;
        left: 0;
        right: 0;
    }
}

@media only screen and (min-width: 1240px) and (max-width: 1365px) {
    .dashboard #logo {
        min-width: 240px;
        max-width: 240px;
    }
}

@media only screen and (min-width: 1240px) and (max-width: 1366px) {
    header.fullwidth_block.dashboard .container {
        padding-left: 270px;
    }

    .dashboard #logo {
        display: block;
        background-color: #2a2a2a;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        margin: 0;
        box-shadow: none;
    }

        .dashboard #logo a.dashboard-logo {
            display: block;
        }

        .dashboard #logo a {
            display: none;
            margin-left: 15px;
        }

    .utf_left_side {
        float: left;
        width: 70%;
        display: inline-block;
    }

    .utf_right_side {
        float: right;
        width: 28%;
        display: inline-block;
    }

    .dashboard #logo a img {
        top: 50%;
        position: relative;
        transform: translate3d(0, -50%, 0);
    }
}

@media only screen and (min-width: 1367px) and (max-width: 1700px) {
    .utf_left_side {
        float: left;
        width: 70%;
        display: inline-block;
    }

    .utf_right_side {
        float: right;
        width: 28%;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .search_categorie_block {
        display: block
    }

    .add-review-photos {
        float: left;
        top: -5px;
    }

    .utf_dashboard_list_box .sort-by .utf_sort_by_select_item {
        display: none;
    }

    a.close-list-item {
        opacity: 0;
    }

    .utf_dashboard_list_box ul li:hover a.close-list-item {
        opacity: 0;
    }

    .category_container_item_part a img {
        width: 100%;
        object-fit: cover;
        height: 300px;
    }

    .utf_box_widget {
        padding: 20px;
    }

    #footer ul.social_footer_link {
        min-height: 180px;
    }

    .search_container_block h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .search_container_block h4 {
        font-size: 18px;
        line-height: 30px;
    }

    .headline_part span {
        font-size: 16px;
        line-height: 28px
    }

    h2.headline_part, h3.headline_part {
        font-size: 26px;
        line-height: 36px;
    }

    .sl-icons-demo .col-md-3 {
        width: 100%;
        margin: 5px 0;
    }

    .box_icon_two {
        margin-top: 10px;
    }

    .utf_text_content h2 {
        margin-bottom: 30px;
        line-height: 38px;
        font-size: 26px;
    }

    .utf_text_content p {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
    }

    .recent_booking {
        display: none;
    }
}

@media (max-width: 609px) {
    .tp-caption .utf_rev_description_text {
        line-height: 26px !important;
        margin-top: -5px !important;
        font-size: 17px !important;
    }

    .rev_slider .tp-mask-wrap :last-child {
        margin-top: 5px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 510px) {
    .utf_signin_form ul.utf_tabs_nav li {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 479px) {
    .utf_box_widget h3 {
        font-size: 18px;
    }

        .utf_box_widget h3 i {
            width: 34px;
            height: 34px;
            padding: 8px;
            font-size: 16px;
            margin-right: 5px;
        }

    .utf_text_content {
        padding: 80px 0;
    }

    .utf_dashboard_list_box a.rate-review {
        padding: 3px 10px;
        margin-top: 60px;
    }

    .add-pricing-submenu.button, .add-pricing-list-item.button {
        padding: 7px 13px;
    }

    .utf_listing_item-container.compact .utf_star_rating_section {
        padding: 15px 10px;
        bottom: -25px;
        left: 10px;
        right: 10px;
    }

    .utf_listing_item-container .utf_star_rating_section {
        padding: 15px 10px;
        left: 10px;
        right: 10px;
    }

    .lost_password a {
        font-size: 14px;
    }

    .form_forgot_part .checkboxes label {
        padding-left: 25px;
        font-size: 14px;
    }

    .form_forgot_part {
        margin-bottom: 15px;
    }

    .tp-caption .utf_rev_description_text {
        line-height: 25px !important;
        margin-top: -5px !important;
        font-size: 16px !important;
    }

    .rev_slider .tp-mask-wrap :last-child {
        margin-top: 20px !important;
        font-size: 14px !important;
    }

    .listing_message {
        float: left;
        margin: 0 auto;
        margin-top: 20px;
    }

    .utf_pricing_list_section span {
        right: 10px;
        font-weight: 600;
        font-size: 13px;
        padding: 2px 15px;
        border-radius: 30px;
    }
}

@media (max-width: 359px) {
    .utf_right_side .header_widget a.button.border {
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .utf_tabs_nav.blog li, .utf_tabs_nav.blog li a, .utf_tabs_nav li, .utf_tabs_nav li a {
        width: 100%;
        padding: 0;
        border-radius: 3px;
        text-align: center;
        border-bottom: none;
    }

    .utf_about_author img {
        display: none;
    }

    .utf_about_description {
        margin: 0;
    }

    .utf_user_menu {
        margin: 10px 0 20px 25px;
        top: 0;
        display: block;
    }

    .header_widget .sign-in {
        position: relative;
        display: block;
        top: 0px;
        margin-bottom: 10px;
        margin-right: 25px;
    }
}

.main_popular_categories {
    display: inline-block;
    margin: 15px auto 0 auto;
    width: 100%;
}

    .main_popular_categories h3 {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        text-align: center;
        margin: 10px 0 20px 0;
    }

ul.main_popular_categories_list {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-left: 0;
}

    ul.main_popular_categories_list li {
        margin: 5px;
        list-style: none;
        display: inline-block;
        text-align: center;
    }

        ul.main_popular_categories_list li a {
            background: rgba(255, 255, 255, 0.07);
            position: relative;
            width: 150px;
            height: 105px;
            display: block;
            overflow: hidden;
            color: #ffffff;
            border-radius: 6px;
            padding: 7px;
            -webkit-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
        }

            ul.main_popular_categories_list li a:hover {
                background: #ff2222;
                color: #fff
            }

.utf_box {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding-top: 16px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
    -webkit-box-shadow: 0px 0px 16px 0px rgba(2, 2, 2, 0.1);
}

    .utf_box i {
        font-size: 26px;
        margin-bottom: 5px;
    }

@media only screen and (max-width: 2600px) and (min-width: 1400px) {
    .utf_testimonial_part {
        background-size: cover;
    }

    .parallax {
        background-size: 100%
    }

    .utf_left_side {
        float: left;
        width: 70%;
        display: inline-block;
    }

    .utf_right_side {
        float: right;
        width: 28%;
        display: inline-block;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 980px) {
    .utf_search_map_section li {
        margin-right: 10px;
    }

    .utf_common_button {
        padding: 0 10px !important
    }

    .listing_filter_block .utf_search_map_section ul {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 1239px) and (min-width: 980px) {
    ul.main_popular_categories_list {
        padding-left: 0;
    }

        ul.main_popular_categories_list li a {
            width: 140px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .utf_dashboard_list_box {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 979px) and (min-width: 768px) {
    ul.main_popular_categories_list li a {
        width: 105px;
    }

        ul.main_popular_categories_list li a p {
            font-size: 14px;
        }

    ul.main_popular_categories_list {
        padding-left: 0;
    }

    .utf_glooph {
        width: 46%;
    }

    .sl-icons-demo .col-md-3 {
        width: 48%;
    }

    .fa-icons-demo .col-md-4 {
        width: 47%;
    }

    .utf_category_small_box_part {
        padding: 55px 20px;
    }

    .chosen-container-single .chosen-single div:after {
        right: 0;
    }
}

body.home-2 .banner p {
    color: #fff;
    opacity: .92;
    margin: 0 auto 15px;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 1.9;
}

h4.headline {
    font-size: 22px;
    line-height: 32px;
    margin: -5px 0 30px 0;
    margin-top: -5px;
}

@media (max-width: 767px) {
    .utf_category_small_box_part {
        padding: 30px 10px;
        border-radius: 4px;
    }

        .utf_category_small_box_part span {
            top: 10px;
            right: 10px;
        }

    .utf_listing_categorybox {
        margin: 10px 0;
    }

    .utf_listing_categorie .col-xs-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .simple_slick_carousel_block .utf_carousel_item {
        padding: 10px 0px 0 0px;
    }

    .utf_listing_section .social-contact a, .utf_post_content .social-contact a {
        margin-bottom: 10px;
    }

    .utf_dashboard_list_box ul li {
        padding: 20px 10px 20px 10px;
    }

    .utf_search_map_section li {
        margin-right: 0;
        margin-bottom: 15px !important;
    }

    .chosen-container-single .chosen-single div:after {
        right: 0;
    }

    .utf_add_review-box {
        padding: 30px 20px;
    }

    .fa-icons-demo .col-md-4 {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 639px) {
    .search_container_block {
        height: 1000px;
    }

    .main_search_block {
        height: 680px;
    }

    ul.main_popular_categories_list li a {
        width: 130px;
        height: 100px
    }

    .utf_box p {
        font-size: 14px;
    }

    .search_container_block:before {
        height: 98%
    }

    .main_search_block:before {
        height: 100%
    }

    .main_popular_categories {
        margin-top: 20px;
    }

    .main_inner_search_block {
        top: 60%;
    }

    ul.main_popular_categories_list {
        padding-left: 0;
    }
}

.utf_coupon_widget {
    border-radius: 4px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    transition: .3s;
    display: block;
}

.utf_coupon_overlay {
    background-color: #000;
    position: absolute;
    border-radius: 4px;
    opacity: .8;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.utf_coupon_widget a.utf_coupon_top {
    padding: 30px;
    position: relative;
    z-index: 10;
    text-align: center;
    cursor: default;
    display: block;
    cursor: pointer;
    background: rgba(255,255,255,.07);
}

    .utf_coupon_widget a.utf_coupon_top h3 {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
        margin: 0;
        font-weight: 500;
        color: #fff;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

.utf_coupon_widget .utf_coupon_bottom {
    margin: 0;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 15px;
    border-radius: 0 0 4px 4px;
}

.utf_coupon_expires_date {
    background-color: #ff2222;
    display: inline-block;
    border-radius: 4px;
    padding: 5px 15px;
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
}

.utf_coupon_used {
    padding: 0 20px;
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
    color: rgba(255,255,255,.85);
}

    .utf_coupon_used strong {
        font-weight: 600;
    }

.utf_coupon_bottom p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.utf_coupon_code {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    display: inline-block;
    padding: 2px 15px;
    border-radius: 4px;
    position: relative;
    z-index: 11;
    text-transform: uppercase;
    transition: .4s;
    border: 2px dashed rgba(255, 255, 255, 0.4);
}

.header-button .dashboard_header_button_item:first-child {
    padding-left: 15px;
    margin-right: 25px;
}

.header-button .dashboard_header_button_item {
    cursor: pointer;
}

.dashboard_header_button_item i {
    position: relative;
    font-size: 20px;
    line-height: 30px;
}

.dashboard_header_button_item:hover i {
    color: #323232
}

.dashboard_header_button_item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px;
    margin-top: 6px;
    background: #f9f9f9;
    border-radius: 30px;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    text-align: center;
}

.header-button .dashboard_header_button_item > i {
    vertical-align: middle;
    font-size: 28px;
    margin-top: 10px;
}

.has-noti > i::after {
    content: '';
    height: 8px;
    width: 8px;
    background: #ff2222;
    position: absolute;
    border-radius: 100%;
    top: -5px;
    right: -5px;
}

.header-button .dashboard_header_button_item > i {
    font-size: 28px;
}

.header-button .dashboard_header_button_item .dashboard_notifi_dropdown {
    top: 60px;
    left: auto;
    right: -68px;
    transform-origin: right top;
}

.dashboard_notifi_item {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #f2f2f2;
    transition: all .5s ease;
}

.dashboard_notifi_dropdown, .setting-dropdown {
    position: absolute;
    z-index: 9999;
    min-width: 250px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
    transform: scale(0);
    transition: all .4s ease;
    transform-origin: right top;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dashboard_notifi_title {
    padding: 22px;
    border-bottom: 1px solid #f2f2f2;
    cursor: default;
    text-align: left;
}

    .dashboard_notifi_title p {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 600;
        color: #808080;
    }

.dashboard_notifi_item .content {
    width: calc(100% - 55px);
    text-align: left;
    font-size: 14px;
}

.pad-tb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.bg-c1.red i {
    background: #ff2222;
}

.dashboard_notify_bottom a:hover {
    color: #ff2222;
}

.dashboard_notify_bottom a {
    color: #666;
    font-weight: 600;
}

.dashboard_notifi_item .content p {
    color: #555;
    line-height: 1.5;
    padding-top: 5px;
    margin-bottom: 0px;
}

    .dashboard_notifi_item .content p b {
        font-weight: 600;
    }

.dashboard_notifi_item .content .date {
    font-size: 13px;
    font-weight: 500;
    color: #999;
}

.dashboard_notifi_item:hover {
    background: #f7f7f7;
}

.bg-c1 {
    display: flex;
    margin-top: 10px;
}

    .bg-c1.green i {
        background: rgba(84, 186, 29, 1);
    }

    .bg-c1 i {
        font-size: 18px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        display: inline-block;
        text-align: center;
        margin-right: 15px;
        color: #fff !important;
    }

.header-button .dashboard_header_button_item .dashboard_notifi_dropdown {
    top: 60px;
    left: auto;
    right: -68px;
    transform-origin: right top;
}

.show-dropdown .js-dropdown {
    transform: scale(1);
}

.dashboard_notifi_dropdown {
    left: -300px;
    top: 61px;
}

    .dashboard_notifi_dropdown::before {
        content: '';
        position: absolute;
        right: 12px;
        bottom: 100%;
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #fff;
    }

@media only screen and (max-width: 1024px) {
    .utf_user_menu {
        display: block;
        margin: 0px 0 20px 0px;
        float: right;
    }

    #header {
        padding: 10px 0 5px 0;
    }

    .dashboard_header_button_item {
        position: relative;
        display: inline-block;
        cursor: pointer;
        align-items: center;
        float: left;
    }

    .dashboard_notifi_dropdown {
        right: -300px;
        left: 0;
        top: 62px;
    }

        .dashboard_notifi_dropdown::before {
            content: '';
            position: absolute;
            right: 0;
            width: 26px;
            left: 10px;
            bottom: 100%;
            border-width: 10px;
            border-style: solid;
            border-color: transparent transparent #fff;
        }

    .dashboard_notifi_dropdown, .setting-dropdown {
        transform-origin: left top;
    }
}

@media only screen and (max-width: 767px) {
    .aramabuton {
        width: 100%;
    }

    .utf_user_menu {
        top: 7px;
    }

    .dashboard_notifi_dropdown {
        right: -300px;
    }

    .home_main_search_part {
        height: 630px;
    }
}


@media only screen and (max-width: 365px) {
    .dashboard_notifi_dropdown {
        right: -240px;
    }
}

a.social_bt.facebook_btn {
    background-color: #3b5998;
}

a.social_bt.google_btn {
    background-color: #dc4e41;
}

    a.social_bt.facebook_btn i, a.social_bt.google_btn i {
        text-align: left;
        padding-right: 5px;
    }

a.social_bt:hover {
    -webkit-filter: brightness(115%);
    filter: brightness(115%);
}

a.social_bt {
    text-align: center;
    color: #fff;
    display: block;
    padding: 15px;
    line-height: 1;
    border-radius: 4px;
    position: relative;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.utf-login_with::after {
    z-index: -1;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #E9E4E4;
    left: 0;
    top: 14px;
}

.utf-login_with .txt {
    display: inline-block;
    background: #e8e8e8;
    padding: 0 10px;
    text-transform: uppercase;
    color: #323232;
    font-weight: 600;
    font-size: 14px;
    border-radius: 34px;
}

.utf-login_with {
    position: relative;
    text-align: center;
    margin: 15px 0;
}

.booking_widget_box h3 .price {
    float: right;
}

    .booking_widget_box h3 .price > span {
        font-size: 24px;
        font-weight: 600;
    }

        .booking_widget_box h3 .price > span > small {
            font-size: 13px;
            font-weight: 500;
            padding-left: 4px;
            color: #707070;
        }

.add_to_wishlist {
    width: 220px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto;
    display: block;
}

.reviews-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

#review_summary {
    text-align: center;
    color: #fff;
    padding: 20px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

#review_summary, .reviews-container .progress-bar {
    background-color: #0054a6;
}

    #review_summary strong {
        font-size: 42px;
        display: block;
        line-height: 1;
        font-weight: 700;
    }

    #review_summary em {
        font-style: normal;
        font-weight: 600;
        display: block;
    }

    #review_summary small {
        font-size: 86%;
        font-weight: 400;
    }

.review_progres_title small {
    margin-top: -5px;
    display: block;
    font-size: 90%;
}

    .review_progres_title small strong {
        font-weight: 600
    }

.reviews-container .progress {
    margin-bottom: 14px;
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 16px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 30px;
}

#review_summary, .reviews-container .progress-bar {
    background-color: #ff2222;
}

.booking_widget_box .select_date_box {
    position: relative
}

    .booking_widget_box .select_date_box i {
        position: absolute;
        top: 37%;
        transform: translateY(-50%);
        right: 28px;
        z-index: 10;
        color: #999;
    }

.unique_search_block:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.search-input-icon {
    width: 330px;
    padding: 0 0px 0 20px;
    position: relative;
    margin-top: 3px;
}

    .search-input-icon input {
        padding-right: 30px;
        background: #fff;
    }

    .search-input-icon i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 21px;
        z-index: 10;
        color: #999;
    }

.option-set {
    text-align: center;
    display: inline-block;
    padding: 15px 0px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .option-set li {
        display: inline-block;
        margin-right: 2px;
    }

        .option-set li a {
            padding: 5px 16px;
            display: block;
            outline: none;
            border: 1px solid rgba(0, 0, 0, 0.07);
            font-weight: 500;
            margin: 0;
            font-size: 15px;
            border-radius: 6px;
            background-color: #ffffff;
            color: #666;
            line-height: 26px;
            transition: all .3s;
        }

            .option-set li a.selected {
                color: #fff;
                background-color: #ff2222;
            }

            .option-set li a:hover {
                color: #fff;
                background-color: #ff2222;
            }

.category_container_item_part a .featured {
    color: #fff;
    background-color: #F12C15;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    padding: 50px 0 15px;
    position: absolute;
    left: -130px;
    text-align: center;
    text-transform: uppercase;
    top: -75px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right top 0;
    transform-origin: right top 0;
    width: 180px;
    z-index: 99;
}

@media (max-width: 991px) {
    .search-input-icon {
        width: 100%;
        padding: 0;
    }

    .isotope-wrapper .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .option-set li a {
        margin-bottom: 10px;
    }

    .option-set li:last-child a {
        margin-bottom: 0;
    }
}

@media (max-width: 1259px) {
    .reviews-container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }

    .review_progres_title {
        margin-top: 10px;
        float: left;
    }

    .reviews-container .col-lg-9 {
        margin-top: 10px;
    }

        .reviews-container .col-lg-9 .col-lg-2 {
            -ms-flex: 0 0 20%;
            flex: 0 0 20%;
            width: 100px;
        }

        .reviews-container .col-lg-9 .col-lg-9 {
            -ms-flex: 0 0 70%;
            flex: 0 0 70%;
            width: 72%;
            margin-top: 10px;
            float: left;
        }

        .reviews-container .col-lg-9 .col-lg-1 {
            -ms-flex: 0 0 10%;
            flex: 0 0 10%;
            width: 80px;
            margin-top: 10px;
            float: left;
        }
}

@media (max-width: 320px) {
    .header_widget .button, .header_widget .button.border {
        min-width: 110px;
    }
}

@media (max-width: 639px) {
    .reviews-container .col-lg-9 .col-lg-2 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        width: 90px;
    }

    .reviews-container .col-lg-9 .col-lg-9 {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        width: 48%;
        margin-top: 10px;
        float: left;
    }

    .reviews-container .col-lg-9 .col-lg-1 {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        width: 70px;
        margin-top: 10px;
        float: left;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1239px) {
    .utf_dashboard_content {
        margin-top: 75px;
    }

    .utf_dashboard_navigation {
        margin-top: 64px;
    }

    .utf_dashboard_navigation_inner_block {
        width: calc(100% + 0px);
    }

    .utf_dashboard_list_box h4 {
        font-size: 15px;
        line-height: 40px;
    }

    .utf_dashboard_list_box ul li {
        padding: 15px;
        line-height: 24px;
    }

    .utf_dashboard_list_box .utf_sort_by_select_item select {
        width: 140px;
    }

    .booking_widget_box h3 .price > span {
        font-size: 18px;
    }

    .utf_box_widget h3 {
        font-size: 18px;
    }

        .utf_box_widget h3 i {
            margin-right: 5px;
        }

    .utf_social_icon li {
        margin-right: 8px;
    }

    .utf_box_widget {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 1365px) and (min-width: 1240px) {
    .dashboard #logo {
        min-width: 260px;
        max-width: 260px;
    }

    .utf_dashboard_navigation_inner_block {
        width: calc(100% + 0px);
    }
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local(""), url(../assets/fonts/montserrat/montserrat.woff2.html) format("woff2"), url(assets/fonts/montserrat/montserrat.woff.html) format("woff");
}
@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local(""), url(../assets/fonts/montserrat/montserrat-500.woff2.html) format("woff2"), url(assets/fonts/montserrat/montserrat-500.woff.html) format("woff");
}
@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local(""), url(../assets/fonts/montserrat/montserrat-600.woff2.html) format("woff2"), url(assets/fonts/montserrat/montserrat-600.woff.html) format("woff");
} /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
article,
aside,
footer,
header,
nav,
section {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
figcaption,
figure,
main {
    display: block;
}
figure {
    margin: 1em 40px;
}
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    -moz-text-decoration: underline dotted;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: inherit;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
dfn {
    font-style: italic;
}
mark {
    background-color: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
audio,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
img {
    border-style: none;
}
svg:not(:root) {
    overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    display: inline-block;
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details,
menu {
    display: block;
}
summary {
    display: list-item;
}
canvas {
    display: inline-block;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #f6f9fa;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.no-scroll body,
.smooth body {
    overflow: hidden !important;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:focus {
    outline: 0 !important;
}
::-moz-selection {
    color: #fff;
    background: #1c2539;
}
::selection {
    color: #fff;
    background: #1c2539;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
}
a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}
a,
button,
input,
label {
    -webkit-tap-highlight-color: transparent;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
@media (-webkit-max-device-pixel-ratio: 1.6), (-webkit-max-device-pixel-ratio: 1.6666666666666667), (max--moz-device-pixel-ratio: 1.6666666666666667), (-o-max-device-pixel-ratio: 5/3), (max-resolution: 160dpi) {
    .chrome img {
        image-rendering: -webkit-optimize-contrast;
    }
}
figure {
    margin: 0;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
p {
   
    padding: 0;
}
address,
em {
    font-style: normal;
}
@media print {
    *,
    ::after,
    ::before {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}
.pt-view {
    height: 100%;
    background: #fff;
}
.pt-layout {
    height: 100%;
}
.pt-layout .scrollbar-track {
    right: 3px;
    background: 0 0;
    z-index: 200;
}
.pt-layout .scrollbar-thumb-y {
    background: #333;
}
.pt-layout .scrollbar-thumb-y:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -3px;
    left: -3px;
    bottom: 0;
}
.pt-layout .scrollbar-thumb-y:hover {
    background: #000;
}
.pt-layout .scroll-content {
    height: 100%;
    will-change: transform;
}
.pt-content {
    padding: 140px 0;
}
@media (min-width: 1024px) {
    .pt-content {
        padding: 160px 0;
    }
}
@media (min-width: 1200px) {
    .pt-content {
        padding: 250px 0;
    }
}
.pt-advantage-container,
.pt-billboard-container,
.pt-container,
.pt-definition-container,
.pt-demo-container,
.pt-description-container,
.pt-explore-container,
.pt-faq-container,
.pt-feature-container,
.pt-footer-container,
.pt-hero-container,
.pt-intro-container,
.pt-navbar-container,
.pt-outro-container,
.pt-overview-container,
.pt-partner-container,
.pt-pricing-container,
.pt-tophead-container,
.pt-workplace-container {

}
@media (min-width: 768px) {
    .pt-advantage-container,
    .pt-billboard-container,
    .pt-container,
    .pt-definition-container,
    .pt-demo-container,
    .pt-description-container,
    .pt-explore-container,
    .pt-faq-container,
    .pt-feature-container,
    .pt-footer-container,
    .pt-hero-container,
    .pt-intro-container,
    .pt-navbar-container,
    .pt-outro-container,
    .pt-overview-container,
    .pt-partner-container,
    .pt-pricing-container,
    .pt-tophead-container,
    .pt-workplace-container {
        padding: 0 40px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-container,
    .pt-billboard-container,
    .pt-container,
    .pt-definition-container,
    .pt-demo-container,
    .pt-description-container,
    .pt-explore-container,
    .pt-faq-container,
    .pt-feature-container,
    .pt-footer-container,
    .pt-hero-container,
    .pt-intro-container,
    .pt-navbar-container,
    .pt-outro-container,
    .pt-overview-container,
    .pt-partner-container,
    .pt-pricing-container,
    .pt-tophead-container,
    .pt-workplace-container {
        padding: 0 60px;
    }
}
@media (min-width: 768px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        margin: 0 auto;
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        max-width: 1024px;
    }
}
@media (min-width: 1200px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        max-width: 1200px;
    }
}
@media (min-width: 1600px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        max-width: 1600px;
    }
}
@media (min-width: 2050px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        max-width: 1900px;
    }
}
@media (min-width: 2400px) {
    .-fixed.pt-advantage-container,
    .-fixed.pt-billboard-container,
    .-fixed.pt-definition-container,
    .-fixed.pt-demo-container,
    .-fixed.pt-description-container,
    .-fixed.pt-explore-container,
    .-fixed.pt-faq-container,
    .-fixed.pt-feature-container,
    .-fixed.pt-footer-container,
    .-fixed.pt-hero-container,
    .-fixed.pt-intro-container,
    .-fixed.pt-navbar-container,
    .-fixed.pt-outro-container,
    .-fixed.pt-overview-container,
    .-fixed.pt-partner-container,
    .-fixed.pt-pricing-container,
    .-fixed.pt-tophead-container,
    .-fixed.pt-workplace-container,
    .pt-container.-fixed {
        max-width: 2050px;
    }
}
.-lg.pt-advantage-container,
.-lg.pt-billboard-container,
.-lg.pt-definition-container,
.-lg.pt-demo-container,
.-lg.pt-description-container,
.-lg.pt-explore-container,
.-lg.pt-faq-container,
.-lg.pt-feature-container,
.-lg.pt-footer-container,
.-lg.pt-hero-container,
.-lg.pt-intro-container,
.-lg.pt-navbar-container,
.-lg.pt-outro-container,
.-lg.pt-overview-container,
.-lg.pt-partner-container,
.-lg.pt-pricing-container,
.-lg.pt-tophead-container,
.-lg.pt-workplace-container,
.pt-container.-lg {
    padding: 0 30px;
}
@media (min-width: 768px) {
    .-lg.pt-advantage-container,
    .-lg.pt-billboard-container,
    .-lg.pt-definition-container,
    .-lg.pt-demo-container,
    .-lg.pt-description-container,
    .-lg.pt-explore-container,
    .-lg.pt-faq-container,
    .-lg.pt-feature-container,
    .-lg.pt-footer-container,
    .-lg.pt-hero-container,
    .-lg.pt-intro-container,
    .-lg.pt-navbar-container,
    .-lg.pt-outro-container,
    .-lg.pt-overview-container,
    .-lg.pt-partner-container,
    .-lg.pt-pricing-container,
    .-lg.pt-tophead-container,
    .-lg.pt-workplace-container,
    .pt-container.-lg {
        padding: 0 50px;
    }
}
@media (min-width: 1024px) {
    .-lg.pt-advantage-container,
    .-lg.pt-billboard-container,
    .-lg.pt-definition-container,
    .-lg.pt-demo-container,
    .-lg.pt-description-container,
    .-lg.pt-explore-container,
    .-lg.pt-faq-container,
    .-lg.pt-feature-container,
    .-lg.pt-footer-container,
    .-lg.pt-hero-container,
    .-lg.pt-intro-container,
    .-lg.pt-navbar-container,
    .-lg.pt-outro-container,
    .-lg.pt-overview-container,
    .-lg.pt-partner-container,
    .-lg.pt-pricing-container,
    .-lg.pt-tophead-container,
    .-lg.pt-workplace-container,
    .pt-container.-lg {
        padding: 0 80px;
    }
}
@media (min-width: 1200px) {
    .-lg.pt-advantage-container,
    .-lg.pt-billboard-container,
    .-lg.pt-definition-container,
    .-lg.pt-demo-container,
    .-lg.pt-description-container,
    .-lg.pt-explore-container,
    .-lg.pt-faq-container,
    .-lg.pt-feature-container,
    .-lg.pt-footer-container,
    .-lg.pt-hero-container,
    .-lg.pt-intro-container,
    .-lg.pt-navbar-container,
    .-lg.pt-outro-container,
    .-lg.pt-overview-container,
    .-lg.pt-partner-container,
    .-lg.pt-pricing-container,
    .-lg.pt-tophead-container,
    .-lg.pt-workplace-container,
    .pt-container.-lg {
        padding: 0 100px;
    }
}
@media (min-width: 1600px) {
    .-lg.pt-advantage-container,
    .-lg.pt-billboard-container,
    .-lg.pt-definition-container,
    .-lg.pt-demo-container,
    .-lg.pt-description-container,
    .-lg.pt-explore-container,
    .-lg.pt-faq-container,
    .-lg.pt-feature-container,
    .-lg.pt-footer-container,
    .-lg.pt-hero-container,
    .-lg.pt-intro-container,
    .-lg.pt-navbar-container,
    .-lg.pt-outro-container,
    .-lg.pt-overview-container,
    .-lg.pt-partner-container,
    .-lg.pt-pricing-container,
    .-lg.pt-tophead-container,
    .-lg.pt-workplace-container,
    .pt-container.-lg {
        padding: 0 160px;
    }
}
.-xl.pt-advantage-container,
.-xl.pt-billboard-container,
.-xl.pt-definition-container,
.-xl.pt-demo-container,
.-xl.pt-description-container,
.-xl.pt-explore-container,
.-xl.pt-faq-container,
.-xl.pt-feature-container,
.-xl.pt-footer-container,
.-xl.pt-hero-container,
.-xl.pt-intro-container,
.-xl.pt-navbar-container,
.-xl.pt-outro-container,
.-xl.pt-overview-container,
.-xl.pt-partner-container,
.-xl.pt-pricing-container,
.-xl.pt-tophead-container,
.-xl.pt-workplace-container,
.pt-container.-xl {
    padding: 0 30px;
}
@media (min-width: 768px) {
    .-xl.pt-advantage-container,
    .-xl.pt-billboard-container,
    .-xl.pt-definition-container,
    .-xl.pt-demo-container,
    .-xl.pt-description-container,
    .-xl.pt-explore-container,
    .-xl.pt-faq-container,
    .-xl.pt-feature-container,
    .-xl.pt-footer-container,
    .-xl.pt-hero-container,
    .-xl.pt-intro-container,
    .-xl.pt-navbar-container,
    .-xl.pt-outro-container,
    .-xl.pt-overview-container,
    .-xl.pt-partner-container,
    .-xl.pt-pricing-container,
    .-xl.pt-tophead-container,
    .-xl.pt-workplace-container,
    .pt-container.-xl {
        padding: 0 60px;
    }
}
@media (min-width: 1024px) {
    .-xl.pt-advantage-container,
    .-xl.pt-billboard-container,
    .-xl.pt-definition-container,
    .-xl.pt-demo-container,
    .-xl.pt-description-container,
    .-xl.pt-explore-container,
    .-xl.pt-faq-container,
    .-xl.pt-feature-container,
    .-xl.pt-footer-container,
    .-xl.pt-hero-container,
    .-xl.pt-intro-container,
    .-xl.pt-navbar-container,
    .-xl.pt-outro-container,
    .-xl.pt-overview-container,
    .-xl.pt-partner-container,
    .-xl.pt-pricing-container,
    .-xl.pt-tophead-container,
    .-xl.pt-workplace-container,
    .pt-container.-xl {
        padding: 0 80px;
    }
}
@media (min-width: 1200px) {
    .-xl.pt-advantage-container,
    .-xl.pt-billboard-container,
    .-xl.pt-definition-container,
    .-xl.pt-demo-container,
    .-xl.pt-description-container,
    .-xl.pt-explore-container,
    .-xl.pt-faq-container,
    .-xl.pt-feature-container,
    .-xl.pt-footer-container,
    .-xl.pt-hero-container,
    .-xl.pt-intro-container,
    .-xl.pt-navbar-container,
    .-xl.pt-outro-container,
    .-xl.pt-overview-container,
    .-xl.pt-partner-container,
    .-xl.pt-pricing-container,
    .-xl.pt-tophead-container,
    .-xl.pt-workplace-container,
    .pt-container.-xl {
        padding: 0 150px;
    }
}
@media (min-width: 1600px) {
    .-xl.pt-advantage-container,
    .-xl.pt-billboard-container,
    .-xl.pt-definition-container,
    .-xl.pt-demo-container,
    .-xl.pt-description-container,
    .-xl.pt-explore-container,
    .-xl.pt-faq-container,
    .-xl.pt-feature-container,
    .-xl.pt-footer-container,
    .-xl.pt-hero-container,
    .-xl.pt-intro-container,
    .-xl.pt-navbar-container,
    .-xl.pt-outro-container,
    .-xl.pt-overview-container,
    .-xl.pt-partner-container,
    .-xl.pt-pricing-container,
    .-xl.pt-tophead-container,
    .-xl.pt-workplace-container,
    .pt-container.-xl {
        padding: 0 300px;
    }
}
.pt-svgsprite {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: middle;
}
.pt-loader {
    display: inline;
}
.pt-loader_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    max-height: 0%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    background: #fff;
    -webkit-transition: opacity 0.8s, max-height 0s 0.8s;
    -o-transition: opacity 0.8s, max-height 0s 0.8s;
    -moz-transition: opacity 0.8s, max-height 0s 0.8s;
    transition: opacity 0.8s, max-height 0s 0.8s;
}
.pt-loader_overlay.-front {
    z-index: 999;
}
.pt-loader_overlay.-visible {
    pointer-events: auto;
    opacity: 1;
    max-height: 100%;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    -webkit-transition-duration: 0.3s, 0s;
    -moz-transition-duration: 0.3s, 0s;
    -o-transition-duration: 0.3s, 0s;
    transition-duration: 0.3s, 0s;
}
.pt-navbar {
    pointer-events: none;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    -moz-transition: color 0.1s;
    transition: color 0.1s;
}
.pt-navbar.-inverse {
    color: #fff;
}
@media (min-width: 1024px) {
    .pt-navbar.-exclusion {
        -webkit-transition-duration: 0s;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        transition-duration: 0s;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-fixed {
        color: #000;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-open {
        color: #fff;
        -webkit-transition: color 0.3s;
        -o-transition: color 0.3s;
        -moz-transition: color 0.3s;
        transition: color 0.3s;
    }
}
.loader .pt-navbar {
    color: #000;
}
.pt-navbar-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 98;
    height: 70px;
    -webkit-transform: translateY(-70px) translateZ(0);
    -moz-transform: translateY(-70px) translateZ(0);
    transform: translateY(-70px) translateZ(0);
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: transform 0.4s, -moz-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
}
@media (min-width: 1024px) {
    .pt-navbar-bg {
        display: none;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-visible .pt-navbar-bg {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
.pt-navbar-fill {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -ms-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    background: #000;
    pointer-events: none;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
    .pt-navbar-fill {
        display: none;
    }
}
.pt-navbar.-open .pt-navbar-fill {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    pointer-events: auto;
}


.slider {
    background-image: url("../../../assets/img/slider/slider.jpg.html");
    background-color: #cccccc;
   }

.pt-navbar-strip {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 100;
}
@media (min-width: 1024px) {
    .pt-navbar-strip {
        top: 40px;
    }
}
@media (min-width: 1600px) {
    .pt-navbar-strip {
        top: 50px;
    }
}
@media (max-width: 1023px) {
    .pt-navbar-strip {
        -webkit-transition: -webkit-transform 0.4s;
        transition: -webkit-transform 0.4s;
        -o-transition: -o-transform 0.4s;
        -moz-transition: transform 0.4s, -moz-transform 0.4s;
        transition: transform 0.4s;
        transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
    }
    .pt-navbar.-fixed .pt-navbar-strip {
        -webkit-transform: translateY(-70px) translateZ(0);
        -moz-transform: translateY(-70px) translateZ(0);
        transform: translateY(-70px) translateZ(0);
    }
    .pt-navbar.-visible .pt-navbar-strip {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}
.pt-navbar-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pt-navbar-col {
    -webkit-box-flex: 0.5;
    -webkit-flex: 0.5;
    -moz-box-flex: 0.5;
    -ms-flex: 0.5;
    flex: 0.5;
}
.pt-navbar-col.-center {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}
.pt-navbar-col.-right {
    text-align: right;
}
.pt-navbar-logo {
    position: fixed;
    top: 20px;
    left: 25px;
    display: inline-block;
    width: 120px;
    height: 32px;
    z-index: 101;
    pointer-events: auto;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: transform 0.4s, -moz-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
}
@media (min-width: 768px) {
    .pt-navbar-logo {
        left: 40px;
    }
}
@media (min-width: 1024px) {
    .pt-navbar-logo {
        top: 47px;
        -webkit-transition: none;
        -o-transition: none;
        -moz-transition: none;
        transition: none;
    }
}
@media (min-width: 1600px) {
    .pt-navbar-logo {
        top: 60px;
        left: 60px;
        width: 150px;
        height: 38px;
    }
}
.pt-navbar-logo.-static {
    position: relative;
    top: 0;
    left: 0;
}
@media (min-width: 1024px) {
    .pt-navbar.-exclusion .pt-navbar-logo {
        color: #fff;
        mix-blend-mode: exclusion;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-fixed .pt-navbar-logo {
        -webkit-transform: translateY(-70px) translateZ(0);
        -moz-transform: translateY(-70px) translateZ(0);
        transform: translateY(-70px) translateZ(0);
    }
}
.pt-navbar.-fixed .pt-navbar-logo.-static {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
@media (max-width: 1023px) {
    .pt-navbar.-visible .pt-navbar-logo {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
.pt-navbar-logo a {
    display: block;
    width: 100%;
    height: 100%;
    color: #000;
    -webkit-transition: color 0.1s;
    -o-transition: color 0.1s;
    -moz-transition: color 0.1s;
    transition: color 0.1s;
}
.pt-navbar.-inverse .pt-navbar-logo a {
    color: #fff;
}
@media (max-width: 1023px) {
    .pt-navbar.-fixed .pt-navbar-logo a {
        color: #000;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-open .pt-navbar-logo a {
        color: #fff;
    }
}
.loader .pt-navbar-logo a {
    color: #000;
}
.pt-navbar-logo svg {
    width: 100%;
    height: 100%;
}
.pt-navbar-login {
    display: none;
}
@media (min-width: 1200px) {
    .pt-navbar-login {
        display: block;
        position: fixed;
        top: 54px;
        right: 197px;
        z-index: 100;
        pointer-events: auto;
    }
}
@media (min-width: 1600px) {
    .pt-navbar-login {
        top: 69px;
        right: 257px;
    }
}
@media (min-width: 1024px) {
    .pt-navbar.-exclusion .pt-navbar-login {
        color: #e6e6e6;
        mix-blend-mode: exclusion;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-fixed .pt-navbar-login {
        -webkit-transform: translateY(-70px) translateZ(0);
        -moz-transform: translateY(-70px) translateZ(0);
        transform: translateY(-70px) translateZ(0);
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-visible .pt-navbar-login {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@media (max-width: 1023px) {
    .pt-navbar-navs {
        position: fixed;
        top: 0;
        left: 20px;
        right: 0;
        bottom: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0.6s;
        -o-transition: opacity 0.3s 0s, visibility 0s 0.6s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0.6s;
        transition: opacity 0.3s 0s, visibility 0s 0.6s;
    }
}
@media (max-width: 1023px) and (min-width: 768px) {
    .pt-navbar-navs {
        left: 40px;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-open .pt-navbar-navs {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        -webkit-transition-delay: 0s, 0s;
        -moz-transition-delay: 0s, 0s;
        -o-transition-delay: 0s, 0s;
        transition-delay: 0s, 0s;
        -webkit-transition-duration: 0s, 0s;
        -moz-transition-duration: 0s, 0s;
        -o-transition-duration: 0s, 0s;
        transition-duration: 0s, 0s;
    }
}
@media (min-width: 1024px) {
    .pt-navbar-navs {
        display: inline-block;
        padding: 0 15px;
        pointer-events: auto;
        background: #fff;
        -webkit-border-radius: 70px;
        -moz-border-radius: 70px;
        border-radius: 70px;
    }
    .pt-navbar.-muted .pt-navbar-navs {
        background: #f6f8fa;
    }
}
@media (min-width: 1600px) {
    .pt-navbar-navs {
        padding: 0 17px;
    }
}
@media (max-width: 1023px) {
    .pt-navbar-nav {
        display: block;
        overflow: hidden;
        padding: 0.15em 0;
        font-weight: 600;
        font-size: 40px;
        line-height: 110%;
        letter-spacing: -0.02em;
        text-decoration: none;
    }
}
@media (max-width: 1023px) and (max-height: 440px) {
    .pt-navbar-nav {
        font-size: 30px;
    }
}
@media (max-width: 1023px) and (min-width: 768px) {
    .pt-navbar-nav {
        font-size: 64px;
    }
}
@media (min-width: 1024px) {
    .pt-navbar-nav {
        display: inline-block;
        padding: 15px;
        color: #000;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: -0.02em;
        text-decoration: none;
        -webkit-transition: color 0.1s linear;
        -o-transition: color 0.1s linear;
        -moz-transition: color 0.1s linear;
        transition: color 0.1s linear;
    }
}
@media (min-width: 1600px) {
    .pt-navbar-nav {
        padding: 19px 23px;
        font-size: 20px;
    }
}
.pt-navbar-nav span {
    display: inline-block;
}
@media (max-width: 1023px) {
    .pt-navbar-nav span {
        -webkit-transform: translateY(130%);
        -moz-transform: translateY(130%);
        -ms-transform: translateY(130%);
        -o-transform: translateY(130%);
        transform: translateY(130%);
        -webkit-transition: -webkit-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: -webkit-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        -o-transition: -o-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        -moz-transition: transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pt-navbar-nav:nth-child(1) span {
        -webkit-transition-delay: 0.25s;
        -moz-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }
    .pt-navbar-nav:nth-child(2) span {
        -webkit-transition-delay: 0.3s;
        -moz-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }
    .pt-navbar-nav:nth-child(3) span {
        -webkit-transition-delay: 0.35s;
        -moz-transition-delay: 0.35s;
        -o-transition-delay: 0.35s;
        transition-delay: 0.35s;
    }
    .pt-navbar-nav:nth-child(4) span {
        -webkit-transition-delay: 0.4s;
        -moz-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }
    .pt-navbar.-open .pt-navbar-nav span {
        -webkit-transform: translateY(0) translateZ(0);
        -moz-transform: translateY(0) translateZ(0);
        transform: translateY(0) translateZ(0);
    }
}
@media (min-width: 1024px) {
    .pt-navbar-nav span {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.pt-navbar-nav:hover {
    color: #1c2539;
}
.pt-navbar-nav.-active,
.pt-navbar.-open .pt-navbar-toggle button.pt-navbar-nav {
    color: #1c2539;
}
@media (min-width: 1024px) {
    .pt-navbar-nav.-active span,
    .pt-navbar.-open .pt-navbar-toggle button.pt-navbar-nav span {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@media (max-width: 1023px) {
    .pt-navbar-actions {
        position: fixed;
        left: 20px;
        bottom: 70px;
        margin: 0 -5px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -moz-box-orient: horizontal;
        -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        opacity: 0;
        color: #fff;
        visibility: hidden;
        pointer-events: none;
        -webkit-transition: opacity 0.1s linear, visibility 0s 0.1s;
        -o-transition: opacity 0.1s linear, visibility 0s 0.1s;
        -moz-transition: opacity 0.1s linear, visibility 0s 0.1s;
        transition: opacity 0.1s linear, visibility 0s 0.1s;
    }
}
@media (max-width: 1023px) and (max-height: 440px) {
    .pt-navbar-actions {
        left: auto;
        right: 20px;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-open .pt-navbar-actions {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        -webkit-transition-delay: 0s, 0s;
        -moz-transition-delay: 0s, 0s;
        -o-transition-delay: 0s, 0s;
        transition-delay: 0s, 0s;
    }
}
@media (min-width: 1024px) {
    .pt-navbar-actions {
        display: inline-block;
        pointer-events: auto;
    }
}
.pt-navbar-action {
    display: inline-block;
}
@media (max-width: 1023px) {
    .pt-navbar-action {
        padding: 0 5px;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
        -webkit-transition: opacity 0.2s 0.4s linear, -webkit-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 0.2s 0.4s linear, -webkit-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        -o-transition: opacity 0.2s 0.4s linear, -o-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        -moz-transition: opacity 0.2s 0.4s linear, transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 0.2s 0.4s linear, transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transition: opacity 0.2s 0.4s linear, transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1),
            -o-transform 0.7s 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pt-navbar-action:nth-child(1) {
        -webkit-transition-delay: 0.45s, 0.45s;
        -moz-transition-delay: 0.45s, 0.45s;
        -o-transition-delay: 0.45s, 0.45s;
        transition-delay: 0.45s, 0.45s;
    }
    .pt-navbar-action:nth-child(2) {
        -webkit-transition-delay: 0.5s, 0.5s;
        -moz-transition-delay: 0.5s, 0.5s;
        -o-transition-delay: 0.5s, 0.5s;
        transition-delay: 0.5s, 0.5s;
    }
    .pt-navbar.-open .pt-navbar-action {
        opacity: 1;
        -webkit-transform: translateY(0) translateZ(0);
        -moz-transform: translateY(0) translateZ(0);
        transform: translateY(0) translateZ(0);
    }
}
@media (min-width: 1024px) {
    .pt-navbar-action.-login {
        display: none;
    }
}
.pt-navbar-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 101;
    pointer-events: auto;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: transform 0.4s, -moz-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
}
@media (min-width: 768px) {
    .pt-navbar-toggle {
        right: 40px;
    }
}
@media (min-width: 1024px) {
    .pt-navbar-toggle {
        display: none;
    }
}
@media (min-width: 1024px) {
    .pt-navbar.-exclusion .pt-navbar-toggle {
        color: #fff;
        mix-blend-mode: exclusion;
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-fixed .pt-navbar-toggle {
        -webkit-transform: translateY(-70px) translateZ(0);
        -moz-transform: translateY(-70px) translateZ(0);
        transform: translateY(-70px) translateZ(0);
    }
}
@media (max-width: 1023px) {
    .pt-navbar.-visible .pt-navbar-toggle {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
.pt-navbar-menu {
    display: none;
}
.pt-btn {
    display: inline;
}
.pt-btn_close,
.pt-btn_cta,
.pt-btn_dummy,
.pt-btn_menu,
.pt-btn_nav,
.pt-btn_play,
.pt-btn_scroll {
    position: relative;
    display: inline-block;
    height: auto;
    margin: 0;
    padding: 0;
    color: inherit;
    background: 0 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: 0 !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: inherit;
    text-transform: inherit;
    text-indent: inherit;
}
.pt-btn_close:focus,
.pt-btn_close:hover,
.pt-btn_cta:focus,
.pt-btn_cta:hover,
.pt-btn_dummy:focus,
.pt-btn_dummy:hover,
.pt-btn_menu:focus,
.pt-btn_menu:hover,
.pt-btn_nav:focus,
.pt-btn_nav:hover,
.pt-btn_play:focus,
.pt-btn_play:hover,
.pt-btn_scroll:focus,
.pt-btn_scroll:hover {
    text-decoration: none;
}
.pt-btn_cta {
    height: 60px;
    padding: 0 26px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    color: #fff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.02em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}
@media (min-width: 768px) {
    .pt-btn_cta {
        padding: 0 30px;
        font-size: 16px;
    }
}
@media (min-width: 1200px) {
    .pt-btn_cta {
        height: 75px;
        padding: 0 38px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        font-size: 20px;
    }
}
@media (min-width: 2400px) {
    .pt-btn_cta {
        height: 85px;
        padding: 0 50px;
    }
}
.pt-btn_cta:focus,
.pt-btn_cta:hover {
    color: #fff;
}
.pt-btn_cta.-inverse {
    color: #1c2539;
}
.pt-btn_cta.-inverse:focus,
.pt-btn_cta.-inverse:hover {
    color: #1c2539;
}
.pt-btn_cta.-bordered {
    color: #000;
}
.pt-btn_cta.-bordered:focus,
.pt-btn_cta.-bordered:hover {
    color: #000;
}
.pt-btn_cta.-md {
    height: 46px;
    padding: 0 22px;
    font-size: 16px;
}
@media (min-width: 1600px) {
    .pt-btn_cta.-md {
        height: 57px;
        padding: 0 28px;
        font-size: 20px;
    }
}
@media (min-width: 2400px) {
    .pt-btn_cta.-md {
        height: 60px;
    }
}
.pt-btn_cta.-xl {
    height: 70px;
    padding: 0 29px;
    -webkit-border-radius: 53px;
    -moz-border-radius: 53px;
    border-radius: 53px;
    font-size: 20px;
    line-height: 70px;
    letter-spacing: -0.04em;
}
@media (min-width: 768px) {
    .pt-btn_cta.-xl {
        height: 104px;
        padding: 0 49px;
        -webkit-border-radius: 70px;
        -moz-border-radius: 70px;
        border-radius: 70px;
        font-size: 28px;
    }
}
@media (min-width: 2400px) {
    .pt-btn_cta.-xl {
        height: 120px;
        padding: 0 70px;
    }
}
.pt-btn_cta.-full {
    width: 100%;
}
.pt-btn_cta-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}
.pt-btn_cta.-primary .pt-btn_cta-fill {
    background: #002548;
}
.pt-btn_cta.-inverse .pt-btn_cta-fill {
    background: #fff;
}
.pt-btn_cta.-bordered .pt-btn_cta-fill {
    border: 2px solid;
    background: 0 0;
}
.pt-btn_cta-ripple {
    display: none;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: #fff;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}
.pt-btn_cta.-bordered .pt-btn_cta-ripple {
    display: none !important;
}
.pt-btn_cta-ripple.-v1 {
    background: #ffc107;
}
.pt-btn_cta.-inverse .pt-btn_cta-ripple.-v1 {
    background: #a37b01;
}
.pt-btn_cta-ripple.-v2 {
    background: #f7d570;
}
.pt-btn_cta-title {
    position: relative;
    top: -1px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-btn_cta-title em {
    position: relative;
    display: block;
    overflow: hidden;
}
.pt-btn_cta-title svg {
    position: relative;
    margin: -1px 0 0 0.5em;
    font-size: 0.9em;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: transform 0.4s, -moz-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s, -o-transform 0.4s;
}
@media (pointer: fine) {
    .pt-btn_cta:hover .pt-btn_cta-title svg {
        -webkit-transform: translateX(5px);
        -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
        -o-transform: translateX(5px);
        transform: translateX(5px);
    }
}
.pt-btn_link {
    padding: 15px 42px;
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-decoration: none;
    -webkit-transition: color 0.1s linear;
    -o-transition: color 0.1s linear;
    -moz-transition: color 0.1s linear;
    transition: color 0.1s linear;
}
@media (min-width: 1024px) {
    .pt-btn_link {
        font-size: 16px;
        letter-spacing: -0.02em;
    }
}
@media (min-width: 1600px) {
    .pt-btn_link {
        padding: 20px 43px;
        font-size: 20px;
    }
}
.pt-btn_link span {
    display: inline-block;
}
.pt-btn_link:hover {
    color: #1c2539;
}
.pt-btn_menu {
    top: 2px;
    width: 24px;
}
.pt-btn_menu:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}
.pt-btn_menu span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    margin: 8px 0;
    top: 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: currentColor;
    -webkit-transition: top ease-out 0.15s 0.15s, -webkit-transform ease-out 0.15s 0s;
    transition: top ease-out 0.15s 0.15s, -webkit-transform ease-out 0.15s 0s;
    -o-transition: top ease-out 0.15s 0.15s, -o-transform ease-out 0.15s 0s;
    -moz-transition: top ease-out 0.15s 0.15s, transform ease-out 0.15s 0s, -moz-transform ease-out 0.15s 0s;
    transition: top ease-out 0.15s 0.15s, transform ease-out 0.15s 0s;
    transition: top ease-out 0.15s 0.15s, transform ease-out 0.15s 0s, -webkit-transform ease-out 0.15s 0s, -moz-transform ease-out 0.15s 0s, -o-transform ease-out 0.15s 0s;
}
.pt-btn_menu.-active span,
.pt-navbar.-open .pt-navbar-toggle button.pt-btn_menu span {
    -webkit-transition: top ease-out 0.15s, -webkit-transform ease-out 0.15s 0.15s;
    transition: top ease-out 0.15s, -webkit-transform ease-out 0.15s 0.15s;
    -o-transition: top ease-out 0.15s, -o-transform ease-out 0.15s 0.15s;
    -moz-transition: top ease-out 0.15s, transform ease-out 0.15s 0.15s, -moz-transform ease-out 0.15s 0.15s;
    transition: top ease-out 0.15s, transform ease-out 0.15s 0.15s;
    transition: top ease-out 0.15s, transform ease-out 0.15s 0.15s, -webkit-transform ease-out 0.15s 0.15s, -moz-transform ease-out 0.15s 0.15s, -o-transform ease-out 0.15s 0.15s;
}
.pt-btn_menu.-active span:first-child,
.pt-navbar.-open .pt-navbar-toggle button.pt-btn_menu span:first-child {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pt-btn_menu.-active span:last-child,
.pt-navbar.-open .pt-navbar-toggle button.pt-btn_menu span:last-child {
    top: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.pt-btn_close {
    width: 48px;
    height: 48px;
    opacity: 0.8;
    font-size: 18px;
    line-height: 0;
    text-align: center;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.pt-btn_close:focus,
.pt-btn_close:hover {
    opacity: 1;
}
.pt-btn_scroll {
    width: 60px;
    height: 60px;
    border: 1px solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 14px;
    line-height: 58px;
    text-align: center;
}
@media (min-width: 1600px) {
    .pt-btn_scroll {
        width: 75px;
        height: 75px;
        font-size: 18px;
        line-height: 73px;
    }
}
.pt-btn_scroll.-inverse {
    color: #fff;
    border-color: #fff;
}
.pt-btn_play {
    width: 42px;
    height: 42px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 16px;
    line-height: 0;
    text-align: center;
}
.pt-btn_play-fill {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}
.pt-btn_play svg {
    position: relative;
    left: 1px;
}
.pt-btn_play.-lg {
    width: 59px;
    height: 59px;
    font-size: 16px;
}
@media (min-width: 768px) {
    .pt-btn_play.-lg {
        width: 118px;
        height: 118px;
        font-size: 28px;
    }
}
.pt-btn_nav {
    height: 51px;
    width: 51px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 14px;
    line-height: 47px;
    text-align: center;
}
.pt-btn_nav-fill {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
}
.pt-btn_nav svg {
    line-height: 0;
}
.pt-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    color: #1c2539;
    contain: layout style size;
    pointer-events: none;
    -webkit-transition: opacity 0.3s, color 0.4s;
    -o-transition: opacity 0.3s, color 0.4s;
    -moz-transition: opacity 0.3s, color 0.4s;
    transition: opacity 0.3s, color 0.4s;
}
.pt-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
    background: currentColor;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: opacity 0.1s, -webkit-transform 0.3s;
    transition: opacity 0.1s, -webkit-transform 0.3s;
    -o-transition: opacity 0.1s, -o-transform 0.3s;
    -moz-transition: transform 0.3s, opacity 0.1s, -moz-transform 0.3s;
    transition: transform 0.3s, opacity 0.1s;
    transition: transform 0.3s, opacity 0.1s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.pt-cursor.-inverse {
    color: #fff;
}
.pt-cursor.-quaternary {
    color: #c9ffc5;
}
.pt-cursor.-quinary {
    color: #ccbaff;
}
.pt-cursor.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor:before {
    -webkit-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -ms-transform: scale(0.25);
    -o-transform: scale(0.25);
    transform: scale(0.25);
}
@supports (mix-blend-mode: exclusion) {
    .pt-cursor.-exclusion {
        mix-blend-mode: exclusion;
    }
    .pt-cursor.-exclusion:before {
        background: #fff;
    }
}
.pt-cursor.-pointer:before {
    -webkit-transform: scale(0.15);
    -moz-transform: scale(0.15);
    -ms-transform: scale(0.15);
    -o-transform: scale(0.15);
    transform: scale(0.15);
}
.pt-cursor.-pointer.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor.-pointer:before {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
}
.pt-cursor.-opaque {
    color: rgba(255, 255, 255, 0.25);
}
.pt-cursor.-opaque:before {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.pt-cursor.-opaque.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor.-opaque:before {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.pt-cursor.-lg:before {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.pt-cursor.-lg.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor.-lg:before {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.pt-cursor.-text:before {
    opacity: 0.85;
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
}
.pt-cursor.-text.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor.-text:before {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.pt-cursor.-icon:before {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}
.pt-cursor.-icon.-active:before,
.pt-navbar.-open .pt-navbar-toggle button.pt-cursor.-icon:before {
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform: scale(1.4);
}
.pt-cursor.-hidden:before {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.pt-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(0) rotate(10deg);
    -moz-transform: scale(0) rotate(10deg);
    -ms-transform: scale(0) rotate(10deg);
    -o-transform: scale(0) rotate(10deg);
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
    transition: opacity 0.4s, -webkit-transform 0.3s;
    -o-transition: opacity 0.4s, -o-transform 0.3s;
    -moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
    transition: opacity 0.4s, transform 0.3s;
    transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}
.pt-cursor.-icon .pt-cursor-text,
.pt-cursor.-text .pt-cursor-text {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.pt-cursor-media {
    position: absolute;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
}
.pt-cursor-media img,
.pt-cursor-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .pt-cursor-media img,
    .pt-cursor-media video {
        position: static;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.pt-cursor-media-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transform: scale(0) translateZ(0);
    -moz-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
    padding: 1px;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: opacity 0.2s 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s 0.2s, -webkit-transform 0.35s;
    -o-transition: opacity 0.2s 0.2s, -o-transform 0.35s;
    -moz-transition: transform 0.35s, opacity 0.2s 0.2s, -moz-transform 0.35s;
    transition: transform 0.35s, opacity 0.2s 0.2s;
    transition: transform 0.35s, opacity 0.2s 0.2s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
}
.pt-cursor.-media .pt-cursor-media-box {
    opacity: 1;
    -webkit-transform: scale(0.696);
    -moz-transform: scale(0.696);
    -ms-transform: scale(0.696);
    -o-transform: scale(0.696);
    transform: scale(0.696);
    -webkit-transition-duration: 0.4s, 0.4s;
    -moz-transition-duration: 0.4s, 0.4s;
    -o-transition-duration: 0.4s, 0.4s;
    transition-duration: 0.4s, 0.4s;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}
.pt-footer {
    position: relative;
    color: #fff;
    background: #000;
}
.pt-footer-fill {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #000;
}
@media (min-width: 768px) {
    .pt-footer-fill {
        top: -90px;
    }
}
.pt-footer-content {
    position: relative;
    padding: 90px 0 50px 0;
}
@media (min-width: 768px) {
    .pt-footer-content {
        padding: 150px 0 60px 0;
    }
}
@media (min-width: 1024px) {
    .pt-footer-content {
        padding: 140px 0 145px 0;
    }
}
@media (min-width: 1600px) {
    .pt-footer-content {
        padding: 200px 0 226px 0;
    }
}
@media (min-width: 1024px) {
    .pt-footer-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (min-width: 1024px) {
    .pt-footer-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-footer-col.-right {
    padding: 80px 0 0 0;
}
@media (min-width: 768px) {
    .pt-footer-col.-right {
        padding: 100px 0 0 0;
    }
}
.pt-footer-logo img {
    width: 50px;
    height: 50px;
}
@media (min-width: 768px) {
    .pt-footer-logo img {
        width: 69px;
        height: 69px;
    }
}
.pt-footer-text {
    margin: 30px 0 0 0;
    max-width: 295px;
    font-weight: 600;
    font-size: 28px;
    line-height: 115%;
    letter-spacing: -0.04em;
}
@media (min-width: 1600px) {
    .pt-footer-text {
        max-width: 350px;
        font-size: 36px;
    }
}
.pt-footer-navs {
    margin: -10px 0;
}
@media (min-width: 768px) {
    .pt-footer-navs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1600px) {
    .pt-footer-navs {
        margin: -12px 0;
    }
}
.pt-footer-nav {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    font-size: 21px;
    line-height: 115%;
    letter-spacing: -0.02em;
    text-decoration: none;
}
@media (min-width: 1600px) {
    .pt-footer-nav {
        padding: 12px 0;
        font-size: 24px;
    }
}
.pt-footer-nav span {
    display: inline-block;
    position: relative;
}
.pt-footer-nav span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    border-bottom: 1px solid;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pt-footer-nav:hover span:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}
.pt-footer-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 100px 0 0 0;
}
@media (min-width: 768px) {
    .pt-footer-links {
        display: inline-block;
        margin: 150px -15px 0 -15px;
    }
}
@media (min-width: 1024px) {
    .pt-footer-links {
        margin: 72px -15px 0 -15px;
    }
}
@media (min-width: 1600px) {
    .pt-footer-links {
        margin: 53px -15px 0 -15px;
    }
}
.pt-footer-link {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-decoration: none;
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    -moz-transition: color 0.4s;
    transition: color 0.4s;
}
@media (min-width: 768px) {
    .pt-footer-link {
        margin: 0 15px;
        font-size: 16px;
    }
}
@media (min-width: 1600px) {
    .pt-footer-link {
        font-size: 18px;
    }
}
.pt-footer-link span {
    display: inline-block;
    position: relative;
}
.pt-footer-link span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
    border-bottom: 1px solid;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pt-footer-link:hover span:after {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}
.pt-footer-link.-smooth {
    color: grey;
}
.pt-footer-link.-smooth span:after {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.pt-footer-link.-smooth:hover {
    color: #fff;
}
.pt-footer-link.-smooth:hover span:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.pt-advantage-header,
.pt-explore-header,
.pt-header,
.pt-outro-header,
.pt-overview-header,
.pt-partner-header,
.pt-pricing-header {
    position: relative;
    z-index: 1;
}
.pt-advantage-header h1,
.pt-advantage-header h2,
.pt-advantage-header h3,
.pt-explore-header h1,
.pt-explore-header h2,
.pt-explore-header h3,
.pt-header h1,
.pt-header h2,
.pt-header h3,
.pt-outro-header h1,
.pt-outro-header h2,
.pt-outro-header h3,
.pt-overview-header h1,
.pt-overview-header h2,
.pt-overview-header h3,
.pt-partner-header h1,
.pt-partner-header h2,
.pt-partner-header h3,
.pt-pricing-header h1,
.pt-pricing-header h2,
.pt-pricing-header h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 105%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-advantage-header h1,
    .pt-advantage-header h2,
    .pt-advantage-header h3,
    .pt-explore-header h1,
    .pt-explore-header h2,
    .pt-explore-header h3,
    .pt-header h1,
    .pt-header h2,
    .pt-header h3,
    .pt-outro-header h1,
    .pt-outro-header h2,
    .pt-outro-header h3,
    .pt-overview-header h1,
    .pt-overview-header h2,
    .pt-overview-header h3,
    .pt-partner-header h1,
    .pt-partner-header h2,
    .pt-partner-header h3,
    .pt-pricing-header h1,
    .pt-pricing-header h2,
    .pt-pricing-header h3 {
        font-size: 60px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-header h1,
    .pt-advantage-header h2,
    .pt-advantage-header h3,
    .pt-explore-header h1,
    .pt-explore-header h2,
    .pt-explore-header h3,
    .pt-header h1,
    .pt-header h2,
    .pt-header h3,
    .pt-outro-header h1,
    .pt-outro-header h2,
    .pt-outro-header h3,
    .pt-overview-header h1,
    .pt-overview-header h2,
    .pt-overview-header h3,
    .pt-partner-header h1,
    .pt-partner-header h2,
    .pt-partner-header h3,
    .pt-pricing-header h1,
    .pt-pricing-header h2,
    .pt-pricing-header h3 {
        font-size: 75px;
    }
}
.pt-advantage-header mark,
.pt-explore-header mark,
.pt-header mark,
.pt-outro-header mark,
.pt-overview-header mark,
.pt-partner-header mark,
.pt-pricing-header mark {
    position: relative;
    z-index: -1;
    background: 0 0;
}
.pt-advantage-header mark:before,
.pt-explore-header mark:before,
.pt-header mark:before,
.pt-outro-header mark:before,
.pt-overview-header mark:before,
.pt-partner-header mark:before,
.pt-pricing-header mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.2em;
    left: -0.1em;
    right: -0.2em;
    bottom: 0.07em;
    z-index: -1;
    background: #fff;
    -webkit-border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    border-radius: 0.8em;
}
.pt-advantage-header mark.-quaternary:before,
.pt-explore-header mark.-quaternary:before,
.pt-header mark.-quaternary:before,
.pt-outro-header mark.-quaternary:before,
.pt-overview-header mark.-quaternary:before,
.pt-partner-header mark.-quaternary:before,
.pt-pricing-header mark.-quaternary:before {
    background: #c9ffc5;
}
.pt-advantage-header mark.-quinary:before,
.pt-explore-header mark.-quinary:before,
.pt-header mark.-quinary:before,
.pt-outro-header mark.-quinary:before,
.pt-overview-header mark.-quinary:before,
.pt-partner-header mark.-quinary:before,
.pt-pricing-header mark.-quinary:before {
    background: #ccbaff;
}
.pt-advantage-header mark.-octonary:before,
.pt-explore-header mark.-octonary:before,
.pt-header mark.-octonary:before,
.pt-outro-header mark.-octonary:before,
.pt-overview-header mark.-octonary:before,
.pt-partner-header mark.-octonary:before,
.pt-pricing-header mark.-octonary:before {
    background: #fcf9d8;
}
.-xs.pt-advantage-header h1,
.-xs.pt-advantage-header h2,
.-xs.pt-advantage-header h3,
.-xs.pt-explore-header h1,
.-xs.pt-explore-header h2,
.-xs.pt-explore-header h3,
.-xs.pt-outro-header h1,
.-xs.pt-outro-header h2,
.-xs.pt-outro-header h3,
.-xs.pt-overview-header h1,
.-xs.pt-overview-header h2,
.-xs.pt-overview-header h3,
.-xs.pt-partner-header h1,
.-xs.pt-partner-header h2,
.-xs.pt-partner-header h3,
.-xs.pt-pricing-header h1,
.-xs.pt-pricing-header h2,
.-xs.pt-pricing-header h3,
.pt-header.-xs h1,
.pt-header.-xs h2,
.pt-header.-xs h3 {
    font-weight: 500;
    font-size: 21px;
    line-height: 120%;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) {
    .-xs.pt-advantage-header h1,
    .-xs.pt-advantage-header h2,
    .-xs.pt-advantage-header h3,
    .-xs.pt-explore-header h1,
    .-xs.pt-explore-header h2,
    .-xs.pt-explore-header h3,
    .-xs.pt-outro-header h1,
    .-xs.pt-outro-header h2,
    .-xs.pt-outro-header h3,
    .-xs.pt-overview-header h1,
    .-xs.pt-overview-header h2,
    .-xs.pt-overview-header h3,
    .-xs.pt-partner-header h1,
    .-xs.pt-partner-header h2,
    .-xs.pt-partner-header h3,
    .-xs.pt-pricing-header h1,
    .-xs.pt-pricing-header h2,
    .-xs.pt-pricing-header h3,
    .pt-header.-xs h1,
    .pt-header.-xs h2,
    .pt-header.-xs h3 {
        font-size: 24px;
    }
}
@media (min-width: 1600px) {
    .-xs.pt-advantage-header h1,
    .-xs.pt-advantage-header h2,
    .-xs.pt-advantage-header h3,
    .-xs.pt-explore-header h1,
    .-xs.pt-explore-header h2,
    .-xs.pt-explore-header h3,
    .-xs.pt-outro-header h1,
    .-xs.pt-outro-header h2,
    .-xs.pt-outro-header h3,
    .-xs.pt-overview-header h1,
    .-xs.pt-overview-header h2,
    .-xs.pt-overview-header h3,
    .-xs.pt-partner-header h1,
    .-xs.pt-partner-header h2,
    .-xs.pt-partner-header h3,
    .-xs.pt-pricing-header h1,
    .-xs.pt-pricing-header h2,
    .-xs.pt-pricing-header h3,
    .pt-header.-xs h1,
    .pt-header.-xs h2,
    .pt-header.-xs h3 {
        font-size: 28px;
    }
}
.-lg.pt-advantage-header h1,
.-lg.pt-advantage-header h2,
.-lg.pt-advantage-header h3,
.-lg.pt-explore-header h1,
.-lg.pt-explore-header h2,
.-lg.pt-explore-header h3,
.-lg.pt-outro-header h1,
.-lg.pt-outro-header h2,
.-lg.pt-outro-header h3,
.-lg.pt-overview-header h1,
.-lg.pt-overview-header h2,
.-lg.pt-overview-header h3,
.-lg.pt-partner-header h1,
.-lg.pt-partner-header h2,
.-lg.pt-partner-header h3,
.-lg.pt-pricing-header h1,
.-lg.pt-pricing-header h2,
.-lg.pt-pricing-header h3,
.pt-header.-lg h1,
.pt-header.-lg h2,
.pt-header.-lg h3 {
    font-weight: 600;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .-lg.pt-advantage-header h1,
    .-lg.pt-advantage-header h2,
    .-lg.pt-advantage-header h3,
    .-lg.pt-explore-header h1,
    .-lg.pt-explore-header h2,
    .-lg.pt-explore-header h3,
    .-lg.pt-outro-header h1,
    .-lg.pt-outro-header h2,
    .-lg.pt-outro-header h3,
    .-lg.pt-overview-header h1,
    .-lg.pt-overview-header h2,
    .-lg.pt-overview-header h3,
    .-lg.pt-partner-header h1,
    .-lg.pt-partner-header h2,
    .-lg.pt-partner-header h3,
    .-lg.pt-pricing-header h1,
    .-lg.pt-pricing-header h2,
    .-lg.pt-pricing-header h3,
    .pt-header.-lg h1,
    .pt-header.-lg h2,
    .pt-header.-lg h3 {
        font-size: 84px;
    }
}
@media (min-width: 1200px) {
    .-lg.pt-advantage-header h1,
    .-lg.pt-advantage-header h2,
    .-lg.pt-advantage-header h3,
    .-lg.pt-explore-header h1,
    .-lg.pt-explore-header h2,
    .-lg.pt-explore-header h3,
    .-lg.pt-outro-header h1,
    .-lg.pt-outro-header h2,
    .-lg.pt-outro-header h3,
    .-lg.pt-overview-header h1,
    .-lg.pt-overview-header h2,
    .-lg.pt-overview-header h3,
    .-lg.pt-partner-header h1,
    .-lg.pt-partner-header h2,
    .-lg.pt-partner-header h3,
    .-lg.pt-pricing-header h1,
    .-lg.pt-pricing-header h2,
    .-lg.pt-pricing-header h3,
    .pt-header.-lg h1,
    .pt-header.-lg h2,
    .pt-header.-lg h3 {
        font-size: 40px;
    }
}
@media (min-width: 1600px) {
    .-lg.pt-advantage-header h1,
    .-lg.pt-advantage-header h2,
    .-lg.pt-advantage-header h3,
    .-lg.pt-explore-header h1,
    .-lg.pt-explore-header h2,
    .-lg.pt-explore-header h3,
    .-lg.pt-outro-header h1,
    .-lg.pt-outro-header h2,
    .-lg.pt-outro-header h3,
    .-lg.pt-overview-header h1,
    .-lg.pt-overview-header h2,
    .-lg.pt-overview-header h3,
    .-lg.pt-partner-header h1,
    .-lg.pt-partner-header h2,
    .-lg.pt-partner-header h3,
    .-lg.pt-pricing-header h1,
    .-lg.pt-pricing-header h2,
    .-lg.pt-pricing-header h3,
    .pt-header.-lg h1,
    .pt-header.-lg h2,
    .pt-header.-lg h3 {
        font-size: 120px;
    }
}
@media (min-width: 2400px) {
    .-lg.pt-advantage-header h1,
    .-lg.pt-advantage-header h2,
    .-lg.pt-advantage-header h3,
    .-lg.pt-explore-header h1,
    .-lg.pt-explore-header h2,
    .-lg.pt-explore-header h3,
    .-lg.pt-outro-header h1,
    .-lg.pt-outro-header h2,
    .-lg.pt-outro-header h3,
    .-lg.pt-overview-header h1,
    .-lg.pt-overview-header h2,
    .-lg.pt-overview-header h3,
    .-lg.pt-partner-header h1,
    .-lg.pt-partner-header h2,
    .-lg.pt-partner-header h3,
    .-lg.pt-pricing-header h1,
    .-lg.pt-pricing-header h2,
    .-lg.pt-pricing-header h3,
    .pt-header.-lg h1,
    .pt-header.-lg h2,
    .pt-header.-lg h3 {
        font-size: 140px;
    }
}
.-xl.pt-advantage-header h1,
.-xl.pt-advantage-header h2,
.-xl.pt-advantage-header h3,
.-xl.pt-explore-header h1,
.-xl.pt-explore-header h2,
.-xl.pt-explore-header h3,
.-xl.pt-outro-header h1,
.-xl.pt-outro-header h2,
.-xl.pt-outro-header h3,
.-xl.pt-overview-header h1,
.-xl.pt-overview-header h2,
.-xl.pt-overview-header h3,
.-xl.pt-partner-header h1,
.-xl.pt-partner-header h2,
.-xl.pt-partner-header h3,
.-xl.pt-pricing-header h1,
.-xl.pt-pricing-header h2,
.-xl.pt-pricing-header h3,
.pt-header.-xl h1,
.pt-header.-xl h2,
.pt-header.-xl h3 {
    font-weight: 600;
    font-size: 50px;
    line-height: 90%;
    text-align: center;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .-xl.pt-advantage-header h1,
    .-xl.pt-advantage-header h2,
    .-xl.pt-advantage-header h3,
    .-xl.pt-explore-header h1,
    .-xl.pt-explore-header h2,
    .-xl.pt-explore-header h3,
    .-xl.pt-outro-header h1,
    .-xl.pt-outro-header h2,
    .-xl.pt-outro-header h3,
    .-xl.pt-overview-header h1,
    .-xl.pt-overview-header h2,
    .-xl.pt-overview-header h3,
    .-xl.pt-partner-header h1,
    .-xl.pt-partner-header h2,
    .-xl.pt-partner-header h3,
    .-xl.pt-pricing-header h1,
    .-xl.pt-pricing-header h2,
    .-xl.pt-pricing-header h3,
    .pt-header.-xl h1,
    .pt-header.-xl h2,
    .pt-header.-xl h3 {
        font-size: 86px;
    }
}
@media (min-width: 1200px) {
    .-xl.pt-advantage-header h1,
    .-xl.pt-advantage-header h2,
    .-xl.pt-advantage-header h3,
    .-xl.pt-explore-header h1,
    .-xl.pt-explore-header h2,
    .-xl.pt-explore-header h3,
    .-xl.pt-outro-header h1,
    .-xl.pt-outro-header h2,
    .-xl.pt-outro-header h3,
    .-xl.pt-overview-header h1,
    .-xl.pt-overview-header h2,
    .-xl.pt-overview-header h3,
    .-xl.pt-partner-header h1,
    .-xl.pt-partner-header h2,
    .-xl.pt-partner-header h3,
    .-xl.pt-pricing-header h1,
    .-xl.pt-pricing-header h2,
    .-xl.pt-pricing-header h3,
    .pt-header.-xl h1,
    .pt-header.-xl h2,
    .pt-header.-xl h3 {
        font-size: 96px;
    }
}
@media (min-width: 1600px) {
    .-xl.pt-advantage-header h1,
    .-xl.pt-advantage-header h2,
    .-xl.pt-advantage-header h3,
    .-xl.pt-explore-header h1,
    .-xl.pt-explore-header h2,
    .-xl.pt-explore-header h3,
    .-xl.pt-outro-header h1,
    .-xl.pt-outro-header h2,
    .-xl.pt-outro-header h3,
    .-xl.pt-overview-header h1,
    .-xl.pt-overview-header h2,
    .-xl.pt-overview-header h3,
    .-xl.pt-partner-header h1,
    .-xl.pt-partner-header h2,
    .-xl.pt-partner-header h3,
    .-xl.pt-pricing-header h1,
    .-xl.pt-pricing-header h2,
    .-xl.pt-pricing-header h3,
    .pt-header.-xl h1,
    .pt-header.-xl h2,
    .pt-header.-xl h3 {
        font-size: 120px;
    }
}
@media (min-width: 2400px) {
    .-xl.pt-advantage-header h1,
    .-xl.pt-advantage-header h2,
    .-xl.pt-advantage-header h3,
    .-xl.pt-explore-header h1,
    .-xl.pt-explore-header h2,
    .-xl.pt-explore-header h3,
    .-xl.pt-outro-header h1,
    .-xl.pt-outro-header h2,
    .-xl.pt-outro-header h3,
    .-xl.pt-overview-header h1,
    .-xl.pt-overview-header h2,
    .-xl.pt-overview-header h3,
    .-xl.pt-partner-header h1,
    .-xl.pt-partner-header h2,
    .-xl.pt-partner-header h3,
    .-xl.pt-pricing-header h1,
    .-xl.pt-pricing-header h2,
    .-xl.pt-pricing-header h3,
    .pt-header.-xl h1,
    .pt-header.-xl h2,
    .pt-header.-xl h3 {
        font-size: 140px;
    }
}
.-xl.pt-advantage-header h1 img,
.-xl.pt-advantage-header h1 video,
.-xl.pt-advantage-header h2 img,
.-xl.pt-advantage-header h2 video,
.-xl.pt-advantage-header h3 img,
.-xl.pt-advantage-header h3 video,
.-xl.pt-explore-header h1 img,
.-xl.pt-explore-header h1 video,
.-xl.pt-explore-header h2 img,
.-xl.pt-explore-header h2 video,
.-xl.pt-explore-header h3 img,
.-xl.pt-explore-header h3 video,
.-xl.pt-outro-header h1 img,
.-xl.pt-outro-header h1 video,
.-xl.pt-outro-header h2 img,
.-xl.pt-outro-header h2 video,
.-xl.pt-outro-header h3 img,
.-xl.pt-outro-header h3 video,
.-xl.pt-overview-header h1 img,
.-xl.pt-overview-header h1 video,
.-xl.pt-overview-header h2 img,
.-xl.pt-overview-header h2 video,
.-xl.pt-overview-header h3 img,
.-xl.pt-overview-header h3 video,
.-xl.pt-partner-header h1 img,
.-xl.pt-partner-header h1 video,
.-xl.pt-partner-header h2 img,
.-xl.pt-partner-header h2 video,
.-xl.pt-partner-header h3 img,
.-xl.pt-partner-header h3 video,
.-xl.pt-pricing-header h1 img,
.-xl.pt-pricing-header h1 video,
.-xl.pt-pricing-header h2 img,
.-xl.pt-pricing-header h2 video,
.-xl.pt-pricing-header h3 img,
.-xl.pt-pricing-header h3 video,
.pt-header.-xl h1 img,
.pt-header.-xl h1 video,
.pt-header.-xl h2 img,
.pt-header.-xl h2 video,
.pt-header.-xl h3 img,
.pt-header.-xl h3 video {
    width: 56px;
    height: 56px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .-xl.pt-advantage-header h1 img,
    .-xl.pt-advantage-header h1 video,
    .-xl.pt-advantage-header h2 img,
    .-xl.pt-advantage-header h2 video,
    .-xl.pt-advantage-header h3 img,
    .-xl.pt-advantage-header h3 video,
    .-xl.pt-explore-header h1 img,
    .-xl.pt-explore-header h1 video,
    .-xl.pt-explore-header h2 img,
    .-xl.pt-explore-header h2 video,
    .-xl.pt-explore-header h3 img,
    .-xl.pt-explore-header h3 video,
    .-xl.pt-outro-header h1 img,
    .-xl.pt-outro-header h1 video,
    .-xl.pt-outro-header h2 img,
    .-xl.pt-outro-header h2 video,
    .-xl.pt-outro-header h3 img,
    .-xl.pt-outro-header h3 video,
    .-xl.pt-overview-header h1 img,
    .-xl.pt-overview-header h1 video,
    .-xl.pt-overview-header h2 img,
    .-xl.pt-overview-header h2 video,
    .-xl.pt-overview-header h3 img,
    .-xl.pt-overview-header h3 video,
    .-xl.pt-partner-header h1 img,
    .-xl.pt-partner-header h1 video,
    .-xl.pt-partner-header h2 img,
    .-xl.pt-partner-header h2 video,
    .-xl.pt-partner-header h3 img,
    .-xl.pt-partner-header h3 video,
    .-xl.pt-pricing-header h1 img,
    .-xl.pt-pricing-header h1 video,
    .-xl.pt-pricing-header h2 img,
    .-xl.pt-pricing-header h2 video,
    .-xl.pt-pricing-header h3 img,
    .-xl.pt-pricing-header h3 video,
    .pt-header.-xl h1 img,
    .pt-header.-xl h1 video,
    .pt-header.-xl h2 img,
    .pt-header.-xl h2 video,
    .pt-header.-xl h3 img,
    .pt-header.-xl h3 video {
        width: 94px;
        height: 94px;
    }
}
@media (min-width: 1200px) {
    .-xl.pt-advantage-header h1 img,
    .-xl.pt-advantage-header h1 video,
    .-xl.pt-advantage-header h2 img,
    .-xl.pt-advantage-header h2 video,
    .-xl.pt-advantage-header h3 img,
    .-xl.pt-advantage-header h3 video,
    .-xl.pt-explore-header h1 img,
    .-xl.pt-explore-header h1 video,
    .-xl.pt-explore-header h2 img,
    .-xl.pt-explore-header h2 video,
    .-xl.pt-explore-header h3 img,
    .-xl.pt-explore-header h3 video,
    .-xl.pt-outro-header h1 img,
    .-xl.pt-outro-header h1 video,
    .-xl.pt-outro-header h2 img,
    .-xl.pt-outro-header h2 video,
    .-xl.pt-outro-header h3 img,
    .-xl.pt-outro-header h3 video,
    .-xl.pt-overview-header h1 img,
    .-xl.pt-overview-header h1 video,
    .-xl.pt-overview-header h2 img,
    .-xl.pt-overview-header h2 video,
    .-xl.pt-overview-header h3 img,
    .-xl.pt-overview-header h3 video,
    .-xl.pt-partner-header h1 img,
    .-xl.pt-partner-header h1 video,
    .-xl.pt-partner-header h2 img,
    .-xl.pt-partner-header h2 video,
    .-xl.pt-partner-header h3 img,
    .-xl.pt-partner-header h3 video,
    .-xl.pt-pricing-header h1 img,
    .-xl.pt-pricing-header h1 video,
    .-xl.pt-pricing-header h2 img,
    .-xl.pt-pricing-header h2 video,
    .-xl.pt-pricing-header h3 img,
    .-xl.pt-pricing-header h3 video,
    .pt-header.-xl h1 img,
    .pt-header.-xl h1 video,
    .pt-header.-xl h2 img,
    .pt-header.-xl h2 video,
    .pt-header.-xl h3 img,
    .pt-header.-xl h3 video {
        width: 104px;
        height: 104px;
    }
}
@media (min-width: 1600px) {
    .-xl.pt-advantage-header h1 img,
    .-xl.pt-advantage-header h1 video,
    .-xl.pt-advantage-header h2 img,
    .-xl.pt-advantage-header h2 video,
    .-xl.pt-advantage-header h3 img,
    .-xl.pt-advantage-header h3 video,
    .-xl.pt-explore-header h1 img,
    .-xl.pt-explore-header h1 video,
    .-xl.pt-explore-header h2 img,
    .-xl.pt-explore-header h2 video,
    .-xl.pt-explore-header h3 img,
    .-xl.pt-explore-header h3 video,
    .-xl.pt-outro-header h1 img,
    .-xl.pt-outro-header h1 video,
    .-xl.pt-outro-header h2 img,
    .-xl.pt-outro-header h2 video,
    .-xl.pt-outro-header h3 img,
    .-xl.pt-outro-header h3 video,
    .-xl.pt-overview-header h1 img,
    .-xl.pt-overview-header h1 video,
    .-xl.pt-overview-header h2 img,
    .-xl.pt-overview-header h2 video,
    .-xl.pt-overview-header h3 img,
    .-xl.pt-overview-header h3 video,
    .-xl.pt-partner-header h1 img,
    .-xl.pt-partner-header h1 video,
    .-xl.pt-partner-header h2 img,
    .-xl.pt-partner-header h2 video,
    .-xl.pt-partner-header h3 img,
    .-xl.pt-partner-header h3 video,
    .-xl.pt-pricing-header h1 img,
    .-xl.pt-pricing-header h1 video,
    .-xl.pt-pricing-header h2 img,
    .-xl.pt-pricing-header h2 video,
    .-xl.pt-pricing-header h3 img,
    .-xl.pt-pricing-header h3 video,
    .pt-header.-xl h1 img,
    .pt-header.-xl h1 video,
    .pt-header.-xl h2 img,
    .pt-header.-xl h2 video,
    .pt-header.-xl h3 img,
    .pt-header.-xl h3 video {
        width: 130px;
        height: 130px;
    }
}
.pt-scroller {
    display: none;
}
@media (min-width: 768px) {
    .pt-scroller {
        display: block;
        position: absolute;
        left: 40px;
        bottom: 40px;
        z-index: 50;
        opacity: 0;
        -webkit-transition: opacity 0.2s linear;
        -o-transition: opacity 0.2s linear;
        -moz-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear;
    }
}
@media (min-width: 1600px) {
    .pt-scroller {
        left: 70px;
        bottom: 70px;
    }
}
.pt-scroller svg {
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    -moz-transition: transform 0.2s, -moz-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
}
.pt-scroller:hover svg {
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}
.pt-scroller.-inverse {
    color: #fff;
}
.pt-scroller.-visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.pt-embedded {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.pt-embedded iframe,
.pt-embedded img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.pt-embedded img {
    -o-object-fit: cover;
    object-fit: cover;
}
.pt-embedded.-youtube {
    padding-bottom: 56.25%;
}
.pt-embedded-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    margin: -24px 0 0 -34px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    line-height: 44px;
    text-align: center;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}
.pt-embedded-play:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 3px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}
.pt-embedded:hover .pt-embedded-play {
    background: #fc0019;
}
.pt-fallbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    contain: strict;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pt-fallbox-item {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-100%, -100%);
    -moz-transform: translate(-100%, -100%);
    -ms-transform: translate(-100%, -100%);
    -o-transform: translate(-100%, -100%);
    transform: translate(-100%, -100%);
    will-change: transform;
}
.pt-fallbox-item span {
    display: inline-block;
    padding: 12px 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    color: #000;
    background: #fef2ff;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
}
.pt-fallbox-item span:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}
@media (min-width: 768px) {
    .pt-fallbox-item span {
        padding: 14px 24px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
        font-size: 22px;
    }
}
@media (min-width: 1600px) {
    .pt-fallbox-item span {
        padding: 18px 31px;
        -webkit-border-radius: 33px;
        -moz-border-radius: 33px;
        border-radius: 33px;
        font-size: 28px;
    }
}
.pt-fallbox-item.-lg span {
    padding: 13px 23px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    font-size: 23px;
}
@media (min-width: 768px) {
    .pt-fallbox-item.-lg span {
        padding: 30px 50px;
        -webkit-border-radius: 55px;
        -moz-border-radius: 55px;
        border-radius: 55px;
        font-size: 49px;
    }
}
@media (min-width: 1024px) {
    .pt-fallbox-item.-lg span {
        padding: 19px 32px;
        -webkit-border-radius: 36px;
        -moz-border-radius: 36px;
        border-radius: 36px;
        font-size: 31px;
    }
}
@media (min-width: 1200px) {
    .pt-fallbox-item.-lg span {
        padding: 23px 40px;
        -webkit-border-radius: 44px;
        -moz-border-radius: 44px;
        border-radius: 44px;
        font-size: 38px;
    }
}
@media (min-width: 1600px) {
    .pt-fallbox-item.-lg span {
        padding: 31px 54px;
        -webkit-border-radius: 58px;
        -moz-border-radius: 58px;
        border-radius: 58px;
        font-size: 52px;
    }
}
.pt-fallbox-item.-xl span {
    padding: 15px 25px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    font-size: 25px;
}
@media (min-width: 768px) {
    .pt-fallbox-item.-xl span {
        padding: 32px 55px;
        -webkit-border-radius: 61px;
        -moz-border-radius: 61px;
        border-radius: 61px;
        font-size: 55px;
    }
}
@media (min-width: 1024px) {
    .pt-fallbox-item.-xl span {
        padding: 20px 35px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        border-radius: 40px;
        font-size: 35px;
    }
}
@media (min-width: 1200px) {
    .pt-fallbox-item.-xl span {
        padding: 25px 44px;
        -webkit-border-radius: 44px;
        -moz-border-radius: 44px;
        border-radius: 44px;
        font-size: 43px;
    }
}
@media (min-width: 1600px) {
    .pt-fallbox-item.-xl span {
        padding: 35px 58px;
        -webkit-border-radius: 64px;
        -moz-border-radius: 64px;
        border-radius: 64px;
        font-size: 58px;
    }
}
.pt-fallbox-item.-v1 span {
    background: #a7ff9f;
}
.pt-fallbox-item.-v2 span {
    background: #ffe3d3;
}
.pt-fallbox-item.-v3 span {
    background: #dbefe8;
}
.pt-fallbox-item.-v4 span {
    background: #d8c0ff;
}
.pt-fallbox-item.-v5 span {
    background: #ffea9f;
}
.pt-fallbox-item.-v6 span {
    color: #fff;
    background: #1c2539;
}
.pt-fallbox-item.-v7 span {
    background: #eaeaea;
}
.pt-fallbox-item.-v8 span {
    background: #ffc29f;
}
.pt-fallbox-item.-v9 span {
    background: #9fa9ff;
}
.pt-fallbox-item.-v10 span {
    background: #fef2ff;
}
.pt-fallbox-item.-v11 span {
    background: #fffac0;
}
.pt-fallbox-item.-v12 span {
    background: #c9fec4;
}
.pt-chevronbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    contain: strict;
}
.pt-chevronbox canvas {
    height: 100%;
    width: 100%;
}
.pt-glancebox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    contain: strict;
}
.pt-glancebox canvas {
    height: 100%;
    width: 100%;
}
.pt-hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pt-hero-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fafafa;
    -webkit-border-bottom-left-radius: 35px;
    -moz-border-radius-bottomleft: 35px;
    border-bottom-left-radius: 35px;
    -webkit-border-bottom-right-radius: 35px;
    -moz-border-radius-bottomright: 35px;
    border-bottom-right-radius: 35px;
}
@media (min-width: 768px) {
    .pt-hero-fill {
        -webkit-border-bottom-left-radius: 60px;
        -moz-border-radius-bottomleft: 60px;
        border-bottom-left-radius: 60px;
        -webkit-border-bottom-right-radius: 60px;
        -moz-border-radius-bottomright: 60px;
        border-bottom-right-radius: 60px;
    }
}
.pt-hero-masks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-hero-masks {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-hero-mask {
    position: absolute;
    top: -webkit-calc(100vh + 50px);
    top: -moz-calc(100vh + 50px);
    top: calc(100vh + 50px);
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    margin: -70px auto 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (max-height: 440px) {
    .pt-hero-mask {
        margin-top: -30px;
    }
}
@media (min-width: 768px) {
    .pt-hero-mask {
        top: -webkit-calc(100vh + 98.75px);
        top: -moz-calc(100vh + 98.75px);
        top: calc(100vh + 98.75px);
        width: 197.5px;
        height: 197.5px;
    }
}
@media (min-width: 1024px) {
    .pt-hero-mask {
        margin-top: -100px;
    }
}
@media (min-width: 1600px) {
    .pt-hero-mask {
        top: -webkit-calc(100vh + 123.5px);
        top: -moz-calc(100vh + 123.5px);
        top: calc(100vh + 123.5px);
        width: 247px;
        height: 247px;
    }
}
.pt-hero-mask.-v1 {
    background: #000;
}
.pt-hero-mask.-v2 {
    background: #002548;
}
.pt-hero-content {
    position: relative;
}
@media (min-width: 768px) {
    .pt-hero-content {
        padding: 0 0 60px 0;
    }
}
.pt-hero-line {
    position: absolute;
    top: -2px;
    left: 0;
    color: #aaa;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pt-hero-line {
        left: 10%;
    }
}
@media (min-width: 1200px) {
    .pt-hero-line {
        left: 20%;
    }
}
@media (min-width: 1600px) {
    .pt-hero-line {
        left: 30%;
    }
}
@media (min-width: 768px) {
    .pt-hero-line svg:nth-child(1) {
        display: none;
    }
}
.pt-hero-line svg:nth-child(2) {
    display: none;
}
@media (min-width: 768px) {
    .pt-hero-line svg:nth-child(2) {
        display: block;
    }
}
.pt-hero-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.pt-hero-body {
    margin-top: -70px;
}
@media (max-height: 440px) {
    .pt-hero-body {
        margin-top: -30px;
    }
}
@media (min-width: 1024px) {
    .pt-hero-body {
        margin-top: -100px;
    }
}
.pt-hero-header {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-hero-header h1 {
    font-weight: 600;
    font-size: 52px;
    line-height: 90%;
    text-align: center;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-hero-header h1 {
        font-size: 84px;
    }
}
@media (min-width: 1024px) {
    .pt-hero-header h1 {
        font-size: 3.6666666667vw;
    }
}
@media (min-width: 2400px) and (min-height: 950px) {
    .pt-hero-header h1 {
        font-size: 5.4166666667vw;
    }
}
.pt-hero-notice {
    position: relative;
    margin: 30px 0 0 0;
    color: #aaa;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
@media (min-width: 1600px) {
    .pt-hero-notice {
        font-size: 16px;
    }
}
.pt-hero-action {
    padding: 45px 0 0 0;
}
@media (min-width: 768px) {
    .pt-hero-action {
        padding-top: 67px;
    }
}
@media (min-width: 1200px) {
    .pt-hero-action {
        padding-top: 50px;
    }
}
@media (min-width: 1600px) {
    .pt-hero-action {
        padding-top: 70px;
    }
}
.pt-hero-video {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 5%;
}
@media (min-width: 768px) {
    .pt-hero-video {
        width: 700px;
        height: 395px;
    }
}
@media (min-width: 1600px) {
    .pt-hero-video {
        width: 700px;
        height: 494px;
    }
}
.pt-hero-video img,
.pt-hero-video video {
    width: 100%;
    height: 100%;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.pt-hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -29.5px 0 0 -29.5px;
}
@media (min-width: 768px) {
    .pt-hero-video-play {
        margin: -59px 0 0 -59px;
    }
}
.pt-hero-headlines {
    display: block;
    margin: -15px auto;
    padding: 120px 0 180px 0;
    width: 265px;
    color: #fff;
}
@media (min-width: 768px) {
    .pt-hero-headlines {
        width: 460px;
    }
}
@media (min-width: 1200px) {
    .pt-hero-headlines {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
        width: auto;
        padding: 0;
        height: 100vh;
    }
}
.pt-hero-headline {
    padding: 15px 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 0.4;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
@media (min-width: 1200px) {
    .pt-hero-headline {
        display: block;
        padding: 0;
        width: 100%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        text-align: center;
        opacity: 1;
        -webkit-transition: none;
        -o-transition: none;
        -moz-transition: none;
        transition: none;
    }
}
.pt-hero-headline.-active,
.pt-navbar.-open .pt-navbar-toggle button.pt-hero-headline {
    opacity: 1;
}
@media (min-width: 1200px) {
    .pt-hero-headline.-active,
    .pt-navbar.-open .pt-navbar-toggle button.pt-hero-headline {
        opacity: 0.4;
    }
}
.pt-hero-headline h2 {
    display: inline-block;
    font-weight: 600;
    font-size: 50px;
    line-height: 90%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-hero-headline h2 {
        font-size: 86px;
    }
}
@media (min-width: 1200px) {
    .pt-hero-headline h2 {
        font-size: 4.75vw;
        letter-spacing: 3px; 
        
    }
}
@media (min-width: 2400px) and (min-height: 950px) {
    .pt-hero-headline h2 {
        font-size: 6.875vw;
    }
}
.pt-overview {
    position: relative;
    overflow: hidden;
}
.pt-overview-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-overview-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-overview-content {
    position: relative;
}
.pt-overview-top {
    position: relative;
    padding: 140px 0;
}
@media (min-width: 768px) {
    .pt-overview-top {
        padding: 240px 0 210px 0;
    }
}
@media (min-width: 1024px) {
    .pt-overview-top {
        padding: 240px 0 270px 0;
    }
}
@media (min-width: 1200px) {
    .pt-overview-top {
        padding: 75px 0;
    }
}
@media (min-width: 1600px) {
    .pt-overview-top {
        padding: 360px 0;
    }
}
@media (min-width: 2050px) {
    .pt-overview-top {
        padding: 380px 0;
    }
}
.pt-overview-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 4;
}
@media (min-width: 768px) {
    .pt-overview-scene {
        bottom: 20px;
    }
}
.pt-overview-footer {
    padding: 40px 0;
}
@media (min-width: 768px) {
    .pt-overview-footer {
        padding: 60px 0;
    }
}
.pt-overview-header {
    position: relative;
    z-index: 5;
    text-align: center;
}
@media (pointer: fine) {
    .pt-overview-header {
        -ms-touch-action: none;
        touch-action: none;
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
.pt-overview-header b {
    display: inline-block;
    font-weight: inherit;
    text-align: left;
}
@media (min-width: 768px) {
    .pt-overview-header br.-xs {
        display: none;
    }
}
.pt-overview-header figure,
.pt-overview-header-fig {
    position: relative;
    display: inline-block;
    margin: 12px auto 0 auto;
    height: 45px;
}
@media (min-width: 768px) {
    .pt-overview-header figure,
    .pt-overview-header-fig {
        display: inline-block;
        vertical-align: middle;
        width: auto;
        margin: 0 0 0 26px;
        height: 78px;
    }
}
@media (min-width: 1200px) {
    .pt-overview-header figure,
    .pt-overview-header-fig {
        margin: 0 0 0 36px;
        height: 86px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-header figure,
    .pt-overview-header-fig {
        margin: 0 0 0 52px;
        height: 108px;
    }
}
.pt-overview-header figure img,
.pt-overview-header-fig img {
    position: relative;
    width: 45px;
    height: 45px;
    overflow: hidden;
    vertical-align: top;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .pt-overview-header figure img,
    .pt-overview-header-fig img {
        width: 78px;
        height: 78px;
    }
}
@media (min-width: 1200px) {
    .pt-overview-header figure img,
    .pt-overview-header-fig img {
        width: 86px;
        height: 86px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-header figure img,
    .pt-overview-header-fig img {
        width: 108px;
        height: 108px;
    }
}
.pt-overview-header figure img:nth-child(1),
.pt-overview-header-fig img:nth-child(1) {
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 3;
}
@media (min-width: 768px) {
    .pt-overview-header figure img:nth-child(1),
    .pt-overview-header-fig img:nth-child(1) {
        left: -16px;
    }
}
@media (min-width: 1200px) {
    .pt-overview-header figure img:nth-child(1),
    .pt-overview-header-fig img:nth-child(1) {
        left: -18px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-header figure img:nth-child(1),
    .pt-overview-header-fig img:nth-child(1) {
        left: -23px;
    }
}
.pt-overview-header figure img:nth-child(2),
.pt-overview-header-fig img:nth-child(2) {
    z-index: 2;
}
.pt-overview-header figure img:nth-child(3),
.pt-overview-header-fig img:nth-child(3) {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 1;
}
@media (min-width: 768px) {
    .pt-overview-header figure img:nth-child(3),
    .pt-overview-header-fig img:nth-child(3) {
        left: 16px;
    }
}
@media (min-width: 1200px) {
    .pt-overview-header figure img:nth-child(3),
    .pt-overview-header-fig img:nth-child(3) {
        left: 18px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-header figure img:nth-child(3),
    .pt-overview-header-fig img:nth-child(3) {
        left: 23px;
    }
}
.pt-overview-carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pt-overview-reviews {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    -moz-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    -o-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.pt-overview-review {
    position: relative;
    width: 325px;
    padding: 35px 0 40px 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #002548;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-overview-review {
        width: 672px;
        padding: 55px 0;
        -webkit-border-radius: 35px;
        -moz-border-radius: 35px;
        border-radius: 35px;
    }
}
@media (min-width: 1024px) {
    .pt-overview-review {
        width: 300px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-review {
        width: 900px;
        padding: 55px 0;
    }
}
.pt-overview-review-profile {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 50%;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 10%;
}
.pt-overview-review-profile img,
.pt-overview-review-profile video {
    width: 100%;
    height: 100%;
}
.pt-overview-review-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -21px 0 0 -21px;
}
.pt-overview-review-text {
    margin: 20px 0 0 0;
    padding: 0 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-overview-review-text {
        max-width: 580px;
        margin: 20px auto 0 auto;
        padding: 0;
        font-size: 22px;
    }
}
.pt-overview-review-caption {
    margin: 18px 0 0 0;
    padding: 0 30px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-overview-review-caption {
        margin: 30px 0 0 0;
        font-size: 16px;
    }
}
.pt-overview-review-caption b {
    color: rgb(65, 65, 65);
}
.pt-overview-review-logo {
    margin: 20px 0 0 0;
}
@media (min-width: 768px) {
    .pt-overview-review-logo {
        margin: 44px 0 0 0;
    }
}
.pt-overview-review-logo img {
    max-height: 30px;
    max-width: 110px;
}
.pt-overview-bundle {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 62px;
}
@media (min-width: 768px) {
    .pt-overview-bundle {
        height: 100px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-bundle {
        height: 130px;
    }
}
.pt-overview-logos {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}
.pt-overview-logo {
    width: 150px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-overview-logo {
        width: 300px;
    }
}
@media (min-width: 1600px) {
    .pt-overview-logo {
        width: 330px;
    }
}
.pt-overview-logo img {
    max-width: 100%;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
}
@media (min-width: 768px) {
    .pt-overview-logo img {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }
}
@media (min-width: 1600px) {
    .pt-overview-logo img {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}
.pt-overview-navs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 165px;
    margin: 40px auto 0 auto;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-overview-navs {
        margin: 60px auto 0 auto;
    }
}
.pt-overview-nav {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.pt-definition {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .pt-definition {
        margin-bottom: 60px;
    }
}
.pt-definition-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fef2ff;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-definition-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-definition-content {
    position: relative;
    padding: 80px 0 339px 0;
}
@media (min-width: 768px) {
    .pt-definition-content {
        padding: 80px 0 462px 0;
    }
}
@media (min-width: 1024px) {
    .pt-definition-content {
        padding: 210px 0;
    }
}
@media (min-width: 1600px) {
    .pt-definition-content {
        padding: 260px 0;
    }
}
@media (min-width: 2050px) {
    .pt-definition-content {
        padding: 300px 0;
    }
}
@media (min-width: 2400px) {
    .pt-definition-content {
        padding: 360px 0;
    }
}
@media (min-width: 1024px) {
    .pt-definition-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 1024px) {
    .pt-definition-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-definition-col.-left {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-definition-text {
    position: relative;
    z-index: 1;
    max-width: 400px;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-definition-text {
        max-width: 600px;
        font-size: 48px;
    }
}
@media (min-width: 1024px) {
    .pt-definition-text {
        max-width: none;
    }
}
@media (min-width: 1600px) {
    .pt-definition-text {
        max-width: 642px;
        font-size: 60px;
    }
}
@media (min-width: 2050px) {
    .pt-definition-text {
        max-width: 800px;
        font-size: 74px;
    }
}
.pt-definition-text mark {
    position: relative;
    z-index: -1;
    background: 0 0;
}
.pt-definition-text mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.17em;
    left: -0.1em;
    right: -0.2em;
    bottom: 0.07em;
    z-index: -1;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    background: #ffe3d3;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1200px) {
    .pt-definition-text mark:before {
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
    }
}
@media (min-width: 1600px) {
    .pt-definition-text mark:before {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }
}
.pt-definition-text mark.-hidden:before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-border-radius: 120px;
    -moz-border-radius: 120px;
    border-radius: 120px;
}
.pt-definition-notice {
    margin: 15px 0 0 0;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-definition-notice {
        margin: 25px 0 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-definition-notice {
        margin: 35px 0 0 0;
    }
}
.pt-definition-notice b {
    color: #000;
}
.pt-definition-action {
    margin: 25px 0 0 0;
}
@media (min-width: 768px) {
    .pt-definition-action {
        margin: 30px 0 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-definition-action {
        margin: 40px 0 0 0;
    }
}
.pt-definition-figure {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
@media (min-width: 1024px) {
    .pt-definition-figure {
        left: auto;
        right: auto;
        margin: 0 0 0 40px;
    }
}
.pt-definition-figure img,
.pt-definition-figure video {
    width: 300px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -o-object-fit: cover;
    object-fit: cover;
}
@media (min-width: 768px) {
    .pt-definition-figure img,
    .pt-definition-figure video {
        width: 500px;
    }
}
@media (min-width: 1600px) {
    .pt-definition-figure img,
    .pt-definition-figure video {
        width: 750px;
    }
}
@media (min-width: 2050px) {
    .pt-definition-figure img,
    .pt-definition-figure video {
        width: 850px;
    }
}
.desktop.safari .pt-definition-figure img,
.desktop.safari .pt-definition-figure video {
    -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%);
}
.pt-billboard {
    position: relative;
    margin: 10px 0 0 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pt-billboard {
        margin-top: 20px;
    }
}
.pt-billboard-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 1px #eee solid;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-billboard-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
@media (min-width: 1024px) {
    .pt-billboard-fill {
        -webkit-transform: scaleX(0.98);
        -moz-transform: scaleX(0.98);
        -ms-transform: scaleX(0.98);
        -o-transform: scaleX(0.98);
        transform: scaleX(0.98);
    }
}
.pt-billboard-content {
    position: relative;
    padding: 35px 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
@media (min-width: 768px) {
    .pt-billboard-content {
        padding: 50px 0;
    }
}
@media (min-width: 1600px) {
    .pt-billboard-content {
        padding: 66px 0 82px 0;
    }
}
.pt-billboard-caption h2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-billboard-caption h2 {
        font-size: 18px;
    }
}
.pt-billboard-logos {
    margin: 0 -15px;
    padding: 17px 0 0 0;
}
@media (min-width: 768px) {
    .pt-billboard-logos {
        margin: 0 -25px;
        padding: 30px 0 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-billboard-logos {
        margin: 0 -30px;
        padding: 40px 0 0 0;
    }
}
.pt-billboard-logo {
    display: inline-block;
    padding: 0 15px;
    vertical-align: middle;
}
@media (min-width: 768px) {
    .pt-billboard-logo {
        padding: 0 25px;
    }
}
@media (min-width: 1600px) {
    .pt-billboard-logo {
        padding: 0 30px;
    }
}
.pt-billboard-logo img {
    width: 45px;
    height: 45px;
}
@media (min-width: 768px) {
    .pt-billboard-logo img {
        width: 66px;
        height: 66px;
    }
}
@media (min-width: 1600px) {
    .pt-billboard-logo img {
        width: 88px;
        height: 88px;
    }
}
.pt-feature {
    position: relative;
    overflow: hidden;
}
.pt-feature-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-feature-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-feature-content {
    position: relative;
    padding: 10px 0;
}
@media (min-width: 1024px) {
    .pt-feature-content {
        padding: 60px 0;
    }
}
.pt-feature-content.-ct {
    padding-top: 0;
}
@media (min-width: 1024px) {
    .pt-feature-container.-sl {
        padding-right: 0;
        padding-left: -webkit-calc(100vw / 2 - 1024px / 2 + 80px);
        padding-left: -moz-calc(100vw / 2 - 1024px / 2 + 80px);
        padding-left: calc(100vw / 2 - 1024px / 2 + 80px);
    }
}
@media (min-width: 1200px) {
    .pt-feature-container.-sl {
        padding-left: -webkit-calc(100vw / 2 - 1200px / 2 + 100px);
        padding-left: -moz-calc(100vw / 2 - 1200px / 2 + 100px);
        padding-left: calc(100vw / 2 - 1200px / 2 + 100px);
    }
}
@media (min-width: 1600px) {
    .pt-feature-container.-sl {
        padding-left: -webkit-calc(100vw / 2 - 1600px / 2 + 160px);
        padding-left: -moz-calc(100vw / 2 - 1600px / 2 + 160px);
        padding-left: calc(100vw / 2 - 1600px / 2 + 160px);
    }
}
@media (min-width: 2050px) {
    .pt-feature-container.-sl {
        padding-left: -webkit-calc(100vw / 2 - 1900px / 2 + 160px);
        padding-left: -moz-calc(100vw / 2 - 1900px / 2 + 160px);
        padding-left: calc(100vw / 2 - 1900px / 2 + 160px);
    }
}
@media (min-width: 2400px) {
    .pt-feature-container.-sl {
        padding-left: -webkit-calc(100vw / 2 - 2050px / 2 + 160px);
        padding-left: -moz-calc(100vw / 2 - 2050px / 2 + 160px);
        padding-left: calc(100vw / 2 - 2050px / 2 + 160px);
    }
}
.pt-feature-sections {
    margin: -10px 0;
}
@media (min-width: 1024px) {
    .pt-feature-sections {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -moz-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: 0;
    }
}
.pt-feature-section {
    position: relative;
    margin: 10px 0;
    padding: 240px 0 70px 0;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-feature-section {
        padding: 290px 0 77px 0;
        -webkit-border-radius: 70px;
        -moz-border-radius: 70px;
        border-radius: 70px;
    }
}
@media (min-width: 1024px) {
    .pt-feature-section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        width: 35vw;
        min-height: -webkit-calc(50vh - 30px);
        min-height: -moz-calc(50vh - 30px);
        min-height: calc(50vh - 30px);
        margin: 0 10px;
        padding: 0;
    }
}
@media (min-width: 1600px) {
    .pt-feature-section {
        margin: 0 7px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-feature-section.-fill {
    background: #fafafa;
}
.pt-feature-section.-primary {
    color: #fff;
    background: #1c2539;
}
.pt-feature-section.-secondary {
    background: #fef2ff;
}
.pt-feature-section.-tertiary {
    background: #002548;
}
@media (max-width: 1023px) {
    .pt-feature-section.-sm {
        padding: 145px 0 120px 0;
        background: 0 0;
    }
}
@media (max-width: 767px) {
    .pt-feature-section.-sm {
        padding: 102px 0 60px 0;
    }
}
@media (min-width: 1024px) {
    .pt-feature-section.-sm {
        width: 60vw;
        margin-left: 0;
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .pt-feature-spacer {
        width: 320px;
        height: 200px;
    }
}
@media (min-width: 1024px) and (min-height: 600px) {
    .pt-feature-spacer {
        margin: 0 0 50px 0;
    }
}
@media (min-width: 1600px) {
    .pt-feature-spacer {
        width: 400px;
        height: 252px;
    }
}
.pt-feature-figure {
    position: absolute;
    top: 60px;
    left: 30px;
    width: 240px;
    height: 150px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 1;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    border-radius: 80px;
}
@media (min-width: 768px) {
    .pt-feature-figure {
        top: 53px;
        left: 50px;
        width: 320px;
        height: 200px;
        -webkit-border-radius: 160px;
        -moz-border-radius: 160px;
        border-radius: 160px;
    }
}
@media (min-width: 1024px) {
    .pt-feature-figure {
        position: relative;
        top: 0;
        left: 0;
    }
}
@media (min-width: 1024px) and (min-height: 600px) {
    .pt-feature-figure {
        margin: 0 0 20px 0;
    }
}
@media (min-width: 1024px) and (min-height: 660px) {
    .pt-feature-figure {
        margin: 0 0 50px 0;
    }
}
@media (min-width: 1600px) {
    .pt-feature-figure {
        width: 400px;
        height: 252px;
        -webkit-border-radius: 200px;
        -moz-border-radius: 200px;
        border-radius: 200px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-feature-figure {
        margin: 0 0 80px 0;
        width: 480px;
        height: 302.4px;
    }
}
.pt-feature-figure img,
.pt-feature-figure video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-feature-title {
    position: relative;
    z-index: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-feature-title h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: -0.06em;
}
@media (min-width: 768px) {
    .pt-feature-title h2 {
        font-size: 59px;
    }
}
@media (min-width: 1600px) {
    .pt-feature-title h2 {
        font-size: 74px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-feature-title h2 {
        font-size: 80px;
    }
}
.pt-feature-title mark {
    position: relative;
    z-index: -1;
    background: 0 0;
}
.pt-feature-title mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.1em;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.02em;
    z-index: -1;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
@media (min-width: 1200px) {
    .pt-feature-title mark:before {
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
    }
}
@media (min-width: 1600px) {
    .pt-feature-title mark:before {
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }
}
.pt-feature-title mark.-quaternary:before {
    background: #c9ffc5;
}
.pt-feature-title mark.-quinary:before {
    background: #ccbaff;
}
.pt-feature-title mark.-octonary:before {
    background: #fcf9d8;
}
@media (min-width: 1024px) {
    .pt-feature-title.-lg {
        padding-bottom: 158px;
    }
}
@media (max-width: 767px) {
    .pt-feature-title.-lg h2 {
        font-size: 50px;
    }
}
@media (min-width: 1200px) {
    .pt-feature-title.-lg h2 {
        font-size: 50px;
    }
}
@media (min-width: 1600px) {
    .pt-feature-title.-lg h2 {
        font-size: 100px;
    }
}
@media (min-width: 2400px) {
    .pt-feature-title.-lg h2 {
        font-size: 120px;
    }
}
.pt-feature-text {
    margin: 16px 0 0 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    font-weight: 500;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-feature-text {
        margin: 32px 0 0 0;
        font-size: 24px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-feature-text {
        margin: 40px 0 0 0;
        font-size: 28px;
    }
}
.pt-advantage {
    position: relative;
    color: #fff;
    background: #002548;
}
.pt-advantage-fill {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    bottom: -55px;
    z-index: -1;
    background: #000;
}
@media (min-width: 768px) {
    .pt-advantage-fill {
        top: -90px;
        bottom: -120px;
    }
}
.pt-advantage-content {
    padding: 190px 0 80px 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pt-advantage-content {
        padding: 50px 0 200px 0;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-content {
        padding: 350px 0 200px 0;
    }
}
@media (min-width: 2400px) {
    .pt-advantage-content {
        padding: 350px 0;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-container.-rr {
        padding-right: 15px;
    }
}
.pt-advantage-sections {
    margin: -52px 0;
    padding: 160px 0 0 0;
}
@media (min-width: 768px) {
    .pt-advantage-sections {
        margin: -75px 0;
        padding: 300px 0 0 0;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-sections {
        margin: -7px 0;
        padding: 50px 0 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-sections {
        margin: -10px 0;
        padding: 300px 0 0 0;
    }
}
.pt-advantage-section {
    padding: 52px 0;
}
@media (min-width: 768px) {
    .pt-advantage-section {
        padding: 75px 0;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-section {
        position: relative;
        padding: 7px 0;
        height: 601px;
    }
}
@media (min-width: 1200px) {
    .pt-advantage-section {
        height: 708px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-section {
        padding: 10px 0;
        height: 945px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-advantage-section {
        height: 1070px;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-grid-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-advantage-grid-col.-right {
    margin: 0 -25px;
    padding: 45px 0 0 0;
}
@media (min-width: 768px) {
    .pt-advantage-grid-col.-right {
        margin: 0 -50px;
        padding: 80px 0 0 0;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-grid-col.-right {
        margin: 0;
        padding: 0;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-advantage-header {
    text-align: center;
}
.pt-advantage-num {
    font-weight: 600;
    font-size: 67.2px;
    line-height: 90%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-advantage-num {
        font-size: 112px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-num {
        font-size: 140px;
    }
}
.pt-advantage-title {
    position: relative;
    z-index: 1;
    margin: 17px 0 0 0;
}
@media (min-width: 768px) {
    .pt-advantage-title {
        margin: 27px 0 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-title {
        margin: 33px 0 0 0;
    }
}
.pt-advantage-title h3 {
    font-weight: 600;
    font-size: 36px;
    line-height: 105%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-advantage-title h3 {
        font-size: 35px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-title h3 {
        font-size: 64px;
    }
}
@media (min-width: 2400px) {
    .pt-advantage-title h3 {
        font-size: 80px;
    }
}
.pt-advantage-title img,
.pt-advantage-title video {
    width: 31px;
    height: 31px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .pt-advantage-title img,
    .pt-advantage-title video {
        width: 51px;
        height: 51px;
    }
}
.pt-advantage-title video {
    -webkit-transform: translateZ(0) translateY(-5px) scale(1.1);
    -moz-transform: translateZ(0) translateY(-5px) scale(1.1);
    transform: translateZ(0) translateY(-5px) scale(1.1);
}
.pt-advantage-title mark {
    position: relative;
    z-index: -1;
    background: 0 0;
}
.pt-advantage-title mark:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.12em;
    left: -0.3em;
    right: -0.3em;
    bottom: 0.07em;
    z-index: -1;
    background: rgba(245, 245, 245, 0.2);
    -webkit-border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    border-radius: 0.8em;
}
.pt-advantage-title mark.-opaque {
    color: inherit;
}
.pt-advantage-title mark.-quaternary:before {
    background: #c9ffc5;
}
.pt-advantage-title mark.-quinary:before {
    background: #ccbaff;
}
.pt-advantage-figure {
    position: relative;
    padding-bottom: 121.33%;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 550px) and (max-height: 550px) {
    .pt-advantage-figure {
        width: 500px;
        height: 587px;
        padding-bottom: 0;
        margin: 0 0 0 30px;
    }
}
@media (min-width: 768px) {
    .pt-advantage-figure {
        -webkit-border-radius: 70px;
        -moz-border-radius: 70px;
        border-radius: 70px;
    }
}
@media (min-width: 1024px) {
    .pt-advantage-figure {
        position: absolute;
        top: 0;
        padding-bottom: 0;
        height: 587px;
        width: 50%;
        -webkit-border-radius: 37px;
        -moz-border-radius: 37px;
        border-radius: 37px;
    }
}
@media (min-width: 1200px) {
    .pt-advantage-figure {
        height: 694px;
    }
}
@media (min-width: 1600px) {
    .pt-advantage-figure {
        height: 925px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-advantage-figure {
        height: 1050px;
    }
}
.pt-advantage-figure-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.pt-advantage-figure-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (min-width: 1024px) {
    .pt-advantage-figure-scene {
        top: -20px;
        bottom: -20px;
    }
}
.pt-advantage-figure-screen {
    position: absolute;
    top: 50%;
    left: 7%;
    right: 7%;
    -webkit-transform: translateY(-50%) translateZ(0);
    -moz-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
}
@media (pointer: fine) {
    .pt-advantage-figure-screen {
        -ms-touch-action: none;
        touch-action: none;
        pointer-events: none;
    }
}
@media (min-width: 1200px) {
    .pt-advantage-figure-screen {
        left: 10%;
        right: 10%;
    }
}
.pt-advantage-figure-screen img {
    width: 100%;
}
.pt-advantage-figure-video {
    position: absolute;
    top: 25%;
    left: 15.1%;
    right: 15.1%;
    bottom: 15%;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.pt-advantage-figure-video.-sm {
    top: 21%;
    left: 32%;
    right: 14%;
    bottom: 27%;
}
.pt-advantage-figure-video video {
    width: 100%;
    height: 100%;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.pt-advantage-figure.-v1 {
    background: #9942db;
}
.pt-advantage-figure.-v2 {
    background: #252525;
}
.pt-advantage-figure.-v3 {
    background: #ccbaff;
}
.pt-explore {
    position: relative;
    overflow: hidden;
}
.pt-explore-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffe8d3;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-explore-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-explore-content {
    position: relative;
    padding: 100px 0;
}
@media (min-width: 768px) {
    .pt-explore-content {
        padding: 100px 0 150px 0;
    }
}
@media (min-width: 1024px) {
    .pt-explore-content {
        padding: 150px 0;
    }
}
@media (min-width: 2050px) {
    .pt-explore-content {
        padding: 240px 0;
    }
}
@media (min-width: 2400px) {
    .pt-explore-content {
        padding: 300px 0;
    }
}
.pt-explore-header {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-explore-figure {
    position: relative;
    margin: 80px -20px;
    padding-bottom: 57.46%;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: 115px;
    -moz-border-radius: 115px;
    border-radius: 115px;
}
@media (min-width: 500px) {
    .pt-explore-figure {
        width: 390.5px;
        height: 224.4px;
        padding-bottom: 0;
    }
}
@media (min-width: 768px) {
    .pt-explore-figure {
        margin: 100px 0;
        width: 579px;
        height: 340px;
        -webkit-border-radius: 192px;
        -moz-border-radius: 192px;
        border-radius: 192px;
    }
}
@media (min-width: 1600px) {
    .pt-explore-figure {
        width: 725px;
        height: 426px;
        -webkit-border-radius: 240px;
        -moz-border-radius: 240px;
        border-radius: 240px;
    }
}
.pt-explore-figure img,
.pt-explore-figure video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.pt-explore-details {
    margin: -35px 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
@media (min-width: 768px) {
    .pt-explore-details {
        display: grid;
        grid-gap: 80px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        margin: 0;
    }
}
@media (min-width: 1024px) {
    .pt-explore-details {
        grid-gap: 53px 80px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
}
@media (min-width: 1600px) {
    .pt-explore-details {
        grid-gap: 53px 80px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }
}
.pt-explore-detail {
    padding: 35px 0;
}
@media (min-width: 768px) {
    .pt-explore-detail {
        padding: 0;
    }
}
.pt-explore-title h3 {
    font-weight: 600;
    font-size: 21px;
    line-height: 115%;
    letter-spacing: -0.04em;
}
@media (min-width: 768px) {
    .pt-explore-title h3 {
        font-size: 24px;
    }
}
@media (min-width: 2400px) {
    .pt-explore-title h3 {
        font-size: 28px;
    }
}
.pt-explore-text {
    margin: 10px 0 0 0;
    font-weight: 500;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-explore-text {
        margin: 19px 0 0 0;
        font-size: 18px;
        line-height: 130%;
    }
}
@media (min-width: 2400px) {
    .pt-explore-text {
        font-size: 21px;
    }
}
.pt-partner-content {
    padding: 100px 0;
}
@media (min-width: 768px) {
    .pt-partner-content {
        padding: 0px 0;
    }
}
@media (min-width: 1600px) {
    .pt-partner-content {
        padding: 200px 0;
    }
}
.pt-partner-content.-cb {
    padding-bottom: 0;
}
.pt-partner-header {
    text-align: center;
}
.pt-partner-bundle {
    margin: 40px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 62px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    border: 1px #eee solid;
    -webkit-border-radius: 49px;
    -moz-border-radius: 49px;
    border-radius: 49px;
}
@media (min-width: 768px) {
    .pt-partner-bundle {
        margin: 64px 0 0 0;
        height: 100px;
        -webkit-border-radius: 72px;
        -moz-border-radius: 72px;
        border-radius: 72px;
    }
}
@media (min-width: 1024px) {
    .pt-partner-bundle {
        margin: 64px 15px 0 15px;
    }
}
@media (min-width: 1600px) {
    .pt-partner-bundle {
        height: 130px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-partner-logos {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}
.pt-partner-logo {
    width: 150px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-partner-logo {
        width: 270px;
    }
}
@media (min-width: 1600px) {
    .pt-partner-logo {
        width: 300px;
    }
}
.pt-partner-logo img {
    max-width: 100%;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
}
@media (min-width: 768px) {
    .pt-partner-logo img {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }
}
@media (min-width: 1600px) {
    .pt-partner-logo img {
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
    }
}
.pt-pricing-content {
    padding: 100px 0;
}
@media (min-width: 768px) {
    .pt-pricing-content {
        padding: 150px 0;
    }
}
.pt-pricing-content.-ct {
    padding-top: 0;
}
@media (min-width: 1600px) {
    .pt-pricing-container.-fixed {
        max-width: 1600px;
    }
}
.pt-pricing-hgrid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pt-pricing-hgrid-col.-left {
    -webkit-box-flex: 1.1;
    -webkit-flex: 1.1;
    -moz-box-flex: 1.1;
    -ms-flex: 1.1;
    flex: 1.1;
}
@media (min-width: 768px) {
    .pt-pricing-hgrid-col.-left {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-pricing-hgrid-col.-right {
    -webkit-box-flex: 0.9;
    -webkit-flex: 0.9;
    -moz-box-flex: 0.9;
    -ms-flex: 0.9;
    flex: 0.9;
}
@media (min-width: 768px) {
    .pt-pricing-hgrid-col.-right {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-pricing-header {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
.pt-pricing-header.-lg {
    text-align: right;
}
.pt-pricing-header.-xs {
    margin-left: -40px;
}
@media (min-width: 430px) {
    .pt-pricing-header.-xs {
        margin-left: 16px;
    }
}
@media (min-width: 768px) {
    .pt-pricing-header.-xs {
        margin-left: 27px;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-header.-xs {
        margin-left: 30px;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-header.-xs {
        margin-left: 38px;
    }
}
.pt-pricing-char {
    width: 57px;
    height: 57px;
    margin: 40px 0 40px 16px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .pt-pricing-char {
        width: 95px;
        height: 95px;
        margin: 76px 0 73px 27px;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-char {
        margin: 76px 0 73px 30px;
    }
}
@media (min-width: 1200px) {
    .pt-pricing-char {
        margin: 88px 0 52px 30px;
        width: 104px;
        height: 104px;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-char {
        margin: 110px 0 50px 38px;
        width: 130px;
        height: 130px;
    }
}
.pt-pricing-char img,
.pt-pricing-char video {
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -o-object-fit: cover;
    object-fit: cover;
}
.pt-pricing-items {
    margin: -45px 0;
    padding: 70px 0 0 0;
}
@media (min-width: 768px) {
    .pt-pricing-items {
        margin: -50px 0;
        padding: 100px 0 0 0;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-items {
        display: grid;
        margin: 0 -64px;
        grid-gap: 14px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
}
@media (min-width: 1200px) {
    .pt-pricing-items {
        grid-gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-items {
        margin: 0 -80px;
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }
}
.pt-pricing-item {
    padding: 45px 0;
}
@media (min-width: 768px) {
    .pt-pricing-item {
        padding: 50px 0;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-item {
        padding: 0;
    }
}
.pt-pricing-box {
    margin: 0 -30px;
    padding: 47px 30px 40px 30px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-pricing-box {
        margin: 0 -60px;
        padding: 64px;
        -webkit-border-radius: 70px;
        -moz-border-radius: 70px;
        border-radius: 70px;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-box {
        margin: 0;
        -webkit-border-radius: 48px;
        -moz-border-radius: 48px;
        border-radius: 48px;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-box {
        padding: 80px;
    }
}
.pt-pricing-box.-septenary {
    background: #faf9f6;
}
.pt-pricing-box.-senary {
    background: #ede1ff;
}
.pt-pricing-plan {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.03em;
}
@media (min-width: 1600px) {
    .pt-pricing-plan {
        font-size: 24px;
    }
}
.pt-pricing-price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 24px 0 0 0;
    font-weight: 600;
    font-size: 59px;
    line-height: 105%;
    letter-spacing: -0.02em;
}
@media (min-width: 1600px) {
    .pt-pricing-price {
        margin: 30px 0 0 0;
        font-size: 74px;
    }
}
.pt-pricing-price sup {
    margin: 14px 0 0 14px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    vertical-align: middle;
}
.pt-pricing-brief {
    margin: 30px 0 0 0;
    font-weight: 500;
    font-size: 21px;
    line-height: 120%;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) {
    .pt-pricing-brief {
        max-width: 90%;
        font-size: 22px;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-brief {
        margin: 36px 0 0 0;
        font-size: 24px;
    }
}
.pt-pricing-action {
    margin: 33px 0 0 0;
    max-width: 345px;
}
@media (min-width: 1024px) {
    .pt-pricing-action {
        max-width: none;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-action {
        margin: 36px 0 0 0;
    }
}
.pt-pricing-list {
    margin: 40px 0 0 0;
}
@media (min-width: 768px) {
    .pt-pricing-list {
        margin: 80px 0 0 0;
    }
}
@media (min-width: 1024px) {
    .pt-pricing-list {
        padding: 0 65px;
    }
}
@media (min-width: 1600px) {
    .pt-pricing-list {
        margin: 70px 0 0 0;
        padding: 0 100px;
    }
}
.pt-pricing-list ul {
    padding: 0;
    list-style: none;
}
.pt-pricing-list ul li {
    padding: 0 0 1em 30px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgNS41IDQuNjUgOSAxMyAxIiBzdHJva2U9IiM4MzMwQzIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+);
    background-repeat: no-repeat;
    -webkit-background-size: 14px 10px;
    -moz-background-size: 14px 10px;
    background-size: 14px 10px;
    background-position: 0 7px;
    font-weight: 500;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .pt-pricing-list ul li {
        font-size: 18px;
    }
}
.pt-pricing-list ul li:last-of-type {
    padding-bottom: 0;
}
.pt-faq {
    position: relative;
    overflow: hidden;
}
.pt-faq-content {
    padding: 80px 0;
}
@media (min-width: 768px) {
    .pt-faq-content {
        padding: 150px 0;
    }
}
.pt-faq-content.-rt {
    padding-top: 40px;
}
@media (min-width: 768px) {
    .pt-faq-content.-rt {
        padding-top: 75px;
    }
}
.pt-faq-item {
    position: relative;
    display: block;
    padding: 53px 30px;
    margin: 0 0 10px;
    cursor: pointer;
}
@media (min-width: 768px) {
    .pt-faq-item {
        margin: 0 0 20px;
    }
}
.pt-faq-item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    border: 1px solid #eee;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .pt-faq-item:before {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
@media (min-width: 1024px) {
    .pt-faq-item:before {
        width: -webkit-calc(100vw - 30px);
        width: -moz-calc(100vw - 30px);
        width: calc(100vw - 30px);
    }
}
.pt-faq-header {
    position: relative;
}
@media (min-width: 768px) {
    .pt-faq-header {
        padding: 0 0 0 60px;
    }
}
.pt-faq-icon {
    position: absolute;
    top: 11px;
    left: -32px;
    width: 16px;
    height: 16px;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 1s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
    .pt-faq-icon {
        top: 9px;
        width: 24px;
        height: 24px;
    }
}
.pt-faq-item.-active .pt-faq-icon,
.pt-navbar.-open .pt-navbar-toggle button.pt-faq-item .pt-faq-icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.pt-faq-icon:after,
.pt-faq-icon:before {
    content: "";
    display: block;
    position: absolute;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color: #000;
}
.pt-faq-icon:after {
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: -o-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    -moz-transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -moz-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -o-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
    .pt-faq-icon:after {
        width: 24px;
    }
}
.pt-faq-item.-active .pt-faq-icon:after,
.pt-navbar.-open .pt-navbar-toggle button.pt-faq-item .pt-faq-icon:after {
    -webkit-transform: translateX(0) scaleX(0);
    -moz-transform: translateX(0) scaleX(0);
    -ms-transform: translateX(0) scaleX(0);
    -o-transform: translateX(0) scaleX(0);
    transform: translateX(0) scaleX(0);
}
.pt-faq-icon:before {
    left: 50%;
    width: 2px;
    height: 16px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .pt-faq-icon:before {
        height: 24px;
    }
}
.pt-faq-title h2 {
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.02em;
}
.pt-faq-info {
    position: relative;
    display: none;
    padding: 15px 0 0;
}
@media (min-width: 768px) {
    .pt-faq-info {
        padding: 30px 0 40px 60px;
    }
}
@-webkit-keyframes pt-faq-item-show {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-moz-keyframes pt-faq-item-show {
    0% {
        opacity: 0;
        -moz-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}
@-o-keyframes pt-faq-item-show {
    0% {
        opacity: 0;
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes pt-faq-item-show {
    0% {
        opacity: 0;
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
.pt-faq-item.-active .pt-faq-info,
.pt-navbar.-open .pt-navbar-toggle button.pt-faq-item .pt-faq-info {
    display: block;
    -webkit-animation: pt-faq-item-show 0.7s backwards;
    -moz-animation: pt-faq-item-show 0.7s backwards;
    -o-animation: pt-faq-item-show 0.7s backwards;
    animation: pt-faq-item-show 0.7s backwards;
}
.pt-faq-text {
    position: relative;
    cursor: text;
}
.pt-faq-text p {
    margin: 0 0 16px;
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-faq-text p {
        font-size: 28px;
    }
}
.pt-faq-embedded {
    margin: 30px 0 0;
}
@media (min-width: 768px) {
    .pt-faq-embedded {
        margin: 60px 0 0;
    }
}
.pt-card {
    position: relative;
    overflow: hidden;
}
.pt-card-content {
    padding: 30px 0;
}
@media (min-width: 768px) {
    .pt-card-content {
        padding: 60px 0;
    }
}
.pt-card-content.-ct {
    padding-top: 0;
}
@media (min-width: 768px) {
    .pt-card-container {
        padding: 0 15px;
    }
}
.pt-card-items {
    display: grid;
    grid-template-rows: repeat(var(--pt-rows, 1), 1fr);
    grid-template-columns: repeat(var(--pt-columns, 1), 1fr);
    gap: 10px;
}
@media (min-width: 768px) {
    .pt-card-items {
        grid-template-columns: repeat(var(--pt-columns, 2), 1fr);
    }
}
@media (min-width: 1024px) {
    .pt-card-items {
        gap: 15px;
    }
}
@media (min-width: 1200px) {
    .pt-card-items {
        grid-template-columns: repeat(var(--pt-columns, 3), 1fr);
    }
}
@media (min-width: 1600px) {
    .pt-card-items {
        gap: 20px;
    }
}
.pt-card-item {
    position: relative;
    display: block;
    padding: 65px 30px 90px;
    grid-column: auto/span 1;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    background: #faf9f6;
}
@media (min-width: 768px) {
    .pt-card-item {
        padding: 70px 30px 90px;
        -webkit-border-radius: 38.892px;
        -moz-border-radius: 38.892px;
        border-radius: 38.892px;
    }
}
@media (min-width: 1024px) {
    .pt-card-item {
        padding: 95px 45px 85px;
    }
}
@media (min-width: 1600px) {
    .pt-card-item {
        padding: 130px 65px;
    }
}
.pt-card-img {
    position: relative;
    display: block;
    width: 124px;
    height: 63px;
    margin: 0 0 18px;
}
@media (min-width: 768px) {
    .pt-card-img {
        width: 89px;
        height: 25px;
        margin: 0 0 35px;
    }
}
@media (min-width: 1024px) {
    .pt-card-img {
        width: 120px;
        height: 34px;
    }
}
@media (min-width: 1200px) {
    .pt-card-img {
        width: 366px;
        height: 245px;
    }
}
@media (min-width: 1600px) {
    .pt-card-img {
        width: 202px;
        height: 66px;
        margin: 0 0 45px;
    }
}
.pt-card-img img {
    max-width: 100%;
    max-height: 80%;
}
.pt-card-text {
    position: relative;
    display: block;
    max-width: 100%;
}
@media (min-width: 768px) {
    .pt-card-text {
        width: 285px;
    }
}
@media (min-width: 1024px) {
    .pt-card-text {
        width: 343px;
    }
}
@media (min-width: 1200px) {
    .pt-card-text {
        width: 340px;
    }
}
@media (min-width: 1600px) {
    .pt-card-text {
        width: 353px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-card-text {
        width: 380px;
    }
}
.pt-card-text p {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-card-text p {
        font-size: 17px;
        line-height: 130%;
    }
}
@media (min-width: 1600px) {
    .pt-card-text p {
        font-size: 21px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-card-text p {
        font-size: 24px;
    }
}
.pt-intro {
    position: relative;
}
.pt-intro-content {
    padding: 287px 0 124px;
}
@media (min-width: 768px) {
    .pt-intro-content {
        padding: 250px 0 164px;
    }
}
@media (min-width: 1600px) {
    .pt-intro-content {
        padding: 357px 0 200px;
    }
}
.pt-intro-header {
    position: relative;
    display: block;
    width: 290px;
    max-width: 100%;
    margin: auto;
}
@media (min-width: 768px) {
    .pt-intro-header {
        width: 100%;
    }
}
.pt-intro-header h1 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.05em;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-intro-header h1 {
        font-size: 86px;
        text-align: left;
    }
}
@media (min-width: 1200px) {
    .pt-intro-header h1 {
        font-size: 96px;
    }
}
@media (min-width: 1600px) {
    .pt-intro-header h1 {
        font-size: 120px;
    }
}
.pt-intro-text {
    position: relative;
    display: block;
    width: 270px;
    max-width: 100%;
    margin: 28px auto 0;
}
@media (min-width: 768px) {
    .pt-intro-text {
        width: 485px;
        margin: 28px 0 0;
    }
}
@media (min-width: 1200px) {
    .pt-intro-text {
        width: 520px;
        margin: 37px 0 0;
    }
}
@media (min-width: 1600px) {
    .pt-intro-text {
        width: 581px;
        margin: 50px 0 0;
    }
}
.pt-intro-text p {
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-intro-text p {
        font-size: 24px;
        text-align: left;
    }
}
.pt-demo {
    position: relative;
    overflow: hidden;
}
.pt-demo-content {
    padding: 180px 0 0 0;
}
@media (min-width: 768px) {
    .pt-demo-content {
        padding-top: 200px;
    }
}
@media (min-width: 1200px) {
    .pt-demo-content {
        padding-top: 130px;
    }
}
@media (min-width: 1600px) {
    .pt-demo-content {
        padding-top: 220px;
    }
}
.pt-demo-container {
    text-align: center;
}
@media (min-width: 768px) {
    .pt-demo-container {
        text-align: left;
    }
}
@media (min-width: 1200px) {
    .pt-demo-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (min-width: 1200px) {
    .pt-demo-grid-col {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -moz-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.pt-demo-header {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
@media (min-width: 1200px) and (max-height: 800px) {
    .pt-demo-header {
        margin-top: -170px;
    }
}
.pt-demo-header h1 {
    font-weight: 600;
    font-size: 60px;
    line-height: 90%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-demo-header h1 {
        font-size: 86px;
    }
}
@media (min-width: 1200px) {
    .pt-demo-header h1 {
        font-size: 70px;
        line-height: 100%;
        letter-spacing: -0.06em;
    }
}
@media (min-width: 1600px) {
    .pt-demo-header h1 {
        font-size: 74px;
    }
}
@media (min-width: 1900px) {
    .pt-demo-header h1 br {
        display: none;
    }
}
.pt-demo-text {
    margin: 25px 0 0 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-demo-text {
        margin: 28px 0 0 0;
        max-width: 90%;
        font-size: 22px;
    }
}
@media (min-width: 1200px) {
    .pt-demo-text {
        margin: 25px 0 0 0;
        max-width: 330px;
    }
}
@media (min-width: 1600px) {
    .pt-demo-text {
        max-width: 380px;
        font-size: 24px;
    }
}
.pt-demo-iframe {
    margin: 0 -30px -100px -30px;
    padding: 85px 0 0 0;
}
@media (min-width: 768px) {
    .pt-demo-iframe {
        margin: 0;
    }
}
@media (min-width: 1200px) {
    .pt-demo-iframe {
        padding: 0;
        width: 720px;
    }
}
@media (min-width: 1600px) {
    .pt-demo-iframe {
        width: 810px;
    }
}
.pt-demo-iframe iframe {
    width: 100%;
}
.pt-description {
    position: relative;
    margin: 10px 0 0 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pt-description {
        margin-top: 20px;
    }
}
.pt-description-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffe8d3;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-description-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
@media (min-width: 1024px) {
    .pt-description-fill {
        left: 15px;
        right: 15px;
    }
}
.pt-description-fill.-v1 {
    background: #f6f8fa;
    border: none;
}
.pt-description-fill.-v2 {
    background: #c8ff00;
    opacity: 0.6;
    border: none;
}
.pt-description-fill.-v3 {
    background: #ededed;
    border: none;
}
.pt-description-fill.-v4 {
    background: #17494d;
    border: none;
}
.pt-description-fill.-v5 {
    background: #dfeeff;
    border: none;
}
.pt-description-fill.-v6 {
    background: #6afdef;
    opacity: 0.6;
    border: none;
}
.pt-description-fill.-v7 {
    background: #ffe01b;
    opacity: 0.6;
    border: none;
}
.pt-description-content {
    padding: 60px 0 90px 0;
}
@media (min-width: 768px) {
    .pt-description-content {
        padding: 110px 0 140px 0;
    }
}
@media (min-width: 1024px) {
    .pt-description-content {
        padding: 110px 0 140px 0;
    }
}
@media (min-width: 1200px) {
    .pt-description-content {
        padding: 110px 0 140px 0;
    }
}
@media (min-width: 1600px) {
    .pt-description-content {
        padding: 200px 0 180px 0;
    }
}
.pt-description-img {
    position: relative;
    display: block;
    width: 124px;
    height: 63px;
    margin: 0 0 18px;
}
@media (min-width: 768px) {
    .pt-description-img {
        width: 194px;
        height: 99px;
        margin: 0 0 38px;
    }
}
@media (min-width: 1200px) {
    .pt-description-img {
        margin: 0 0 58px;
    }
}
.pt-description-img img {
    max-width: 100%;
    max-height: 100%;
}
.pt-description-text {
    position: relative;
}
.pt-description-text h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-description-text h2 {
        font-size: 59px;
    }
}
@media (min-width: 1200px) {
    .pt-description-text h2 {
        font-size: 74px;
    }
}
.pt-description-text.-inverse {
    color: #fff;
}
.pt-tophead {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}
.pt-tophead-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-border-bottom-left-radius: 35px;
    -moz-border-radius-bottomleft: 35px;
    border-bottom-left-radius: 35px;
    -webkit-border-bottom-right-radius: 35px;
    -moz-border-radius-bottomright: 35px;
    border-bottom-right-radius: 35px;
}
@media (min-width: 768px) {
    .pt-tophead-fill {
        -webkit-border-bottom-left-radius: 60px;
        -moz-border-radius-bottomleft: 60px;
        border-bottom-left-radius: 60px;
        -webkit-border-bottom-right-radius: 60px;
        -moz-border-radius-bottomright: 60px;
        border-bottom-right-radius: 60px;
    }
}
.pt-tophead-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
    -webkit-border-bottom-left-radius: 35px;
    -moz-border-radius-bottomleft: 35px;
    border-bottom-left-radius: 35px;
    -webkit-border-bottom-right-radius: 35px;
    -moz-border-radius-bottomright: 35px;
    border-bottom-right-radius: 35px;
}
@media (min-width: 768px) {
    .pt-tophead-scene {
        -webkit-border-bottom-left-radius: 60px;
        -moz-border-radius-bottomleft: 60px;
        border-bottom-left-radius: 60px;
        -webkit-border-bottom-right-radius: 60px;
        -moz-border-radius-bottomright: 60px;
        border-bottom-right-radius: 60px;
    }
}
.pt-tophead-content {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
}
.pt-tophead-header {
    position: relative;
    display: block;
    margin: 0 0 50px;
    width: 375px;
    max-width: 100%;
    z-index: 6;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}
@media (pointer: fine) {
    .pt-tophead-header {
        -ms-touch-action: none;
        touch-action: none;
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
@media (min-width: 768px) {
    .pt-tophead-header {
        width: 551px;
        margin: 0 0 107px;
    }
}
@media (min-width: 1024px) {
    .pt-tophead-header {
        width: 548px;
    }
}
@media (min-width: 1200px) {
    .pt-tophead-header {
        width: 615px;
        margin: 0 0 80px;
    }
}
@media (min-width: 1600px) {
    .pt-tophead-header {
        width: 768px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-tophead-header {
        width: 900px;
    }
}
@media (min-width: 1200px) {
    .pt-tophead-header.-offseted {
        top: 80px;
    }
}
.pt-tophead-header.-center {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 auto;
}
.pt-tophead-header.-center h1 {
    text-align: center;
}
.pt-tophead-header.-center h1 span {
    display: inline-block;
    vertical-align: middle;
}
.pt-tophead-header.-center h1 img,
.pt-tophead-header.-center h1 video {
    width: 58px;
    height: 58px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .pt-tophead-header.-center h1 img,
    .pt-tophead-header.-center h1 video {
        width: 82px;
        height: 82px;
    }
}
@media (min-width: 1200px) {
    .pt-tophead-header.-center h1 img,
    .pt-tophead-header.-center h1 video {
        width: 92px;
        height: 92px;
    }
}
@media (min-width: 1600px) {
    .pt-tophead-header.-center h1 img,
    .pt-tophead-header.-center h1 video {
        width: 115px;
        height: 115px;
    }
}
.pt-tophead-header br {
    display: none;
}
@media (min-width: 768px) {
    .pt-tophead-header br {
        display: block;
    }
}
.pt-tophead-header h1 {
    color: #fff;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -0.05em;
    text-align: left;
}
@media (min-width: 768px) {
    .pt-tophead-header h1 {
        font-size: 86px;
    }
}
@media (min-width: 1200px) {
    .pt-tophead-header h1 {
        font-size: 96px;
    }
}
@media (min-width: 1600px) {
    .pt-tophead-header h1 {
        font-size: 120px;
    }
}
@media (min-width: 2050px) and (min-height: 950px) {
    .pt-tophead-header h1 {
        font-size: 140px;
    }
}
.pt-tophead-text {
    position: relative;
    z-index: 6;
    color: #fafafa;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.05em;
}
@media (pointer: fine) {
    .pt-tophead-text {
        -ms-touch-action: none;
        touch-action: none;
        pointer-events: none;
    }
}
@media (min-width: 768px) {
    .pt-tophead-text {
        margin: 0 0 0 auto;
        width: 350px;
        font-size: 22px;
        line-height: 120%;
    }
}
@media (min-width: 1600px) {
    .pt-tophead-text {
        width: 441px;
        font-size: 28px;
    }
}
.pt-workplace {
    position: relative;
}
.pt-workplace-item {
    position: relative;
    display: block;
    margin: 0 0 10px;
    padding: 60px 0;
}
@media (min-width: 768px) {
    .pt-workplace-item {
        padding: 100px 0;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-item {
        margin: 0 0 20px;
    }
}
.pt-workplace-item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100%;
    border: 1px solid #eee;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .pt-workplace-item:before {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-item:before {
        width: -webkit-calc(100vw - 30px);
        width: -moz-calc(100vw - 30px);
        width: calc(100vw - 30px);
    }
}
.pt-workplace-grid {
    position: relative;
    display: grid;
    grid-template-rows: repeat(var(--pt-rows, 1), 1fr);
    grid-template-columns: repeat(var(--pt-columns, 1), 1fr);
    gap: 20px 0;
}
@media (min-width: 768px) {
    .pt-workplace-grid {
        gap: 25px 0;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-grid {
        grid-template-columns: repeat(var(--pt-columns, 3), 1fr);
        gap: 0 75px;
    }
}
@media (min-width: 1200px) {
    .pt-workplace-grid {
        gap: 0 120px;
    }
}
@media (min-width: 1600px) {
    .pt-workplace-grid {
        gap: 0 135px;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-col.-left {
        grid-column: auto/span 1;
    }
    .pt-workplace-col.-right {
        grid-column: auto/span 2;
    }
}
.pt-workplace-header {
    position: relative;
    display: block;
}
.pt-workplace-header h2 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-workplace-header h2 {
        font-size: 36px;
    }
}
.pt-workplace-text h3 {
    color: #000;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-workplace-text h3 {
        font-size: 24px;
    }
}
@media (min-width: 768px) {
    .pt-workplace-text h3 {
        margin: 10px 0 35px;
    }
}
.pt-workplace-text p {
    margin: 20px 0;
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-workplace-text p {
        font-size: 24px;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-text p {
        margin: 20px 0 30px;
    }
}
.pt-workplace-text ul {
    margin: 0 0 20px;
}
.pt-workplace-text ul li {
    color: #000;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .pt-workplace-text ul li {
        font-size: 24px;
    }
}
@media (min-width: 1024px) {
    .pt-workplace-text ul {
        margin: 0 0 35px;
    }
}
.pt-workplace-text a {
    text-decoration: none;
}
.pt-workplace-text a:hover {
    text-decoration: underline;
}
.pt-outro {
    position: relative;
    z-index: 1;
    background-color: #000;
}
.pt-outro:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    background-color: #fff;
    z-index: -1;
}
.pt-outro-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faf9f6;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}
@media (min-width: 768px) {
    .pt-outro-fill {
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
    }
}
.pt-outro-content {
    position: relative;
    padding: 110px 0;
    text-align: center;
}
@media (min-width: 768px) {
    .pt-outro-content {
        padding: 200px 0;
    }
}
@media (min-width: 1024px) {
    .pt-outro-content {
        padding: 150px 0;
    }
}
@media (min-width: 1600px) {
    .pt-outro-content {
        padding: 170px 0;
    }
}
@media (min-width: 2050px) {
    .pt-outro-content {
        padding: 300px 0;
    }
}
@media (min-width: 2400px) {
    .pt-outro-content {
        padding: 350px 0;
    }
}
@media (max-width: 767px) {
    .pt-outro-container.-fixed {
        margin: 0 auto;
        max-width: 600px;
    }
}
.pt-outro-header {
    margin: 0 auto;
    max-width: 1280px;
}
@media (min-width: 2400px) {
    .pt-outro-header {
        max-width: 1440px;
    }
}
.pt-outro-action {
    margin: 45px 0 0 0;
}
@media (min-width: 768px) {
    .pt-outro-action {
        margin: 55px 0 0 0;
    }
}
@media (min-width: 1024px) {
    .pt-outro-action {
        margin: 70px 0 0 0;
    }
}
