@charset "UTF-8";

@font-face {
    font-family: 'Barlow Condensed Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Barlow Regular'), url('../fonts/barlow/barlow-condensed/BarlowCondensed-Regular.woff') format('woff');
}

@font-face {
    font-family: "Barlow Condensed Medium";
    font-style: normal;
    font-weight: normal;
    src: local('Barlow Medium'), url('../fonts/barlow/barlow-condensed/BarlowCondensed-Medium.woff') format('woff');
}

@font-face {
    font-family: "Barlow Condensed Bold";
    font-style: normal;
    font-weight: normal;
    src: local('Barlow Medium'), url('../fonts/barlow/barlow-condensed/BarlowCondensed-Bold.woff') format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

input,
input[type=email],
input[type=number],
input[type=password],
input[type=text],
select,
textarea {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    outline: 0;
    font-size: 15px;
    color: #212529;
    margin: 0 0 16px 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    background-color: #fbfdff;
    font-weight: 500;
    opacity: 1;
    border-radius: 4px;
    border: none;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

select {
    padding: 10px 18px;
    cursor: pointer
}

input {
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

input:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
textarea:focus {
    color: #212529;
    transition: box-shadow .2s !important;
    opacity: 1;
    border: none;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #212529 !important
}

input.utf-with-border,
input[type=email].utf-with-border,
input[type=number].utf-with-border,
input[type=password].utf-with-border,
input[type=text].utf-with-border,
select.utf-with-border,
textarea.utf-with-border {
    background: #fff;
    border: 0;
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
    border: 1px solid rgba(26, 15, 9, 0.1);
}

input.utf-with-border:focus,
input[type=email].utf-with-border:focus,
input[type=number].utf-with-border:focus,
input[type=password].utf-with-border:focus,
input[type=text].utf-with-border:focus,
textarea.utf-with-border:focus {
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .08)
}

* {
    padding: 0;
    margin: 0;
}

input[type=submit] {
    border: none;
    padding: 11px 18px;
    width: auto
}

input[type=checkbox] {
    display: inline
}

input[type=radio] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    box-shadow: none
}

::placeholder {
    color: #212529;
    opacity: 1
}

textarea {
    height: auto;
    line-height: 27px;
    padding: 15px 20px 20px 20px;
    min-height: 130px;
    transition: none !important;
    min-width: 100%
}

label,
legend {
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px
}

label span,
legend span {
    font-weight: 400;
    font-size: 15px;
    color: #444
}

fieldset {
    padding: 0;
    border: none
}

button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: 0 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    cursor: pointer
}

a {
    color: #66676b;
    transition: .3s
}

a,
button {
    outline: 0 !important
}

a:focus,
a:hover {
    text-decoration: none;
    color: #0e1133
}

img {
    max-width: 100%
}

.text-center {
    text-align: center
}

ul li {
    list-style: none;
    line-height: 22px !important;
    font-size: 15px;
    padding-bottom: 0;
}

@keyframes down-up-three {
    0% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }

    50% {
        -webkit-transform: translate(25px, -15px);
        transform: translate(25px, -15px);
    }

    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

#logo {
    display: flex;
    height: 100%;
    vertical-align: top;
    padding: 0;
    align-items: center;
    justify-content: center
}

#logo img {
    height: 44px;
    width: auto;
    position: relative
}

#header {
    position: relative;
    z-index: 999;
    padding: 0;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .09);
    font-size: 15px;
    background-color: #fff
}

header.fullwidth .container {
    max-width: 100%;
    margin: 0;
    padding: 0 35px
}

#header .container {
    position: relative
}

#header .utf-left-side {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 !important;
    width: 100%
}

.full-width #header .utf-left-side {
    float: left;
    width: 100%;
    display: inline-block;
    position: relative
}

.full-width #header .utf-right-side {
    float: right;
    text-align: right;
    width: auto;
    display: inline-block;
    position: absolute;
    right: 25px;
    background-color: #fff
}

.utf-header-widget-item {
    display: inline-block;
    height: 100%;
    padding: 0;
    text-align: left;
    float: left
}

.fullwidth .utf-header-widget-item:last-of-type {
    padding-right: 5px;
    float: right;
    border-right: none
}

.utf-header-widget-item:last-of-type {
    padding-right: 0;
    margin-right: 0
}

.fullwidth .utf-header-widget-item:last-of-type {
    padding-right: 15px;
    margin-right: 0
}

.utf-header-notifications-content .notification-avatar {
    height: 42px;
    width: 42px;
    max-width: 42px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden
}

.utf-header-widget-item .log-in-button {
    background: #0b6624;
    position: relative;
    top: 50%;
    border-radius: 15px;
    transition: .3s;
    color: #fff;
    border: 1px solid #0b6624;
    padding: 1px 7px;
    display: block;
    margin: 0;
    min-width: 80px;
    text-align: center;
    line-height: 24px;
    font-size: 13px
}

.utf-header-widget-item .log-in-button:hover {
    background: #a1d244;
    border: 1px solid #a1d244;
    color: #fff;
}

body .utf-transparent-header-block .utf-header-widget-item .log-in-button {
    background: #fff;
    color: #a1d244;
    border: 2px solid #fff
}

body .utf-transparent-header-block .utf-header-widget-item .log-in-button i {
    color: #a1d244
}

body .utf-transparent-header-block .utf-header-widget-item .log-in-button:hover i {
    color: #fff;
    background: 0 0
}

body .utf-transparent-header-block .utf-header-widget-item .log-in-button:hover {
    background: 0 0;
    color: #fff;
    border: 2px solid #fff
}

.utf-header-widget-item .log-in-button i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-right: 4px;
    margin-left: 0;
    color: #fff;
    transition: .3s
}

.utf-header-widget-item .log-in-button:hover,
.utf-header-widget-item .log-in-button:hover i {
    color: #66676b
}

.utf-transparent-header-block .utf-header-widget-item .log-in-button,
.utf-transparent-header-block .utf-header-widget-item .log-in-button i {
    color: #fff
}

@media (max-width:767px) {
    .utf-header-widget-item .log-in-button i {
        font-size: 20px;
        top: 3px;
        font-size: 15px
    }

    .utf-header-widget-item .log-in-button {
        border-radius: 40px;
        text-align: center;
        min-width: auto;
        padding: 1px 7px;
        line-height: 26px
    }

    .utf-transparent-header-block .utf-header-widget-item .log-in-button,
    .utf-transparent-header-block .utf-header-widget-item .log-in-button i {
        background-color: #fff;
        color: #a1d244;
        border-color: #fff
    }

    .mainMenu {
        display: none !important
    }
}

.utf-header-notifications {
    height: 100%;
    display: inline-block;
    padding-right: 15px;
    position: relative
}

.utf-header-notifications:last-child {
    margin-right: -15px
}

.utf-header-notifications-trigger,
.utf-header-notifications-trigger a {
    font-size: 22px;
    color: #0e1133;
    position: relative;
    top: 50%
}

.utf-header-notifications .notifications-trigger-icon {
    background: #eee;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    text-align: center;
    top: 50%
}

.utf-header-notifications .notifications-trigger-icon a {
    top: 24%;
    font-size: 20px
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {

    .utf-header-notifications-trigger,
    .utf-header-notifications-trigger a {
        height: 40px
    }

    .utf-header-notifications.user-menu {
        top: -8px
    }
}

.utf-header-notifications-trigger span {
    position: absolute;
    display: inline-block;
    top: -15px;
    margin-left: -5px;
    font-weight: 500;
    height: 20px;
    width: 20px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-color: #66676b;
    border-radius: 50%
}

.utf-header-notifications-dropdown-block {
    width: 360px;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .12);
    background-color: #fff;
    padding: 0;
    position: absolute;
    top: calc(100% - 10px);
    right: -15px;
    text-align: left;
    z-index: 100;
    transform: scale(.95);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    pointer-events: none
}

.utf-header-notifications.active .utf-header-notifications-dropdown-block {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

.utf-header-notifications-dropdown-block:before {
    content: "";
    position: absolute;
    right: 43px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    top: 0;
    right: 27px;
    border: 7px solid #fff;
    border-color: transparent transparent #a1d244 #a1d244;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, .05)
}

.utf-right-side .utf-header-notifications-dropdown-block:before {
    border-color: transparent transparent #fff #fff
}

.utf-header-notifications-headline {
    background: #a1d244;
    padding: 18px 20px;
    padding-top: 18px;
    line-height: 24px;
    border-radius: 4px 4px 0 0
}

.utf-header-notifications-headline h4,
.utf-header-notifications-headline span {
    display: inline-block;
    color: #fff
}

button.mark-as-read {
    background-color: #fff;
    float: right;
    position: relative;
    border-radius: 4px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 36px;
    top: -4px;
    right: -8px;
    color: #323232;
    transition: .25s
}

.utf-header-notifications-content {
    display: block;
    width: 100%
}

.utf-header-notifications-scroll {
    display: block;
    overflow: hidden;
    height: auto
}

.utf-header-notifications-content ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.utf-header-notifications-content ul li {
    border-bottom: 1px solid #e6e6e6;
    transition: .25s
}

.utf-header-notifications-content ul li:hover {
    background-color: #fafafa
}

.utf-header-notifications-content ul li:hover .notification-icon {
    background-color: #eee
}

.utf-header-notifications-content ul li:last-child {
    border-bottom: none
}

.utf-header-notifications-content ul li a {
    color: #222;
    position: relative;
    padding: 15px 12px;
    display: block
}

.utf-header-notifications-content p {
    margin: 0;
    padding: 0
}

.utf-header-notifications-content ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.utf-header-notifications-content .notification-icon,
.utf-header-notifications-content .notification-text {
    flex: 1
}

.utf-header-notifications-content .notification-icon i {
    position: relative
}

.notification-icon,
.utf-header-notifications-content .notification-icon {
    font-size: 18px;
    height: 38px;
    width: 38px;
    max-width: 38px;
    display: inline-block;
    background-color: #f2f2f2;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    color: #a0a0a0;
    transition: .25s;
    position: relative
}

.notification-icon .icon-material-outline-autorenew {
    font-size: 22px
}

.notification-icon .icon-material-outline-gavel {
    font-size: 19px;
    top: -2px;
    left: 1px
}

.utf-header-notifications-content .notification-avatar {
    height: 42px;
    width: 42px;
    max-width: 42px;
    display: inline-block;
    border-radius: 50%;
    overflow: visible;
    align-self: flex-start
}

.utf-header-notifications-content .notification-avatar img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    border-radius: 50%
}

.notification-text,
.utf-header-notifications-content .notification-text {
    padding-left: 12px;
    padding-right: 0;
    display: inline-block;
    line-height: 23px;
    font-size: 14.3px
}

.utf-header-notifications-content .notification-msg-text {
    display: inline-block;
    line-height: 23px;
    font-size: 14.7px;
    margin: 4px 0
}

.notification-text strong,
.utf-header-notifications-content .notification-text strong {
    font-weight: 600;
    color: #0e1133
}

.notification-text span.color,
.utf-header-notifications-content .notification-text span.color {
    color: #66676b;
    display: inline-block
}

.notification-text span.color {
    display: block
}

a.utf-header-notifications-button {
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    color: #fff;
    font-size: 14.7px;
    padding: 12px 16px;
    background-color: #66676b;
    width: 100%;
    display: block;
    text-align: center;
    transition: .3s
}

a.utf-header-notifications-button i {
    font-size: 18px;
    line-height: 0;
    top: 3px;
    position: relative;
    max-width: 0;
    display: inline-block;
    margin-left: 7px
}

.user-menu {
    padding: 0
}

.utf-header-notifications.user-menu {
    margin: 0 -5px
}

.user-menu .utf-header-notifications-trigger,
.user-menu .utf-header-notifications-trigger a {
    top: 50%
}

.user-profile-title .user-name::after {
    content: "\e957";
    font-family: Material-Icons;
    transition: .2s;
    transform: rotate(0);
    display: inline-block;
    margin-left: 3px;
    color: #aaa
}

.user-menu.active .user-name::after {
    transform: rotate(180deg)
}

.user-menu .utf-header-notifications-dropdown-block {
    top: calc(100% - -15px);
    width: 340px;
    right: -20px
}

.user-menu .utf-header-notifications-dropdown-block:before {
    right: 3px
}

.notification-avatar {
    position: relative
}

.notification-avatar:after,
.status-icon,
.user-avatar:after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    background-color: silver;
    top: 0;
    right: 0;
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .3);
    border-radius: 50%
}

.notification-avatar:after {
    width: 12px;
    height: 12px
}

.status-icon.status-online,
.status-online:after {
    background-color: #25c848
}

.status-icon.status-offline,
.status-offline:after {
    background-color: silver
}

.user-avatar {
    display: inline-block;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    position: relative
}

.user-avatar img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 0, 0, .08);
    image-rendering: -webkit-optimize-contrast
}

.utf-transparent-header-block .user-avatar img {
    border: 3px solid rgba(255, 255, 255, .4)
}

ul.utf-user-menu-dropdown-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 0
}

ul.utf-user-menu-dropdown-nav li:first-child {
    border-top: 0
}

ul.utf-user-menu-dropdown-nav li {
    margin: 0;
    padding: 5px 7px;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

ul.utf-user-menu-dropdown-nav li:last-child {
    border-bottom: 0
}

ul.utf-user-menu-dropdown-nav li a {
    display: block;
    padding: 2px 0;
    font-size: 15px;
    color: #222;
    transition: .3s
}

ul.utf-user-menu-dropdown-nav li a i {
    background: rgba(0, 0, 0, .06);
    font-size: 15px;
    position: relative;
    top: 1px;
    padding: 6px;
    border-radius: 30px;
    margin-right: 5px;
    color: #222;
    -webkit-font-smoothing: antialiased;
    transition: .3s
}

ul.utf-user-menu-dropdown-nav li a:hover,
ul.utf-user-menu-dropdown-nav li a:hover i {
    color: #66676b
}

.user-status {
    padding: 20px 15px;
    border-bottom: 1px solid #e6e6e6
}

.user-details {
    display: flex
}

.user-name {
    font-weight: 500;
    color: #0e1133;
    line-height: 20px;
    padding: 2px 0 0 0
}

.user-profile-title .user-name {
    color: #222;
    line-height: 20px;
    display: inline-block;
    font-size: 12px
}

.user-details span {
    display: block;
    font-size: 14.7px;
    color: #888;
    font-weight: 500
}

body .utf-transparent-header-block .user-profile-title .user-name {
    color: #fff
}

.status-switch {
    background-color: #eee;
    width: 100%;
    display: block;
    border-radius: 4px;
    height: 36px;
    padding: 0;
    position: relative;
    zoom: 1;
    margin-top: 20px
}

.status-switch:after,
.status-switch:before {
    content: " ";
    display: table
}

.status-switch label {
    float: left;
    width: 50%;
    position: relative;
    z-index: 2;
    line-height: 36px;
    cursor: pointer;
    color: #888;
    font-size: 14.7px;
    text-align: center;
    transition: .3s;
    margin: 0
}

.status-switch span.status-indicator {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: block;
    border-radius: 4px 0 0 4px;
    background-color: #38b653;
    box-shadow: 0 0 5px 1px rgba(56, 182, 83, .3);
    transition: all .4s cubic-bezier(.3, -.41, .19, 1.3), background-color .2s linear
}

.status-switch span.right {
    left: 50%;
    border-radius: 0 4px 4px 0;
    background-color: #0e1133;
    box-shadow: none;
    color: #fff
}

.status-switch label.current-status {
    color: #fff
}

#navigation {
    position: relative;
    display: inline-block;
    margin-top: 5px
}

#navigation ul {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0
}

#navigation ul a {
    display: block;
    text-decoration: none;
    padding: 5px 0
}

#navigation ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0
}

#navigation ul li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 9px;
    padding: 0;
    z-index: 99999
}

#navigation ul ul li {
    float: none
}

#navigation ul ul ul {
    top: 0;
    left: 100%;
    margin: 0 0 0 4px
}

#navigation ul ul {
    margin: 0
}

#navigation ul ul ul {
    pointer-events: none
}

#navigation ul ul li:hover>ul {
    pointer-events: all
}

#navigation ul ul:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    background: rgba(255, 255, 255, 0);
    width: 100%;
    height: 10px
}

#navigation ul ul ul:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    left: -15px;
    top: 0;
    opacity: 0
}

#navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

#navigation ul li a:after,
#navigation ul ul li a:after {
    font-family: Material-Icons;
    content: '\e957';
    opacity: 1;
    font-size: 15px;
    transition: .2s;
    opacity: 1;
    line-height: 16px;
    width: 14px;
    height: 16px;
    background-color: transparent !important;
    color: #a8a8a8;
    display: inline-block;
    border-radius: 30px;
    margin-left: 2px;
    text-indent: 0;
    top: 1px;
    position: relative
}

#navigation ul li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after {
    background-color: #f9f9f9;
    color: #a8a8a8;
    opacity: 1
}

#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after {
    color: #a1d244;
    background-color: #66676b;
    opacity: 1
}

#navigation ul ul.dropdown-nav li.active a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li.active a:after {
    color: #a1d244;
    background-color: #66676b;
    opacity: 1
}

#navigation ul ul.dropdown-nav li a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after {
    content: '\e959';
    position: absolute;
    left: auto;
    right: 8px;
    top: 9px;
    background-color: #f0f0f0;
    color: #bbb;
    opacity: 1
}

#navigation ul li a.current {
    color: #66676b
}

body .utf-transparent-header-block #navigation ul li ul li.active a {
    color: #a1d244
}

#navigation ul li ul li.active a {
    color: #a1d244
}

#navigation ul li a.current:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

#navigation ul li a:only-child:after,
#navigation ul ul li a:only-child:after {
    content: '';
    display: none
}

#navigation ul ul li:hover a:after {
    opacity: 1;
    transform: translateX(0)
}

#navigation ul li {
    transition: all .25s;
    margin: 0 3px;
    border-radius: 4px
}

#navigation ul li a,
#navigation ul ul li a {
    color: #222;
    cursor: pointer
}

#navigation ul a {
    line-height: 20px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 4px
}

#navigation ul li:hover a {
    background: #f4f5fa;
    color: #66676b
}

#navigation ul ul {
    background-color: #fff;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .07);
    border-radius: 4px
}

#navigation ul ul li {
    border-radius: 4px
}

#navigation ul ul li:last-child {
    border-bottom: none
}

#navigation ul ul:after {
    content: "";
    position: absolute;
    left: 15px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff
}

body #navigation ul ul {
    padding: 0;
    box-sizing: border-box;
    margin-top: 10px;
    border: 4px solid rgba(0, 0, 0, .02)
}

body #navigation ul ul ul {
    margin-top: 0
}

#navigation ul ul:before {
    content: ".";
    position: absolute;
    width: 100%;
    height: 12px;
    top: -12px;
    opacity: 0;
    opacity: 0
}

#navigation ul ul ul:before {
    width: calc(100% + 15px);
    left: -15px
}

#navigation ul ul li {
    width: 240px
}

#navigation ul ul li:hover {
    border-radius: 0
}

#navigation ul ul li:first-child {
    border-radius: 4px 4px 0 0
}

#navigation ul ul li:last-child {
    border-radius: 0 0 4px 4px
}

#navigation ul ul {
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    transform: translate3d(0, 15px, 0)
}

#navigation ul ul ul {
    transform: translate3d(15px, 0, 0)
}

#navigation ul li ul {
    z-index: 10
}

#navigation ul li:hover ul {
    z-index: 20
}

#navigation ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0)
}

#navigation ul ul li {
    margin: 0;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

#navigation ul ul li:last-child {
    border-bottom: 0
}

#navigation ul ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li a {
    transition: .3s;
    color: #929292
}

#navigation ul ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li:hover a {
    color: #a1d244
}

#navigation ul ul li.active>a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li.active>a {
    color: #a1d244 !important
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    position: absolute;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    font-size: 15px;
    display: flex;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 15px;
    margin-top: -10px;
    background-color: #fff;
    width: 200px;
    z-index: 99;
    transform: translate3d(-42%, 24px, 0)
}

.mega-menu:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    display: block;
    width: 100%;
    height: 12px;
    opacity: 0
}

#navigation ul li .mega-menu ul {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 0, 0);
    position: relative;
    display: inline-block;
    flex: 1;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    top: auto;
    left: auto;
    background-color: transparent
}

#navigation ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-42%, 12px, 0)
}

#navigation ul li:hover .mega-menu ul {
    opacity: 1;
    visibility: visible
}

#navigation .mega-menu ul,
#navigation .mega-menu ul li {
    width: 100%
}

.mega-menu.two-columns {
    width: 429px
}

.mega-menu.three-columns {
    width: 643px
}

.mega-menu.four-columns {
    width: 857px
}

#navigation ul .mega-menu ul a {
    color: #bbb;
    padding: 0 !important;
    display: block;
    margin-left: 0;
    -wekkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

#navigation ul .mega-menu ul a,
#navigation ul li:hover .mega-menu ul a {
    padding: 6px 0 !important;
    line-height: 22px !important;
    transform: translate3d(0, 0, 0) !important
}

#navigation .mega-menu ul li {
    padding: 0 30px
}

#navigation ul li a i {
    font-size: 15px;
    position: relative;
    top: 0;
    padding-right: 3px
}

.mega-menu-section {
    display: inline-block;
    float: left;
    width: 214px;
    padding: 0;
    border-right: 1px solid #e9e9e9
}

.mega-menu .mega-menu-section:last-child {
    border: none
}

.mega-menu-headline {
    color: #222;
    opacity: 1 !important;
    font-weight: 600;
    display: block;
    padding: 8px 30px !important;
    letter-spacing: 0;
    font-size: 15px;
    line-height: 21px
}

.mobile-styles .mm-listview {
    margin: 0 -20px !important
}

.mobile-styles .mm-listview .mega-menu-headline {
    color: #fff;
    padding: 15px 20px !important;
    background: #222 !important
}

.mobile-styles .mm-listview li a i {
    padding-right: 5px
}

.mobile-styles.mm-panel:before {
    height: 10px !important
}

#utf-header-container-block {
    top: 0;
    width: 100%;
    z-index: 1000
}

#wrapper.utf-wrapper-utf-transparent-header-block-part #header .utf-right-side {
    background-color: transparent
}

#wrapper.utf-wrapper-utf-transparent-header-block-part {
    padding-top: 0 !important
}

#wrapper {
    padding-top: 0 !important;
    background: #fafafa;
}

@media (max-width:1099px) {
    #wrapper {
        padding-top: 0 !important;
        background: #fafafa;
    }

    #utf-header-container-block {
        position: relative
    }

    #utf-header-container-block.utf-transparent-header-block {
        position: absolute
    }
}

#utf-header-container-block.utf-transparent-header-block {
    position: absolute;
    width: 100%
}

.utf-transparent-header-block-spacer {
    height: 82px
}

.utf-transparent-header-block #header {
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.utf-transparent-header-block #header .utf-right-side {
    background-color: transparent
}

.utf-transparent-header-block #header .utf-right-side .utf-header-widget-item,
.utf-transparent-header-block #logo {
    border-color: rgba(255, 255, 255, .2)
}

.utf-transparent-header-block #header .utf-right-side .utf-header-widget-item:first-of-type {
    border-right-color: transparent
}

.utf-transparent-header-block #header .utf-right-side .utf-header-widget-item:last-of-type {
    border-color: rgba(255, 255, 255, .2)
}

.utf-transparent-header-block .utf-header-notifications-trigger,
.utf-transparent-header-block .utf-header-notifications-trigger a,
body .utf-transparent-header-block #navigation>ul li a {
    color: #fff
}

.transparent-header-block #navigation>ul li:hover a::after,
body .utf-transparent-header-block #navigation>ul li:hover a {
    background: rgba(234, 128, 14, .2);
    color: #a1d244
}

body .utf-transparent-header-block #navigation>ul ul li a {
    color: #929292
}

.utf-transparent-header-block #navigation>ul li a.current::after,
body .utf-transparent-header-block #navigation ul li a.current,
body .utf-transparent-header-block #navigation ul li a.current::after {
    background: rgba(234, 128, 14, .2);
    color: #a1d244
}

.utf-transparent-header-block .utf-header-notifications-dropdown-block:before {
    border-bottom-color: #fff
}

.utf-transparent-header-block .mmenu-trigger {
    background-color: #fff
}

.utf-transparent-header-block #navigation>ul li a:after {
    background-color: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    opacity: 1;
    transition: .3s
}

.utf-transparent-header-block #navigation>ul li a.current:after,
.utf-transparent-header-block #navigation>ul li:hover a:after {
    color: #a1d244
}

#navigation ul li a.current {
    background: #f4f5fa
}

.utf-transparent-header-block #navigation>ul li:hover ul li:hover a:after {
    color: #a1d244
}

.utf-transparent-header-block #navigation>ul li:hover ul a:after,
.utf-transparent-header-block #navigation>ul ul li a:after {
    background-color: rgba(255, 255, 255, .1);
    color: #bbb
}

#navigation>ul>li:hover a {
    background: 0 0;
    color: #a1d244;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

#navigation ul li ul li a:hover {
    color: #a1d244 !important;
    letter-spacing: .4px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

#navigation ul ul li a {
    border-radius: 0 !important;
    background: 0 0 !important;
    color: #929292 !important;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.mm-hidden {
    display: none !important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    box-sizing: border-box;
    background: inherit;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels,
.mm-panels>.mm-panel {
    background: inherit;
    border-color: inherit;
    box-sizing: border-box;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels {
    overflow: hidden
}

.mm-panel {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left
}

.mm-panel.mm-opened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panel.mm-subopened {
    -webkit-transform: translate(-30%, 0);
    -ms-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-panel.mm-highest {
    z-index: 1
}

.mm-panel.mm-noanimation {
    -webkit-transition: none !important;
    transition: none !important
}

.mm-panel.mm-noanimation.mm-subopened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panels>.mm-panel {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px
}

.mm-panels>.mm-panel.mm-hasnavbar {
    padding-top: 40px
}

.mm-panels>.mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panels>.mm-panel:after,
.mm-panels>.mm-panel:before {
    content: '';
    display: block;
    height: 20px
}

.mm-vertical .mm-panel {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
    display: none;
    padding: 10px 0 10px 10px
}

.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
    border-color: transparent
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
    display: block
}

.mm-listview>li.mm-vertical>.mm-next,
.mm-vertical .mm-listview>li>.mm-next {
    box-sizing: border-box;
    height: 40px;
    bottom: auto
}

.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,
.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    box-sizing: border-box;
    width: 40px;
    height: 50px;
    position: absolute;
    top: 0;
    z-index: 1
}

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
    content: '';
    border: 2px solid transparent;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-clear:before,
.mm-close:before {
    border-right: none;
    border-bottom: none;
    right: 18px
}

.mm-clear:after,
.mm-close:after {
    border-left: none;
    border-top: none;
    right: 25px
}

.mm-next:after,
.mm-prev:before {
    content: '';
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0
}

.mm-prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

.mm-next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 18px;
    left: auto
}

.mm-navbar {
    border-bottom: 1px solid;
    border-color: inherit;
    text-align: center;
    line-height: 30px;
    height: 50px;
    padding: 0 40px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.mm-navbar>* {
    display: block;
    padding: 10px 0
}

.mm-navbar a,
.mm-navbar a:hover {
    text-decoration: none
}

.mm-navbar .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-navbar .mm-btn:first-child {
    left: 0
}

.mm-navbar .mm-btn:last-child {
    text-align: right;
    right: 0
}

.mm-panel .mm-navbar {
    display: none
}

.mm-panel.mm-hasnavbar .mm-navbar {
    display: block;
    background-color: #262626
}

.mm-listview,
.mm-listview>li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listview {
    font: inherit;
    font-size: 15px;
    line-height: 20px
}

.mm-listview a,
.mm-listview a:hover {
    text-decoration: none
}

.mm-listview>li {
    position: relative
}

.mm-listview>li,
.mm-listview>li .mm-next,
.mm-listview>li .mm-next:before,
.mm-listview>li:after {
    border-color: inherit
}

.mm-listview>li {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mm-listview>li>a,
.mm-listview>li>span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    display: block;
    padding: 12px 10px 12px 20px;
    margin: 0
}

.mm-listview>li:not(.mm-divider):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none
}

.mm-listview>li:not(.mm-divider):after {
    left: 20px
}

.mm-listview .mm-next {
    background: rgba(3, 2, 1, 0);
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2
}

.mm-listview .mm-next:before {
    content: '';
    border-left-width: 1px;
    border-left-style: solid;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
    margin-right: 50px
}

.mm-listview .mm-next.mm-fullsubopen {
    width: 100%
}

.mm-listview .mm-next.mm-fullsubopen:before {
    border-left: none
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
    padding-right: 50px;
    margin-right: 0
}

.mm-panels>.mm-panel>.mm-listview {
    margin: 20px -20px
}

.mm-panels>.mm-panel>.mm-listview:first-child,
.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
    margin-top: -10px
}

.mm-menu {
    background: #0c1017;
    border-color: rgba(255, 255, 255, .1);
    color: #fff
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar>* {
    color: #fff;
    font-weight: 600;
    font-size: 15px
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgba(255, 255, 255, .8)
}

.mm-menu .mm-listview {
    border-color: #2a2a2a
}

.mm-menu .mm-listview>li .mm-next:after {
    border-color: rgba(255, 255, 255, .8)
}

.mm-menu .mm-listview>li a:not(.mm-next) {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .5);
    tap-highlight-color: rgba(255, 255, 255, .5)
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
    background: rgba(255, 255, 255, .05)
}

.mm-menu .mm-listview>li {
    transition: .2s
}

.mm-menu .mm-listview>li:hover {
    background: rgba(255, 255, 255, .07)
}

.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,
.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
    background: rgba(0, 0, 0, .05)
}

.mm-menu .mm-divider {
    background: rgba(0, 0, 0, .05)
}

.mm-page {
    box-sizing: border-box;
    position: relative
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: 1
}

html.mm-opened {
    overflow-x: hidden;
    position: relative
}

html.mm-blocking {
    overflow: hidden
}

html.mm-blocking body {
    overflow: hidden
}

html.mm-background .mm-page {
    background: inherit
}

#mm-blocker {
    background: rgba(3, 2, 1, 0);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2
}

html.mm-blocking #mm-blocker {
    display: block
}

.mm-menu.mm-offcanvas {
    z-index: 99999;
    display: none;
    position: fixed
}

.mm-menu.mm-offcanvas.mm-opened {
    display: block
}

.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
    z-index: 10
}

.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px
}

html.mm-opening .mm-menu.mm-opened~.mm-slideout {
    -webkit-transform: translate(80%, 0);
    -ms-transform: translate(80%, 0);
    transform: translate(80%, 0);
    -webkit-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0)
}

@media all and (max-width:175px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(140px, 0);
        -ms-transform: translate(140px, 0);
        transform: translate(140px, 0);
        -webkit-transform: translate3d(140px, 0, 0);
        transform: translate3d(140px, 0, 0)
    }
}

@media all and (min-width:550px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(440px, 0);
        -ms-transform: translate(440px, 0);
        transform: translate(440px, 0);
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-sronly {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important
}

em.mm-counter {
    font: inherit;
    font-size: 15px;
    font-style: normal;
    text-indent: 0;
    line-height: 20px;
    display: block;
    margin-top: -10px;
    position: absolute;
    right: 40px;
    top: 50%
}

em.mm-counter+a.mm-next {
    width: 90px
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
    margin-right: 90px
}

em.mm-counter+a.mm-fullsubopen {
    padding-left: 0
}

em.mm-counter+a.mm-fullsubopen+a,
em.mm-counter+a.mm-fullsubopen+span {
    padding-right: 90px
}

.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,
.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span {
    padding-right: 70px
}

.mm-vertical>.mm-counter {
    top: 12px;
    margin-top: 0
}

.mm-vertical.mm-spacer>.mm-counter {
    margin-top: 40px
}

.mm-nosubresults>.mm-counter {
    display: none
}

.mm-menu em.mm-counter {
    background-color: rgba(0, 0, 0, .3);
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    line-height: 21px;
    font-size: 10px;
    font-weight: 500
}

.mm-menu em.mm-counter {
    background-color: #a1d244
}

.mmenu-trigger {
    height: 36px;
    width: 36px;
    display: none;
    position: relative;
    margin: 0;
    background-color: #0b6624;
    border-radius: 26px;
    cursor: pointer
}

.hamburger {
    padding: 0;
    top: 9px;
    left: 12px;
    height: 32px;
    transform: scale(.5);
    -moz-transform: scale(.7) translateY(4px);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.utf-hamburger-box-item {
    position: absolute
}

.utf-hamburger-inner-item {
    display: block;
    top: 50%;
    margin-top: -2px
}

.utf-hamburger-inner-item,
.utf-hamburger-inner-item::after,
.utf-hamburger-inner-item::before {
    width: 40px;
    height: 5px;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease
}

.utf-transparent-header-block .utf-hamburger-inner-item,
.utf-transparent-header-block .utf-hamburger-inner-item::after,
.utf-transparent-header-block .utf-hamburger-inner-item::before {
    background-color: #a1d244
}

.utf-hamburger-inner-item::after,
.utf-hamburger-inner-item::before {
    content: "";
    display: block
}

.utf-hamburger-inner-item::before {
    top: -10px
}

.utf-hamburger-inner-item::after {
    bottom: -10px
}

.utf-hamburger-collapse-item .utf-hamburger-inner-item {
    top: -5px;
    left: -8px;
    transition-duration: .13s;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.utf-hamburger-collapse-item .utf-hamburger-inner-item::after {
    top: -20px;
    transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.utf-hamburger-collapse-item .utf-hamburger-inner-item::before {
    transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.utf-hamburger-collapse-item.is-active .utf-hamburger-inner-item {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.utf-hamburger-collapse-item.is-active .utf-hamburger-inner-item::after {
    top: 0;
    opacity: 0;
    transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear
}

.utf-hamburger-collapse-item.is-active .utf-hamburger-inner-item::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1)
}

.mmenu-trigger {
    display: none
}

@media (max-width:1099px) {
    #responsive {
        display: none
    }

    .mmenu-trigger {
        display: inline-block !important
    }

    #logo {
        border: none
    }

    #logo img {
        border: none;
        max-width: 130px;
        height: auto
    }

    header.fullwidth .container {
        padding: 0 15px
    }

    .utf-header-widget-item {
        float: left
    }

    .fullwidth .utf-header-widget-item:last-of-type,
    .utf-header-widget-item:last-of-type {
        padding-right: 10px;
        float: left
    }

    #header .utf-right-side {
        width: auto;
        background-color: #fff;
        text-align: left
    }

    .mmenu-trigger {
        margin: 0 0 0 15px;
        top: 0;
        float: right;
        border-radius: 5px
    }

    .utf-header-widget-item {
        padding: 0 15px
    }

    #utf-header-container-block.cloned {
        display: none
    }
}

@media (max-width:767px) {
    .utf-header-widget-item:last-of-type {
        padding-right: 10px
    }

    .utf-header-widget-item {
        padding: 0 10px
    }
}

@media (max-width:359px) {
    #logo img {
        border: none;
        max-width: 120px;
        height: auto
    }
}

@media (max-width:768px) {
    .utf-header-notifications {
        position: initial
    }

    .utf-header-notifications-dropdown-block:before {
        display: none
    }

    .user-menu .utf-header-notifications-dropdown-block {
        right: 10px;
        top: calc(100% + 2px)
    }

    .utf-header-notifications-dropdown-block {
        width: calc(85vw - 0px);
        right: 10px;
        top: calc(100% + 2px)
    }
}

@media (max-width:479px) {
    .hide-on-mobile {
        display: block
    }

    .user-menu .utf-header-notifications-dropdown-block {
        right: 10px;
        top: calc(100% + 2px)
    }
}

#footer {
    color: silver;
    position: relative
}

#footer::before {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: #333
}

#footer p {
    line-height: 28px;
    margin-bottom: 25px;
    color: #727272
}

.footer-top-section {
    border-bottom: 1px solid #484848
}

.footer-top-section .footer-logo img {
    max-height: 46px
}

.footer-rows-container {
    display: block;
    height: 96px;
    position: relative;
    z-index: 100
}

.footer-row {
    display: inline-block;
    padding: 0 40px;
    border-right: 1px solid #484848;
    border-left: 1px solid #484848;
    float: left;
    height: 100%
}

.footer-row-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.footer-row-inner.footer-logo {
    position: relative;
    top: auto;
    transform: translateY(0);
    top: 50%;
    position: relative;
    height: 46px
}

.footer-row-inner.footer-logo img {
    position: relative;
    top: 50%
}

.footer-row:first-child {
    padding-left: 0;
    border-left: none
}

.footer-row:last-child {
    padding-right: 0;
    border: none
}

.footer-rows-right .footer-row:first-child {
    padding-left: 40px;
    border-left: 1px solid #484848
}

.footer-rows-right {
    float: right;
    height: 100%
}

.utf_cta_area2_block {
    background-color: transparent;
    padding-bottom: 0;
    margin-bottom: 50px;
    z-index: 99
}

.utf_cta_area_item {
    padding-top: 20px;
    position: relative
}

.utf_cta_area2_block .utf_subscribe_block {
    background: linear-gradient(rgba(12, 16, 23, .85) 100%, rgba(12, 16, 23, .85)100%), url(../images/home/newsletter-bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 10px 35px 15px 35px;
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.utf_cta_area2_block .utf_subscribe_block::before {
    position: absolute;
    top: 55px;
    left: 0;
    color: rgba(128, 137, 150, .3);
    font-family: Material-Icons;
    font-size: 140px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    z-index: -1
}

.utf_cta_area2_block .utf_subscribe_block::before {
    content: "\e900"
}

.utf_cta_area2_block .utf_subscribe_block .section-heading .utf_sec_title_item2 {
    margin-bottom: 7px !important;
    margin-top: 20px !important;
    line-height: 34px
}

.section-heading .utf_sec_title_item {
    font-size: 30px !important;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-top: 5px
}

.section-heading .utf_sec_title_item::before {
    position: absolute;
    content: "\e902";
    font-family: Material-Icons;
    top: -44px;
    left: -30px;
    color: #fff;
    font-size: 20px
}

.utf_cta_area_item .section-heading .utf_sec_meta {
    width: 100%
}

.section-heading .utf_sec_meta {
    font-size: 15px;
    color: #a2a5aa;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    line-height: 30px
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action {
    margin-top: 30px
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action .error-message2 {
    position: absolute;
    top: 12px !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    right: 10px !important;
}

@media (min-width: 992px) {
    .utf_cta_area2_block .utf_subscribe_block .contact-form-action .error-message2 {
        right: 125px !important;
    }
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action form {
    position: relative
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action form i {
    position: absolute;
    top: 15px;
    left: 14px;
    color: #808996;
    font-size: 15px
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action form .form-control {
    height: 50px;
    padding: 11px 12px 11px 40px;
    color: #707070;
    font-weight: 400;
    border-radius: 4px;
    border: 0;
    line-height: inherit
}

.utf_cta_area2_block .utf_subscribe_block .contact-form-action form .utf_theme_btn {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 0 4px 4px 0
}

.utf_theme_btn {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    padding: 16px 25px;
    background-color: #a1d244;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, .1);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, .1);
    box-shadow: 0 0 40px rgba(82, 85, 90, .1);
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.utf_cta_area2_block .utf_subscribe_block::after {
    content: "\e95a";
    left: auto;
    top: auto;
    right: 0;
    bottom: 60px;
    position: absolute;
    color: rgba(128, 137, 150, .3);
    font-family: Feather-Icons;
    font-size: 160px;
    z-index: -1;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0)
}

@media only screen and (min-width:1100px) and (max-width:1239px) {
    .utf-header-widget-item .log-in-button span {
        display: none
    }

    .utf-header-widget-item .log-in-button {
        border-radius: 40px;
        height: 44px;
        width: 44px;
        text-align: center;
        min-width: auto;
        padding: 0;
        line-height: 40px
    }

    .user-profile-title .user-name {
        display: none
    }

    .utf-header-widget-item:last-of-type {
        margin-right: 0 !important
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .utf_cta_area2_block .utf_subscribe_block .contact-form-action form .utf_theme_btn {
        position: relative;
        right: 0;
        top: 0;
        border: 0;
        border-radius: 4px;
        display: block;
        margin: 0 auto
    }

    .section-heading .utf_sec_title_item {
        font-size: 34px;
        line-height: 42px !important
    }
}

@media (max-width:767px) {
    .utf_cta_area_item {
        text-align: center;
        padding-top: 0
    }

    .utf_cta_area2_block .utf_subscribe_block {
        display: block;
        padding: 35px 15px
    }

    .utf_cta_area2_block .utf_subscribe_block .contact-form-action form .form-control {
        margin-bottom: 5px;
        font-size: 15px
    }

    .typed-words {
        display: block !important;
        width: 100%;
        min-height: 46px
    }

    .section-heading .utf_sec_title_item::before {
        top: -46px;
        left: -15px
    }

    .section-heading .utf_sec_title_item {
        font-size: 34px;
        line-height: 42px !important
    }

    .section-heading .utf_sec_meta {
        font-size: 18px;
        line-height: 28px
    }

    #logo {
        padding-right: 0;
        margin-right: 0
    }

    .top-right-hd li:first-child {
        border-left: 0 !important
    }
}

@media (max-width:479px) {
    .utf_cta_area2_block .utf_subscribe_block .contact-form-action form .utf_theme_btn {
        position: inherit;
        border-radius: 4px;
        margin-top: 10px
    }

    .section-heading .utf_sec_title_item {
        font-size: 30px;
        line-height: 42px !important
    }
}

.language-switcher.bootstrap-select.btn-group .dropdown-menu.inner {
    width: 100%
}

.language-switcher.bootstrap-select:before {
    display: none
}

.language-switcher.bootstrap-select .dropdown-menu {
    padding-top: 15px;
    top: calc(100% + 15px);
    width: 160px;
    left: auto;
    right: 0
}

.language-switcher.bootstrap-select .dropdown-menu:before {
    position: absolute;
    top: -5px;
    content: "";
    right: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff
}

.language-switcher.bootstrap-select.btn-group button {
    height: 44px;
    padding-right: 35px;
    padding-left: 18px;
    color: #fff;
    background-color: #444;
    transition: .3s;
    box-shadow: none
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    height: 44px;
    line-height: 44px
}

.language-switcher.bootstrap-select.btn-group button:hover {
    background-color: #fff;
    color: #0e1133
}

.language-switcher.bootstrap-select.btn-group button:hover,
.language-switcher.bootstrap-select.btn-group.open button {
    background-color: #66676b;
    color: #fff
}

.language-switcher.bootstrap-select.btn-group button .caret {
    transition: .3s
}

.language-switcher.bootstrap-select.btn-group button:hover .caret,
.language-switcher.bootstrap-select.btn-group.open button .caret {
    border-top-color: #fff
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 18px
}

.footer-social-links {
    list-style: none;
    margin: 0 -10px;
    margin-top: 3px;
    padding: 0
}

.footer-social-links li {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: left
}

.footer-social-links li a {
    font-size: 20px;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
    transition: .3s;
    opacity: .5;
    transform: translate3d(0, -.5px, 0)
}

.footer-social-links li a:hover {
    opacity: 1
}

.utf-footer-section-item-block {
    padding: 50px 0 60px;
    position: relative;
    z-index: 10
}

#footer h2,
#footer h3,
.utf-footer-item-links h3 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px 0;
    display: block;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-footer-item-links h3 {
    position: relative;
    padding-bottom: 10px
}

.utf-footer-item-links h3::before {
    background: #a1d244;
    border: 0 none;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    bottom: 4px;
    width: 35px
}

#footer h3 i {
    position: relative;
    margin-right: 5px;
    top: 2px;
    font-size: 20px;
    font-weight: 400 !important
}

.utf-footer-item-links ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0
}

.utf-footer-item-links ul li {
    margin-bottom: 0;
    display: block
}

.utf-footer-item-links ul li:first-child a {
    padding-top: 0
}

.utf-footer-item-links ul li:last-child a {
    padding-bottom: 0
}

.utf-footer-item-links ul li {
    padding-bottom: 0 !important;
}

.utf-footer-item-links ul li a {
    color: #d9d9d9;
    display: inline-block;
    line-height: 18px;
    position: relative;
    z-index: 100;
    padding: 5px 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    font-size: 13px
}

.utf-footer-item-links ul li a i {
    position: relative;
    top: 2px
}

.utf-footer-item-links ul li a span {
    display: inline-block;
    position: relative
}

.utf-footer-item-links ul li a:hover {
    color: #a1d244;
    letter-spacing: .5px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.newsletter {
    display: flex;
    margin-top: 20px
}

.newsletter button,
.newsletter input {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start
}

.newsletter input {
    background: #fff;
    margin-bottom: 0
}

.newsletter input:focus {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .3)
}

.newsletter button {
    background-color: #66676b;
    border-radius: 4px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #fff;
    margin-left: 10px;
    transition: .3s
}

.newsletter button:hover {
    background-color: #fff;
    color: #0e1133
}

.newsletter button i {
    width: 100%;
    line-height: 48px
}

.utf-footer-copyright-item {
    padding: 25px 0;
    border-top: 1px solid #e3e3e3;
    text-align: center;
    color: #727272
}

img.footer-logo {
    max-height: 44px;
    width: auto;
    margin-bottom: 20px
}

.utf-footer-copyright-item strong {
    color: #fff;
    font-weight: 500
}

@media (max-width:575px) {
    .utf-footer-section-item-block .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media (max-width:400px) {
    .utf-footer-item-links ul li a:hover {
        padding-left: 4px
    }
}

@media (max-width:992px) {
    #footer h3 {
        margin-top: 25px
    }

    .utf-footer-section-item-block {
        padding-top: 45px;
        padding-bottom: 45px
    }
}

@media (max-width:768px) {
    .content-left-offset {
        padding-left: 15px
    }

    .utf-content-right-offset-aera {
        padding-left: 15px
    }

    .footer-rows-container {
        height: auto;
        padding: 20px 0 40px 0
    }

    .footer-rows-left,
    .footer-rows-right {
        float: none;
        height: auto
    }

    .footer-row-inner.footer-logo img {
        top: 0
    }

    .footer-row-inner {
        position: relative;
        top: 0;
        transform: translateY(0)
    }

    .footer-row-inner.footer-logo {
        top: 0;
        position: relative;
        height: 46px
    }

    #footer .footer-row {
        padding: 0;
        float: none;
        padding: 20px 0 0 0;
        display: block;
        width: 100%;
        border: none
    }

    .footer-rows-container .footer-rows-left,
    .footer-rows-container .footer-rows-right {
        display: block
    }
}

.pagination {
    margin: 0;
    text-align: center
}

.pagination-next-prev {
    position: relative;
    top: -66px
}

.pagination ul {
    margin: 0;
    padding: 0
}

.pagination ul li {
    display: inline-block;
    margin: 0 2px;
    padding: 0
}

.pagination ul li a,
.pagination-next-prev ul li a {
    padding: 10px 0;
    border-bottom: none;
    display: inline-block;
    color: #0e1133;
    background-color: transparent;
    font-weight: 500;
    margin: 0;
    line-height: 22px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-size: 15px;
    float: left
}

.pagination ul li a {
    background: #f0f0f0;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 12px;
}

.pagination ul li.active a {
    background: #a1d244;
    color: #fff;
}

.pagination ul li a i {
    line-height: 30px;
    font-size: 24px
}

.pagination ul li.blank {
    color: #a0a0a0;
    padding: 0 6px
}

.pagination ul li a.current-page,
.pagination ul li a:hover,
.section.gray .pagination .utf-pagination-arrow a:hover {
    background-color: #a1d244;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.pagination ul li a.current-page {
    background-color: #66676b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 103, 107, .25)
}

.pagination .utf-pagination-arrow a {
    background-color: #f0f0f0
}

.section.gray .pagination .utf-pagination-arrow a {
    background-color: #eaeaea
}

#backtotop {
    position: fixed;
    right: 0;
    opacity: 0;
    visibility: hidden;
    bottom: 25px;
    margin: 0 25px 0 0;
    z-index: 999;
    transition: .35s;
    transform: translateY(10px)
}

#backtotop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#backtotop a {
    text-decoration: none;
    border: 0 none;
    display: block;
    width: 42px;
    height: 42px;
    background-color: #66676b;
    opacity: 1;
    transition: all .3s;
    border-radius: 50px;
    text-align: center;
    font-size: 24px
}

body #backtotop a {
    color: #fff
}

#backtotop a:after {
    content: "\e910";
    font-family: Feather-Icons;
    position: relative;
    display: block;
    top: 17%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: rotate(90deg)
}

.utf-sidebar-container-aera {
    margin-bottom: 20px
}

.full-page-container .utf-sidebar-container-aera {
    margin-bottom: 0
}

.utf-sidebar-widget-item input {
    margin-bottom: 0
}

.utf-sidebar-widget-item {
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .05)
}

.utf-sidebar-widget-item:last-child {
    margin-bottom: 20px
}

.utf-sidebar-widget-item .utf-detail-banner-add-section {
    text-align: center
}

.utf-sidebar-widget-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    line-height: 24px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-sidebar-widget-item h3::before {
    background: #a1d244;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: -2px;
    width: 40px;
    border-radius: 30px
}

.utf-quote-box {
    background-image: url(https://img.freepik.com/free-photo/close-up-briefcase_1098-3090.jpg?size=626&ext=jpg&ga=GA1.2.257894396.1645902403);
    background-size: cover;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 24, 128, .1);
    padding: 35px 30px;
    z-index: 1;
    color: #fff;
    text-align: center
}

.utf-sidebar-widget-item .freelancer-socials ul {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.utf-sidebar-widget-item .freelancer-socials ul li {
    display: inline-block
}

.utf-sidebar-widget-item .freelancer-socials ul li a {
    background: #f0f0f0;
    color: #626262;
    width: 40px;
    height: 40px;
    line-height: 42px;
    position: relative;
    display: inline-block;
    text-align: center;
    border-radius: 30px
}

.utf-sidebar-widget-item .freelancer-socials ul li a:hover {
    background: #a1d244;
    color: #fff
}

.utf-quote-info {
    z-index: 2px;
    position: relative
}

.utf-quote-box::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 4px
}

.utf-quote-box h4 {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 600
}

.utf-quote-box p {
    opacity: .9
}

.job-description-image-aera img {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
    margin-bottom: 30px;
    border-radius: 4px
}

.utf-jobs-listing-utf-quote-box {
    padding: 20px 15px
}

.utf-jobs-listing-utf-quote-box h4 {
    font-size: 20px
}

.utf-jobs-listing-utf-quote-box p {
    font-size: 15px;
    line-height: 25px
}

.utf-notify-box-aera {
    display: block;
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    padding: 15px 25px;
    position: relative;
    line-height: 28px;
    min-height: 60px
}

.utf-notify-box-aera label {
    margin-bottom: 0;
    cursor: pointer
}

.utf-notify-box-aera .switch-button {
    margin-right: 10px
}

.sort-by .bootstrap-select {
    position: relative;
    right: 0;
    top: 0
}

.sort-by .dropdown-menu {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .14)
}

.sort-by .bootstrap-select.btn-group button {
    flex: 1;
    position: relative;
    right: 0;
    top: 4px;
    font-weight: 600;
    margin-left: 10px;
    width: auto;
    padding: 0;
    padding-right: 12px;
    background-color: transparent;
    box-shadow: none;
    height: 20px;
    color: #0e1133
}

.sort-by .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 0
}

.sort-by .bootstrap-select .dropdown-menu {
    top: 40px;
    right: 0;
    left: auto;
    position: absolute;
    min-width: 160px !important;
    flex: 1
}

.sort-by .bootstrap-select.open:before {
    display: none
}

.sort-by {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    float: right
}

.bidding-field .bootstrap-select.open .dropdown-menu,
.sort-by .bootstrap-select.open .dropdown-menu,
.utf-sidebar-widget-item .bootstrap-select.open .dropdown-menu {
    padding-bottom: 0
}

@media (max-width:768px) {
    .utf-notify-box-aera {
        margin-bottom: 100px
    }

    .utf-notify-box-aera {
        padding: 10px 25px;
        line-height: 28px;
        min-height: 50px
    }

    .utf-notify-box-aera .sort-by {
        position: absolute;
        margin-top: 25px;
        left: 0;
        z-index: 2;
        width: 100%;
        background-color: #f9f9f9;
        border: 1px solid #f2f2f2;
        border-radius: 4px;
        padding: 10px 25px;
        line-height: 28px;
        min-height: 50px;
        margin-bottom: 30px
    }

    .utf-notify-box-aera .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }
}

#titlebar {
    background-color: #f8f8f8;
    position: relative;
    padding: 50px 0;
    margin-bottom: 65px;
    border-bottom: 1px solid #eee
}

#titlebar.gradient {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat
}

#titlebar.gradient::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #a1d244;
    opacity: .85
}

#titlebar.white {
    background: #fff;
    padding-bottom: 0
}

#titlebar.transparent {
    background: 0 0
}

#titlebar span,
#titlebar span a {
    font-size: 20px;
    color: #888;
    margin-bottom: 3px;
    margin-top: 3px;
    display: block
}

#titlebar #breadcrumbs span {
    font-size: 15px
}

#titlebar h1,
#titlebar h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 1px 0 3px 0;
    font-weight: 600;
    color: #fff
}

#breadcrumbs {
    font-weight: 600;
    border-radius: 4px;
    padding: 0;
    font-size: 12px;
}

#breadcrumbs ul {
    margin: 0;
    padding: 0;
    line-height: 24px
}

#titlebar.gradient #breadcrumbs ul {
    padding: 0
}

#breadcrumbs ul li a {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    /*font-weight: 600;*/
}

#breadcrumbs ul li a:hover {
    color: #8fc740 !important
}

#breadcrumbs ul li {
    display: inline-block;
    list-style: none;
    margin: 2px 0 0;
    color: #8fc740;
   font-size: 12px;font-weight: normal;
}

#breadcrumbs ul li:first-child:before {
    display: none
}

#breadcrumbs ul li:first-child {
    margin-left: 0
}

#breadcrumbs ul li:before {
    content: "/";
    display: inline-block;
    height: 0;
    width: 0;
    border-top: 4px solid transparent;
    font-size: 15px;
    margin-right: 12px;
    color: #fff;
    padding-left:5px;
}

#breadcrumbs ul li.home-icon a {
    opacity: 1;
    font-size: 24px;
    top: 4px;
    position: relative;
    line-height: 0;
    padding: 0;
    display: inline-block
}

#breadcrumbs ul li.home-icon i {
    line-height: 0
}

#breadcrumbs.dark {
    color: #0e1133;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
    background-color: rgba(255, 255, 255, 1)
}

#breadcrumbs.dark ul li a {
    color: #0e1133
}

#breadcrumbs.dark ul li a:hover {
    color: #a1d244
}

#titlebar.gradient #breadcrumbs ul li,
#titlebar.gradient #breadcrumbs ul li a {
    color: #fff
}

#titlebar.gradient #breadcrumbs ul li a:hover {
    color: #a1d244 !important
}

#breadcrumbs.dark ul li:before {
    border-left: 4px solid #0e1133
}

#breadcrumbs.white {
    color: #0e1133;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background-color: #fff
}

#breadcrumbs.white ul li a {
    color: #222
}

#breadcrumbs.white ul li a:hover {
    color: #66676b
}

#breadcrumbs.white ul li:before {
    border-left: 4px solid rgba(0, 0, 0, .3)
}

.single-page-header #breadcrumbs {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-left: auto
}

@media (max-width:992px) {
    .single-page-header #breadcrumbs {
        margin: 30px 0 20px 0
    }
}

.single-page-header {
    margin-bottom: 65px;
    padding: 30px 0;
    position: relative
}

.single-page-header .container {
    z-index: 100;
    position: relative
}

.single-page-header:after,
.single-page-header:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    opacity: 1;
    background: linear-gradient(to right, rgba(48, 48, 48, .9) 50%, rgba(48, 48, 48, .4) 100%, rgba(48, 48, 48, 0) 95%)
}

.single-page-header:after {
    z-index: 5;
    background-color: #f7f7f7
}

.single-page-header .background-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.single-page-header .utf-single-page-header-inner-aera {
    display: flex
}

.single-page-header .utf-left-side,
.single-page-header .utf-right-side {
    flex: 1;
    display: flex;
    align-items: center
}

.single-page-header .utf-left-side {
    padding-right: 30px
}

.single-page-header .utf-right-side {
    max-width: 32%
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .single-page-header .utf-right-side {
        max-width: 35%
    }
}

@media only screen and (min-width:1100px) and (max-width:1239px) {
    #navigation ul a {
        padding: 7px
    }

    .utf-header-widget-item {
        padding: 0 15px
    }
}

@media (min-width:1365px) {
    .single-page-header .utf-right-side {
        max-width: 30%
    }
}

.single-page-header .utf-header-image a {
    display: flex;
    width: 100%;
    height: 100%
}

.single-page-header .utf-header-image {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    margin-right: 25px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    display: flex;
    padding: 0;
    overflow: hidden
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .single-page-header .utf-header-image {
        max-width: 140px
    }
}

.single-page-header.freelancer-header .utf-header-image {
    background: #fff;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    padding: 0;
    overflow: hidden;
    height: 130px;
    flex: 0 0 130px;
    width: 130px
}

.single-page-header .utf-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-self: center;
    transform: translate3d(0, 0, 0)
}

@media all and (-ms-high-contrast:none) {
    .single-page-header .utf-header-image img {
        width: 100%
    }
}

.single-page-header .utf-header-details {
    flex: 1
}

.single-page-header .utf-header-details h3 {
    color: #064b19;
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 3px;
    line-height: 30px;
    position: relative;
    padding-right: 0;
    display: block;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.single-page-header .utf-header-details h3 .utf-verified-badge {
    transform: scale(.9) translate(0, 0);
    font-weight: 500;
    top: 2px
}

.single-page-header .utf-header-details h3 .utf-verified-badge::before {
    top: -3px
}

.single-page-header .utf-header-details h3 span {
    color: #e8e8e8;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    margin-top: 0;
    margin-left: 4px
}

.single-page-header .utf-header-details h4 {
    font-size: 15px;
    font-weight: 500;
    color: #eaeaea;
    display: block;
    margin: 4px 0;
    border-radius: 4px;
    box-shadow: none
}

.single-page-header .utf-header-details h4 i {
    margin-right: 4px;
    color: #a1d244;
    font-size: 15px;
    top: 1px;
    position: relative
}

.single-page-header .utf-header-details h5 {
    font-size: 12px;
    font-weight: 600;
    color: #c9cbc6;
    background: 0 0;
    display: inline-block;
    margin: 4px 0;
    padding: 0 12px;
    border-radius: 50px;
    border: 1px solid #80868d
}

.single-page-header .utf-header-details h5 i {
    margin-right: 3px;
    color: #f42929;
    font-size: 15px;
    margin-top: 4px;
    float: left
}

.single-page-header .utf-header-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 24px;
    margin-bottom: -7px
}

.single-page-header .utf-header-details li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #e3e3e3
}

.single-page-header .utf-header-details li:last-child {
    margin-right: 0
}

.single-page-header .utf-header-details li a {
    color: #e3e3e3
}

.single-page-header .utf-header-details li a:hover {
    color: #38b653 !important
}

.single-page-header .utf-header-details li i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-right: 2px
}

.single-page-header .utf-header-details li .utf-verified-badge {
    transform: scale(.85);
    position: relative;
    top: 2px
}

.single-page-header .utf-header-details .verified-txt {
    color: #299840
}

.single-page-header .utf-header-details .utf-star-rating {
    position: relative;
    top: 11px;
    background: 0 0;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 0 8px;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08)
}

.single-page-header .utf-header-details .utf-verified-badge-with-title {
    display: block
}

.single-page-header .utf-header-details .utf-star-rating::before {
    top: 3px
}

.single-page-header .utf-header-details img.flag {
    height: 16px;
    border-radius: 2px;
    position: relative;
    top: -1px;
    display: inline-block;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    margin-left: 5px;
    cursor: default
}

.single-page-header .salary-box {
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .2);
    display: inline-block;
    padding: 20px;
    margin-left: auto
}

.salary-box .salary-amount {
    color: #0e1133;
    font-size: 28px;
    line-height: 36px;
    font-weight: 600
}

@media (max-width:1366px) {
    .single-page-header.freelancer-header .utf-header-image {
        height: 130px;
        flex: 0 0 130px;
        width: 130px
    }
}

@media (max-width:1240px) {
    .single-page-header .utf-header-details h3 {
        font-size: 26px
    }

    .single-page-header {
        padding: 55px 0
    }

    .salary-box .salary-amount {
        font-size: 26px;
        line-height: 32px
    }

    .single-page-header .utf-header-image {
        height: 120px;
        flex: 0 0 120px
    }

    .single-page-header.freelancer-header .utf-header-image {
        height: 120px;
        flex: 0 0 120px;
        width: 120px
    }
}

@media (max-width:992px) {
    .single-page-header .utf-left-side {
        padding-right: 0
    }

    .single-page-header .utf-header-details h3 {
        font-size: 24px
    }

    .single-page-header {
        padding: 35px 0
    }

    .single-page-header .salary-amount {
        font-size: 28px;
        line-height: 30px
    }

    .single-page-header .salary-box {
        margin-top: 15px;
        margin-bottom: 15px
    }

    .salary-box .salary-type {
        font-weight: 600;
        color: #0e1133
    }

    .single-page-header .utf-header-image {
        margin-right: 25px
    }

    .single-page-header.freelancer-header .utf-header-image {
        height: 70px;
        flex: 0 0 70px;
        width: 70px;
        margin-bottom: -70px
    }

    .single-page-header.freelancer-header .utf-header-details h3 {
        margin-left: 90px
    }
}

@media (max-width:768px) {
    .single-page-header.freelancer-header .utf-header-image {
        height: 70px;
        flex: 0 0 70px;
        width: 70px;
        margin-bottom: -70px
    }

    .single-page-header.freelancer-header .utf-header-details h3 {
        margin-left: 90px
    }
}

@media (max-width:767px) {
    .single-page-header .utf-single-page-header-inner-aera {
        display: flex;
        flex-direction: column
    }

    .single-page-header .utf-left-side,
    .single-page-header .utf-right-side,
    .utf-single-page-header-inner-aera {
        display: flex
    }

    .single-page-header .utf-left-side,
    .single-page-header .utf-right-side,
    .utf-single-page-header-inner-aera {
        display: block;
        max-width: 100%
    }

    .single-page-header .utf-header-image {
        height: 120px;
        width: 120px;
        display: block;
        float: left;
        margin-right: 25px
    }

    .single-page-header .salary-box {
        display: block;
        text-align: center
    }

    .utf-single-page-header-inner-aera .utf-header-details {
        float: left;
        width: 100%;
        text-align: center
    }

    .single-page-header .utf-header-image {
        display: block;
        float: none;
        margin: 0 auto 20px auto;
        text-align: center
    }
}

.blog-post {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .5s ease-in-out;
    padding: 20px;
}

.blog-post .utf-blog-post-content p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-post .utf-blog-post-content:hover:after {
    opacity: 0
}

.blog-post:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    transform: scale(1.01)
}

.blog-post:hover .utf-blog-post-thumbnail-inner img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform .5s ease-in-out
}

.utf-blog-post-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 200px;
    margin-right: 20px;
}

.utf-blog-post-thumbnail-inner {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    transition: .3s
}

.utf-blog-post-thumbnail-inner img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.utf-blog-post-thumbnail-inner .blog-item-tag {
    bottom: auto;
    left: 20px;
    top: 20px;
    margin: 0
}

.utf-blog-post-content {
    flex: 1;
    padding: 0;
    position: relative
}

.utf-blog-post-content h3,
.utf-blog-post-content h3 a {
    font-size: 22px;
    line-height: 26px;
    color: #0e1133;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-blog-post-content h3 a:hover {
    color: #66676b
}

.single-post .utf-blog-post-content h3 {
    font-size: 22px;
    line-height: 34px;
    font-weight: 600
}

.blog-post-date,
.blog-post-info,
a.blog-post-info {
    font-size: 12px;
    color: #727272;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 4px;
    line-height: 20px;
    font-weight: 600;
    padding: 2px 8px;
    margin-right: 3px;
    transition: .3s
}

span.blog-post-date:hover,
span.blog-post-info:hover {
    color: #fff;
    background-color: #a1d244
}

.utf-blog-post-content h3:hover {
    color: #a1d244
}

.single-post .utf-blog-post-content h3:hover {
    color: #323232
}

a.blog-post-info:hover {
    color: #fff;
    background-color: #66676b
}

.utf-blog-post-content p {
    display: block;
    color: #212529;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px !important;
}

.utf-blog-post-content a.button i.icon-feather-arrow-right {
    font-size: 20px;
    top: 4px;
    left: -1px;
    position: relative;
    margin: 0 -5px
}

.blog-post-info-list {
    display: block
}

blockquote {
    padding: 20px 25px;
    margin: 0;
    font-size: 17px;
    line-height: 30px;
    color: #626262;
    border-left: 5px solid #a1d244;
    background: #f0f0f0;
    border-radius: 4px
}

.blog-post.single-post {
    flex-direction: column
}

.blog-post.single-post:hover {
    transform: none
}

.blog-post.single-post .utf-blog-post-thumbnail {
    width: 100%;
    height: 380px
}

.blog-post.single-post p {
    margin-bottom: 20px
}

.utf-inner-blog-section-title {
    width: 100%;
    background-color: #424242;
    border-radius: 4px;
    padding: 16px 20px;
    margin-top: 30px;
    margin-bottom: 20px
}

.utf-inner-blog-section-title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600
}

.utf-inner-blog-section-title h3 i {
    background: #fff;
    color: #424242;
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 26px;
    text-align: center;
    border-radius: 50px;
    vertical-align: middle;
    padding: 5px
}

#posts-nav {
    padding: 0;
    list-style: none;
    width: 100%;
    position: relative;
    margin: 0;
    display: inline-block;
    min-height: 60px
}

#posts-nav li span {
    display: block;
    font-size: 15px;
    color: #727272;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 4px;
    line-height: 20px;
    padding: 4px 10px;
    font-weight: 600;
    margin-right: 3px;
    transition: .3s
}

#posts-nav li a:hover span {
    background-color: #66676b;
    color: #fff
}

#posts-nav li {
    position: absolute;
    font-size: 18px;
    font-weight: 500;
    width: 50%
}

#posts-nav li strong {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 26px
}

#posts-nav li a {
    transition: transform .3s, color .3s 0s;
    color: #0e1133;
    display: inline-block;
    line-height: 28px
}

#posts-nav li a:hover {
    color: #66676b
}

#posts-nav li.next-post {
    right: 0;
    text-align: right
}

#posts-nav li.prev-post {
    left: 0
}

#posts-nav li.next-post a:before,
#posts-nav li.prev-post a:before {
    font-family: Feather-Icons;
    font-size: 30px;
    position: absolute;
    color: inherit;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    transition: transform .3s
}

.comments {
    margin: -10px 0 0 0
}

.comments h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 500;
    color: #0e1133
}

.comments h4 span {
    display: inline-block;
    font-size: inherit
}

.comment {
    font-size: 20px
}

.comments .button {
    margin: 0 0 10px 0;
    padding: 7px 15px
}

.comments.reviews .button {
    margin: 0
}

.comments ul {
    padding-left: 0
}

.comments ul li {
    display: block
}

.comments ul li,
.comments ul li ul li,
.comments ul li ul li ul li {
    margin: 30px 0 0 0
}

.comments ul li ul {
    margin: 0 0 0 100px
}

.utf-comment-content p {
    margin: 3px 0 0 0;
    line-height: 26px
}

.utf-comment-content {
    background: #fff;
    color: #222;
    padding: 20px 20px 20px 110px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08)
}

.comments ul li ul {
    border-left: 0 solid #e0e0e0;
    padding-left: 0
}

.comments ul li ul li:before {
    content: "";
    width: 15px;
    height: 0;
    background-color: #e0e0e0;
    display: inline-block;
    position: absolute;
    top: 30px;
    left: -35px
}

.comments ul li {
    position: relative
}

.utf-comment-content strong {
    padding-right: 5px;
    color: #222
}

.utf-comment-content span {
    color: #888
}

body .utf-comment-content p {
    padding: 5px 0
}

.comments-amount {
    color: #888;
    font-weight: 500
}

.avatar {
    display: inline-block;
    float: left;
    padding: 25px 15px 0 15px;
    position: absolute;
    left: 0;
    top: -5px
}

.avatar img {
    max-width: 70px;
    border-radius: 50%;
    object-fit: cover
}

.utf-comment-by {
    width: auto;
    font-weight: 600;
    color: #0e1133;
    background-color: #f0f0f0;
    padding: 6px 12px;
    line-height: 22px;
    font-size: 15px;
    border-radius: 4px;
    display: inline-block
}

.utf-comment-by h5 {
    margin: 0 0 7px 0
}

.utf-comment-by a.reply {
    transition: all .3s
}

.utf-comment-by a.reply {
    display: inline;
    background-color: #a1d244;
    padding: 5px 16px;
    line-height: 22px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 4px
}

.utf-comment-by a.reply i {
    font-size: 12px;
    margin-right: 3px;
    font-weight: 600
}

.utf-comment-by a.reply:hover {
    background-color: #424242 !important;
    color: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .1)
}

.utf-comment-by span.date {
    color: #888;
    font-size: 15px;
    font-weight: 500;
    margin: 4px 0 0 0;
    float: none;
    display: block;
    text-align: left
}

@media (max-width:768px) {
    .comments ul li ul {
        margin: 0
    }

    .avatar {
        top: 3px
    }

    .utf-comment-content {
        color: #222;
        padding: 20px 15px 10px 80px
    }

    .comments ul li,
    .comments ul li ul li {
        margin-top: 25px
    }

    .avatar img {
        max-width: 50px;
        border-radius: 50%;
        top: 5px
    }

    .utf-comment-by a.reply {
        position: relative;
        margin: 10px 0 0 0;
        top: 0;
        right: 0;
        display: inline-block
    }

    .blog-post {
        flex-direction: column
    }

    .utf-blog-post-thumbnail {
        width: 100%;
        height: 150px;
        margin-bottom: 20px;
    }

    #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
    }
}

.widget-tabs {
    padding: 0;
    list-style: none;
    margin-top: 25px;
    display: block
}

.widget-content {
    box-shadow: 0 3px 9px rgba(0, 0, 0, .07);
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    width: 100%;
    overflow: hidden
}

.widget-content:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    opacity: 1;
    transition: .35s ease-in-out
}

.widget-content img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 1;
    transition: .35s;
    border-radius: 5.5px
}

.widget-text h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    margin: 0 0 3px 0;
    color: #0e1133;
    transition: .35s
}

.widget-text span {
    font-size: 15px;
    color: #888;
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 4px;
    line-height: 20px;
    padding: 4px 10px;
    margin-top: 3px;
    transition: .35s
}

.widget-text {
    display: block;
    padding: 0;
    position: relative;
    z-index: 20;
    padding: 30px
}

.widget-tabs .widget-content {
    display: table
}

.widget-tabs .widget-content .widget-text {
    display: table-cell;
    vertical-align: middle
}

.widget-tabs li {
    margin-top: 20px
}

.widget-content.active:before,
.widget-content:hover:before {
    opacity: .6;
    background: #0e1133
}

.widget-content.active img,
.widget-content:hover img {
    opacity: 1
}

.widget-content.active h5,
.widget-content:hover h5 {
    color: #fff
}

.widget-content.active span,
.widget-content:hover span {
    background: rgba(255, 255, 255, .25);
    color: #fff
}

.utf-blog-item-container-part {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    background: 0 0;
    transform: translate3d(0, 0, 0);
    transition: transform .5s ease-in-out;
    margin-bottom: 30px;
    overflow: hidden
}

.utf-blog-item-container-part:hover {
    transform: scale(1.01);
    z-index: 9;
    transition: transform .5s ease-in-out
}

.utf-blog-item-container-part .utf-blog-compact-item:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform .5s ease-in-out
}

.utf-blog-compact-item {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    border-radius: 4px;
    height: 100%;
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    z-index: 100;
    cursor: pointer;
    transition: .4s
}

@media (max-width:1366px) {
    .utf-blog-compact-item {
        height: 3271 0
    }
}

.utf-blog-compact-item img {
    object-fit: cover;
    width: 100%;
    border-radius: 4px;
    height: 220px;
}

.utf-blog-compact-item:before {
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    border-radius: 4px;
    transition: .4s
}

.utf-blog-compact-item-content {
    padding: 10px 25px;
    width: 100%;
    z-index: 50;
    text-align: center;
    box-sizing: border-box;
    background: #f6f6f6;
    min-height: 110px;
}

.utf-blog-compact-item-content h3 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    padding: 5px 0;
    font-weight: normal;
    margin: 0 0 5px 0;
    line-height: 30px;
}

.utf-blog-compact-item-content span {
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    color: rgba(255, 255, 255, .7)
}

.utf-blog-compact-item-content p {
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    color: rgba(255, 255, 255, .8);
    margin: 7px 0 0 0
}

a.blog-item-tag {
    font-size: 15px;
    color: #727272;
    background-color: #f0f0f0;
    border-radius: 4px;
    padding: 4.5px 10px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 9px;
    margin-right: 3px;
    z-index: 110;
    transition: .4s
}

a.blog-item-tag:hover {
    background: #a1d244;
    color: #fff
}

.utf-blog-post-tags {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    opacity: .9
}

ul.utf-featured-list {
    padding: 0;
    margin: 0;
    margin-top: 25px
}

.utf-blog-post-tags li {
    display: inline-block;
    margin-right: 5px;
    background: #a1d244;
    padding: 1px 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px
}

.utf-blog-post-tags li i {
    margin-right: 3px;
    font-weight: 400;
    display: inline-block
}

.utf-sidebr-pro-widget {
    border-bottom: 1px solid #e8ecec;
    margin-bottom: 12px;
    padding-bottom: 12px;
    overflow: hidden
}

.utf-sidebr-pro-widget:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

.utf-blog-thumb-info-image img {
    margin-right: 15px;
    width: 85px;
    height: 55px;
    border-radius: 4px;
    float: left;
    object-fit: cover;
    background: #f6f6f6;
}

.utf-blog-thumb-info-content h4 {
    margin-bottom: 5px;
    line-height: 20px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.utf-blog-thumb-info-content h4 a {
    color: #0e1133;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-blog-thumb-info-content h4 a:hover {
    color: #a1d244
}

.utf-blog-thumb-info-content p {
    color: #727272;
    font-size: 11px;
    line-height: 22px;
    background: #f0f0f0;
    display: inline-block;
    padding: 0px 7px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 2px;
}

.utf-contact-location-info-aera {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .03)
}

.utf-contact-location-info-aera #utf-single-job-map-container-item,
.utf-contact-location-info-aera .contact-address {
    flex: 1
}

.utf-contact-location-info-aera #utf-single-job-map-container-item #singleListingMap {
    border-radius: 6px
}

.utf-contact-location-info-aera .contact-address {
    background: #fbfdff;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.utf-contact-location-info-aera .contact-address {
    display: flex
}

.utf-contact-location-info-aera .contact-address>ul {
    align-self: center;
    padding: 25px 30px;
    margin: 0;
    list-style: none;
    font-size: 15px;
    color: #212529
}

.utf-contact-location-info-aera .contact-address ul li:first-child {
    border-top: 1px solid #f0f0f0
}

.utf-contact-location-info-aera .contact-address ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0
}

.utf-contact-location-info-aera .contact-address ul li a {
    color: #212529
}

.utf-contact-location-info-aera .contact-address ul li a:hover {
    color: #a1d244
}

.utf-contact-location-info-aera .contact-address ul li strong {
    font-weight: 500
}

.utf-contact-location-info-aera .utf-detail-social-sharing {
    margin-top: 10px;
    margin-left: -8px;
    transform: scale(.9)
}

.contact-address-headline {
    color: #0e1133;
    font-weight: 600
}

.contact-address-headline:after {
    content: "";
    height: 2px;
    width: 25px;
    background-color: #66676b;
    position: relative;
    display: block;
    margin: 15px 0;
    border-radius: 3px
}

@media (max-width:768px) {
    .utf-contact-location-info-aera {
        flex-direction: column
    }
}

#contact div input {
    margin-bottom: 20px
}

.utf-sidebar-widget-item #contact div input.submit {
    margin-bottom: 5px;
    box-shadow: 0 4px 4px rgb(209 219 192)
}

.utf-sidebar-widget-item #contact div input.submit:hover {
    background: #424242
}

.utf-single-page-section-aera {
    margin-bottom: 55px;
    display: block
}

.utf-single-page-section-aera p:last-of-type {
    padding-bottom: 0;
    margin-bottom: 15px
}

.utf-single-page-section-aera h3 {
    margin-bottom: 20px;
    font-size: 20px
}

ul.utf-job-deatails-content-item {
    padding-left: 0;
    list-style: none;
    margin-top: 5px
}

ul.utf-job-deatails-content-item li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 26px;
    color: #222;
    margin-bottom: 8px
}

ul.utf-job-deatails-content-item li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #a1d244
}

.utf-single-page-section-aera .utf-job-listing h3.utf-job-listing-title {
    margin-bottom: 0
}

.full-page-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap
}

.full-page-sidebar {
    flex: 0 0 360px;
    background-color: #fafafa;
    position: relative
}

.full-page-sidebar .full-page-sidebar-inner {
    overflow: auto;
    height: 100%
}

.full-page-sidebar .utf-sidebar-container-aera {
    padding: 40px 20px
}

.full-page-sidebar .simplebar-scrollbar {
    width: 5px
}

.full-page-sidebar .utf-sidebar-widget-item:last-of-type {
    margin-bottom: 80px
}

.full-page-content-container {
    flex: 1;
    background-color: #fff;
    padding: 0;
    overflow: auto
}

.full-page-content-inner {
    padding: 40px 30px;
    padding-bottom: 0
}

.full-page-content-inner .grid-layout {
    width: calc(100% + 30px)
}

.full-page-content-inner .grid-layout .utf-job-listing {
    margin: 0 30px 30px 0;
    width: calc(100% * (1/3) - 30px)
}

.sidebar-search-button-container {
    position: relative;
    width: calc(100% - 15px);
    bottom: 0;
    padding: 40px 0;
    padding-top: 10px;
    z-index: 100;
    background-color: #fafafa
}

.sidebar-search-button-container button {
    width: calc(100% + 15px);
    line-height: 46px;
    height: 46px;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1)
}

.sidebar-search-button-container button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25);
    transform: translateY(-2px)
}

.utf-small-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 0;
    width: calc(100% + 80px);
    left: -40px;
    position: relative;
    padding: 25px 40px;
    display: flex
}

.utf-small-footer strong {
    color: #0e1133
}

.utf-small-footer-copyrights {
    text-align: center;
    width: 100%
}

.utf-small-footer .footer-social-links {
    transform: none;
    flex: 1;
    text-align: right;
    float: right;
    display: inline-block;
    margin: 0 -5px 0 0;
    position: relative;
    top: 2px
}

.utf-small-footer .footer-social-links li {
    color: #0e1133;
    transform: none;
    float: none;
    margin: 0 -3px
}

.utf-small-footer .footer-social-links li a {
    color: #0e1133;
    transform: none
}

.full-page-map-container {
    flex: auto;
    position: relative;
    background-color: #e5e3df
}

.full-page-map-container #map {
    position: relative;
    z-index: 30
}

.full-page-container.with-map .full-page-content-container {
    flex: 0 0 50vw
}

.full-page-sidebar.hidden-sidebar {
    visibility: hidden;
    transition: .4s;
    position: relative;
    opacity: 0;
    max-width: 0
}

.full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
    width: 360px
}

.full-page-sidebar.hidden-sidebar.enabled-sidebar {
    visibility: visible;
    opacity: 1;
    max-width: 360px
}

.enable-filters-button {
    position: relative;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: #fff;
    color: #0e1133;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    height: 48px;
    line-height: 48px;
    padding: 0;
    transition: .3s;
    min-width: 126px;
    text-align: center
}

.enable-filters-button span {
    position: relative;
    padding: 0 15px;
    background-color: #66676b;
    color: #fff;
    width: 100%;
    z-index: 100;
    border-radius: 4px;
    transition: .3s
}

.filter-button-tooltip {
    position: absolute;
    width: auto;
    left: 15px;
    top: 24px;
    z-index: 100;
    border-radius: 4px;
    width: auto;
    animation: tooltip-bounce 2s infinite;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    overflow: visible;
    transition: opacity .3s;
    pointer-events: none;
    padding: 0 20px;
    background-color: #fff;
    color: #555;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    font-size: 15.7px;
    line-height: 48px;
    top: 20px
}

.filter-button-tooltip.tooltip-visible {
    opacity: 1
}

.filter-button-tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: calc(50% - 3px);
    content: "";
    left: -3px;
    box-sizing: border-box;
    border: 5px solid #000;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(45deg) translateY(-50%);
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, .04)
}

@keyframes tooltip-bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateX(0)
    }

    40% {
        transform: translateX(14px)
    }

    60% {
        transform: translateX(7px)
    }
}

.enable-filters-button.active i,
.enable-filters-button.active span,
.enable-filters-button:hover i,
.enable-filters-button:hover span {
    background-color: #0e1133
}

.enable-filters-button.active i:after,
.enable-filters-button.active i:before,
.enable-filters-button:hover i:after,
.enable-filters-button:hover i:before {
    background-color: rgba(0, 0, 0, .25)
}

.enable-filters-button i {
    position: absolute;
    z-index: 90;
    left: -48px;
    height: 100%;
    font-size: 20px;
    background-color: #66676b;
    color: #fff;
    line-height: 48px;
    text-align: center;
    width: 48px;
    border-radius: 4px 0 0 4px;
    font-style: normal;
    font-family: Feather-Icons;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.enable-filters-button i:after,
.enable-filters-button i:before {
    position: absolute;
    left: 0;
    right: 0;
    transition: .3s;
    border-radius: 4px 0 0 4px;
    background-color: rgba(0, 0, 0, .1)
}

.enable-filters-button i:after {
    content: "\e9d1";
    opacity: 1
}

.enable-filters-button.active i:after {
    opacity: 0
}

.enable-filters-button i:before {
    content: "\ea02";
    opacity: 0
}

.enable-filters-button.active i:before {
    opacity: 1
}

.enable-filters-button span.show-text,
.enable-filters-button.active span.hide-text {
    display: inline-block
}

.enable-filters-button span.hide-text,
.enable-filters-button.active span.show-text {
    display: none
}

.location-field-on-map {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 280px;
    max-width: 40%;
    z-index: 100
}

.location-field-on-map input {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1) !important
}

.inner_search_block_section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(0, 0, 0, .03));
    margin-bottom: 70px
}

.intro-banner .utf-trending-silver-item {
    text-align: center;
    color: #cecece;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 500
}

.intro-banner .utf-trending-black-item {
    color: #fff;
    font-weight: 600
}

.intro-banner .utf-trending-silver-item a {
    background: rgba(255, 255, 255, .1);
    text-align: center;
    color: #fff;
    padding: 3px 8px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 15px;
    margin-right: 3px
}

.intro-banner .utf-trending-silver-item a:hover {
    background: rgb(11 102 36);
    color: #fff
}

.utf-trending-silver-item {
    text-align: center;
    color: #666;
    margin-top: 20px;
    font-weight: 500
}

.utf-trending-black-item {
    color: #0e1133;
    font-weight: 600
}

@media (max-width:3860px) {
    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/4) - 30px)
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/3) - 30px)
    }
}

@media (max-width:2560px) {
    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/4) - 30px)
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/2) - 30px)
    }
}

@media (max-width:1920px) {
    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/3) - 30px)
    }

    .full-page-container.with-map .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        width: 340px
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/2) - 30px)
    }
}

@media (max-width:1600px) {
    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% * (1/2) - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-container.with-map .full-page-sidebar {
        flex: 0 0 320px
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        width: 320px
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% - 30px)
    }

    .full-page-container.with-map .full-page-content-container {
        flex: 0 0 60vw
    }
}

@media (max-width:1365px) {
    .location-field-on-map {
        left: 0;
        right: auto;
        width: calc(100% - 80px);
        max-width: calc(100% - 80px);
        margin: 0 40px
    }

    .full-page-container .utf-notify-box-aera {
        margin-bottom: 100px
    }

    .full-page-container .utf-notify-box-aera .sort-by {
        position: absolute;
        margin-top: 40px;
        left: 0
    }

    .full-page-container .utf-notify-box-aera .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }

    .full-page-container .utf-notify-box-aera .sort-by {
        position: absolute;
        margin-top: 25px;
        left: 0;
        z-index: 2;
        width: 100%;
        background-color: #f9f9f9;
        border: 1px solid #f2f2f2;
        border-radius: 4px;
        padding: 10px 25px;
        line-height: 28px;
        min-height: 50px;
        margin-bottom: 30px
    }
}

@media (max-width:1099px) {
    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-map-container {
        order: -1;
        width: 100%;
        height: 400px;
        position: absolute;
        top: 0
    }

    .full-page-container.with-map {
        padding-top: 400px;
        height: auto !important;
        width: 100%;
        position: relative
    }

    .full-page-container.with-map .full-page-sidebar {
        max-width: 100%;
        visibility: visible;
        opacity: 1
    }

    .filter-button-container {
        display: none
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        position: relative;
        width: 100%
    }

    .full-page-container.with-map .full-page-content-container {
        flex: 1
    }

    .full-page-container,
    .full-page-container .full-page-sidebar,
    .full-page-content-container,
    .full-page-sidebar-inner {
        height: auto !important
    }

    .full-page-container .simplebar-track {
        display: none
    }
}

@media (max-width:992px) {
    .location-field-on-map {
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
        margin: 0 25px;
        top: 25px
    }

    .full-page-content-inner,
    .full-page-sidebar .utf-sidebar-container-aera {
        padding: 35px
    }

    .full-page-content-inner {
        padding-bottom: 0
    }

    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 320px
    }

    .full-page-container .full-page-sidebar,
    .full-page-content-container,
    .full-page-sidebar-inner {
        height: auto !important
    }
}

@media (max-width:768px) {
    .location-field-on-map {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin: 0 15px
    }

    .full-page-content-inner,
    .full-page-sidebar .utf-sidebar-container-aera {
        padding: 40px 15px
    }

    .sidebar-search-button-container {
        padding: 10px 0
    }

    .full-page-content-inner {
        padding-bottom: 0
    }

    .full-page-content-inner .grid-layout .utf-job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 1;
        width: 100%
    }

    .full-page-container {
        display: block;
        width: 100%;
        flex-wrap: wrap;
        height: auto
    }

    .utf-small-footer {
        display: block;
        text-align: center
    }

    .utf-small-footer .footer-social-links {
        float: none;
        left: -10px;
        margin-top: 10px
    }
}

.utf-job-listing {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    margin-bottom: 30px;
    background-color: #fff;
    transition: .3s;
    position: relative
}

.utf-job-listing:hover {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .14);
    transform: scale(1.01)
}

.utf-job-listing:hover .utf-job-listing-details .utf-job-listing-description h3.utf-job-listing-title {
    color: #a1d244
}

.utf-job-listing-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 35px;
    padding-bottom: 32px
}

.utf-job-listing .utf-job-listing-company-logo {
    flex: 1;
    max-width: 80px;
    margin-right: 25px;
    position: relative;
    top: 3px;
    border-radius: 50px;
    border: 3px solid rgba(0, 0, 0, .08)
}

.utf-job-listing .utf-job-listing-company-logo img {
    width: 100%;
    height: 90%;
    padding: 0;
    border-radius: 50px;
    object-fit: contain;
    transform: translate3d(0, 4px, 0)
}

.utf-job-listing .utf-job-listing-description {
    flex: 1;
    padding-top: 0;
    margin-top: -2px;
    text-align: left;
}

.utf-job-listing .utf-job-listing-description p {
    margin: 15px 0 0 0;
    padding: 0;
    color: #222
}

.utf-job-listing h4.utf-job-listing-company {
    font-size: 15px;
    color: #212529
}

.utf-job-listing span.job-hour-price {
    background: #fff;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 5px;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 0 7px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-job-listing span.job-hour-price i.icon-line-awesome-dollar {
    color: #2a41e8;
    font-weight: 600
}

.utf-job-listing h3.utf-job-listing-title {
    font-size: 20px;
    color: #0e1133;
    line-height: 30px
}

.utf-job-listing .utf-job-listing-footer {
    background-color: #f9f9f9;
    padding: 20px 35px;
    border-radius: 0 0 4px 4px;
    position: relative
}

.utf-job-listing .utf-job-listing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.utf-job-listing .utf-job-listing-footer ul li {
    font-size: 11px;
    padding: 0px 10px;
    border-radius: 10px;
    background: #f6f6f6;
    display: inline-block;
    line-height: 22px !important;
    color: #222;
}

.utf-job-listing-item-area .utf-job-listing-footer ul li {
    background: #fff
}

.utf-job-listing .job-user-location {
    background: #f7f7f7;
    display: inline-block;
    margin-top: 6px;
    color: #8c8c8c;
    padding: 0 7px;
    border-radius: 4px
}

.utf-job-listing .job-user-location i.icon-material-outline-location-on {
    color: #f42929
}

.utf-job-listing .utf-job-listing-footer ul li:last-child {
    margin-right: 0
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-location-on {
    margin-right: 0
}

.utf-job-listing .utf-job-listing-footer ul li i {
    position: relative;
    top: 1px;
    margin-right: 3px;
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-location-on {
    color: #dc3139;
    font-size: 15px
}

.text-danger {
    color: #40b660;
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-date-range {
    color: #40b660
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-business-center {
    color: #fd963c
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-account-balance-wallet {
    color: #2a41e8
}

.utf-job-listing .utf-job-listing-footer ul li i.icon-material-outline-access-time {
    color: #0bbdc6
}

.utf-inner-search-section-title {
    width: 100%;
    background-color: #424242;
    border-radius: 4px;
    padding: 15px 20px;
    margin-top: 0;
    margin-bottom: 20px
}

.utf-inner-search-section-title h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0
}

.utf-inner-search-section-title h4 i {
    background: #fff;
    color: #424242;
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 20px;
    text-align: center;
    border-radius: 50px;
    vertical-align: middle;
    padding: 5px
}

@media (max-width:768px) {
    .utf-job-listing .utf-job-listing-title {
        padding-right: 10%
    }
}

.compact-list-layout {
    background-color: transparent;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12)
}

.compact-list-layout .utf-job-listing {
    box-shadow: none;
    margin-bottom: 15px;
    padding: 15px;
    display: block;
    float: left;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 6px;
    z-index: 1
}

.compact-list-layout .utf-job-listing h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 8px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 240px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.compact-list-layout .utf-job-listing:nth-child(2n) {
    background-color: #fff
}

.compact-list-layout .utf-job-listing:hover {
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.compact-list-layout .utf-job-listing:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background: #a1d244;
    transition: .3s;
    opacity: 1
}

.compact-list-layout .utf-job-listing:hover .utf-job-listing-details .utf-job-listing-description h3.utf-job-listing-title {
    color: #a1d244
}

.compact-list-layout .utf-job-listing .utf-job-listing-footer {
    background-color: transparent;
    padding: 0;
    margin-top: 3px
}

.compact-list-layout .utf-job-listing-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    top: 0
}

.compact-list-layout .utf-job-listing .utf-job-listing-company-logo {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    top: 0;
    padding: 2px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    border-radius: 50px
}

.compact-list-layout .utf-job-listing .utf-verified-badge {
    transform: scale(.85) translate(8px, 8px)
}

.compact-list-layout .utf-job-listing h3 .utf-verified-badge {
    transform: scale(.85) translate(0, 0);
    font-weight: 500;
    top: 3px
}

.compact-list-layout .utf-job-listing h3 .utf-verified-badge:before {
    top: -3px
}

.compact-list-layout .utf-job-listing span.bookmark-icon {
    top: 15px;
    transform: translateY(0)
}

.compact-list-layout .utf-job-listing.utf-apply-button-item {
    position: relative;
    margin-bottom: 15px;
    display: block;
    float: left;
    border: 0;
    border-radius: 6px;
    z-index: 1;
    width: 32.3%;
    margin-right: 1%;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
}

.compact-list-layout .utf-job-listing.utf-apply-button-item:after,
.compact-list-layout .utf-job-listing:after,
.freelancer:after,
.icon-box:after,
.tasks-list-container.compact-list .task-listing:after,
.utf-category-box:after,
.utf-plan-pricing-aera .radio label:after,
.utf-single-counter:after,
.utf-testimonial-carousel-block .slick-slide .utf-testimonial-box:after,
.blog-post .utf-blog-post-content:hover:after,
.compact-list-layout .utf-apply-button-item:hover:after,
.compact-list-layout .utf-job-listing:hover:after,
.freelancer:hover:after,
.icon-box:hover:after,
.need-help-area .info-box-1:hover:after,
.tasks-list-container.compact-list .task-listing:hover:after,
.utf-boxed-list-item ul.utf-boxed-list-item-ul>li:hover:after,
.utf-boxed-list-item ul.utf-boxed-list-item-ul>ul li:hover:after,
.utf-category-box:hover:after,
.utf-companies-list-aera .utf-company-inner-alignment:hover:after,
ul.utf-dashboard-box-list>li:hover:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    z-index: -1;
}

.list-apply-button {
    position: absolute;
    right: 0;
    padding: 10px 20px;
    line-height: 24px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all .3s;
    border-radius: 4px;
    background: #a1d244;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    text-align: center
}

.utf-job-listing.utf-apply-button-item:hover .list-apply-button {
    background-color: #66676b;
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.list-apply-button i {
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    font-size: 15px;
    margin-left: 3px;
    color: #a1d244
}

.utf-boxed-list-item .compact-list-layout {
    box-shadow: none;
    margin-top: 0;
    display: inline-block;
    width: 100%;
    overflow: hidden
}

@media (max-width:768px) {
    .list-apply-button {
        flex: auto;
        width: 100%;
        margin-top: 15px
    }
}

.grid-layout {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px)
}

.grid-layout .utf-job-listing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 30px 30px 0;
    width: calc(100% * (1/2) - 30px);
    flex-direction: column
}

.grid-layout .utf-job-listing-details {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 30px;
    padding-right: 40px
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {

    .grid-layout .utf-job-listing-details,
    .tasks-list-container.tasks-grid-layout .task-listing .task-listing-details {
        flex-basis: 100px
    }

    .tasks-list-container.tasks-grid-layout .task-listing-bid {
        flex-basis: 100px
    }
}

.grid-layout .utf-job-listing-footer {
    flex-grow: 0;
    padding: 20px 30px
}

.grid-layout .utf-job-listing h3.utf-job-listing-title {
    font-size: 18px;
    line-height: 28px
}

.grid-layout .utf-job-listing-footer .bookmark-icon {
    top: 0;
    right: 25px;
    transform: translateY(-50%) scale(.96)
}

.grid-layout .utf-job-listing .utf-job-listing-company-logo {
    max-width: 56px;
    margin-right: 24px;
    top: 1px;
    flex: 0 0 56px
}

@media (max-width:768px) {

    .full-page-content-inner .grid-layout .utf-job-listing,
    .grid-layout .utf-job-listing {
        margin: 0 0 30px 0;
        width: 100%
    }

    .full-page-content-inner .grid-layout,
    .grid-layout {
        width: 100%
    }

    .full-page-content-container .simplebar-content {
        overflow-x: hidden !important
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .utf-job-listing {
        width: 100%
    }
}

.task-listing {
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    margin-bottom: 30px;
    background-color: #fff;
    transition: .3s;
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer
}

.task-listing:hover {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .14);
    transform: translateY(-4px)
}

.task-listing-details {
    padding: 25px 30px;
    flex: 1
}

.task-listing .task-listing-description {
    flex: 1;
    align-items: center;
    justify-content: center
}

.task-listing .task-listing-description p {
    margin: 15px 0 0 0;
    padding: 0;
    color: #222
}

.task-listing h3.task-listing-title,
.task-listing h3.task-listing-title a {
    font-size: 18px;
    color: #0e1133;
    line-height: 28px;
    cursor: pointer;
    font-weight: 600;
    padding-top: 2px;
    transition: .3s
}

.task-listing .task-icons {
    list-style: none;
    padding: 0;
    margin: 3px 0 0 -3px
}

.task-listing .task-icons li {
    background: #fff;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 5px;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 0 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.task-listing ul.task-icons li i.icon-material-outline-location-off,
.task-listing ul.task-icons li i.icon-material-outline-location-on {
    color: #dc3139;
    font-size: 15px
}

.task-listing ul.task-icons li i.icon-material-outline-access-time {
    color: #0bbdc6;
    font-size: 15px
}

.task-listing .task-icons i {
    color: #909090;
    position: relative;
    top: 1px
}

.task-listing .task-icons i.icon-material-outline-desktop-windows {
    font-size: 19px;
    top: 2px
}

.task-listing-bid {
    flex: 0 0 260px;
    background-color: #f8f8f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.task-listing-bid-inner {
    width: 100%;
    padding: 25px
}

.task-listing-bid-inner .button {
    display: block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15);
    width: 100%
}

.task-listing-bid-inner .button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25)
}

.task-listing-bid-inner .task-offers i.icon-material-outline-account-balance-wallet {
    color: #2a41e8;
    padding-right: 3px
}

.task-listing-bid .task-offers {
    margin-bottom: 15px;
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 7px 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.task-listing-bid .task-offers strong {
    display: block;
    color: #0e1133;
    font-weight: 600;
    line-height: 24px
}

.task-listing-bid .task-offers span {
    display: block;
    color: #888;
    line-height: 24px
}

.task-tags {
    display: block;
    margin: 23px 0 3px 0
}

.task-tags span {
    transition: .3s;
    font-size: 15px;
    border-radius: 4px;
    background-color: rgba(102, 103, 107, .07);
    color: #66676b;
    display: inline-block;
    padding: 5px 15px;
    margin: 4px 2px;
    line-height: 24px
}

.task-tags span:hover {
    background: #a1d244;
    color: #fff
}

.compact-list .task-listing {
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none
}

.compact-list .task-listing:hover {
    transform: translateY(0)
}

.tasks-list-container.compact-list {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12)
}

.tasks-list-container.compact-list .task-listing {
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    margin-bottom: 30px;
    background-color: #fff;
    transition: .3s;
    z-index: 1;
    position: relative;
    display: flex;
    border: 1px solid transparent;
    overflow: hidden;
    float: left;
    width: 100%;
    justify-content: center;
    cursor: pointer
}

.tasks-list-container.compact-list .task-listing:hover {
    transform: scale(1.02);
    overflow: hidden;
    border: 1px solid #a1d244 !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08)
}

.tasks-list-container.compact-list .task-listing-bid {
    background-color: transparent
}

.tasks-list-container.compact-list .task-listing:hover:before {
    opacity: 1
}

.tasks-list-container.compact-list .task-listing:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    display: block;
    background: #66676b;
    transition: .3s;
    opacity: 0
}

.tasks-list-container.compact-list .task-listing .task-listing-details {
    padding-right: 0
}

.section .task-listing-bid-inner,
.section .task-listing-details {
    padding: 27px 35px
}

@media (max-width:1200px) {
    .task-listing-bid {
        flex: 0 0 220px
    }
}

@media (min-width:481px) and (max-width:768px) {
    .task-listing-bid {
        flex: 1;
        padding: 10px 0
    }

    .task-listing {
        flex-direction: column
    }

    .tasks-grid-layout .task-listing-bid-inner {
        margin: 0
    }

    .tasks-list-container.compact-list .task-listing .task-listing-details {
        padding-right: 35px;
        padding-bottom: 0
    }

    .tasks-list-container.compact-list .task-listing .task-listing-bid {
        padding-bottom: 25px
    }

    .task-listing-bid-inner {
        width: 100%;
        padding: 0 35px
    }
}

@media (max-width:768px) {
    .section .task-listing-details {
        padding: 25px 30px
    }

    .section .task-listing-bid-inner {
        padding: 0 30px
    }
}

@media (max-width:480px) {
    .task-listing-bid {
        flex: 1;
        padding: 30px 0
    }

    .task-listing {
        flex-direction: column
    }

    .task-listing-bid-inner .task-offers {
        flex: 1
    }

    .task-listing-bid-inner .button {
        height: 100%;
        width: 100%
    }

    .tasks-list-container.compact-list .task-listing .task-listing-details {
        padding-right: 35px;
        padding-bottom: 0
    }

    .tasks-list-container.compact-list .task-listing .task-listing-bid {
        padding-bottom: 35px;
        padding-top: 20px
    }

    .task-listing-bid-inner {
        width: 100%;
        padding: 0 35px
    }
}

.tasks-list-container.tasks-grid-layout {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px)
}

.tasks-list-container.tasks-grid-layout .task-listing {
    display: flex;
    justify-content: center;
    margin: 0 30px 30px 0;
    width: calc(100% * (1/2) - 30px);
    flex-direction: column
}

.tasks-list-container.tasks-grid-layout .task-listing-bid {
    flex: 1;
    padding: 0 0;
    display: block
}

.tasks-list-container.tasks-grid-layout .task-listing {
    flex-direction: column
}

.tasks-list-container.tasks-grid-layout .task-listing-bid-inner {
    display: flex;
    align-items: center;
    padding: 18px 32px
}

.tasks-list-container.tasks-grid-layout .task-listing-bid-inner .task-offers {
    flex: 1;
    position: relative;
    top: 5px
}

.tasks-list-container.tasks-grid-layout .task-listing-bid-inner .button {
    height: 100%;
    width: 45%
}

.tasks-list-container.tasks-grid-layout .task-listing .task-listing-details {
    display: flex;
    align-items: center;
    padding: 28px 32px
}

@media (max-width:1240px) {
    .tasks-list-container.tasks-grid-layout .task-listing-bid-inner {
        display: block
    }

    .tasks-list-container.tasks-grid-layout .task-listing-bid {
        padding: 20px 35px;
        padding-bottom: 30px
    }

    .tasks-list-container.tasks-grid-layout .task-listing-bid-inner {
        padding: 0
    }

    .tasks-list-container.tasks-grid-layout .task-listing {
        flex-direction: column
    }

    .tasks-list-container.tasks-grid-layout .task-listing-bid-inner .task-offers {
        flex: 1
    }

    .tasks-list-container.tasks-grid-layout .task-listing-bid-inner .button {
        height: 100%;
        width: 100%
    }
}

@media (max-width:768px) {
    .tasks-list-container.tasks-grid-layout {
        width: 100%
    }

    .tasks-list-container.tasks-grid-layout .task-listing {
        margin: 0 0 30px 0;
        width: 100%
    }

    .tasks-list-container.compact-list .task-listing-bid,
    .tasks-list-container.compact-list .task-listing-details {
        width: 100%
    }
}

@media (max-width:3860px) {
    .full-page-content-inner .tasks-grid-layout .task-listing {
        width: calc(100% * (1/4) - 30px)
    }
}

@media (max-width:2560px) {
    .full-page-content-inner .tasks-grid-layout .task-listing {
        width: calc(100% * (1/3) - 30px)
    }
}

@media (max-width:1600px) {
    .full-page-content-inner .tasks-grid-layout .task-listing {
        width: calc(100% * (1/2) - 30px)
    }
}

@media (max-width:1099px) {
    .full-page-content-inner .tasks-grid-layout .task-listing {
        width: calc(100% - 30px)
    }
}

@media (max-width:992px) {
    .full-page-content-inner .tasks-grid-layout .task-listing {
        width: calc(100%)
    }
}

.freelancers-container {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px)
}

.freelancer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 30px 30px 0;
    width: calc(100% * (1/2) - 30px);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    background-color: #fff;
    transition: .3s;
    position: relative;
    cursor: pointer
}

.freelancer:hover {
    background-color: #fcfcfc;
    transform: scale(1.02);
    overflow: hidden;
    border: 1px solid #a1d244 !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08)
}

.freelancer:hover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background: #a1d244;
    transition: .3s;
    opacity: 1
}

.freelancer .bookmark-icon {
    cursor: pointer
}

.utf-manage-resume-overview-aera {
    text-align: center;
    padding: 38px 20px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.utf-manage-resume-overview-aera-inner {
    flex: 1
}

.utf-manage-resume-overview-aera .utf-manage-resume-avatar {
    width: 125px;
    margin: 0 auto;
    position: relative
}

.utf-manage-resume-overview-aera .utf-manage-resume-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid rgba(0, 0, 0, .03);
    padding: 1px
}

.utf-manage-resume-overview-aera .utf-manage-resume-avatar .utf-verified-badge {
    position: absolute;
    top: 0;
    right: 8px
}

.utf-manage-resume-item {
    margin-top: 19px
}

.freelancer-rating {
    margin-top: 8px;
    margin-bottom: 0;
    display: inline-flex
}

.utf-manage-resume-item .freelancer-rating .utf-star-rating {
    top: 0;
    position: relative;
    margin-right: 0;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.freelancer-rating .utf-detail-item i {
    margin-right: 2px;
    position: relative;
    top: 0;
    color: #38b653
}

.freelancer-rating .utf-detail-item {
    margin-right: 12px;
    color: #212529;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.freelancer-rating .utf-star-rating {
    top: 0;
    position: relative;
    margin-right: 0;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-manage-resume-item h4,
.utf-manage-resume-item h4 a {
    font-size: 18px;
    font-weight: 600;
    color: #0e1133;
    cursor: pointer
}

.freelancers-list-layout .utf-manage-resume-item h4,
.freelancers-list-layout .utf-manage-resume-item h4 a {
    margin-top: 5px
}

.utf-manage-resume-item img.flag {
    height: 15px;
    border-radius: 3px;
    position: relative;
    top: -2px;
    display: inline-block;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    margin-left: 4px;
    cursor: default
}

.utf-manage-resume-item span {
    color: #888;
    display: inline-block
}

.freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-item h4 a span {
    display: inline-block;
    color: #888;
    margin-bottom: 0;
    line-height: 28px;
    font-size: 15px;
    font-weight: 500
}

.freelancer-details {
    padding: 20px 70px;
    background-color: #fafafa;
    flex-grow: 0
}

.freelancers-grid-layout .freelancer-details {
    border-radius: 0 0 4px 4px
}

.freelancers-grid-layout .freelancer-details a.button {
    display: block;
    text-align: center;
    width: 100% !important;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1)
}

.freelancer-details a.button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .2)
}

.freelancer-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
    font-size: 14.7px
}

.freelancer-details-list ul li {
    display: inline-block;
    margin-right: 25px;
    line-height: 23px;
    color: #212529;
    margin-bottom: 15px;
    text-align: center
}

.freelancer-details-list ul li:last-child {
    margin-right: 0
}

.freelancer-details-list ul li strong {
    display: block;
    color: #0e1133
}

.freelancer-details-list ul li strong i {
    position: relative;
    top: 1px;
    margin-right: -1px;
    margin-left: -2px
}

.utf-manage-resume-detail-item {
    background: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin: 4px 10px 4px 0;
    padding: 2px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-manage-resume-item .utf-manage-resume-detail-item:last-child {
    margin-right: 0
}

.utf-manage-resume-detail-item,
.utf-manage-resume-detail-item a {
    color: #888
}

.utf-manage-resume-detail-item a:hover {
    color: #66676b
}

.utf-manage-resume-detail-item i {
    position: relative;
    top: 2px;
    margin-right: 3px
}

.utf-manage-resume-detail-item i.icon-material-outline-business-center {
    color: #fd963c;
    top: 0
}

.utf-manage-resume-detail-item i.icon-feather-mail {
    color: #ce1d1d
}

.utf-manage-resume-detail-item i.icon-feather-phone {
    color: #2a41e8
}

.utf-manage-resume-detail-item i.icon-material-outline-location-on {
    color: #dc3139;
    top: 2px;
    margin-right: 1px;
    font-size: 15px
}

@media (max-width:1366px) {
    .freelances-grid-layout .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 100px
    }
}

@media (max-width:768px) {
    .freelances-grid-layout.freelancers-container {
        width: 100%
    }

    .freelances-grid-layout .freelancer {
        margin: 0 0 30px 0;
        width: 100%
    }

    .freelancers-container.freelancers-grid-layout {
        width: 100%
    }

    .freelancers-container.freelancers-grid-layout .freelancer {
        width: 100%;
        margin-right: 0
    }
}

@media (max-width:2560px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/4) - 30px)
    }
}

@media (max-width:1920px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/3) - 30px)
    }
}

@media (max-width:1366px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/2) - 30px)
    }
}

@media (max-width:1099px) {
    .full-page-container .freelancers-container {
        width: 100%
    }

    .full-page-container .freelancer {
        width: 100%;
        margin-right: 0
    }
}

.freelancers-container.freelancers-list-layout {
    width: 100%
}

.freelancers-list-layout .freelancer {
    margin: 0 0 25px 0;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 6px;
    z-index: 1;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .05)
}

.freelancers-list-layout .utf-manage-resume-overview-aera {
    text-align: left;
    padding: 25px 30px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.freelancers-list-layout .utf-manage-resume-overview-aera-inner {
    flex: 1;
    display: flex;
    align-items: center
}

.freelancers-list-layout .freelancer-details {
    padding: 25px 30px 25px 0;
    background-color: transparent;
    flex: 0 0 330px
}

.freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
    width: 100px;
    margin: 0
}

.freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-item {
    text-align: left;
    margin: 0 0 0 30px
}

.utf-manage-resume-item .dashboard-status-button {
    display: inline-block
}

.freelancers-list-layout .freelancer-details a.button {
    display: block;
    text-align: center;
    min-width: 50%;
    max-width: 100%;
    width: auto !important;
    transition: .3s;
    float: right;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.freelancers-list-layout .freelancer-details a.button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25)
}

.freelancers-list-layout .bookmark-icon {
    display: none
}

.freelancers-list-layout .freelancer-details-list ul {
    float: right;
    display: block
}

.freelancers-list-layout .freelancer-details-list ul li {
    margin-left: 15px;
    margin-right: 0;
    float: right;
    text-align: right;
    background: #fff;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.freelancers-list-layout .freelancer-details-list ul li i.icon-feather-briefcase {
    color: #12b6e8;
    padding-right: 3px
}

.freelancers-list-layout .freelancer-details-list ul li i.icon-material-outline-account-balance-wallet {
    color: #2a41e8;
    padding-right: 3px
}

.compact-list.freelancers-list-layout .freelancer {
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none
}

.compact-list.freelancers-list-layout .freelancer:hover {
    transform: translateY(0)
}

.compact-list.freelancers-list-layout {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12)
}

.compact-list.freelancers-list-layout .freelancer:nth-child(2n) {
    background-color: #fafafa
}

.compact-list.freelancers-list-layout .freelancer:hover:before {
    opacity: 1
}

.compact-list.freelancers-list-layout .freelancer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    display: block;
    background: #66676b;
    transition: .3s;
    opacity: 0
}

.compact-list.freelancers-list-layout .freelancer:last-of-type {
    border-radius: 0 0 3px 3px;
    overflow: hidden
}

.compact-list.freelancers-list-layout .freelancer:first-of-type {
    border-radius: 3px 3px 0 0;
    overflow: hidden
}

@media (max-width:1366px) {
    .freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 100px
    }
}

@media (max-width:1240px) {
    .freelancers-list-layout .freelancer {
        flex-direction: column
    }

    .freelancers-list-layout .freelancer-details {
        flex: 1;
        padding: 10px 30px 25px 30px
    }

    .freelancers-list-layout .freelancer-details-list ul {
        float: right;
        width: 100%;
        columns: 2
    }

    .freelancers-list-layout .freelancer-details-list ul li {
        margin-left: 0;
        margin-right: 0;
        float: left;
        width: 100%;
        text-align: center
    }

    .freelancers-list-layout .freelancer-details a.button {
        float: none;
        width: 100% !important
    }

    .freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 120px
    }

    .compact-list.freelancers-list-layout .freelancer-details {
        background-color: transparent;
        padding-top: 0
    }
}

@media (max-width:768px) {
    .freelancers-list-layout .utf-manage-resume-overview-aera {
        padding: 20px 30px 15px 30px
    }

    .freelancers-list-layout .freelancer-details {
        padding: 10px 30px 25px 30px
    }

    .freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-item {
        text-align: left;
        margin: 0 0 0 20px
    }
}

.letters-list {
    width: 100%;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 4px;
    padding: 20px
}

.letters-list a {
    display: inline-block;
    font-size: 18px;
    color: #0e1133;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: transparent;
    border-radius: 4px;
    transition: .3s;
    margin: 0 -2px
}

.letters-list a.current {
    margin-right: 0;
    color: #fff;
    font-weight: 600;
    background-color: #66676b;
    box-shadow: 0 2px 8px rgba(102, 103, 107, .25)
}

.letters-list a:hover {
    color: #fff;
    background-color: #0e1133;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.utf-companies-list-aera {
    display: contents;
    width: 100%
}

.utf-companies-list-aera .utf-company-inner-alignment {
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    display: block;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: .3s
}

.utf-companies-list-aera .company {
    padding: 30px 15px;
    display: inline-block;
    width: 100%;
    min-height: 310px;
    border-radius: 4px;
    position: relative;
    overflow: hidden
}

.utf-companies-list-aera .company .featured {
    background-color: #a1d244;
    float: left;
    position: absolute;
    transform: rotate(-45deg);
    left: -45px;
    top: 15px;
    text-align: center;
    width: 150px;
    font-size: 13px;
    margin: 0;
    z-index: 999;
    color: #fff;
    font-weight: 600;
    line-height: 28px;
    border-radius: 0 20px 20px 0
}

.utf-companies-list-aera .utf-pagination-container-aera {
    width: 100%
}

.utf-companies-list-aera .company:hover h4 {
    color: #a1d244
}

.utf-companies-list-aera .company span.dashboard-status-button {
    position: absolute;
    right: 15px;
    top: 15px
}

.utf-companies-list-aera .company .dashboard-status-button.green {
    background: #e0f5d7;
    color: #449626
}

.utf-companies-list-aera .company .utf-job-status-item.green i {
    color: #449626
}

.utf-companies-list-aera .company .dashboard-status-button.yellow {
    background-color: #fbf6dd;
    color: #a1d244
}

.utf-companies-list-aera .company .utf-job-status-item.yellow i {
    color: #a1d244
}

.utf-companies-list-aera .utf-company-inner-alignment:hover {
    transform: scale(1.03);
    transition: .35s
}

.utf-companies-list-aera .company img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: inline-block;
    margin: 0 auto;
    transform: translate3d(0, 0, 0);
    border: 2px solid #eaeff5;
    padding: 2px;
    border-radius: 100px
}

.utf-companies-list-aera .company .company-logo {
    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 20px
}

.utf-companies-list-aera .company h4 {
    color: #0e1133;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
    display: block
}

.utf-companies-list-aera .company p.text-muted {
    color: #888;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    display: block;
    margin-bottom: 5px
}

.utf-companies-list-aera .company span {
    color: #888
}

.utf-companies-list-aera .company span i {
    color: #12b6e8;
    margin-right: 2px
}

.utf-companies-list-aera .company p.text-muted i {
    color: #f42929;
    margin-right: 2px
}

.utf-companies-list-aera .company .utf-star-rating {
    margin-top: 5px;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.not-rated,
.utf-company-not-rated {
    border-radius: 4px;
    background-color: #fff;
    color: #888;
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.freelancer .not-rated,
.freelancer .utf-company-not-rated {
    margin-top: 8px;
    text-align: left
}

@media (max-width:1366px) {
    .letters-list a {
        font-size: 15px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        margin: 0 -1px
    }
}

@media (max-width:767px) {
    .utf-companies-list-aera .company {
        width: 100%;
        min-height: auto
    }
}

button {
    vertical-align: middle
}

a.button,
button.button,
input[type=button],
input[type=submit],
span.button {
    background-color: #66676b;
    top: 0;
    padding: 5px 15px;
    line-height: 24px;
    color: #fff;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all .2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.button i[class^=icon-material],
a.button i[class^=icon-material],
button.button i[class^=icon-material],
input[type=button] i[class^=icon-material],
input[type=submit] i[class^=icon-material] {
    font-size: 18px;
    height: 0;
    width: 18px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px
}

.button i[class^=icon-feather],
a.button i[class^=icon-feather],
button.button i[class^=icon-feather],
input[type=button] i[class^=icon-feather],
input[type=submit] i[class^=icon-feather] {
    font-size: 15px;
    height: 0;
    width: 16px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px
}

a.button.dark,
button.button.dark,
input[type=button].dark,
input[type=submit].dark {
    background-color: #424242;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

a.button.dark i {
    padding-left: 4px
}

a.button.gray,
button.button.gray,
input[type=button].gray,
input[type=submit].gray {
    background-color: #eaeaea;
    color: #222;
    box-shadow: none
}

a.button.gray:hover,
button.button.gray:hover,
input[type=button].gray:hover,
input[type=submit].gray:hover {
    background-color: #e0e0e0
}

body .button i.icon-material-outline-arrow-right-alt {
    font-size: 22px;
    top: 4px
}

.button.full-width {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: block
}

.button.big {
    font-size: 18px;
    padding: 13px 22px
}

body .button.big i {
    font-size: 22px;
    top: 3px;
    position: relative
}

.button.button-slide-out span {
    transform: translateY(0);
    opacity: 1;
    transition: .3s
}

.button.button-slide-out:hover span {
    transform: translateY(-10px);
    opacity: 0;
    display: inline-block;
    transition: .3s
}

.button.button-slide-out i {
    transform: translateY(calc(-50% + 10px));
    opacity: 0;
    display: inline-block;
    transition: .3s;
    position: absolute;
    left: 0;
    right: 0;
    font-size: 18px;
    top: 50%;
    height: 20px
}

.button.button-slide-out:hover i {
    transform: translateY(calc(-50% + 0));
    opacity: 1
}

.move-on-hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1);
    transform: translateY(0);
    transition: .3s
}

.move-on-hover:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .2);
    transform: translateY(-2px)
}

.utf-centered-button {
    text-align: center;
    display: inline-block;
    width: 100%
}

.utf-centered-button .button {
    margin: 0 auto
}

span.bookmark-icon {
    font-size: 20px;
    position: absolute;
    z-index: 101;
    right: 15px;
    top: 20px;
    cursor: pointer;
    background-color: #eee;
    color: silver;
    display: block;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    transition: all .4s;
    line-height: 27px
}

.bookmark-icon.bookmarked {
    animation: bookmarked-shadow .3s
}

@keyframes bookmarked-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 179, 66, .8)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

.bookmark-icon:before {
    transition: transform .4s cubic-bezier(.8, -.41, .19, 2.5);
    font-family: Line-Awesome;
    position: absolute;
    right: 0;
    left: 0;
    text-align: center;
    top: 4px;
    content: "\f233"
}

.bookmark-icon:hover {
    background-color: #a1d244;
    color: #fff
}

.bookmark-icon.bookmarked {
    background-color: #38b653;
    color: #fff
}

.bookmark-icon.bookmarked:before {
    animation: bookmark-icon .5s
}

@keyframes bookmark-icon {
    0% {
        -webkit-transform: scale(.8);
        transform: scale(.8)
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.utf-sidebar-widget-item p.bookmark-text-item {
    text-align: center
}

.bookmark-button {
    background-color: #404040;
    display: block;
    padding: 0;
    position: relative;
    height: 44px;
    line-height: 44px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
    padding-left: 59px;
    border-radius: 4px;
    transition: .4s;
    cursor: pointer;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.bookmark-button .bookmark-icon,
.bookmark-button:hover .bookmark-icon {
    background-color: rgba(255, 255, 255, .05)
}

.bookmark-button .bookmark-icon {
    border-radius: 4px;
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    height: 44px;
    width: 44px;
    border-radius: 4px 0 0 4px;
    pointer-events: none;
    transition: .4s;
    animation: none
}

.bookmark-button .bookmark-icon:before {
    top: 8px;
    color: #fff;
    transition: .4s;
    font-size: 18px
}

.bookmark-button.bookmarked {
    background-color: #0ec235;
    color: #fff;
    box-shadow: 0 3px 12px rgba(56, 182, 83, .5)
}

.bookmark-button.bookmarked .bookmark-icon:before,
.bookmark-button:hover .bookmark-icon:before {
    color: #fff
}

.bookmark-button.bookmarked .bookmark-icon,
.bookmark-button.bookmarked:hover .bookmark-icon {
    background-color: rgba(255, 255, 255, .16)
}

.bookmark-button .bookmark-text,
.bookmark-button.bookmarked .bookmarked-text {
    display: block
}

.bookmark-button .bookmarked-text,
.bookmark-button.bookmarked .bookmark-text {
    display: none
}

.utf-button-sliding-icon {
    text-align: center
}

.utf-button-sliding-icon i {
    opacity: 0;
    max-width: 0;
    transition: .25s;
    display: inline-block;
    transform: translateX(-20px)
}

.utf-button-sliding-icon:hover i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0)
}

.button.utf-button-sliding-icon {
    padding: 5px 15px;
    border: 1px solid #a1d244 !important;
    transition: all .2s ease-in-out;
}

.button.utf-button-sliding-icon:hover {
    padding-right: 20px;
    background-color: transparent !important;
    color: #a1d244 !important;
    border: 1px solid #a1d244 !important;
    transition: all .2s ease-in-out;
}

.btnOutlineJob {
    background: transparent !important;
    color: #a1d244 !important;
    border: 1px solid !important;
    padding: 15px 20px !important;
}

.btnOutlineJob:hover {
    background: #a1d244 !important;
    border: 1px solid #a1d244 !important;
    color: #FFFFFF !important;
}

.btnFilledJob {
    background: #a1d244 !important;
    color: #fff !important;
    border: 1px solid #a1d244 !important;
    padding: 15px 20px !important;
}

.btnFilledJob:hover {
    background: transparent !important;
    color: #a1d244 !important;
    border: 1px solid #a1d244 !important;
}

.button.utf-button-sliding-icon i {
    padding-right: 5px
}

.button.utf-button-sliding-icon:hover i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0)
}

.list-1,
.list-2,
.list-3 {
    padding: 3px 0 0 0;
    font-size: 15px
}

.list-1 li,
.list-2 li,
.list-3 li {
    list-style: none;
    margin: 10px 0;
    line-height: 20px;
    margin-left: 20px;
    position: relative
}

.list-1 li:first-child,
.list-2 li:first-child,
.list-3 li:first-child {
    margin-top: 0
}

.list-1 li:before,
.list-2 li:before,
.list-3 li:before,
.list-4 li:before {
    margin: 0;
    position: relative;
    color: #66676b;
    float: left;
    margin-left: -20px;
    display: block
}

.list-1.gray li:before {
    color: #777
}

.list-2 li {
    margin-left: 28px
}

.list-2 li:before,
.list-3 li:before {
    font-family: Material-Icons;
    content: "\e928";
    font-size: 16px;
    font-weight: 600;
    position: relative;
    top: 0;
    margin-left: -23px
}

.list-3 li:before {
    content: "\e912";
    font-family: Feather-Icons;
    font-weight: 500;
    font-size: 18px
}

.list-1 li:before {
    content: "";
    height: 6px;
    width: 6px;
    background-color: #66676b;
    border-radius: 2px;
    position: relative;
    top: 9px
}

.numbered ol {
    counter-reset: li;
    list-style: none;
    padding: 0;
    margin-left: 18px;
    display: inline-block;
    font-size: 15px
}

.numbered ol li {
    display: inline-block;
    padding: 6px 0;
    width: 100%
}

.numbered ol>li::before {
    content: counter(li);
    counter-increment: li;
    font-size: 15px;
    line-height: 35px;
    width: 36px;
    height: 36px;
    display: inline-block;
    border: 1px solid #0e1133;
    border-radius: 50%;
    text-align: center;
    margin: 0;
    margin-left: 0;
    font-weight: 500;
    color: #0e1133;
    position: relative;
    float: left;
    left: -18px;
    font-size: 15px;
    transform: translateY(-10%)
}

.numbered.color ol>li::before {
    border: 1px solid #66676b;
    color: #66676b
}

.numbered.color.filled ol>li::before {
    border: 1px solid #66676b;
    color: #fff;
    background-color: #66676b
}

mark {
    background-color: #fcf8e3;
    color: #8a803e;
    padding: 1px 5px
}

mark.color {
    background-color: #66676b;
    border-radius: 4px;
    color: #fff
}

#result .success,
.notification {
    line-height: 24px;
    margin-bottom: 15px;
    position: relative;
    padding: 15px 20px;
    padding-right: 50px;
    border-radius: 4px
}

.notification p {
    margin: 0;
    font-size: 15px
}

#result .success,
.notification.success {
    background-color: #ebf6e0;
    border: 1px solid #99c862
}

#result .success,
.notification.success,
.notification.success a,
.notification.success strong {
    color: #5f9025
}

.notification.error {
    background-color: #ffe9e9;
    border: 1px solid #df8f8f
}

.notification.error,
.notification.error a,
.notification.error strong {
    color: #de5959
}

.notification.warning {
    background-color: #fbfadd;
    border: 1px solid #bbb56c
}

.notification.warning,
.notification.warning a,
.notification.warning strong {
    color: #8f872e
}

.notification.notice h4 {
    font-size: 19px;
    margin: 3px 0 15px 0
}

.notification.notice,
.notification.notice a,
.notification.notice h4,
.notification.notice strong {
    color: #3184ae
}

.notification.notice {
    background-color: #e9f7fe;
    border: 1px solid #6fa6c1
}

.notification.notice.large {
    padding: 32px 36px
}

.notification strong {
    font-weight: 500
}

.notification a {
    text-decoration: underline
}

body .notification strong {
    border: none
}

.notification.error .close,
.notification.notice .close,
.notification.success .close,
.notification.warning .close {
    padding: 0 9px;
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    height: 8px;
    width: 8px;
    cursor: pointer
}

.notification.notice p span i {
    font-weight: 500
}

.notification a.button {
    float: right;
    color: #fff;
    margin-top: 3px
}

.notification.notice a.button {
    background-color: #388fc5
}

.notification.warning a.button {
    background-color: #dfbe51
}

.notification.error a.button {
    background-color: #d34c4c
}

.notification.success a.button {
    background-color: #79ba38
}

.notification.closeable a.close:before {
    content: "\ea02";
    font-family: Feather-Icons;
    position: absolute;
    right: 25px;
    top: 0;
    cursor: pointer;
    font-weight: 600
}

table.basic-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    margin-bottom: 15px
}

table.basic-table th {
    background-color: #66676b;
    text-align: left;
    color: #fff;
    vertical-align: top;
    font-weight: 500
}

table.basic-table th:first-child {
    border-radius: 4px 0 0 4px
}

table.basic-table th:last-child {
    border-radius: 0 4px 4px 0
}

table.basic-table td,
table.basic-table th {
    padding: 15px 28px
}

table.basic-table tr:nth-child(odd) {
    background-color: #f4f4f4
}

table.basic-table {
    margin-bottom: 0
}

@media screen and (max-width:600px) {
    table {
        border: 0
    }

    table th {
        display: none
    }

    table tr {
        display: block;
        margin-bottom: 0
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 15px;
        text-align: right
    }

    table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 600
    }

    table td:last-child {
        border-bottom: 0
    }
}

.accordion {
    font-size: 15px;
    width: 100%;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden
}

.accordion .accordion {
    border-radius: 0;
    box-shadow: none
}

.accordion-body,
.accordion-header {
    background: #fff
}

.accordion-header {
    padding: 15px 25px;
    background: #66676b;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s;
    position: relative;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, .15)
}

.accordion .accordion .accordion-header {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .07)
}

.accordion-header:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: "";
    opacity: 0;
    transition: .3s
}

.utf-accordion-content p:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.accordion-body {
    background: #fff;
    color: #222;
    display: none
}

.utf-accordion-content {
    padding: 25px;
    font-size: 15px;
    line-height: 28px
}

.utf-accordion-item.active:last-child .accordion-header {
    border-radius: none
}

.accordion:first-child>.utf-accordion-item>.accordion-header {
    border-bottom: 1px solid transparent
}

.utf-accordion-item>.accordion-header:after {
    content: "\e910";
    font-family: Feather-Icons !important;
    font-size: 20px;
    float: right;
    position: relative;
    top: -1px;
    font-weight: 400;
    transition: .3s all;
    transform: rotate(270deg)
}

.utf-accordion-item.active>.accordion-header:after {
    transform: rotate(90deg)
}

.utf-accordion-item.active .accordion .accordion-header:before {
    opacity: 0
}

.utf-accordion-item .utf-accordion-item .accordion-header {
    background: #f7f7f7;
    color: #222
}

.tabs ul {
    padding: 0;
    list-style: none;
    margin: 0
}

.tabs {
    z-index: 15px;
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    margin: 0;
    overflow: hidden
}

.tabs-header {
    position: relative;
    background: #66676b;
    overflow: hidden
}

.tabs-header .tab-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    width: auto;
    height: 100%;
    transition: .3s ease;
    opacity: .08;
    z-index: 90
}

.tabs-header ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% - 100px);
    position: relative;
    z-index: 100
}

.tabs-header li {
    transition: .3s ease
}

.tabs-header a {
    z-index: 1;
    display: block;
    box-sizing: border-box;
    padding: 15px 25px;
    color: #fff;
    font-weight: 500;
    text-decoration: none
}

.tabs-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: #fff;
    user-select: none;
    font-size: 19px
}

.tabs-nav i {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    height: 30px;
    width: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 4px;
    text-align: center;
    position: relative;
    z-index: 101;
    margin-left: 5px;
    transition: .3s
}

.tabs-nav i:hover {
    background-color: rgba(255, 255, 255, .15)
}

.tabs-content {
    position: relative;
    transition: .3s ease;
    overflow: hidden
}

.tabs-content .tab {
    padding: 25px
}

.tabs-content .tab p:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

.tabs-content:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    box-shadow: 0 0 20px 10px #fff
}

.tabs-content .tab {
    display: none
}

.tabs-content .tab.active {
    display: block
}

@media (max-width:992px) {
    .tabs-nav {
        display: none
    }

    .tabs-header ul {
        flex-direction: column;
        width: 100%
    }

    .tab-hover {
        display: none
    }

    .tabs-header a {
        box-shadow: 0 -1px 0 rgba(255, 255, 255, .15)
    }

    .tabs-header ul li.active a {
        background-color: rgba(255, 255, 255, .07)
    }
}

.copy-url {
    display: flex
}

.copy-url input {
    border-radius: 4px 0 0 4px;
    border-right: 0
}

.copy-url .copy-url-button {
    min-width: 48px;
    background-color: #66676b;
    color: #fff;
    border-radius: 0 4px 4px 0
}

.share-buttons {
    display: block
}

.share-buttons-trigger {
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    color: #a0a0a0;
    font-size: 18px;
    background-color: #f0f0f0;
    border-radius: 4px;
    transition: .4s;
    cursor: default
}

.share-buttons-trigger i {
    position: relative;
    top: 1px
}

.share-buttons-content {
    display: inline-block;
    position: relative;
    width: calc(100% - 60px)
}

.share-buttons-content span {
    margin-left: 10px;
    color: #888;
    cursor: default;
    padding: 10px 0;
    display: inline-block;
    transition: .4s
}

.share-buttons-content span strong {
    color: #66676b;
    font-weight: 600
}

.share-buttons:hover .share-buttons-content span {
    opacity: 0;
    transition: .2s
}

.share-buttons-icons {
    position: absolute;
    left: 5px;
    top: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all .4s cubic-bezier(.5, -.41, .19, 2)
}

.share-buttons:hover .share-buttons-icons {
    opacity: 1;
    transform: translate(0)
}

.share-buttons-icons li {
    display: inline-block;
    float: left
}

.share-buttons-icons li:first-child a {
    border-radius: 4px 0 0 4px
}

.share-buttons-icons li:last-child a {
    border-radius: 0 4px 4px 0
}

.share-buttons-icons li a {
    height: 44px;
    width: 44px;
    display: inline-block;
    line-height: 44px;
    text-align: center;
    background-color: #0e1133;
    color: #fff;
    font-size: 15px
}

.share-buttons-icons li a i {
    position: relative;
    top: 1px
}

.utf-job-listing .utf-job-listing-footer ul li .utf-verified-badge,
.utf-job-listing-company .utf-verified-badge {
    position: relative;
    display: inline-block;
    transform: scale(.7);
    top: 2px;
    margin-left: -2px
}

.utf-verified-badge {
    position: relative;
    height: 25px;
    width: 25px;
    display: inline-block;
    background-color: #38b653;
    border-radius: 50%;
    text-align: center;
    z-index: 10;
    font-weight: 500
}

.utf-verified-badge:before {
    content: "\e92b";
    font-family: Feather-Icons;
    font-size: 15px;
    color: #fff;
    position: relative;
    top: 0;
    line-height: 32px
}

.utf-manage-resume-avatar .utf-verified-badge:before,
.utf-manage-resume-item .utf-verified-badge:before {
    top: -4px
}

.utf-manage-resume-item .utf-verified-badge {
    top: 5px;
    margin-left: 4px
}

.utf-manage-resume-item .utf-verified-badge {
    height: 22px;
    width: 22px
}

.utf-job-listing .utf-job-listing-company-logo .utf-verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(7px, 7px)
}

.utf-verified-badge-with-title {
    position: relative;
    height: 26px;
    display: flex;
    top: 1px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    background-color: #30ab4a;
    text-align: center;
    z-index: 10;
    font-weight: 500;
    border-radius: 30px;
    padding: 0 10px 0 0;
    margin: 0;
    overflow: hidden;
    padding-left: 34px;
    line-height: 27px
}

.utf-verified-badge-with-title:before {
    content: "\e92b";
    font-family: Feather-Icons;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 26px;
    height: 26px;
    width: 26px;
    display: inline-block;
    background-color: #38b653
}

.utf-star-rating {
    display: inline-block
}

.utf-star-rating .star {
    display: inline-block;
    margin: 0;
    padding: 0;
    top: -1px;
    float: left;
    margin-right: 0;
    position: relative
}

.utf-star-rating .star.half:after,
.utf-star-rating .star:before {
    font-family: Material-Icons;
    content: "\e988";
    display: block;
    color: #ffc000;
    font-size: 20px
}

.utf-star-rating .star.empty:before {
    color: #ddd
}

.rating:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.utf-star-rating .star.half:before {
    color: #ddd
}

.utf-star-rating .star.half:after {
    color: #ffc000;
    position: absolute;
    top: 0;
    width: 50%;
    display: block;
    height: 100%;
    overflow: hidden
}

.utf-star-rating:before {
    content: attr(data-rating);
    float: right;
    border-radius: 4px;
    background-color: #38b653;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    padding: 2px 7px;
    position: relative;
    top: 4px;
    margin-left: 8px
}

.utf-star-rating.no-stars .star {
    display: none
}

.utf-star-rating.no-stars:before {
    margin-right: 0
}

.leave-rating {
    height: 24px;
    float: left;
    position: relative
}

.leave-rating:hover input[type=radio]:checked~label {
    color: #dadada
}

.leave-rating input[type=radio] {
    display: inline-block;
    width: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    margin-left: 50%;
    left: 0;
    top: 0;
    transform: translateX(-50%)
}

.leave-rating input[type=radio]:checked~label {
    color: #a1d244
}

.leave-rating label {
    font-size: 24px;
    float: right;
    letter-spacing: 0;
    color: #dadada;
    cursor: pointer;
    transition: .3s
}

.leave-rating label:hover,
.leave-rating label:hover~label {
    color: #a1d244 !important
}

.leave-rating-title {
    display: block;
    margin: 0 0 4px 0
}

.utf-welcome-text-item .leave-rating-container {
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
    left: 50%;
    width: 100%;
    display: block
}

.utf-welcome-text-item .leave-rating {
    position: relative;
    left: 50%;
    transform: translateX(-50%) scale(1.2)
}

.ripple-effect,
.utf-ripple-effect-dark {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.ripple-effect span.ripple-overlay,
.utf-ripple-effect-dark span.ripple-overlay {
    animation: ripple .9s;
    border-radius: 100%;
    background: #fff;
    height: 12px;
    position: absolute;
    width: 12px;
    line-height: 12px;
    opacity: .1;
    pointer-events: none
}

.utf-ripple-effect-dark span.ripple-overlay {
    background: #000;
    opacity: .07
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(4);
        transform: scale(4)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(40);
        transform: scale(40)
    }
}

.utf-input-with-icon {
    display: block;
    position: relative
}

.utf-input-with-icon input {
    padding-right: 45px
}

.utf-input-with-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 20px;
    color: #a0a0a0;
    font-style: normal;
    cursor: pointer;
    pointer-events: pointer
}

.utf-input-with-icon i.currency {
    font-size: 15px
}

.utf-input-with-icon-left {
    position: relative
}

.utf-input-with-icon-left input {
    padding-left: 65px
}

.utf-input-with-icon-left i {
    position: absolute;
    top: 0;
    color: #fff;
    text-align: center;
    line-height: 44px;
    width: 48px;
    height: 48px;
    font-size: 18px;
    background-color: #424242;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    display: block;
    border-radius: 4px 0 0 4px
}

.utf-input-with-icon-left.utf-no-border i {
    border: none
}

.keywords-container {
    margin-bottom: -15px
}

.keywords-list {
    display: block;
    float: left;
    height: 0
}

.keyword {
    background-color: rgba(102, 103, 107, .07);
    color: #66676b;
    display: inline-block;
    float: left;
    padding: 0;
    border-radius: 4px;
    cursor: default;
    margin: 0 7px 7px 0;
    height: 35px;
    line-height: 35px;
    box-sizing: border-box;
    animation: KeywordIn .3s ease-in-out;
    animation-fill-mode: both;
    transition: .4s;
    overflow: hidden;
    max-width: 100%;
    font-size: 14.7px
}

@keyframes KeywordIn {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

.keyword.keyword-removed {
    max-width: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    animation: KeywordOut .4s ease-in-out;
    animation-fill-mode: both;
    pointer-events: none
}

@keyframes KeywordOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0
    }

    100% {
        opacity: 0;
        margin-top: -35px
    }
}

.keyword-text {
    padding-right: 12px
}

.keyword .keyword-remove:before {
    display: inline-block;
    cursor: pointer;
    font-family: Feather-Icons;
    content: "\ea02";
    line-height: 20px;
    position: relative;
    top: 2px;
    margin-right: 4px;
    margin-left: 10px;
    font-size: 15px
}

.keyword-input-container {
    position: relative
}

.keyword-input-container .keyword-input-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    padding: 0;
    color: #fff;
    background-color: #66676b;
    border-radius: 40px;
    margin: 6px;
    font-size: 22px;
    text-align: center;
    line-height: 36px
}

.keyword-input-container .keyword-input-button i {
    color: #fff;
    position: relative;
    top: 2px
}

input.keyword-input {
    margin: 0 0 15px 0
}

.utf-tags-container-item {
    display: block
}

.utf-tags-container-item input[type=checkbox] {
    display: none
}

.utf-tags-container-item input[type=checkbox]+label {
    transition: .3s;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #f4f4f4;
    color: #424242;
    display: inline-block;
    padding: 8px 15px;
    margin: 0;
    line-height: 26px
}

.utf-tags-container-item input[type=checkbox]+label:hover {
    color: #fff;
    background-color: #a1d244
}

.utf-tags-container-item input[type=checkbox]:checked+label {
    background-color: #66676b;
    color: #fff;
    transition: .3s
}

.utf-tags-container-item input[type=checkbox]+label:before {
    font-family: Feather-Icons;
    content: "\e92c";
    font-size: 18px;
    transition: all .35s cubic-bezier(.5, -.41, .19, 2), max-width .3s, margin .3s;
    max-width: 0;
    display: inline-block;
    position: relative;
    top: 3px;
    margin: 0;
    opacity: 0;
    color: #fff;
    line-height: 0;
    transform: scale(.5)
}

.utf-tags-container-item input[type=checkbox]:checked+label:before {
    max-width: 30px;
    opacity: 1;
    transform: scale(1);
    margin: 0 10px 0 0
}

.utf-tags-container-item .tag {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    overflow: hidden
}

.utf-tags-container-item .tag:last-child {
    margin-bottom: 0
}

.utf-tags-container-item .tag label {
    width: 100%
}

.switches-list .utf-switch-container-item {
    width: 100%
}

.switches-list .utf-switch-container-item:last-child label {
    margin-bottom: 0
}

.utf-switch-container-item {
    display: inline-block;
    cursor: pointer
}

.utf-notify-box-aera .utf-switch-container-item {
    cursor: inherit
}

label.switch {
    position: relative
}

.switches-list .utf-switch-container-item label {
    cursor: pointer;
    position: relative;
    padding-left: 45px;
    line-height: 26px
}

.utf-sidebar-widget-item .switches-list .utf-switch-container-item {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.utf-sidebar-widget-item .switches-list .utf-switch-container-item:last-child {
    border-bottom: 0
}

.switch-button {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 50px;
    transition: .4s;
    margin: 0 7px 0 0;
    top: 4px;
    position: absolute;
    top: 2px;
    left: 0
}

.utf-notify-box-aera .switch-button {
    top: 0
}

.utf-notify-box-aera .utf-switch-container-item {
    top: 1px;
    position: relative
}

.switch span.switch-text {
    display: block;
    padding-left: 48px;
    font-size: 15px;
    line-height: 22px;
    color: #222
}

.switch input {
    display: none
}

.switch.interactive-effect input:checked+.switch-button:before {
    animation: switch-shadow-color .4s
}

.switch.interactive-effect .switch-button:before {
    animation: switch-shadow .4s
}

@keyframes switch-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .3)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes switch-shadow-color {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 103, 107, .6)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

.switch-button:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    bottom: 2px;
    left: 2px;
    background-color: #fff;
    transition: .4s, box-shadow .3s;
    border-radius: 50px
}

input:checked+.switch-button {
    background-color: #66676b
}

input:checked+.switch-button:before {
    transform: translateX(14px)
}

.utf-radio-btn-list .radio {
    width: 100%;
    padding-bottom: 7px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.utf-radio-btn-list .radio:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.utf-radio-btn-list .checkbox {
    width: 100%;
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.utf-radio-btn-list .checkbox:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.utf-radio-btn-list .checkbox label {
    margin-bottom: 4px
}

.radio {
    display: inline-block;
    vertical-align: top
}

.radio label {
    margin: 3px 0;
    cursor: pointer;
    position: relative;
    padding-left: 29px;
    line-height: 25px
}

.radio input[type=radio] {
    position: absolute;
    opacity: 0
}

.radio input[type=radio]+label .radio-label {
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 2px solid #b4b4b4;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 5px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    background-color: #fff;
    box-shadow: inset 0 0 0 8px #fff;
    z-index: 100;
    position: absolute;
    top: 2px;
    left: 0
}

.radio input[type=radio]+label .radio-label:after {
    background-color: #66676b;
    content: "";
    top: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    opacity: 1;
    transition: .3s;
    border-radius: 4px;
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99
}

.radio input[type=radio]:checked+label .radio-label {
    background-color: #66676b;
    border-color: #66676b;
    box-shadow: inset 0 0 0 3px #fff
}

.radio-label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: transparent;
    display: block
}

.interactive-effect label .radio-label:before {
    animation: radius-shadow .4s
}

@keyframes radius-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 103, 107, .4)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

.small-label {
    border-radius: 4px;
    display: inline-block;
    background: #e0f5d7;
    color: #449626;
    padding: 0 8px;
    line-height: 27px;
    height: 26px;
    margin-left: 5px;
    position: relative;
    top: -1px
}

.checkbox {
    display: inline-block;
    margin-bottom: 0
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    line-height: 25px
}

.checkbox label span.checkbox-icon {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #b4b4b4;
    height: 20px;
    width: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 40px;
    transition: .3s;
    position: absolute;
    left: 0;
    top: 2px
}

.checkbox input+label span.checkbox-icon:after {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: scale(.5) rotate(45deg);
    transition: all .35s cubic-bezier(.3, -.41, .19, 2), opacity .3s
}

.checkbox input:checked+label span.checkbox-icon {
    border-color: #66676b;
    background-color: #66676b
}

.checkbox input:checked+label span.checkbox-icon:after {
    transform: scale(1) rotate(45deg);
    opacity: 1
}

.uploadButton {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 100%;
    font-style: normal;
    font-size: 15px
}

.uploadButton .uploadButton-input {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    pointer-events: none
}

.uploadButton .uploadButton-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 44px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    color: #66676b;
    background-color: transparent;
    border: 1px solid #66676b;
    flex-direction: row;
    transition: .3s;
    margin: 0;
    outline: 0;
    box-shadow: 0 3px 10px rgba(102, 103, 107, .1)
}

.uploadButton .uploadButton-button:hover {
    background-color: #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15);
    color: #fff
}

.uploadButton .uploadButton-file-name {
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex: 1;
    box-sizing: border-box;
    padding: 0 10px;
    padding-left: 15px;
    font-size: 15px;
    font-weight: 500;
    min-height: 45px;
    top: 0;
    position: relative;
    color: #212529;
    background: #fbfdff;
    border: 1px solid #dde6ef;
    overflow: hidden;
    line-height: 22px;
    margin-left: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05)
}

.intro-banner {
    padding: 112px 0;
    position: relative
}

.intro-banner.big-padding {
    padding: 112px 0
}

.intro-banner .container {
    z-index: 100;
    position: relative
}

.intro-banner:after,
.intro-banner:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    opacity: .7;
    background: #0c1017
}

.intro-banner:after {
    z-index: 5;
    background-color: #fafafa
}

.intro-banner .background-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 60%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    overflow: hidden
}

.intro-banner.disable-gradient:before {
    background: #f2f2f2;
    opacity: .85
}

.intro-banner.disable-gradient .background-image-container {
    left: 0;
    width: 100%
}

.banner-headline {
    display: block;
    max-width: 60%;
    text-align: center;
    margin: 0 auto
}

.banner-headline h1,
.banner-headline h2,
.banner-headline h3,
.banner-headline h4 {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, .75);
    line-height: 42px
}

.banner-headline strong {
    font-weight: 600;
    color: #fff
}

.banner-headline strong.color {
    color: #66676b
}

.utf-banner-headline-text-part {
    margin: 0;
    display: block;
    text-align: center
}

.utf-banner-headline-text-part h3 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    ;
    font-weight: 400;
    font-size: 36px;
    color: #fff;
    line-height: 60px
}

.utf-banner-headline-text-part span {
    font-size: 20px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    line-height: 28px;
    margin-top: 5px;
    display: inline-block
}

.utf-banner-headline-text-part span.typed-words {
    font-size: 36px;
    color: #a1d244;
    font-weight: 500;
    line-height: 50px;
    margin-top: 5px;
    display: inline-block
}

span.typed-cursor {
    font-size: 36px;
    color: transparent;
    font-weight: 600;
    line-height: 50px;
    display: none
}

.dark-overlay .utf-banner-headline-text-part h3 {
    color: #fff
}

.dark-overlay .utf-banner-headline-text-part span {
    color: rgba(255, 255, 255, .8)
}

.utf-intro-banner-search-form-block {
    display: flex;
    width: 100%;
    background-color: #fbfdff;
    border-radius: 50px;
    border: 5px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .09)
}

.utf-video-container-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    background-size: cover;
    background-position: 50%
}

.utf-video-container-block video {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -10;
    background-size: cover;
    transition: 1s opacity;
    position: absolute;
    z-index: 9
}

.utf-intro-search-field-item {
    padding: 10px 12px;
    border-right: 1px solid #e4e4e4;
    flex: 1;
    align-items: center;
    display: flex;
    position: relative
}

.utf-intro-search-field-item .field-title {
    content: attr(data-field-tiele);
    position: absolute;
    top: 0;
    left: 0;
    background: #66676b;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    line-height: 22px;
    transform: translateY(calc(-100% - 15px));
    cursor: default
}

.utf-intro-banner-search-form-block .utf-intro-search-field-item:nth-last-child(2) {
    margin-right: 10px
}

.utf-intro-search-button {
    margin: 8px;
    margin-left: 0;
    flex: auto;
    flex-grow: 0;
    display: flex;
    align-items: center
}

.utf-intro-search-button .button {
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px
}

.utf-intro-search-button .button:hover {
    background: #424242
}

.utf-intro-banner-search-form-block input:focus {
    box-shadow: none
}

.utf-intro-banner-search-form-block input::placeholder {
    color: #888
}

.utf-intro-banner-search-form-block .utf-input-with-icon {
    align-self: center;
    flex: 1
}

.utf-intro-banner-search-form-block input {
    padding: 10px 15px
}

.utf-intro-banner-search-form-block input {
    box-shadow: none;
    font-size: 18px;
    margin: 0;
    padding-left: 35px
}

.utf-intro-banner-search-form-block i {
    left: 20px;
    position: absolute;
    font-size: 18px;
    color: #b0b0b0
}

.utf-intro-search-button button i {
    left: 0;
    color: #fff
}

.utf-intro-banner-search-form-block .utf-input-with-icon input {
    padding: 10px 15px;
    padding-left: 43px
}

.utf-intro-banner-search-form-block .utf-input-with-icon i {
    position: absolute;
    right: auto;
    left: 10px;
    top: calc(50% - 1px);
    font-size: 24px;
    color: #b0b0b0
}

.utf-intro-search-field-item.with-autocomplete .pac-container {
    border: none;
    padding-top: 0;
    z-index: 9;
    left: 0 !important;
    top: 100% !important;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    width: 100% !important;
    margin-top: 0;
    overflow: visible
}

.utf-intro-search-field-item.with-autocomplete .pac-container:before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 5px;
    display: block;
    top: -5px;
    left: 0
}

.utf-intro-search-field-item .bootstrap-select.btn-group button {
    padding: 0 15px;
    box-shadow: none;
    font-size: 18px
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .utf-intro-search-field-item .field-title {
        transform: translateY(-100%);
        margin-top: -15px
    }

    .utf-intro-banner-search-form-block input {
        line-height: 20px
    }

    .utf-intro-search-field-item .bootstrap-select.open .dropdown-menu {
        top: 55px
    }
}

.intro-stats {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
    width: 100%
}

.intro-stats li {
    background: rgba(255, 255, 255, .15);
    display: inline-block;
    margin-right: 20px;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .35s
}

.intro-stats li:hover {
    background: rgb(11 102 36);
    transform: scale(1.04);
    transition: .35s
}

.intro-stats li i {
    display: inline-block;
    margin-right: 15px;
    text-align: center;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 35px;
    font-weight: 400;
    border-radius: 4px;
    float: left;
    padding: 10px
}

.intro-stats li sub.counter_item {
    display: inline-block;
    line-height: 26px;
    text-align: left
}

.intro-stats li:last-child {
    margin-right: 0
}

.intro-stats li span,
.intro-stats li strong {
    display: block;
    margin: 0;
    padding: 0
}

.intro-stats li strong {
    font-weight: 600;
    color: #fff;
    font-size: 28px;
    margin-bottom: 2px
}

.intro-stats li span {
    font-weight: 300;
    color: rgba(255, 255, 255, .8);
    font-size: 15px
}

.intro-banner.dark-overlay:before {
    background: #0c1017;
    opacity: .55
}

.intro-banner.dark-overlay .background-image-container {
    left: 0;
    width: 100%;
    background-position: 100%
}

.intro-banner.dark-overlay .banner-headline h1,
.intro-banner.dark-overlay .banner-headline h2,
.intro-banner.dark-overlay .banner-headline h3,
.intro-banner.dark-overlay .banner-headline h4,
.intro-banner.dark-overlay .banner-headline strong,
.intro-banner.dark-overlay .intro-stats li span {
    color: rgba(255, 255, 255, .7)
}

.intro-banner.dark-overlay .banner-headline strong,
.intro-banner.dark-overlay .intro-stats li strong {
    color: #fff
}

.intro-banner.dark-overlay .utf-intro-banner-search-form-block {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .2)
}

@media (max-width:1366px) {

    .banner-headline h1,
    .banner-headline h2,
    .banner-headline h3,
    .banner-headline h4 {
        font-size: 26px;
        line-height: 42px
    }
}

@media (max-width:1240px) {
    .banner-headline {
        max-width: 65%
    }

    .utf-boxed-list-item-ul .bid {
        display: block
    }

    .utf-boxed-list-item-ul .bid-rate {
        margin-top: 20px;
        width: 100%
    }

    .utf-boxed-list-item-ul .bid .bids-avatar {
        float: left
    }
}

@media (max-width:992px) {
    .utf-intro-search-field-item .bootstrap-select.btn-group .dropdown-toggle .filter-option {
        height: auto;
        line-height: 20px
    }

    .utf-intro-banner-search-form-block .utf-intro-search-field-item:nth-last-child(2) {
        margin-right: 0
    }

    .intro-banner {
        padding: 70px 0
    }

    .banner-headline {
        max-width: 100%
    }

    .banner-headline h1,
    .banner-headline h2,
    .banner-headline h3,
    .banner-headline h4 {
        font-size: 24px;
        line-height: 38px
    }

    .intro-banner.dark-overlay .utf-intro-banner-search-form-block {
        box-shadow: none
    }

    .intro-banner.big-padding {
        padding: 70px 0
    }

    .utf-banner-headline-text-part {
        margin-bottom: 0
    }

    .utf-banner-headline-text-part h3 {
        font-size: 28px;
        line-height: 40px
    }

    .utf-banner-headline-text-part span.typed-words,
    span.typed-cursor {
        font-size: 28px;
        line-height: 40px
    }

    .utf-banner-headline-text-part span {
        font-size: 17px;
        font-weight: 500;
        line-height: 28px
    }

    .intro-banner .background-image-container {
        background-size: cover;
        height: 100%;
        width: 100%;
        left: 0
    }

    .utf-intro-banner-search-form-block .utf-intro-search-field-item .bootstrap-select.btn-group button,
    .utf-intro-banner-search-form-block input {
        height: 56px;
        padding: 15px 22px
    }

    .utf-intro-banner-search-form-block input {
        padding-left: 50px
    }

    .utf-intro-banner-search-form-block .utf-input-with-icon i {
        left: 17px
    }

    .utf-intro-banner-search-form-block .utf-input-with-icon input {
        padding-left: 50px
    }

    .utf-intro-banner-search-form-block.margin-top-100,
    .utf-intro-banner-search-form-block.margin-top-85,
    .utf-intro-banner-search-form-block.margin-top-90,
    .utf-intro-banner-search-form-block.margin-top-95 {
        margin-top: 20px !important
    }

    .utf-intro-banner-search-form-block {
        background: rgba(255, 255, 255, .2) !important;
        border-radius: 10px;
        padding: 15px;
        flex-direction: column;
        background: 0 0;
        box-shadow: none;
        margin-top: 0
    }

    .utf-intro-banner-search-form-block .utf-intro-search-field-item {
        padding: 0;
        border-right: 0;
        border-radius: 4px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
        margin-bottom: 15px
    }

    .utf-intro-banner-search-form-block .utf-intro-search-field-item.with-label {
        margin-top: 80px
    }

    .utf-intro-banner-search-form-block .utf-intro-search-button {
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0
    }

    .utf-intro-search-button .button {
        width: 100%;
        border-radius: 4px
    }

    .intro-stats li {
        margin: 0 5px 5px 0;
        padding: 10px 15px
    }

    .intro-banner.dark-overlay .intro-stats li strong {
        font-size: 24px
    }

    .intro-stats li i {
        font-size: 34px;
        padding: 8px
    }

    .intro-stats li span {
        font-size: 15px
    }
}

.utf-categories-container-block {
    display: flex;
    flex-wrap: wrap
}

.utf-category-box {
    background: #fbfbfb;
    flex: 0 0 33%;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0;
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 40px 10px 30px 10px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: .35s
}

.utf-category-box:hover {
    border-radius: 4px
}

.main_popular_categories {
    display: inline-block;
    margin: 30px auto 0 auto;
    width: 100%
}

ul.main_popular_categories_list {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 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 {
    position: relative;
    width: 130px;
    height: 100px;
    display: block;
    overflow: hidden;
    color: #fff;
    border-radius: 4px;
    padding: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.utf_box {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(48, 48, 48, .6);
    border-radius: 4px;
    padding-top: 20px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 0 16px 0 rgba(2, 2, 2, .1);
    -webkit-box-shadow: 0 0 16px 0 rgba(2, 2, 2, .1)
}

.utf_box i {
    color: #a1d244;
    font-size: 30px;
    margin-bottom: 5px
}

.utf_box p {
    font-size: 15px;
    font-weight: 600
}

@media only screen and (min-width:768px) and (max-width:991px) {
    ul.main_popular_categories_list li a {
        width: 120px
    }
}

ul.main_popular_categories_list li a:hover {
    background: #a1d244;
    color: #fff;
    transform: scale(1.04);
    transition: .35s
}

ul.main_popular_categories_list li a:hover .utf_box {
    background: #a1d244;
    transform: scale(1.04)
}

ul.main_popular_categories_list li a:hover .utf_box i {
    color: #fff
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .utf-category-box {
        max-width: 25%;
        text-align: center
    }

    .utf-category-box-counter-item {
        width: 50px !important
    }
}

.utf-category-box-icon-item {
    font-size: 36px;
    line-height: 32px;
    color: #66676b;
    position: relative
}

.utf-category-box-icon-item i {
    background: #fff;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 64px;
    font-size: 34px;
    transition: .35s;
    margin-bottom: 12px;
    border-radius: 40px;
    margin-bottom: 12px;
    border: 3px solid rgba(0, 0, 0, .04)
}

.utf-opening-position-counter-item {
    width: auto;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 4px;
    top: 10px;
    right: 10px;
    padding: 0 8px;
    color: #909090;
    position: absolute;
    background: rgba(0, 0, 0, .06);
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
    transition: .35s
}

.utf-category-box-counter-item {
    width: auto;
    height: 24px;
    font-size: 15px;
    line-height: 25px;
    border-radius: 4px;
    padding: 0 8px;
    color: #0e1133;
    font-weight: 600;
    display: inline-block;
    margin: 10px auto;
    transition: .35s;
    background: rgb(205 205 205 / 20%)
}

.utf-category-box-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0e1133;
    margin: 0;
    padding: 0;
    transition: .35s
}

.utf-category-box-content p {
    color: #888;
    margin: 0;
    padding: 0;
    line-height: 24px;
    margin-top: 5px;
    transition: .35s
}

.utf-category-box:hover {
    background: #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .2);
    color: #fff;
    transform: scale(1.05);
    z-index: 9
}

.utf-category-box:hover .utf-category-box-content h3 {
    color: #fff
}

.utf-category-box:hover .utf-category-box-content p {
    color: rgba(255, 255, 255, .7)
}

.utf-category-box:hover .utf-category-box-counter-item,
.utf-category-box:hover .utf-opening-position-counter-item {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.utf-category-box p {
    font-size: 13px;
    margin: 0;
    padding: 0
}

@media (max-width:1240px) {
    .utf-category-box {
        flex: 0 0 33.3%
    }

    .freelancers-list-layout .utf-manage-resume-overview-aera {
        padding: 20px 30px 15px 30px
    }
}

@media (max-width:768px) {
    .utf-category-box {
        flex: 0 0 50%
    }
}

@media (max-width:480px) {
    .utf-category-box {
        flex: 0 0 100%;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 4px
    }

    .utf-category-box:last-child {
        margin-bottom: 0
    }
}

.photo-box {
    border-radius: 6px;
    height: 250px;
    display: block;
    position: relative;
    background-size: cover;
    background-position: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    transition: .4s;
    margin: 0 0 25px 0
}

.photo-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0c1017;
    opacity: .65;
    border-radius: 6px;
    transition: .4s
}

.photo-category-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0c1017;
    opacity: .8;
    border-radius: 6px;
    transition: .4s
}

.utf-opening-box-content-part {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center
}

.utf-opening-box-content-part h3 {
    color: #fff;
    font-size: 20px;
    line-height: 28px
}

.utf-opening-box-content-part span {
    color: #fff;
    background: rgba(255, 255, 255, .15);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 10px;
    line-height: 20px;
    margin-top: 8px;
    display: inline-block
}

.photo-box:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25);
    transform: scale(1.05)
}

.photo-box:hover:before {
    background: #66676b;
    opacity: .85
}

.photo-box.small {
    height: 220px;
    margin-bottom: 30px;
    position: relative
}

.photo-box.small:hover {
    transform: scale(1.05);
    z-index: 9
}

.photo-box.small .utf-opening-box-content-part {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: auto;
    top: 55%;
    transform: translateY(-50%)
}

.photo-box.small .utf-opening-box-content-part h3 {
    font-size: 15px;
    font-weight: 600
}

.photo-box.small .utf-opening-box-content-part span {
    color: #fff;
    background: #66676b;
    font-size: 15px;
    line-height: 18px;
    margin-top: 5px;
    transition: .3s
}

.photo-box.small .utf-opening-position-counter-item {
    width: auto;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 4px;
    top: 10px;
    right: 10px;
    padding: 0 8px;
    color: #fff;
    position: absolute;
    background: #a1d244;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto;
    transition: .35s
}

.photo-box.small:hover .utf-opening-position-counter-item {
    color: #fff;
    background: rgba(255, 255, 255, .2)
}

.photo-box.small:hover .utf-opening-box-content-part span {
    color: #fff;
    background: rgba(255, 255, 255, .2)
}

.utf-plan-radios-item {
    display: block;
    margin: 0 auto;
    text-align: center
}

.utf-plan-radios-item.text-align-left {
    text-align: left
}

.utf-plan-radios-item .radio {
    background: #fbfdff;
    padding: 8px 20px;
    margin-right: 20px;
    border-radius: 4px;
    border: 1px solid #dde6ef;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.utf-plan-radios-item .radio:last-child {
    margin-right: 0
}

.utf-pricing-plans-container-block {
    border-radius: 4px;
    display: flex
}

.pricing-plan {
    flex: 1;
    padding: 35px 17px;
    position: relative
}

.pricing-plan h3 {
    font-size: 20px;
    font-weight: 600
}

.pricing-plan p {
    display: inline-block;
    margin-bottom: 20px
}

.utf-pricing-yearly-label {
    display: none
}

.billed-yearly .utf-pricing-yearly-label {
    display: block
}

.billed-yearly .utf-pricing-monthly-label {
    display: none
}

.utf-pricing-plan-label {
    background: #f6f6f6;
    border-radius: 40px;
    font-size: 15px;
    color: #888;
    text-align: center;
    line-height: 24px;
    padding: 15px;
    width: auto;
    height: auto;
    margin: 0 20px 20px;
    padding: 6px 0
}

.utf-pricing-plan-label strong {
    font-size: 18px;
    font-weight: 500;
    color: #0e1133;
    margin-right: 5px;
    display: inline-block;
}

.recommended .utf-pricing-plan-label {
    background-color: rgba(102, 103, 107, .06);
    color: #f9f9f9
}

.recommended .utf-pricing-plan-label strong {
    color: #fff
}

.utf-pricing-plan-features-item strong {
    color: #0e1133;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 24px;
    display: inline-block
}

.utf-pricing-plan-features-item {
    margin-bottom: 30px
}

.utf-pricing-plan-features-item ul li .utf-verified-badge {
    height: 18px;
    width: 18px;
    top: 2px;
    margin-right: 3px
}

.utf-pricing-plan-features-item ul li .utf-verified-badge::before {
    font-size: 15px;
    top: -1px;
    line-height: 20px
}

.utf-pricing-plan-features-item ul {
    padding: 0;
    margin: 0
}

.utf-pricing-plan-features-item ul li {
    display: block;
    margin: 0;
    border-top: 1px dashed rgba(0, 0, 0, .08);
    padding: 9px 0;
    line-height: 24px;
    text-align: left;
    font-size: 15px;
}

.utf-pricing-plan-features-item ul li:last-child {
    border-bottom: 1px dashed rgba(0, 0, 0, .08)
}

.pricing-plan .button:hover,
.pricing-plan.recommended .button {
    color: #fff;
    background-color: #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.pricing-plan .button {
    color: #66676b;
    background-color: #fff;
    border: 1px solid #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1)
}

.pricing-plan .button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.utf-pricing-plan-title-block {
    background-color: #a1d244;
    border-radius: 6px;
    float: left;
    width: 100%;
    margin-bottom: 25px;
    background: -webkit-gradient(linear, left top, right top, from(#a1d244), to(#0b6624));
    background: linear-gradient(to right, #a1d244, #0b6624);
}

.pricing-plan.recommended {
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    padding: 10px;
    margin: 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden
}

.pricing-plan .utf-recommended-badge {
    color: #fff;
    position: relative;
    width: 100%;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    line-height: 54px;
    position: relative
}

.pricing-plan .utf-recommended-badge::before {
    background: #f9f9f9;
    border: 0 none;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    border-radius: 30px;
    position: absolute;
    bottom: 8px;
    width: 40px
}

@media (max-width:992px) {
    .utf-pricing-plans-container-block {
        box-shadow: none;
        display: block
    }

    .pricing-plan {
        box-shadow: 0 0 25px rgba(0, 0, 0, .1);
        margin-bottom: 40px;
        flex: auto;
        width: 100%;
        border-radius: 4px;
        padding: 35px
    }

    .pricing-plan.recommended {
        margin: 0;
        margin-bottom: 25px
    }

    .recommended.pricing-plan {
        box-shadow: 0 0 25px rgba(0, 0, 0, .1)
    }
}

.headline-border-top {
    border-top: 1px solid #e0e0e0
}

.boxed-widget {
    background-color: #fbfdff;
    padding: 0;
    transform: translate3d(0, 0, 0);
    z-index: 90;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dde6ef;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .03)
}

.utf-boxed-widget-headline {
    font-size: 20px;
    padding: 20px 30px;
    background-color: #a1d244;
    color: #fff;
    position: relative;
    border-radius: 4px 4px 0 0
}

.utf-boxed-widget-headline h3 {
    font-size: 20px;
    padding: 0;
    margin: 0;
    color: #fff
}

.utf-boxed-widget-inner {
    padding: 20px 30px
}

.boxed-widget ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.boxed-widget ul li span {
    float: right;
    color: #0e1133;
    font-weight: 600
}

.boxed-widget ul li {
    color: #222;
    padding-bottom: 1px
}

.utf-boxed-widget-inner ul li {
    padding: 7px 0
}

.boxed-widget.summary li.total-costs {
    font-size: 18px;
    border-top: 1px solid #e4e4e4;
    padding-top: 18px;
    margin-top: 18px;
    font-weight: 500
}

.boxed-widget-footer {
    border-top: 1px solid #e4e4e4;
    width: 100%;
    padding: 20px 30px
}

.boxed-widget-footer .checkbox label {
    margin-bottom: 0
}

.boxed-widget.summary li.total-costs span {
    font-weight: 500;
    color: #66676b
}

.listing-item-container.compact.order-summary-widget .listing-item {
    border-radius: 4px 4px 0 0;
    cursor: default;
    height: 240px
}

.listing-item-container.compact.order-summary-widget {
    margin-bottom: 0
}

.listing-item-container.compact.order-summary-widget:hover {
    transform: none
}

.utf-plan-pricing-aera {
    display: flex
}

.utf-plan-pricing-aera .radio {
    flex: 1;
    margin: 5px 20px 5px 0
}

.utf-plan-pricing-aera .radio label {
    background: #fbfdff;
    border-radius: 4px;
    border: 2px solid #f2f2f2;
    padding: 15px;
    height: 100%;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .03);
    align-self: center;
    z-index: 0;
    line-height: 21px;
    position: relative
}

.utf-plan-pricing-aera .radio:last-of-type {
    margin-right: 0
}

.utf-plan-pricing-aera .radio input[type=radio]+label .radio-label {
    position: relative;
    top: 2px;
    margin-right: 7px
}

.utf-plan-pricing-aera-details {
    display: block;
    padding-left: 15px;
    position: absolute;
    right: 15px;
    top: 15px
}

.discounted-price-tag,
.regular-price-tag {
    font-size: 15px;
    background: #a1d244;
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    line-height: 20px;
    padding: 3px 12px;
    flex-grow: 0;
    flex: auto;
    width: auto;
    transition: .3s;
    margin-top: 0;
    margin-right: 0;
    display: inline-block
}

.line-through {
    text-decoration: line-through;
    background-color: #fbf6dd;
    color: #a18d29
}

@media (max-width:768px) {
    .utf-plan-pricing-aera {
        display: flex;
        flex-direction: column
    }

    .utf-plan-pricing-aera .radio {
        margin-right: 0
    }

    .utf-plan-pricing-aera .radio label {
        line-height: inherit
    }
}

.payment-logo {
    height: 22px;
    position: absolute;
    right: 20px;
    top: 18px;
    image-rendering: -webkit-optimize-contrast
}

.payment-logo.paypal,
.payment-logo.stripe {
    height: 22px;
    top: 18px
}

.utf-payment-tab-trigger>input {
    position: absolute;
    visibility: hidden
}

.utf-payment-tab-trigger {
    padding: 0 20px;
    background: #f9f9f9
}

.utf-payment-tab-trigger>label {
    cursor: pointer;
    display: block;
    position: relative;
    top: 0;
    padding: 15px 0;
    top: 0;
    margin-bottom: 0;
    font-weight: 500
}

.utf-payment-tab-trigger>label::before {
    transition: .2s;
    box-sizing: border-box;
    background-color: #fff;
    border: 2px solid #d0d0d0;
    border-radius: 100%;
    content: "";
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 3px;
    width: 18px;
    height: 18px
}

.utf-payment-tab-trigger>label::after {
    background: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    position: absolute;
    left: 5px;
    top: 24px;
    width: 8px;
    height: 8px;
    transition: .2s;
    transform: scale(0)
}

.utf-payment-tab-trigger>input:checked~label::before {
    border-color: #66676b
}

.utf-payment-tab-trigger>input:checked~label::after {
    background-color: #66676b;
    transform: scale(1)
}

.payment {
    border-radius: 4px;
    overflow: hidden
}

.payment-tab {
    box-sizing: border-box;
    max-height: 60px;
    overflow: hidden;
    border: 2px solid #f2f2f2;
    position: relative;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 4px 0 rgba(0, 0, 0, .02);
    transition: all .3s 0s ease-in-out;
    width: 100%
}

.payment-tab.payment-tab-active {
    max-height: 400px
}

@media (max-width:991px) {
    .payment-tab.payment-tab-active {
        max-height: 800px
    }

    a.apply-now-button {
        margin-bottom: 20px
    }
}

.utf-payment-tab-content-aera {
    padding: 20px 20px 10px 20px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    width: 100%;
    transition: .2s ease-in-out
}

.payment-form-row {
    margin-top: 0;
    margin-bottom: 0
}

.payment-tab.payment-tab-active .utf-payment-tab-content-aera {
    visibility: visible;
    opacity: 1
}

.card-label>input {
    box-sizing: border-box;
    display: block;
    height: 51px;
    margin: 10px auto 10px;
    transition: border-color .3s;
    width: 100%;
    border: 1px solid #dde6ef;
    background-color: #fbfdff;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .06);
    padding: 15px
}

.card-label>input:focus {
    background: #fff;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .12);
    border: 1px solid #dde6ef
}

.card-label>input::placeholder {
    transition: .2s ease-in-out;
    -webkit-transform-origin: left
}

.card-label>input:focus::placeholder {
    transform: translateY(-18px)
}

.card-label>label {
    background-color: #fff;
    display: inline-block;
    margin: 10px auto auto 5px;
    font-size: 15px;
    padding: 0;
    font-weight: 500;
    color: #909090
}

.payment-tab p {
    margin: 0 0 10px 0
}

.utf-order-confirm-aera {
    text-align: center;
    margin: 40px 0;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #f9f9f9;
    border: 2px solid #f2f2f2;
    border-radius: 4px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06)
}

.utf-order-confirm-aera h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase
}

.utf-order-confirm-aera p {
    font-size: 20px;
    color: #212529;
    font-weight: 500;
    display: block;
    line-height: 28px
}

.utf-order-confirm-aera a.button:before {
    display: none
}

.utf-order-confirm-aera a.button {
    background-color: #a1d244;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    box-shadow: none;
    padding-top: 14px;
    padding-bottom: 14px
}

.utf-order-confirm-aera a.button i {
    font-size: 24px
}

.book-now.button {
    padding: 9px;
    margin-bottom: -4px
}

.utf-breathing-icon {
    background-color: #66676b;
    width: 120px;
    height: 120px;
    line-height: 0;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 30px;
    position: relative;
    z-index: 100;
    transition: .4s;
    color: #fff;
    font-weight: 500;
    animation: bicokAnim 3s infinite;
    box-shadow: 0 0 0 15px rgba(102, 103, 107, .07);
    margin-bottom: 70px;
    font-size: 90px
}

.utf-breathing-icon i {
    color: #fff;
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    transform: translateY(-50%)
}

@keyframes bicokAnim {

    0%,
    100% {
        box-shadow: 0 0 0 15px rgba(102, 103, 107, .07)
    }

    50% {
        box-shadow: 0 0 0 28px rgba(102, 103, 107, .12)
    }
}

@media (max-width:991px) {
    .utf-order-confirm-aera i {
        font-size: 100px
    }

    .utf-order-confirm-aera p {
        font-size: 18px
    }

    .utf-order-confirm-aera h2 {
        font-size: 36px
    }
}

.icon-box {
    background: #fff;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    transition: .4s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
    z-index: 1
}

.icon-box:hover {
    background: #a1d244;
    transition: .4s;
    transform: scale(1.05);
    z-index: 9
}

.icon-box:hover .utf-icon-box-circle {
    background-color: #fff;
    color: #a1d244
}

.icon-box:hover .utf-icon-box-circle .utf-icon-box-circle-inner {
    color: #a1d244
}

.icon-box:hover h3,
.icon-box:hover p {
    color: #fff
}

.utf-icon-box-circle {
    background-color: #a1d244;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50px;
    z-index: 100;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    margin-bottom: 20px
}

.utf-icon-box-circle-inner {
    font-size: 36px;
    line-height: 82px;
    color: #fff;
    position: relative;
    margin: 0 auto;
    display: inline-block
}

.icon-box span {
    color: #222;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500
}

.icon-box h4 {
    margin: 4px 0;
    line-height: 26px
}

.icon-box h3 {
    margin: 4px 0;
    line-height: 26px;
    font-size: 22px;
    font-weight: 600
}

.icon-box p {
    margin: 0;
    margin-top: 15px;
    font-style: 16px;
    padding: 0;
    color: #212529
}

@media (max-width:992px) {
    .icon-box.with-line:before {
        display: none
    }
}

.utf-testimonial-box {
    background: 0 0;
    border-radius: 6px;
    padding: 45px 40px;
    padding-top: 35px;
    color: #888;
    position: relative;
    margin: 70px 0 0;
    box-shadow: none;
    transition: .4s;
    cursor: grab;
    text-align: center;
    transform: scale(.8)
}

.utf-testimonial-box:before {
    content: "\f2cd";
    font-family: Line-Awesome;
    position: absolute;
    top: 40px;
    left: 20px;
    font-size: 44px;
    transform: translateY(-100%);
    color: #7c7e7e !important;
    opacity: 0;
    transition: .3s;
    background: #fff;
    height: 70px;
    line-height: 70px;
    width: 70px;
    border-radius: 60px;
    box-shadow: 0 5px 2px rgb(128 128 128 / 15%)
}

.utf-testimonial-carousel-block .slick-slide:before {
    content: "\f2ce";
    font-family: Line-Awesome;
    position: absolute;
    bottom: -65px;
    right: 50px;
    z-index: 9;
    font-size: 44px;
    transform: translateY(-100%);
    color: #7c7e7e;
    text-align: center;
    opacity: 0;
    transition: .3s;
    background: #fff;
    height: 70px;
    line-height: 70px;
    width: 70px;
    border-radius: 60px;
    box-shadow: 0 5px 2px rgb(128 128 128 / 15%)
}

.utf-carousel-review-item.slick-slide.slick-active:before {
    opacity: 1
}

.utf-testimonial-carousel-block .slick-slide {
    margin: 0 20px 30px 20px;
    opacity: 0;
    transition: .4s;
    pointer-events: all
}

.utf-testimonial-carousel-block .slick-slide.slick-active {
    opacity: 1;
    filter: none;
    pointer-events: all
}

.utf-testimonial-carousel-block .slick-slide {
    padding: 20px 30px 30px 30px;
    border-radius: 6px;
    position: relative;
    margin: 0 20px 30px 20px;
    opacity: .3;
    transition: .2s;
    pointer-events: all
}

.utf-testimonial-carousel-block .slick-slide .utf-testimonial-box {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transform: scale(.9)
}

.utf-testimonial-carousel-block .slick-slide.slick-active .utf-testimonial-box {
    transform: scale(1)
}

.utf-testimonial-carousel-block .slick-slide.slick-active .utf-testimonial-box:before {
    opacity: 1
}

.utf-testimonial-carousel-block .slick-slide.slick-active .utf-testimonial-box {
    background: #fff;
    color: #222;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08)
}

.testimonial,
.testimonial p {
    font-size: 15px;
    font-weight: 500;
    color: #212529;
    line-height: 28px
}

.utf-testimonial-author-utf-detail-item {
    display: block;
    width: 100%;
    padding: 20px 0 15px 0;
    text-align: center;
    margin: 0 auto
}

.utf-testimonial-avatar-photo {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    left: 0;
    right: 0
}

.utf-testimonial-avatar-photo img {
    width: 90px;
    display: inline-block;
    text-align: center;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, .1);
    box-shadow: 0 5px 2px rgb(205 205 205)
}

.utf-testimonial-author-utf-detail-item h4 {
    display: block;
    width: 100%;
    font-size: 22px;
    padding-top: 0;
    color: #0e1133;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-testimonial-author-utf-detail-item span {
    padding-top: 0;
    display: inline-block;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 22px;
    padding: 0 12px;
    margin: 2px 0 10px 0;
    color: #9f9f9f
}

.utf-testimonial-box .utf-star-rating {
    height: 30px;
    display: inline-block;
    margin-bottom: -10px;
    margin-top: 15px
}

.utf-testimonial-carousel-block .slick-next {
    right: 20%
}

.utf-testimonial-carousel-block .slick-prev {
    left: 20%
}

.utf-testimonial-carousel-block .slick-next,
.utf-testimonial-carousel-block .slick-prev {
    margin-top: 35px
}

@media (max-width:1600px) {
    .utf-testimonial-carousel-block .slick-next {
        right: 15%
    }

    .utf-testimonial-carousel-block .slick-prev {
        left: 15%
    }
}

@media (max-width:1240px) {
    .utf-testimonial-carousel-block .slick-next {
        right: 13%
    }

    .utf-testimonial-carousel-block .slick-prev {
        left: 13%
    }
}

@media (max-width:992px) {
    .utf-testimonial-carousel-block .slick-next {
        right: 8%
    }

    .utf-testimonial-carousel-block .slick-prev {
        left: 8%
    }

    .utf-testimonial-box {
        padding: 35px
    }

    .testimonial,
    .testimonial p {
        font-size: 15px;
        line-height: 28px
    }
}

@media (max-width:768px) {
    .utf-testimonial-carousel-block .slick-next {
        right: 20px
    }

    .utf-testimonial-carousel-block .slick-prev {
        left: 20px
    }

    .utf-testimonial-carousel-block .slick-next,
    .utf-testimonial-carousel-block .slick-prev {
        transform: scale(.8) translateY(-50%)
    }

    .utf-payment-tab-trigger>label::before {
        top: 4px
    }
}

.utf-logo-carousel-block .utf-carousel-logo-item {
    display: inline-block;
    height: 100px;
    text-align: center;
    position: relative
}

.utf-logo-carousel-block .utf-carousel-logo-item a {
    display: inline-block
}

.utf-logo-carousel-block .utf-carousel-logo-item img {
    max-height: 100px;
    max-width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
}

.utf-logo-carousel-block .slick-next,
.utf-logo-carousel-block .slick-prev {
    top: 50%
}

.utf-blog-carousel-block {
    width: calc(100% + 30px);
    left: -15px
}

.utf-blog-carousel-block .utf-blog-item-container-part {
    margin: 15px;
    display: inline-block;
    width: 30%
}

.utf-blog-carousel-block.slick-initialized .utf-blog-item-container-part {
    width: auto
}

.utf-blog-carousel-block-related {
    width: calc(100% + 0px)
}

.utf-blog-carousel-block-related .utf-blog-item-container-part {
    margin: 15px;
    display: inline-block;
    width: 30%
}

.utf-blog-carousel-block-related.slick-initialized .utf-blog-item-container-part {
    width: auto
}

.full-width-carousel-fix .default-slick-carousel.slick-initialized .freelancer,
.full-width-carousel-fix .utf-blog-carousel-block.slick-initialized .utf-blog-item-container-part {
    margin: 15px;
    transform: scale(.85);
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.full-width-carousel-fix .default-slick-carousel.slick-initialized .slick-slide.slick-active.freelancer,
.full-width-carousel-fix .utf-blog-carousel-block.slick-initialized .slick-slide.slick-active.utf-blog-item-container-part {
    transform: scale(1);
    opacity: 1;
    pointer-events: all
}

.full-width-carousel-fix .utf-blog-carousel-block.slick-initialized .slick-slide.slick-active.utf-blog-item-container-part:hover {
    transform: scale(1) translateY(-10px)
}

.utf-photo-section-block {
    background-size: cover;
    background-position: 50%;
    display: block;
    position: relative
}

.utf-photo-section-block:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #0e1133;
    opacity: .8;
    display: block;
    position: absolute;
    top: 0
}

.text-content {
    background: 0 0;
    padding: 70px 0 0 0;
    font-weight: 500;
    z-index: 99;
    position: relative
}

.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content.white-font,
.text-content.white-font h1,
.text-content.white-font h2,
.text-content.white-font h3,
.text-content.white-font h4,
.text-content.white-font h5 {
    color: #fff
}

.text-content a.button {
    font-size: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1)
}

.text-content p {
    font-size: 15px;
    opacity: .85
}

.text-content h2 {
    margin-bottom: 15px;
    line-height: 60px;
    font-size: 36px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

ul.utf-download-text {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    list-style-type: none;
        margin-top: 30px;
}

ul.utf-download-text li {
    float: left;
    margin: 0;
   /* margin-top: 15px;*/
    transition: .35s
}

ul.utf-download-text li a {
    display: block;
    border: 1px solid rgb(24 59 86);
    height: 80px;
    width: 240px;
    border-radius: 4px;
    margin-right: 25px;
    padding-left: 60px;
    position: relative;
    padding-top: 15px;
     transition: .35s;
    background: #fff;
}

ul.utf-download-text li a img {
    position: absolute;
    right: 8px;
    top: 10px
}

ul.utf-download-text li a i {
    position: absolute;
    left: 8px;
    top: 18px;
    font-size: 45px
}

ul.utf-download-text li a span {
    float: left;
    width: 100%;
    font-size: 15px;
    font-weight: 600
}

ul.utf-download-text li a p {
    float: left;
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    color: #000 !important;
    font-family: inherit;
}

ul.utf-download-text li a:hover {
    background: #a1d244;
    border-color: #a1d244;
    transform: scale(1.04);
    transition: .35s;
    color: #fff;
}

.download-img {
    display: table-cell;
    width: 40%;
    vertical-align: middle
}

.download-img img {
    max-width: 100%;
    float: right;
    margin-top: 0
}

.top-1 {
    position: relative;
    top: -1px
}

.top-0 {
    position: relative
}

@media (max-width:1239px) {
    .download-img img {
        display: none
    }

    .text-content {
        padding: 80px 0
    }

    .freelancers-list-layout .utf-manage-resume-overview-aera .utf-manage-resume-item {
        width: 100%
    }

    .intro-banner .utf-trending-silver-item a {
        display: inline-block;
        margin-bottom: 5px;
        padding: 2px 8px;
        line-height: 24px
    }

    .intro-banner .utf-trending-black-item {
        color: #fff;
        font-weight: 600;
        width: 100%;
        display: block;
        margin-bottom: 10px;
        text-align: center
    }
}

@media (max-width:992px) {
    .text-content h2 {
        margin-bottom: 20px;
        line-height: 40px;
        font-size: 30px;
        font-weight: 500
    }
}

.utf-counters-container-aera {
    display: flex;
    width: 100%;
}

.counter_inner_block {
    padding: 0
}

.utf-single-counter {
    text-align: center;
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
    z-index: 1
}

.utf-single-counter i {
    font-size: 36px;
    color: #a1d244;
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    background: #f7f7f7;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 30px;
    height: 80px;
    line-height: 80px;
    border-radius: 50px
}

.utf-single-counter h3 {
    font-size: 36px;
    margin-bottom: 12px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    letter-spacing: 2px;
}

.utf-single-counter .utf-counter-title {
    color: #0e1133;
    padding-top: 0;
    display: inline-block;
    border-radius: 4px;
    font-size: 18px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

@media (max-width:992px) {
    .utf-single-counter {
        flex: 1 1 25%;
        margin-bottom: 30px
    }

    .utf-counters-container-aera {
        margin-bottom: -30px
    }

    .utf-single-counter h3 {
        font-size: 30px;
        margin: 0;
    }

    .utf-single-counter .utf-counter-title {
        font-size: 15px
    }
}

@media (max-width:768px) {
    .utf-single-counter {
        flex: 1 1 50%;
        padding: 15px 10px
    }

    .utf-single-counter i {
        margin-top: 5px;
        margin-bottom: 25px
    }

    .utf-counters-container-aera {
        display: block;
        width: 100%;
    }

    .utf-counters-container-aera .col-xl-3 {
        width: 50%;
        float: left
    }
}

@media (max-width:340px) {
    .utf-counters-container-aera .col-xl-3 {
        width: 100%;
        float: left
    }

    .utf-single-counter {
        margin-bottom: 20px
    }
}

.countdown {
    border-radius: 4px;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding: 14px
}

.countdown.green {
    background-color: #e7f8ec;
    color: #289c41
}

.countdown.yellow {
    background-color: #fbf6dd;
    color: #a18d29
}

.bidding-countdown {
    background-color: #a1d244;
    color: #fff;
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
    display: block;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding: 14px
}

.bidding-widget {
    border-radius: 4px;
    background-color: #f9f9f9
}

.dashboard-box .bidding-widget,
.utf-popup-tab-content-item .bidding-widget {
    border-radius: 0;
    text-align: center;
    background-color: transparent
}

.dashboard-box .slider-handle.custom,
.utf-popup-tab-content-item .slider-handle.custom {
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 0 7px rgba(255, 138, 0, .12)
}

.bidding-widget .bidding-headline {
    background-color: #f0f0f0;
    color: #0e1133;
    position: relative;
    border-radius: 4px 4px 0 0
}

.bidding-widget .bidding-inner {
    padding: 30px 35px;
    text-align: center
}

.bidding-widget .bidding-headline {
    color: #0e1133;
    font-size: 20px;
    padding: 20px 35px
}

.bidding-widget .bidding-headline h3 {
    color: #0e1133;
    font-size: 20px;
    padding: 0;
    margin: 0
}

.bidding-widget .utf-bidding-overview-headline {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #a1d244;
    color: #fff;
    position: relative;
    border-radius: 4px 4px 0 0
}

.bidding-widget .bidding-signup {
    color: #222;
    font-size: 14.7px;
    padding: 16px 35px;
    text-align: center;
    border-top: 1px solid #e0e0e0
}

.bidding-widget .bidding-signup a {
    font-weight: 600
}

.bidding-widget button.button {
    margin-bottom: 3px
}

.bidding-widget .bidding-detail {
    color: #888;
    display: block
}

.bidding-widget .bidding-detail strong {
    color: #0e1133;
    font-weight: 500
}

.dashboard-box .bidding-detail strong {
    font-weight: 600
}

.bidding-widget .bidding-value {
    font-size: 26px;
    font-weight: 500;
    color: #0e1133;
    margin: 5px 0 25px 0
}

.bidding-widget .bidding-value {
    width: 130px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
    background-color: #a1d244;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(255, 138, 0, .25)
}

.bidding-widget .button {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15);
    transition: .3s;
    height: 46px
}

.bidding-widget .button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25);
    transform: scale(1.02)
}

.bidding-widget .bidding-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 12px;
    width: calc(100% + 20px)
}

.bidding-widget .bidding-fields .bidding-field {
    flex: 1;
    margin-right: 20px
}

.qtyButtons {
    display: flex;
    margin: 0;
    background: #fbfdff;
    border-radius: 4px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .08);
    height: 48px;
    padding: 7px 5px;
    border: 1px solid #dde6ef
}

.utf-sidebar-widget-item .bidding-inner .bidding-field .qtyButtons {
    height: 50px
}

.qtyButtons.utf-with-border {
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05)
}

.qtyButtons input {
    outline: 0;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    width: 50px;
    height: 36px;
    color: #212529;
    line-height: 36px;
    margin: 0 !important;
    padding: 0 5px;
    border: none;
    box-shadow: none;
    display: inline-block;
    flex-grow: 1;
    box-shadow: none !important
}

.qtyTitle {
    font-size: 15px;
    font-weight: 600;
    line-height: 36px;
    padding-right: 15px;
    display: block;
    flex: 1
}

.qtyDec,
.qtyInc {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 18px;
    background-color: #f0f0f0;
    color: #212529;
    display: inline-block;
    text-align: center;
    border-radius: 40px;
    cursor: pointer;
    font-family: Feather-Icons;
    flex: 1;
    min-width: 36px;
    max-width: 36px;
    transition: .3s
}

.qtyInc:before {
    content: "\e9b1"
}

.qtyDec:before {
    content: "\e996"
}

.qtyDec:hover,
.qtyInc:hover {
    background-color: #66676b;
    color: #fff
}

.qtyTotal {
    background-color: #66676b;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    /* font-family: "Open Sans", sans-serif; */
    line-height: 18px;
    text-align: center;
    position: relative;
    top: -2px;
    left: 2px;
    height: 18px;
    width: 18px
}

@media (max-width:1366px) {

    .qtyDec,
    .qtyInc {
        min-width: 34px;
        max-width: 34px
    }

    .bidding-widget .bidding-inner {
        padding: 25px 20px
    }

    .bidding-widget .bidding-headline {
        padding: 20px 32px
    }
}

@media (max-width:380px) {

    .qtyDec,
    .qtyInc {
        min-width: 36px;
        max-width: 36px
    }

    .bidding-widget .bidding-fields .bidding-field {
        flex: auto;
        margin-right: 0;
        width: 100%
    }

    .bidding-widget .bidding-fields .bidding-field:first-child {
        margin-bottom: 20px
    }

    .bidding-widget .bidding-fields {
        width: 100%
    }
}

#utf-not-found-item {
    margin: 40px 0 80px 0
}

#utf-not-found-item.center {
    text-align: center
}

#utf-not-found-item .utf-error-img {
    margin-bottom: 30px
}

#utf-not-found-item p {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    display: inline-block;
    margin-top: 15px;
    color: #999
}

#utf-not-found-item i {
    color: #e0e0e0;
    font-size: 160px;
    top: 0;
    margin-left: -40px;
    position: relative
}

.utf-not-found-item-search.utf-intro-banner-search-form-block,
.utf-not-found-item-search.utf-intro-banner-search-form-block .utf-intro-search-field-item,
.utf-not-found-item-search.utf-intro-banner-search-form-block input {
    background: 0 0;
    box-shadow: none
}

@media (max-width:992px) {
    .utf-not-found-item-search.utf-intro-banner-search-form-block {
        background: #fff
    }

    .utf-not-found-item-search.utf-intro-banner-search-form-block,
    .utf-not-found-item-search.utf-intro-banner-search-form-block .utf-intro-search-field-item,
    .utf-not-found-item-search.utf-intro-banner-search-form-block input {
        background: #f9f9f9;
        text-align: center
    }
}

@media (max-width:767px) {
    .utf-not-found-item-search.utf-intro-banner-search-form-block {
        margin-top: -30px
    }

    .utf-login-register-page-aera .utf-account-type {
        width: 100%
    }

    .utf-login-register-page-aera .utf-account-type div {
        margin-right: 0
    }

    .utf-login-register-page-aera .utf-social-login-buttons-block button {
        width: 100%;
        display: block;
        max-width: 100%
    }

    .intro-stats {
        display: none
    }

    .utf-blog-carousel-block-related {
        margin-bottom: 25px
    }
}

.utf-login-register-page-aera .forget-text {
    text-align: center
}

.utf-login-register-page-aera .utf-welcome-text-item h3 {
    font-size: 24px
}

.gradient_item_area {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .03) 0, rgba(255, 255, 255, 0))
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: 0;
    background-color: #7c7e7e;
    border-radius: 50px;
    width: 44px;
    height: 44px;
    display: block;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    transition: .3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    z-index: 10
}

.slick-next:hover,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background-color: #424242 !important
}

.slick-next:hover:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
    pointer-events: none;
    cursor: default;
    background-color: #e8e8e8;
    box-shadow: none
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    color: #212529
}

.slick-next:before,
.slick-prev:before {
    font-family: Feather-Icons;
    font-size: 26px;
    line-height: 1;
    opacity: 1;
    transition: .3s;
    position: relative;
    color: #fff
}

.slick-prev {
    left: -10px
}

.slick-prev:before {
    content: '\e92f';
    left: -1px
}

.slick-next {
/*    right: -10px*/
}

.slick-next:before {
    content: '\e930';
    right: -1px
}

.slick-dots {
    margin: 0 auto;
    padding: 0;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 3px;
    cursor: pointer
}

.slick-dots li {
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    position: relative;
    outline: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 3px;
    opacity: 1;
    border-radius: 50%;
    line-height: 0;
    box-shadow: inset 0 0 0 2px silver;
    transition: all .3s
}

.slick-dots li.slick-active {
    box-shadow: inset 0 0 0 6px #a1d244;
    transition: all .3s
}

.slick-dots li:after {
    display: block;
    height: 13px;
    width: 13px;
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: transparent;
    border-radius: 50%;
    transition: all .3s;
    opacity: 0;
    background-color: #a1d244
}

.slick-dots li.slick-active:after {
    opacity: 1
}

.slick-slide {
    display: none;
    outline: 0
}

.slick-initialized .slick-slide {
    display: block
}

.utf-logo-carousel-block .slick-slide {
    display: block;
    background: #fff;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.default-slick-carousel .slick-utf-carousel-logo-item {
    margin: 15px
}

.default-slick-carousel {
    height: auto;
    width: calc(100% + 30px);
    left: -15px
}

.default-slick-carousel,
.utf-blog-carousel-block,
.utf-logo-carousel-block,
.video-carousel,
.utf-testimonial-carousel-block {
    display: none
}

.default-slick-carousel.slick-initialized,
.utf-blog-carousel-block.slick-initialized,
.utf-logo-carousel-block.slick-initialized,
.video-carousel,
.utf-testimonial-carousel-block.slick-initialized {
    display: block
}

.default-slick-carousel .freelancer {
    margin: 15px;
    width: 30%
}

.default-slick-carousel.slick-initialized .freelancer {
    width: auto
}

.default-slick-carousel .freelancer-details-list ul li {
    margin-right: 22px
}

.default-slick-carousel .freelancer-details-list ul li:last-child {
    margin-right: 0
}

.default-slick-carousel .freelancer:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    transform: translateY(0)
}

@media (min-width:1367px) and (max-width:1440px) {
    .slick-prev {
/*        left: -65px*/
        left: 0px
    }

    .slick-next {
/*        right: -65px*/
        right: 0px
    }
}

@media (max-width:1290px) {
    .slick-prev {
        left: -10px
    }

    .slick-next {
        right: -10px
    }
}

@media (max-width:1090px) {
    .slick-prev {
        left: 0
    }

    .slick-next {
        right: 0
    }

    .slick-next,
    .slick-prev {
        background-color: rgb(124 126 126 / 50%);
    }
}

.full-width-carousel-fix {
    overflow: hidden
}

.full-width-carousel-fix .slick-list {
    overflow: visible
}

[data-simplebar] {
    position: relative;
    z-index: 0;
    overflow: hidden !important;
    max-height: inherit;
    -webkit-overflow-scrolling: touch
}

[data-simplebar=init] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.simplebar-scroll-content {
    overflow-x: hidden !important;
    overflow-y: scroll;
    min-width: 100% !important;
    max-height: inherit !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important
}

.simplebar-content {
    overflow-y: hidden !important;
    overflow-x: scroll;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    min-height: 100% !important
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
    height: calc(100% - 6px);
    margin-top: 6px
}

.simplebar-scrollbar {
    position: absolute;
    right: 6px;
    width: 5px;
    min-height: 10px
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: #000;
    border-radius: 7px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity .2s, background-color .3s;
    background-color: #d8d8d8
}

.simplebar-scrollbar:hover:before {
    background-color: transparent
}

.utf-dashboard-sidebar-item-inner .simplebar-scrollbar:before {
    background-color: #4f4e4e
}

.utf-dashboard-sidebar-item-inner.simplebar-scrollbar:hover:before {
    background-color: #4f4e4e
}

.simplebar-track .simplebar-scrollbar.visible:before,
.simplebar-track:hover .simplebar-scrollbar:before {
    opacity: 1
}

.simplebar-track.vertical {
    top: 0
}

.simplebar-track.vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px
}

.simplebar-track.horizontal {
    left: 0;
    width: auto;
    height: 11px;
    display: none
}

.simplebar-track.horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px
}

.horizontal.simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto
}

body.gray .utf-dashboard-content-container-aera .simplebar-scrollbar:before {
    background-color: #c9c9c9
}

body.gray .utf-dashboard-content-container-aera .simplebar-scrollbar:hover:before {
    background-color: #b9b9b9
}

.dashboard-box .simplebar-scrollbar:before {
    background-color: #d8d8d8
}

.dashboard-box .simplebar-scrollbarLhover:before {
    background-color: #c8c8c8
}

.tippy-tooltip.dark-theme {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    padding: 5px 10px
}

.tippy-tooltip.dark-theme .tippy-backdrop {
    background-color: #323232
}

.tippy-popper[x-placement^=top] .tippy-tooltip.dark-theme .tippy-arrow {
    border-top-color: #323232
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.dark-theme .tippy-arrow {
    border-bottom-color: #323232
}

.tippy-popper[x-placement^=right] .tippy-tooltip.dark-theme .tippy-arrow {
    border-right-color: #323232
}

.tippy-popper[x-placement^=left] .tippy-tooltip.dark-theme .tippy-arrow {
    border-left-color: #323232
}

.tippy-tooltip.dark-theme .tippy-arrow {
    transform: scale(.7)
}

.tippy-tooltip.light-theme {
    color: #0e1133;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    border-radius: 4px;
    padding: 5px 10px;
    background-color: #fff
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow {
    border-top-color: #fff
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow {
    border-bottom-color: #fff
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow {
    border-right-color: #fff
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow {
    border-left-color: #fff
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow: hidden;
    position: fixed;
    background: #111
}

.mfp-wrap {
    top: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    height: 100%;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 505
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #aaa;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 504
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

.mfp-s-loading .mfp-arrow {
    display: none
}

button.mfp-arrow,
button.mfp-close {
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 506
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    right: 0;
    top: -40px
}

.og-close,
button.mfp-close {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -20px;
    display: block;
    right: -12px;
    cursor: pointer !important;
    z-index: 9999;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 50%;
    margin: 0;
    background-color: transparent;
    outline: 0;
    transform: translate3d(0, 0, 0)
}

.mfp-iframe-holder .mfp-close {
    top: -50px;
    right: -12px;
    transform: translate3d(0, 0, 0)
}

.mfp-gallery .mfp-close {
    top: 20px;
    right: 10px
}

.mfp-gallery .mfp-content .mfp-close {
    display: none
}

.mfp-close::after,
.mfp-close::before {
    top: 0
}

.og-close {
    margin: 17px;
    right: 10px;
    background: 0 0;
    color: #222
}

.mfp-close:before,
.og-close:before {
    font-family: Feather-Icons;
    font-size: 20px;
    top: 2px;
    left: 0;
    position: relative;
    height: 10px
}

.mfp-close:before,
.og-close:before {
    content: "\ea02"
}

#small-dialog .mfp-close,
#small-dialog-1 .mfp-close,
#small-dialog-2 .mfp-close,
#small-dialog-3 .mfp-close,
#small-dialog-4 .mfp-close,
#utf-signin-dialog-block,
#quick-connect,
#pro-connect-modal1,
#pro-connect-modal2,
#pro-connect-modal3,
#case-study,
#online-exam-modal-1,
#online-exam-modal-2,
#prex-assess-entrnc-modal-1,
#prex-assess-entrnc-modal-2,
#prex-assess-entrnc-modal-3,
#pro-request-modal-1,
#gold-request-modal-1,
#jobility_req_modal-1,
#round-zero-modal-1,
#job-application-modal,
#mylogin,
#previewJob,
.mfp-close,
.mfp-close:hover {
    color: #fff
}

#previewJob,
#add-new-address-modal, 
#poc-modal {
    background: #fff;
    padding: 40px;
    padding-top: 0;
    text-align: left;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 550px
}

#small-dialog .mfp-close,
#small-dialog-1 .mfp-close,
#small-dialog-2 .mfp-close,
#small-dialog-3 .mfp-close,
#small-dialog-4 .mfp-close,
#utf-signin-dialog-block .mfp-close,
#quick-connect .mfp-close #case-study .mfp-close,
#quick-connect .mfp-close,
#case-study .mfp-close,
#pro-connect-modal1 .mfp-close,
#pro-connect-modal2 .mfp-close,
#pro-connect-modal3 .mfp-close,
#online-exam-modal-1 .mfp-close,
#online-exam-modal-2 .mfp-close,
#prex-assess-entrnc-modal-1 .mfp-close,
#prex-assess-entrnc-modal-2 .mfp-close,
#prex-assess-entrnc-modal-3 .mfp-close,
#pro-request-modal-1 .mfp-close,
#gold-request-modal-1 .mfp-close,
#jobility_req_modal-1 .mfp-close,
#round-zero-modal-1 .mfp-close,
#job-application-modal .mfp-close,
#mylogin .mfp-close,
#previewJob .mfp-close {
    color: #222;
    background-color: #e4e4e4;
    border-radius: 4px;
    top: 28px;
    right: 40px;
    width: 40px;
    height: 40px
}

#small-dialog .mfp-close:hover,
#small-dialog-1 .mfp-close:hover,
#small-dialog-2 .mfp-close:hover,
#small-dialog-3 .mfp-close:hover,
#small-dialog-4 .mfp-close:hover,
#utf-signin-dialog-block .mfp-close:hover,
#quick-connect .mfp-close:hover,
#pro-connect-modal1 .mfp-close:hover,
#pro-connect-modal2 .mfp-close:hover,
#pro-connect-modal3 .mfp-close:hover,
#case-study .mfp-close:hover,
#online-exam-modal-1 .mfp-cloase:hover,
#online-exam-modal-2 .mfp-cloase:hover,
#prex-assess-entrnc-modal-1 .mfp-cloase:hover,
#prex-assess-entrnc-modal-2 .mfp-cloase:hover,
#prex-assess-entrnc-modal-3 .mfp-cloase:hover,
#pro-request-modal-1 .mfp-cloase:hover,
#gold-request-modal-1.mfp-cloase:hover,
#jobility_req_modal-1 .mfp-cloase:hover,
#round-zero-modal-1 .mfp-cloase:hover,
#job-application-modal .mfp-close:hover,
#mylogin .mfp-cloase:hover,#previewJob .mfp-cloase:hover {
    color: #fff;
    background-color: #66676b
}

.small-dialog-content input[type=submit] {
    width: 100%;
    margin-top: 26px;
    margin-bottom: 10px
}

.small-dialog-content .divider {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    padding-bottom: 0
}

.small-dialog-header {
    font-size: 22px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
    top: 0;
    border-radius: 4px 4px 0 0;
    display: inline-block;
    background-color: #f6f6f6;
    padding: 35px 40px;
    margin-bottom: 40px
}

.small-dialog-header h3 {
    padding: 0;
    margin: 0;
    font-size: 23px
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #aaa;
    font-size: 13px;
    line-height: 18px
}

.mfp-arrow {
    opacity: 1;
    margin: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: absolute;
    display: block;
    z-index: 100;
    overflow: hidden;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    outline: 0
}

.mfp-arrow:hover {
    background: #66676b;
    color: #fff
}

.mfp-arrow.mfp-arrow-left,
.mfp-arrow.mfp-arrow-right {
    font-family: simple-line-icons;
    font-size: 20px
}

.mfp-arrow.mfp-arrow-right {
    right: 15px
}

.mfp-arrow.mfp-arrow-left:before {
    content: "\e605";
    left: -1px;
    top: 0;
    position: relative
}

.mfp-arrow.mfp-arrow-right:before {
    content: "\e606";
    left: 1px;
    top: 0;
    position: relative
}

.mfp-content:hover .mfp-arrow {
    opacity: 1
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 1180px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 54%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

#small-dialog,
#small-dialog-1,
#small-dialog-2,
#small-dialog-3,
#small-dialog-4,
#utf-signin-dialog-block,
#quick-connect,
#pro-connect-modal1,
#pro-connect-modal2,
#pro-connect-modal3,
#case-study,
#online-exam-modal-1,
#online-exam-modal-2,
#prex-assess-entrnc-modal-1,
#prex-assess-entrnc-modal-2,
#prex-assess-entrnc-modal-3,
#pro-request-modal-1,
#gold-request-modal-1,
#jobility_req_modal-1,
#round-zero-modal-1,
#job-application-modal,
#mylogin {
    background: #fff;
    padding: 40px;
    padding-top: 0;
    text-align: left;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 550px
}

#small-dialog span.line,
#utf-signin-dialog-block span.line,
#utf-signin-dialog-block-1 span.line,
#utf-signin-dialog-block-2 span.line,
#utf-signin-dialog-block-3 span.line,
#utf-signin-dialog-block-4 span.line,
#quick-connect span.line,
#pro-connect-modal1 span.line,
#pro-connect-modal2 span.line,
#pro-connect-modal3 span.line,
#case-study span.line,
#online-exam-modal-1 span.line,
#online-exam-modal-2 span.line,
#prex-assess-entrnc-modal-1 span.line,
#prex-assess-entrnc-modal-2 span.line,
#prex-assess-entrnc-modal-3 span.line,
#pro-request-modal-1 span.line,
#gold-request-modal-1 span.line,
#jobility_req_modal-1 span.line,
#round-zero-modal-1 span.line,
#job-application-modal span.line,
#mylogin span.line {
    padding-top: 0
}

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8)
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
}

.my-mfp-zoom-in.mfp-bg {
    opacity: .001;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .85
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

.dupa {
    display: block;
    height: 30px
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 40px auto;
    border-radius: 4px
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 18px rgba(11, 11, 11, .6)
}

.mfp-figure {
    line-height: 0
}

.mfp-bottom-bar {
    margin-top: -30px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-break: break-word;
    padding-right: 36px
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .92;
    background-color: #111
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

.feedback-yes-no strong {
    font-size: 15px;
    font-weight: 600;
    color: #0e1133;
    display: block
}

.feedback-yes-no .radio {
    margin-right: 15px
}

.feedback-yes-no {
    margin-bottom: 15px
}

.feedback-yes-no .leave-rating {
    margin: 3px 0 10px 3px
}

.utf-signin-form-part ul.utf-popup-tabs-nav-item li {
    width: 50%;
    text-align: center
}

.utf-signin-form-part ul.utf-popup-tabs-nav-item li a {
    width: 100%;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#utf-signin-dialog-block.dialog-with-tabs .mfp-close,
#quick-connect.dialog-with-tabs .mfp-close,
#pro-connect-modal1.dialog-with-tabs .mfp-close,
#pro-connect-modal2.dialog-with-tabs .mfp-close,
#pro-connect-modal3.dialog-with-tabs .mfp-close,
#case-study.dialog-with-tabs .mfp-close,
#online-exam-modal-1.dialog-with-tabs .mfp-close,
#online-exam-modal-2.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-1.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-2.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-3.dialog-with-tabs .mfp-close,
#pro-request-modal-1.dialog-with-tabs .mfp-close,
#gold-request-modal-1.dialog-with-tabs .mfp-close,
#jobility_req_modal-1.dialog-with-tabs .mfp-close,
#round-zero-modal-1.dialog-with-tabs .mfp-close,
#job-application-modal.dialog-with-tabs .mfp-close,
#mylogin.dialog-with-tabs .mfp-close {
    top: -18px !important;
    right: -18px !important;
    color: #fff !important;
    background-color: #a1d244 !important
}

.utf-popup-tabs-nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    height: 50px;
    background: #0b6624;
    border-radius: 4px 4px 0 0
}

.utf-signin-form-part::before {
    content: '';
    width: 100%;
    background: #a1d244;
    height: 30px;
    position: absolute;
    top: -10px;
    left: 0;
    opacity: .6;
    z-index: -1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
    transform: scale(.95)
}

.utf-popup-tabs-nav-item li {
    float: left;
    line-height: 62px;
    height: 62px;
    padding: 0;
    margin-right: 0;
    position: relative
}

.utf-popup-tabs-nav-item li:first-child a {
    border-radius: 4px 0 0 0
}

.popup-tab-reviews,
.utf-popup-tabs-nav-item li a {
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.utf-popup-tabs-nav-item li a {
    border: none;
    color: #fff;
    display: inline-block;
    outline: 0;
    padding: 0;
    text-decoration: none;
    font-size: 15px;
    z-index: 10;
    position: relative;
    height: 100%;
    padding: 0 30px;
    transition: all .3s, font-weight 0s
}

.utf-popup-tabs-nav-item li.active {
    background-color: #fff;
    position: relative
}

.utf-popup-tabs-nav-item li a:hover {
    height: calc(100% - 0px);
    color: #fff
}

.utf-popup-tabs-nav-item li.active a:hover {
    background-color: #fff;
    border-bottom: 0 solid #a1d244
}

.utf-popup-tabs-nav-item li.active {
    background-color: #fff
}

.utf-popup-tabs-nav-item li.active a {
    color: #66676b;
    font-weight: 600
}

.utf-popup-tabs-nav-item li:first-child.active {
    border-left: none;
    border-radius: 4px 0 0 0
}

.utf-popup-tab-content-item {
    padding: 30px 25px;
    position: static;
    z-index: 10;
    display: inline-block;
    width: 100%
}

#small-dialog .utf-signin-form-part h4.modal-title {
    color: #fff;
    margin: 17px 10px 19px 25px;
    width: 80%;
    font-weight: 500;
    font-size: 22px;
    position: relative;
    top: 17px
}

#small-dialog-1 .utf-signin-form-part h4.modal-title,
#small-dialog-2 .utf-signin-form-part h4.modal-title,
#small-dialog-3 .utf-signin-form-part h4.modal-title {
    color: #fff;
    margin: 17px 10px 18px 20px;
    width: 80%;
    font-weight: 500;
    font-size: 22px;
    position: relative;
    top: 17px
}

#small-dialog .utf-signin-form-part li.modal-title,
#small-dialog-1 .utf-signin-form-part li.modal-title,
#small-dialog-2 .utf-signin-form-part li.modal-title {
    color: #fff;
    width: 80%;
    font-weight: 500;
    font-size: 22px;
    position: relative;
    top: 0;
    background: 0 0;
    text-align: left;
    padding: 0 25px;
    word-break: break-all
}

.utf-popup-container-part-tabs {
    overflow: unset;
    width: 100%
}

.utf-popup-tab-content-item p:last-child {
    margin-bottom: 0
}

.dialog-with-tabs#small-dialog,
.dialog-with-tabs#small-dialog-1,
.dialog-with-tabs#small-dialog-2,
.dialog-with-tabs#small-dialog-3,
.dialog-with-tabs#small-dialog-4,
.dialog-with-tabs#utf-signin-dialog-block,
.dialog-with-tabs#quick-connect,
.dialog-with-tabs#pro-connect-modal1,
.dialog-with-tabs#pro-connect-modal2,
.dialog-with-tabs#pro-connect-modal3,
.dialog-with-tabs#case-study,
.dialog-with-tabs#online-exam-modal-1,
.dialog-with-tabs#online-exam-modal-2,
.dialog-with-tabs#prex-assess-entrnc-modal-1,
.dialog-with-tabs#prex-assess-entrnc-modal-2,
.dialog-with-tabs#prex-assess-entrnc-modal-3,
.dialog-with-tabs#pro-request-modal-1,
.dialog-with-tabs#gold-request-modal-1,
.dialog-with-tabs#jobility_req_modal-1,
.dialog-with-tabs#round-zero-modal-1,
.dialog-with-tabs#job-application-modal,
.dialog-with-tabs#mylogin {
    padding: 0;
    color: #222;
    max-width: 540px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .25)
}

#small-dialog-1.dialog-with-tabs .mfp-close,
#small-dialog-2.dialog-with-tabs .mfp-close,
#small-dialog-3.dialog-with-tabs .mfp-close,
#small-dialog-4.dialog-with-tabs .mfp-close,
#small-dialog.dialog-with-tabs .mfp-close,
#utf-signin-dialog-block.dialog-with-tabs .mfp-close,
#quick-connect.dialog-with-tabs .mfp-close,
#pro-connect-modal1.dialog-with-tabs .mfp-close,
#pro-connect-modal2.dialog-with-tabs .mfp-close,
#pro-connect-modal3.dialog-with-tabs .mfp-close,
#case-study.dialog-with-tabs .mfp-close,
#case-study.dialog-with-tabs .mfp-close,
#online-exam-modal-1.dialog-with-tabs .mfp-close,
#online-exam-modal-2.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-1.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-2.dialog-with-tabs .mfp-close,
#prex-assess-entrnc-modal-3.dialog-with-tabs .mfp-close,
#pro-request-modal-1.dialog-with-tabs .mfp-close,
#gold-request-modal-1.dialog-with-tabs .mfp-close,
#jobility_req_modal-1.dialog-with-tabs .mfp-close,
#round-zero-modal-1.dialog-with-tabs .mfp-close,
#job-application-modal.dialog-with-tabs .mfp-close,
#mylogin.dialog-with-tabs .mfp-close {
    color: #fff;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 40px;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px
}

#small-dialog-1.dialog-with-tabs .mfp-close:hover,
#small-dialog-2.dialog-with-tabs .mfp-close:hover,
#small-dialog-3.dialog-with-tabs .mfp-close:hover,
#small-dialog-4.dialog-with-tabs .mfp-close:hover,
#small-dialog.dialog-with-tabs .mfp-close:hover,
#utf-signin-dialog-block.dialog-with-tabs .mfp-close:hover,
#quick-connect.dialog-with-tabs .mfp-close:hover,
#pro-connect-modal1.dialog-with-tabs .mfp-close:hover,
#pro-connect-modal2.dialog-with-tabs .mfp-close:hover,
#pro-connect-modal3.dialog-with-tabs .mfp-close:hover,
#case-study.dialog-with-tabs .mfp-close:hover,
#online-exam-modal-1.dialog-with-tabs .mfp-close:hover,
#online-exam-modal-2.dialog-with-tabs .mfp-close:hover,
#prex-assess-entrnc-modal-1.dialog-with-tabs .mfp-close:hover,
#prex-assess-entrnc-modal-2.dialog-with-tabs .mfp-close:hover,
#prex-assess-entrnc-modal-3.dialog-with-tabs .mfp-close:hover,
#pro-request-modal-1.dialog-with-tabs .mfp-close:hover,
#gold-request-modal-1.dialog-with-tabs .mfp-close:hover,
#jobility_req_modal-1.dialog-with-tabs .mfp-close:hover,
#round-zero-modal-1.dialog-with-tabs .mfp-close:hover,
#job-application-modal.dialog-with-tabs .mfp-close:hover,
#mylogin.dialog-with-tabs .mfp-close:hover {
    color: #a1d244;
    background-color: #fff;
}

.dialog-with-tabs .mfp-close:before {
    font-size: 24px
}

.dialog-with-tabs input:-webkit-autofill,
.dialog-with-tabs input:focus:-webkit-autofill {
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: inset 0 0 0 9999px #fff, 0 1px 4px rgba(0, 0, 0, .07)
}

.dialog-with-tabs input {
    margin-bottom: 18px
}

.dialog-with-tabs .forgot-password {
    font-size: 15px;
    color: #222;
    margin-top: -7px;
    display: block
}

.utf-popup-tab-content-item a.forgot-password {
    text-align: right;
    position: relative;
    float: right;
    top: 7px
}

.utf-login-register-page-aera {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    padding: 30px
}

.utf-login-register-page-aera a.forgot-password {
    text-align: right;
    position: relative;
    float: right;
    top: 10px;
    color: #222
}

.utf-login-register-page-aera a.forgot-password:hover {
    color: #a1d244
}

.utf-login-register-page-aera .utf-account-type {
    display: flex;
    width: calc(100% + 0px);
    background: #fbfdff;
    padding: 5px;
    border: 1px solid #dde6ef;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.utf-login-register-page-aera .utf-account-type div {
    margin: 8px
}

.utf-login-register-page-aera .utf-account-type div label.utf-ripple-effect-dark {
    margin-bottom: 0
}

.dialog-with-tabs .forgot-password:hover {
    color: #66676b
}

.dialog-with-tabs .button {
    height: 48px;
    width: 100% !important;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.utf-welcome-text-item {
    display: block;
    text-align: center;
    color: #212529;
    margin-bottom: 25px
}

.utf-welcome-text-item h3 {
    display: block;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    font-size: 30px
}

.utf-welcome-text-item span a {
    font-weight: 500
}

.utf-welcome-text-item span {
    display: block;
    margin-top: 6px;
    line-height: 22px
}

.utf-social-login-separator-item {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 36px 0 22px 0;
    height: 1px
}

.utf-social-login-separator-item:before {
    width: 100%;
    content: "";
    height: 1px;
    display: block;
    background-color: #e0e0e0;
    position: absolute;
    top: 0
}

.utf-social-login-separator-item span {
    background: #e8e8e8;
    position: absolute;
    top: -15px;
    margin: 0 auto;
    padding: 0 10px;
    color: #323232;
    border: 1px solid #e0e0e0;
    width: max-content;
    height: 30px;
    display: inline-block;
    border-radius: 30px;
    line-height: 28px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    left: 0;
    right: 0
}

.utf-social-login-buttons-block {
    display: flex;
    width: calc(100% + 0px)
}

.utf-social-login-buttons-block button {
    flex: 1;
    text-align: center;
    border: 2px solid #0e1133;
    color: #0e1133;
    border-radius: 4px;
    margin-top: 10px;
    margin-right: 20px;
    font-size: 15px;
    padding: 10px 5px;
    font-weight: 600;
    max-width: 50%;
    transition: .3s;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .2)
}

.utf-social-login-buttons-block button:last-child {
    margin-right: 0
}

.utf-social-login-buttons-block button:hover {
    background-color: #0e1133;
    color: #fff
}

.utf-social-login-buttons-block button i {
    position: relative;
    top: 1px;
    margin-right: 7px;
    font-size: 15px
}

.utf-social-login-buttons-block .facebook-login {
    background-color: #3b5998;
    border-color: #3b5998;
    color: #fff
}

.utf-social-login-buttons-block .facebook-login:hover {
    background: 0 0;
    border-color: #3b5998;
    color: #3b5998
}

.utf-social-login-buttons-block .google-login {
    background-color: #dd4b39;
    border-color: #dd4b39;
    color: #fff
}

.utf-social-login-buttons-block .google-login:hover {
    background: 0 0;
    border-color: #dd4b39;
    color: #dd4b39
}

.utf-social-login-buttons-block .twitter-login {
    background-color: #00acee;
    border-color: #00acee;
    color: #fff
}

.utf-social-login-buttons-block .twitter-login:hover {
    background: 0 0;
    border-color: #00acee;
    color: #00acee
}

@media (max-width:768px) {
    .utf-social-login-separator-item {
        margin-bottom: 25px
    }
}

#utf-signin-dialog-block .utf-account-type,
#quick-connect .utf-account-type,
#pro-connect-modal1 .utf-account-type,
#pro-connect-modal2 .utf-account-type,
#pro-connect-modal3 .utf-account-type,
#case-study .utf-account-type,
#online-exam-modal-1.utf-account-type,
#online-exam-modal-2.utf-account-type,
#prex-assess-entrnc-modal-1.utf-account-type,
#prex-assess-entrnc-modal-2.utf-account-type,
#prex-assess-entrnc-modal-3.utf-account-type,
#pro-request-modal-1.utf-account-type,
#gold-request-modal-1.utf-account-type,
#jobility_req_modal-1.utf-account-type,
#round-zero-modal-1.utf-account-type,
#job-application-modal.utf-account-type,
#mylogin.utf-account-type {
    display: flex;
    width: calc(100% + 0px);
    background: #fbfdff;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #dde6ef;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05)
}

#utf-signin-dialog-block .utf-account-type div,
#quick-connect .utf-account-type div,
#pro-connect-modal1 .utf-account-type div,
#pro-connect-modal2 .utf-account-type div,
#pro-connect-modal3 .utf-account-type div,
#case-study .utf-account-type div,
#online-exam-modal-1 .utf-account-type div,
#online-exam-modal-2 .utf-account-type div,
#prex-assess-entrnc-modal-1.utf-account-type div,
#prex-assess-entrnc-modal-2.utf-account-type div,
#prex-assess-entrnc-modal-3.utf-account-type div,
#pro-request-modal-1.utf-account-type div,
#gold-request-modal-1.utf-account-type div,
#jobility_req_modal-1.utf-account-type div,
#round-zero-modal-1.utf-account-type div,
#job-application-modal.utf-account-type div,
#mylogin.utf-account-type div {
    margin: 10px 5px
}

#utf-signin-dialog-block .utf-account-type div label,
#quick-connect .utf-account-type div label,
#pro-connect-modal1 .utf-account-type div label,
#pro-connect-modal2 .utf-account-type div label,
#pro-connect-modal3 .utf-account-type div label,
#case-study .utf-account-type div label,
#online-exam-modal-1 .utf-account-type div label,
#online-exam-modal-2 .utf-account-type div label,
#prex-assess-entrnc-modal-1.utf-account-type div label,
#prex-assess-entrnc-modal-2.utf-account-type div label,
#prex-assess-entrnc-modal-3.utf-account-type div label,
#pro-request-modal-1.utf-account-type div label,
#gold-request-modal-1.utf-account-type div label,
#jobility_req_modal-1.utf-account-type div label,
#round-zero-modal-1.utf-account-type div label,
#job-application-modal.utf-account-type div label,
#mylogin.utf-account-type div label {
    margin-bottom: 0
}

.utf-account-type {
    display: inline-block;
    width: calc(100% + 20px);
    margin: 0
}

.utf-account-type div {
    flex: 1;
    margin-right: 20px
}

.utf-account-type label {
    border-radius: 3px;
    border: none;
    background-color: #f2f2f2;
    width: 100%
}

.utf-account-type input.utf-account-type-radio:empty {
    display: none
}

.utf-account-type label i {
    position: relative;
    font-size: 18px;
    top: 2px;
    margin-right: 2px
}

.utf-account-type input.utf-account-type-radio:empty~label {
    position: relative;
    float: left;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    color: #888;
    transition: .4s;
    height: 48px;
    line-height: 28px;
    overflow: hidden
}

.utf-account-type input.utf-account-type-radio~label:hover {
    color: #fff;
    background-color: #a1d244
}

.utf-account-type input.utf-account-type-radio:checked~label {
    color: #fff;
    background-color: #a1d244
}

.utf-account-type input.utf-account-type-radio:empty~label:after,
.utf-account-type input.utf-account-type-radio:empty~label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 48px;
    border-radius: 4px;
    font-size: 22px;
    background: 0 0;
    z-index: 100;
    opacity: 0
}

.utf-account-type .utf-ripple-effect-dark span.ripple-overlay {
    animation: ripple 1.2s;
    opacity: .03
}

@keyframes typeCheck {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    50% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(-10px)
    }
}

@keyframes typeBG {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@media (max-width:480px) {
    .mfp-container {
        padding: 0 20px
    }

    .uploadButton {
        flex-direction: column
    }

    .uploadButton .uploadButton-file-name {
        margin: 15px 0 0 0;
        font-size: 15px
    }

    .utf-popup-tab-content-item {
        padding: 30px 20px
    }
}

input.default-slider,
input.range-slider {
    display: none
}

.slider {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

.slider.slider-horizontal {
    width: calc(100% - 20px);
    margin-left: 10px;
    height: 20px
}

.slider.slider-horizontal .slider-track {
    height: 6px;
    width: calc(100% + 18px);
    margin-top: -3px;
    top: 50%;
    left: -9px
}

.bidding-widget .slider.slider-horizontal .slider-track {
    height: 10px;
    margin-top: -5px
}

.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-high,
.slider.slider-horizontal .slider-track-low {
    height: 100%;
    top: 0;
    bottom: 0
}

.slider.slider-horizontal .slider-handle {
    margin-left: -11px
}

.slider.slider-horizontal .slider-tick-label-container {
    white-space: nowrap;
    margin-top: 20px
}

.slider.slider-horizontal .tooltip {
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute
}

.slider input {
    display: none
}

.slider .tooltip.top {
    margin-top: -40px
}

.slider .tooltip-inner {
    white-space: nowrap;
    max-width: none;
    font-weight: 500;
    background-color: #a1d244;
    padding: 4px 15px;
    line-height: 21px;
    color: #fff;
    font-size: 15px;
    border-radius: 40px
}

.slider .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #a1d244
}

.tooltip.tooltip-max,
.tooltip.tooltip-min {
    display: none
}

.slider .hide {
    display: none
}

.slider-track {
    position: absolute;
    cursor: pointer;
    border-radius: 4px;
    background-color: #e0e0e0
}

.slider-selection {
    position: absolute;
    background-color: #66676b;
    box-sizing: border-box;
    border-radius: 4px
}

.slider-track-high,
.slider-track-low {
    position: absolute;
    background: 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px
}

.slider-handle {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    border: 0 solid transparent !important;
    cursor: pointer;
    z-index: 20;
    border-radius: 50%
}

.slider-handle:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #a1d244;
    border-radius: 50%;
    z-index: 30;
    display: block;
    box-shadow: 0 0 0 6px rgba(102, 103, 107, .12);
    transition: .2s
}

.slider-handle:hover:after {
    box-shadow: 0 0 0 8px rgba(102, 103, 107, .12)
}

.slider-handle.custom {
    position: absolute;
    top: -10px;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    z-index: 20;
    border-radius: 40px;
    background-color: #a1d244;
    box-shadow: 0 0 0 7px rgba(255, 138, 0, .12);
    text-align: center
}

.slider-handle.custom:after {
    display: none
}

.slider-handle.custom:before {
    content: "\e958 \e959";
    font-family: Material-Icons;
    letter-spacing: -10px;
    font-size: 20px;
    line-height: 38px;
    color: #fff;
    margin-left: -10px;
    transition: .3s
}

.slider-handle.custom:hover:before {
    color: #fff
}

.slider.slider-horizontal .slider-handle.custom {
    margin-left: -20px
}

select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

.bootstrap-select .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select>.dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #212529
}

.bootstrap-select>select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none
}

.bootstrap-select>select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2
}

.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    z-index: auto
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*=col-] {
    float: none;
    display: flex;
    margin-left: 0
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
    float: right
}

.checkbox .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-inline .bootstrap-select.btn-group {
    margin-bottom: 0
}

.checkbox-lg .bootstrap-select.btn-group.form-control,
.checkbox-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}

.checkbox-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.checkbox-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group>.disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group>.disabled:focus {
    outline: 0 !important
}

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    overflow: hidden;
    width: 100%;
    line-height: 48px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90%;
    float: left;
    height: 48px;
    display: block
}

.bootstrap-select.btn-group .dropdown-menu li.hidden {
    display: none
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    max-width: 100%;
    float: left
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 20px;
    height: auto
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
    vertical-align: middle;
    transition: .35s
}

.bootstrap-select.open .dropdown-toggle .caret {
    transform: rotate(180deg)
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    overflow: hidden;
    height: auto
}

.utf-intro-search-field-item .bootstrap-select.btn-group .dropdown-menu {
    height: 100vh
}

.sort-by .bootstrap-select.btn-group .dropdown-menu {
    height: auto
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none
}

.bootstrap-select.btn-group .dropdown-menu li:first-child {
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.bootstrap-select.btn-group .dropdown-menu li:last-child {
    border-bottom: 0 solid rgba(0, 0, 0, .05)
}

.bootstrap-select.btn-group .dropdown-menu li.disabled {
    opacity: .75
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select .dropdown-menu.inner li.selected span {
    color: #a1d244
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: 7px;
    opacity: .8
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: calc(100% - 20px);
    margin: 0;
    min-height: 26px;
    padding: 3px 5px;
    pointer-events: none;
    padding: 5px 10px;
    background: #0e1133;
    color: #fff;
    margin: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 15px;
    border: none
}

.bootstrap-select.btn-group .no-results {
    padding: 5px 10px;
    background: #f6f6f6;
    margin: 5px 0;
    margin-bottom: 0;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 15px
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    white-space: normal
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before {
    display: block
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
    padding: 0;
    background: #fff;
    margin: 0 15px 10px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    margin-bottom: 10px;
    margin-top: -5px
}

.bs-actionsbox div {
    display: flex
}

.bootstrap-select.btn-group .bs-actionsbox div button {
    flex: 1;
    background: #f6f6f6;
    box-shadow: none;
    padding: 5px;
    height: 36px;
    font-size: 15px;
    color: #777;
    transition: .3s
}

.bootstrap-select.btn-group .bs-actionsbox div button:first-child {
    border-radius: 4px 0 0 4px;
    background-color: #f0f0f0
}

.bootstrap-select.btn-group .bs-actionsbox div button:last-child {
    border-radius: 0 4px 4px 0
}

.bootstrap-select.btn-group .bs-actionsbox div button:hover {
    background: #66676b;
    color: #fff
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox+.bs-actionsbox {
    padding: 0
}

.bs-searchbox .form-control,
.bs-searchbox .form-control:focus {
    width: 100%;
    float: none;
    box-shadow: none;
    background: #f4f4f4;
    margin: 5px 0;
    height: 38px;
    line-height: 38px;
    padding: 10px
}

.bs-searchbox {
    position: relative
}

.bs-searchbox:after {
    font-family: Material-Icons;
    content: "\e982";
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 1;
    display: inline-block;
    position: absolute;
    margin: 0;
    color: #a0a0a0;
    right: 20px;
    top: 8px
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 5px dashed;
    border-top: 5px solid #aaa;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent
}

.dropdown,
.dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 998;
    display: none;
    float: left;
    padding: 0;
    margin: 0;
    font-size: 15px;
    text-align: left;
    list-style: none;
    background-color: #fbfdff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    display: none
}

.dropdown-menu>li>a {
    display: block;
    padding: 8px 15px;
    padding-right: 35px;
    clear: both;
    font-weight: 400;
    line-height: 22px;
    color: #212529;
    border-radius: 0
}

.bootstrap-select:before {
    content: "";
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: #fbfdff;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.bootstrap-select.open:before {
    opacity: 1
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>li>a:hover {
    color: #66676b;
    text-decoration: none;
    background-color: rgba(102, 103, 107, .07)
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover {
    color: #777
}

.dropdown-menu>.disabled>a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none
}

.dropdown-menu.inner::-webkit-scrollbar {
    width: 5px
}

.dropdown-menu.inner::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 12px
}

.dropdown-menu.inner::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #d8d8d8
}

.dropdown-menu.inner::-webkit-scrollbar-thumb:hover {
    border-radius: 12px;
    background-color: #c8c8c8
}

.bootstrap-select .dropdown-menu {
    opacity: 0;
    transition: .4s;
    display: block;
    pointer-events: none;
    visibility: hidden;
    cursor: default
}

.bootstrap-select.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    padding-bottom: 12px
}

.elements_select_item .bootstrap-select.open .dropdown-menu,
.utf-login-register-page-aera .bootstrap-select.open .dropdown-menu,
.utf-popup-container-part-tabs .bootstrap-select.open .dropdown-menu,
.utf-submit-field .bootstrap-select.open .dropdown-menu {
    padding-bottom: 0
}

.utf-intro-search-field-item .dropdown-menu {
    border-radius: 0 0 4px 4px
}

.open>a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 8px 15px;
    line-height: 20px;
    white-space: nowrap;
    background: #f6f6f6;
    color: #777;
    border-radius: 0
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: 100%;
    bottom: auto;
    margin-bottom: 2px
}

@media (min-width:767px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }

    #utf-login-register-page-aera button {
        margin-top: 10px
    }
}

.bootstrap-select.btn-group {
    position: relative
}

.bootstrap-select.btn-group button {
    position: relative;
    display: inline-block;
    height: 48px;
    line-height: 0;
    padding: 0 15px;
    margin: 0;
    outline: 0;
    font-size: 15px;
    color: #212529;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    background-color: #fbfdff;
    font-weight: 500;
    opacity: 1;
    border-radius: 4px;
    border: none;
     box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    border: 1px solid rgba(26, 15, 9, 0.1);
}

.hide-tick .check-mark {
    display: none !important
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    text-align: center
}

.bootstrap-select.btn-group .dropdown-menu li span.check-mark:before {
    font-family: Feather-Icons;
    content: "\e92b";
    font-size: 18px;
    transition: all .3s;
    display: inline-block;
    top: 50%;
    right: 0;
    position: absolute;
    margin: 0;
    opacity: 0;
    transform: scale(.5)
}

.bootstrap-select.btn-group .dropdown-menu li.selected span.check-mark:before {
    opacity: 1;
    transform: scale(1);
    transition: all .35s cubic-bezier(.3, -.41, .19, 2), opacity .3s
}

.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before {
    color: #66676b
}

.bootstrap-select .glyphicon:not(.check-mark) {
    font-size: 17px;
    line-height: 0;
    position: relative;
    top: 1px;
    margin-right: 3px
}

.bootstrap-select .filter-option .glyphicon {
    position: relative;
    top: 1px
}

.utf-with-border .dropdown-menu,
.utf-with-border.bootstrap-select.btn-group button {
    background: #fbfdff;
    border: 1px solid #dde6ef;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05)
}

.utf-with-border.bootstrap-select:before {
    width: calc(100% - 2px);
    left: 1px
}

.snackbar-container {
    transition: all .5s ease;
    transition-property: top, right, bottom, left, opacity;
    font-size: 15px;
    min-height: 14px;
    background-color: #404040;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    line-height: 22px;
    padding: 18px 24px;
    bottom: -100px;
    top: -100px;
    opacity: 0;
    z-index: 9999;
    cursor: default;
    border-radius: 4px;
    font-weight: 500
}

.snackbar-container .action {
    background: inherit;
    display: inline-block;
    border: none;
    font-size: inherit;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 0 24px;
    padding: 0;
    min-width: min-content;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px
}

@media (min-width:640px) {
    .snackbar-container {
        display: inline-flex;
        margin: 24px
    }
}

.snackbar-pos.bottom-center {
    top: auto !important;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0)
}

.snackbar-pos.bottom-left {
    top: auto !important;
    bottom: 0;
    left: 0
}

.snackbar-pos.bottom-right {
    top: auto !important;
    bottom: 0;
    right: 0
}

.snackbar-pos.top-left {
    bottom: auto !important;
    top: 0;
    left: 0
}

.snackbar-pos.top-center {
    bottom: auto !important;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0)
}

.snackbar-pos.top-right {
    bottom: auto !important;
    top: 0;
    right: 0
}

@media (max-width:640px) {
    .snackbar-container {
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0
    }

    .snackbar-pos.bottom-center,
    .snackbar-pos.top-center {
        left: 0;
        transform: none
    }
}

body .pac-item {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    transition: .2s;
    padding: 5px 15px
}

body .pac-container {
    border-radius: 0 0 4px 4px;
    border: none;
    box-sizing: content-box;
    margin-top: -2px;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
    z-index: 100
}

.infoBox {
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    line-height: 24px
}

.infoBox .utf-job-listing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    box-shadow: none;
    width: 100%
}

.infoBox .utf-job-listing .utf-job-listing-description {
    padding-top: 0
}

.infoBox .utf-job-listing:hover {
    transform: none
}

.infoBox .utf-job-listing-details {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 20px
}

.infoBox .utf-job-listing h4.utf-job-listing-company {
    font-size: 15px;
    position: relative;
    top: 0;
    margin-bottom: 7px
}

.infoBox .utf-job-listing .utf-verified-badge {
    transform: scale(.85);
    right: -7px;
    bottom: -7px
}

.infoBox .utf-job-listing .not-utf-verified-badge {
    display: none
}

.infoBox .utf-job-listing-footer {
    flex-grow: 0;
    padding: 15px 25px;
    font-size: 15px;
    display: none
}

.infoBox .utf-job-listing h3.utf-job-listing-title {
    font-size: 15px;
    line-height: 24px
}

.infoBox .utf-job-listing .utf-job-listing-company-logo {
    max-width: 60px;
    margin: 5px 18px 5px 0;
    top: 0;
    flex: 0 0 60px
}

.infoBox .utf-job-listing .utf-job-listing-company-logo img {
    max-width: 60px
}

.map-box {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
    position: relative;
    width: 100%
}

.map-box .listing-img-container img {
    width: 100%;
    border-radius: 4px 4px 0 0
}

.map-box h4 {
    margin: 0;
    padding: 0
}

.map-box h4 a {
    padding: 0 0 2px 0;
    font-size: 17px;
    line-height: 25px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block
}

.listing-img-container {
    position: relative;
    height: 100%;
    display: block
}

.map-box h4 a:hover {
    color: #66676b
}

.map-box p {
    padding: 0;
    line-height: 25px;
    margin: 2px 0 0 0;
    font-size: 15px
}

.map-box ul.listing-details {
    padding: 0;
    font-size: 15px;
    display: none
}

.map-box .listing-title {
    padding: 16px 22px
}

.map-box .listing-img-content {
    padding: 18px 22px
}

.map-box .listing-img-content span {
    font-size: 21px
}

.map-box .listing-img-content .listing-price i {
    font-size: 15px;
    margin: -7px 0 0 0
}

.infoBox>img {
    position: absolute !important;
    right: 0;
    top: 0
}

.map-box .listing-img-container::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    background: linear-gradient(to top, rgba(35, 35, 37, .85) 0, rgba(35, 35, 37, .4) 35%, rgba(22, 22, 23, 0) 60%, rgba(0, 0, 0, 0) 100%);
    background-color: rgba(35, 35, 37, .2)
}

.map-box .listing-item-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 24px;
    width: 100%;
    z-index: 50;
    box-sizing: border-box
}

.map-box .listing-item-content h3 {
    color: #fff;
    font-size: 18px;
    padding: 0 0 2px 0;
    font-weight: 500;
    margin: 0;
    line-height: 27px
}

.map-box .listing-item-content span {
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    color: rgba(255, 255, 255, .7)
}

.infoBox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-block;
    z-index: 999;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    height: 28px;
    width: 28px;
    line-height: 28px;
    background-color: #f0f0f0;
    color: #222;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 40px
}

.infoBox-close i {
    position: relative;
    top: 2px;
    left: -.5px
}

.infoBox-close:hover {
    color: #fff;
    background-color: #66676b
}

.map-box-icon {
    height: 38px;
    width: 38px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #3685cf;
    display: block;
    color: #fff;
    font-size: 12px;
    z-index: 101;
    text-align: center;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden
}

.map-box-icon:before {
    content: "\f064";
    font-family: FontAwesome;
    position: relative;
    top: 7px;
    display: block
}

.map-box-image:hover .map-box-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateX(0)
}

.map-box-image {
    position: relative;
    overflow: hidden;
    display: block
}

.infoBox {
    animation: infoBoxAnimation .5s
}

@keyframes infoBoxAnimation {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.infoBox .utf-star-rating span {
    margin-right: 3px
}

.infoBox .rating-counter {
    position: relative;
    top: -1px
}

.infoBox:after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #fff
}

#map {
    height: 100%;
    width: 100%;
    margin: 0;
    z-index: 990;
    position: relative;
}

#map-container {
    position: relative;
    top: 0;
    left: 0;
    height: 520px;
    width: 100%;
    z-index: 990;
    margin-bottom: 60px
}

.gmnoprint {
    margin: 10px
}

.homepage-map {
    height: 560px;
    margin-bottom: 0;
    position: relative
}

.search-bar-on-map {
    position: absolute;
    bottom: 50px;
    z-index: 1000;
    margin: 0 auto;
    left: 0;
    right: 0
}

.callout-bg {
    background-color: #0c1017;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .85;
    width: 100%;
    height: 100%
}

.jbm-callout-in-padding {
    padding: 0 25px
}

.jbm-callout-in {
    width: 100%;
    position: relative;
    z-index: 1
}

.section-tit-line {
    background-color: #a1d244;
    width: 60px;
    height: 3px;
    border-radius: 30px;
    display: block;
    text-align: center;
    margin: 15px auto
}

.pos-relative {
    position: relative
}

.callout-section-left {
    border: 10px solid #fff;
    border-right: 5px solid #fff;
    text-align: center
}

.callout-bg-1 {
    background-image: url(../images/callout-1.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.callout-section-right {
    border: 10px solid #fff;
    border-left: 5px solid #fff;
    text-align: center
}

.callout-bg-2 {
    background-image: url(../images/callout-2.jpg);
    background-size: cover;
    background-repeat: no-repeat
}

.jbm-section-title h2 {
    color: #fff;
    font-size: 30px;
    line-height: 34px;
    margin-top: 15px;
    margin-bottom: 15px
}

.jbm-section-title.title-white p {
    color: #fff
}

.jbm-section-title p {
    font-size: 15px;
    color: #dfdfdf
}

.jbm-button {
    min-width: 190px;
    height: 50px;
    line-height: 48px;
    font-weight: 800;
    display: inline-block;
    text-align: center;
    border-radius: 35px;
    border: 2px solid #fff;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    -ms-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.jbm-callout-in .jbm-button:focus,
.jbm-callout-in .jbm-button:hover {
    background-color: #fff;
    color: #49565f;
    text-decoration: none
}

@media (max-width:767px) {
    .callout-section-left {
        border: 10px solid #fff;
        border-right: 10px solid #fff
    }

    .callout-section-right {
        border: 10px solid #fff;
        border-left: 10px solid #fff
    }
}

.cluster img {
    display: none
}

.cluster-visible {
    text-align: center;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 500;
    border-radius: 50%;
    width: 33px !important;
    height: 33px !important;
    line-height: 33px !important;
    background-color: #66676b;
    animation: clusterAnimation 2.5s infinite
}

@keyframes clusterAnimation {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(102, 103, 107, .15)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(102, 103, 107, .15)
    }
}

.map-marker-container {
    position: absolute
}

.marker-container {
    position: relative;
    margin: -9px 0 0 -9px;
    width: 18px;
    height: 18px;
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
    top: 0;
    background-color: #66676b;
    animation: markerAnimation 2.5s infinite;
    transition: .4s
}

@keyframes markerAnimation {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(102, 103, 107, .15)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(102, 103, 107, .15)
    }
}

.map-marker-container.clicked .marker-container {
    transform: scale(1.3)
}

.marker-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    border-radius: 50%;
    transform: scale(2);
    opacity: 0
}

.custom-zoom-in,
.custom-zoom-out {
    background-color: #fff;
    color: #0e1133;
    cursor: pointer;
    border-radius: 4px;
    margin: 5px 15px;
    transition: .3s;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    text-align: center;
    font-size: 18px;
    height: 34px;
    width: 34px
}

.custom-zoom-in:hover,
.custom-zoom-out:hover {
    background-color: #66676b;
    color: #fff
}

.custom-zoom-in:before,
.custom-zoom-out:before {
    font-family: Feather-Icons;
    width: 100%;
    line-height: 35px
}

.zoomControlWrapper {
    position: absolute;
    left: initial;
    right: 0;
    width: 70px;
    margin-right: 20px
}

.custom-zoom-in:before {
    content: "\e9b1"
}

.custom-zoom-out:before {
    content: "\e996"
}

#geoLocation,
#scrollEnabling,
#streetView {
    background-color: #fff;
    color: #0e1133;
    cursor: pointer;
    border-radius: 4px;
    margin: 5px 15px;
    transition: .3s;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    position: absolute;
    top: 10px;
    left: 5px;
    z-index: 99;
    font-size: 15px;
    line-height: 21px;
    padding: 8px 14px;
    font-weight: 500
}

#geoLocation:hover,
#scrollEnabling.enabled,
#scrollEnabling:hover,
#streetView:hover {
    background-color: #66676b;
    color: #fff
}

#streetView:before {
    content: "\e974";
    font-family: Material-Icons;
    font-size: 18px;
    top: 3px;
    position: relative;
    margin-right: 7px;
    margin-left: -1px;
    line-height: 0
}

.utf-boxed-list-item {
    margin-top: 10px;
    display: block
}

.utf-boxed-list-headline-item {
    background-color: #424242;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 0;
    display: inline-block;
    width: 100%
}

.utf-billing-form-item {
    margin-bottom: 20px;
    display: block;
    background: #fff;
    padding: 20px 20px 5px 20px;
    border: 2px solid #f2f2f2;
    border-radius: 4px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06)
}

.utf-contact-form-item {
    margin-bottom: 20px;
    display: block;
    background: #217269;
    padding: 40px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%)
}

.utf-boxed-list-headline-item h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 600
}

.utf-boxed-list-headline-item h3 i {
    background: #fff;
    color: #424242 !important;
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 22px;
    text-align: center;
    border-radius: 50px;
    vertical-align: middle;
    padding: 5px
}

.utf-boxed-list-headline-item h3 span {
    color: #888
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>li {
    display: block;
    background-color: #fafafa;
    padding: 35px 25px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: .3s;
    z-index: 1
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>li:hover {
    background-color: #fcfcfc;
    transform: scale(1.02);
    transition: .3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06)
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>li:hover .bid .bids-content .utf-manage-resume-item h4 a {
    color: #a1d244
}

.tasks-list-container.compact-list .task-listing:hover .task-listing-details .task-listing-description h3.task-listing-title {
    color: #a1d244
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 80px
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>ul li {
    display: block;
    background-color: #fafafa;
    padding: 30px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: .3s;
    z-index: 1
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>ul li:hover {
    background-color: #fcfcfc;
    transform: scale(1.02);
    transition: .3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06)
}

.utf-boxed-list-item ul.utf-boxed-list-item-ul>li:nth-child(2n) {
    background-color: #fafafa
}

.fields-ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.fields-ul>li {
    display: block;
    background-color: transparent;
    padding: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4
}

.utf-boxed-list-item-item {
    display: flex
}

.utf-boxed-list-item-item .item-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 70px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .06);
    padding: 2px;
    margin-right: 20px;
    position: relative;
    top: 0;
    border: 3px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    background-color: #fff
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .utf-boxed-list-item-item .item-image {
        max-width: 60px
    }

    .utf-boxed-list-item-item .item-image img {
        width: 100%
    }
}

.utf-boxed-list-item-item .item-image img {
    height: auto;
    align-self: center;
    border-radius: 100%
}

.utf-boxed-list-item-item .item-content h4,
.utf-boxed-list-item-item .item-content h4 a {
    font-size: 18px;
    font-weight: 600;
    color: #0e1133
}

.utf-boxed-list-item-item {
    position: relative
}

.utf-boxed-list-item-item a.reply {
    display: inline;
    background-color: #a1d244;
    padding: 4px 10px;
    line-height: 20px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 4px
}

.utf-boxed-list-item-item a.reply i {
    font-size: 12px;
    margin-right: 3px;
    font-weight: 600
}

.utf-boxed-list-item-item a.reply:hover {
    background-color: #424242 !important;
    color: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .1)
}

@media (max-width:767px) {
    .utf-boxed-list-item-item a.reply {
        right: -22px;
        top: -22px
    }

    .utf-boxed-list-item-item .item-content h4 {
        margin-top: 15px
    }

    .utf-boxed-list-item ul.utf-boxed-list-item-ul ul {
        padding-left: 30px
    }
}

.utf-boxed-list-item-item .item-content h4 span {
    font-size: 15px;
    color: #212529;
    display: block;
    font-weight: 500
}

.utf-boxed-list-item-item .item-details {
    display: inline-flex;
    margin-top: 5px
}

.utf-boxed-list-item-item .item-details .utf-star-rating {
    top: 0;
    position: relative;
    margin-right: 0;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-boxed-list-item-item .item-details .utf-star-rating::before {
    top: 3px
}

.utf-boxed-list-item-item .item-details .utf-detail-item {
    margin-right: 12px;
    color: #212529;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-boxed-list-item-item .item-details .utf-detail-item a {
    color: #212529
}

.utf-boxed-list-item-item .item-details .utf-detail-item a:hover {
    color: #66676b
}

.utf-boxed-list-item-item .item-details .utf-detail-item i {
    margin-right: 2px;
    position: relative;
    top: 0;
    color: #38b653
}

.utf-boxed-list-item-item .utf-item-description p {
    margin-bottom: 0;
    padding-bottom: 0
}

.utf-boxed-list-item-item .utf-item-description {
    margin-top: 15px
}

.bid {
    display: flex;
    width: 100%
}

.bid .bids-content {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.bid .bids-bid {
    align-items: center;
    display: flex
}

.bid .bids-avatar {
    align-self: center
}

.bid .utf-manage-resume-item {
    margin-top: 0
}

.bid .utf-manage-resume-avatar {
    width: 80px;
    margin: 0 auto;
    border: 2px solid rgba(0, 0, 0, .08);
    border-radius: 80px;
    padding: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .06);
    position: relative;
    margin-right: 30px
}

.bid .utf-star-rating {
    margin-top: 0;
    display: block
}

.bids-content .item-details {
    display: inline-flex;
    margin-top: 5px
}

.bids-content .utf-job-listing-footer {
    padding: 0;
    margin-top: 6px
}

.bids-content .utf-job-listing-footer ul {
    list-style: none;
    padding: 0 !important;
    margin: 0
}

.bids-content .utf-job-listing-footer ul li {
    background: #fff;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 5px;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 0 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.bids-content .utf-job-listing-footer ul li i.icon-feather-briefcase {
    color: #12b6e8;
    padding-right: 3px
}

.bids-content .utf-job-listing-footer ul li i.icon-material-outline-location-on {
    color: #dc3139;
    font-size: 15px
}

.bids-content .item-details .utf-detail-item {
    margin-right: 12px;
    color: #212529;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.bids-content .item-details .utf-detail-item i {
    margin-right: 2px;
    position: relative;
    top: 0;
    color: #38b653
}

.bids-content .item-details .utf-star-rating {
    top: 0;
    position: relative;
    margin-right: 0;
    background: #fff;
    display: inline-block;
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.bid .utf-manage-resume-avatar img {
    width: 100%;
    border-radius: 50%;
    cursor: pointer
}

.bid .utf-manage-resume-avatar .utf-verified-badge {
    position: absolute;
    top: 0;
    right: 0
}

.bid-rate {
    text-align: center;
    font-size: 15px;
    background: #a1d244;
    color: #f9f9f9;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.bid-rate .rate {
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 20px;
    border-radius: 4px;
    padding: 5px 10px 2px 10px;
    font-size: 15px
}

.bid-rate span {
    display: block;
    margin-top: -2px
}

@media (max-width:767px) {
    .bid .utf-manage-resume-avatar {
        width: 70px;
        margin: 0 0 15px 0
    }

    .utf-boxed-list-item-ul .bid .bids-avatar {
        margin-right: 15px
    }

    .bid {
        display: block
    }

    .bid-rate {
        width: 100%
    }
}

.utf-job-overview {
    border-radius: 4px;
    background-color: #f9f9f9
}

.utf-job-overview .utf-job-overview-headline {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 25px;
    background-color: #a1d244;
    color: #fff;
    position: relative;
    border-radius: 4px 4px 0 0
}

.utf-job-overview .utf-job-overview-inner {
    padding: 25px 20px
}

.utf-job-overview .utf-job-overview-inner ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.utf-job-overview .utf-job-overview-inner ul li {
    position: relative;
    display: block;
    font-size: 15px;
    padding-left: 55px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px
}

.utf-job-overview .utf-job-overview-inner ul li:last-child {
    margin-bottom: 0
}

.utf-job-overview .utf-job-overview-inner ul li span {
    font-weight: 600;
    color: #424242;
    margin: 0;
    padding: 0;
    display: block
}

.utf-job-overview .utf-job-overview-inner ul li h5 {
    font-weight: 500;
    color: #828282;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 20px
}

.utf-job-overview .utf-job-overview-inner ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 22px;
    color: #fff !important;
    background: #a1d244;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 30px
}

a.apply-now-button {
    background-color: #66676b;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    padding: 12px 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(102, 103, 107, .15);
    transition: .3s;
    display: block
}

a.apply-now-button:hover {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(102, 103, 107, .35)
}

a.apply-now-button i {
    font-size: 15px;
    position: relative;
    line-height: 0;
    top: 2px;
    margin-left: 3px
}

.save-job-btn {
    background: #424242 !important;
    display: block !important;
    padding: 13px 20px !important;
    text-align: center;
    font-size: 15px !important
}

.save-job-btn i {
    margin-left: 3px !important
}

a.save-job-btn:hover {
    background: #a1d244 !important;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(102, 103, 107, .35)
}

#utf-single-job-map-container-item {
    position: relative
}

#utf-single-job-map-container-item #singleListingMap {
    position: relative;
    height: 340px;
    border-radius: 4px
}

.utf-detail-social-sharing ul {
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: default
}

.utf-detail-social-sharing ul li {
    display: inline-block;
    font-size: 24px
}

.utf-detail-social-sharing ul li a {
    background: #f7f7f7;
    color: #a0a0a0;
    width: 40px;
    height: 40px;
    line-height: 32px;
    padding: 5px;
    border-radius: 40px;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 1px 0 rgba(0, 0, 0, .08)
}

.utf-detail-social-sharing ul li a i.icon-brand-facebook-f {
    color: #3b5998
}

.utf-detail-social-sharing ul li a i.icon-brand-twitter {
    color: #1da1f2
}

.utf-detail-social-sharing ul li a i.icon-brand-linkedin-in {
    color: #0077b5
}

.utf-detail-social-sharing ul li a i.icon-brand-google-plus-g {
    color: #dd4b39
}

.utf-detail-social-sharing ul li a i.icon-brand-whatsapp {
    color: #25d366
}

.utf-detail-social-sharing ul li a i.icon-brand-pinterest-p {
    color: #c8232c
}

.utf-detail-social-sharing ul li a:hover {
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .12)
}

.attachments-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: calc(100% + 20px);
    margin-bottom: -30px
}

.attachment-box {
    display: flex;
    margin: 0 20px 15px 0;
    background-color: #f4f4f4;
    border-radius: 4px;
    font-weight: 600;
    padding: 15px 20px;
    padding-bottom: 40px;
    padding-right: 25px;
    line-height: 24px;
    flex-direction: column;
    color: #222;
    position: relative;
    transition: .3s;
    flex: 0 1 calc(50% - 21px);
    cursor: default;
    position: relative
}

.utf-single-page-section-aera .attachment-box {
    flex: 0 1 calc(33% - 20px)
}

.utf-single-page-section-aera .attachments-container {
    margin-bottom: -20px
}

a.attachment-box {
    cursor: pointer
}

a.attachment-box:hover {
    background-color: #66676b;
    color: #fff
}

a.attachment-box:hover:before {
    border-color: rgba(0, 0, 0, .25) #fff
}

.attachment-box span {
    font-size: 15px;
    line-height: 20px;
    display: inline-block;
    flex: auto
}

.attachment-box i {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #999;
    font-weight: 500;
    margin-top: 6px;
    position: absolute;
    bottom: 10px;
    transition: .3s
}

a.attachment-box:hover i {
    color: rgba(255, 255, 255, .7)
}

.attachment-box .remove-attachment {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    background-color: #dc3139;
    box-shadow: 0 3px 8px rgba(234, 65, 81, .15);
    height: 28px;
    width: 28px;
    line-height: 28px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 15px;
    transition: .3s;
    opacity: 0;
    transform: translateY(3px)
}

.attachment-box .remove-attachment:before {
    content: "\e9e4";
    font-family: Feather-Icons
}

.attachment-box:hover .remove-attachment {
    opacity: 1;
    transform: translateY(0)
}

.profile-overview {
    display: flex;
    line-height: 22px;
    align-items: center;
    margin-bottom: 20px;
    width: calc(100% + 10px)
}

.profile-overview .overview-item {
    flex: 1;
    margin-right: 10px;
    padding-right: 10px;
    background: #f0f0f0;
    padding: 10px 5px 8px 5px;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center
}

.profile-overview .overview-item strong {
    display: block;
    font-weight: 600;
    color: #0e1133;
    font-size: 18px;
    margin-bottom: 2px
}

.profile-overview .overview-item span {
    color: #212529;
    font-size: 15px
}

.freelancer-indicators {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    line-height: 24px;
    margin-bottom: -20px
}

.freelancer-indicators .indicator {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column
}

.freelancer-indicators .indicator span strong {
    color: #0e1133;
    font-weight: 600;
    margin-right: 5px;
    display: inline-block
}

.freelancer-indicators .indicator span {
    display: inline-block
}

.freelancer-indicators .indicator-bar,
.freelancer-indicators .indicator-bar span {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
    position: relative;
    margin: 10px 0;
    transition: 1s
}

.freelancer-indicators .indicator-bar span {
    width: 0;
    background-color: #66676b;
    position: absolute;
    top: 0;
    margin: 0
}

@media (max-width:767px) {

    .profile-overview,
    .profile-overview .overview-item {
        display: block;
        width: 100%
    }

    .profile-overview .overview-item {
        border-right: 0;
        margin-bottom: 15px
    }

    .profile-overview .overview-item:last-child {
        margin-bottom: 0
    }
}

@media (max-width:768px) {

    .attachments-container .attachment-box,
    .freelancer-indicators,
    .freelancer-indicators .indicator,
    .utf-boxed-list-item-item .item-details {
        display: block;
        width: 100%
    }

    .utf-boxed-list-item-item .item-details .utf-detail-item {
        display: block
    }

    .utf-boxed-list-item-item .item-details div {
        margin-bottom: 10px
    }

    .utf-boxed-list-item-item .item-details div:last-child {
        margin-bottom: 0
    }

    .utf-boxed-list-item-item .item-image {
        display: none
    }
}

@media (max-width:479px) {
    .utf-login-register-page-aera {
        padding: 25px
    }

    .payment-logo {
        display: none
    }

    .bids-content .item-details {
        display: inline-block
    }

    .bids-content .item-details .utf-detail-item {
        width: 100%;
        margin-bottom: 10px
    }

    #utf-signin-dialog-block.dialog-with-tabs .mfp-close,
    #quick-connect.dialog-with-tabs .mfp-close,
    #pro-connect-modal1.dialog-with-tabs .mfp-close,
    #pro-connect-modal2.dialog-with-tabs .mfp-close,
    #pro-connect-modal3.dialog-with-tabs .mfp-close,
    #case-study.dialog-with-tabs .mfp-close,
    #online-exam-modal-1 .dialog-with-tabs .mfp-close,
    #online-exam-modal-2 .dialog-with-tabs .mfp-close,
    #prex-assess-entrnc-modal-1.dialog-with-tabs .mfp-close,
    #prex-assess-entrnc-modal-2.dialog-with-tabs .mfp-close,
    #prex-assess-entrnc-modal-3.dialog-with-tabs .mfp-close,
    #pro-request-modal-1.dialog-with-tabs .mfp-close,
    #gold-request-modal-1.dialog-with-tabs .mfp-close,
    #jobility_req_modal-1.dialog-with-tabs .mfp-close,
    #round-zero-modal-1.dialog-with-tabs .mfp-close,
    #job-application-modal.dialog-with-tabs .mfp-close,
    #mylogin.dialog-with-tabs .mfp-close {
        top: -25px !important;
        right: 44% !important
    }

    #small-dialog-1.user-message-box-item li.modal-title,
    #small-dialog-2.user-message-box-item li.modal-title,
    #small-dialog.user-message-box-item li.modal-title {
        font-size: 18px;
        line-height: 40px;
        width: 90%;
        padding: 10px 10px 0 20px
    }
}

@media (max-width:359px) {
    .utf-login-register-page-aera .utf-account-type label i {
        display: none
    }

    .utf-boxed-list-item-ul .bid .bids-avatar {
        float: none;
        margin-right: 0
    }
}

.full-page-container,
.utf-dashboard-container-aera {
    height: calc(100vh - 82px)
}

@media (max-width:1099px) {

    .full-page-container,
    .utf-dashboard-container-aera {
        height: calc(100vh - 76px)
    }
}

.utf-dashboard-container-aera {
    display: flex;
    width: 100%;
    flex-wrap: wrap
}

.utf-dashboard-sidebar-item {
    flex: 0 0 280px;
    background-color: #2b2b2b;
    position: relative;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    z-index: 100
}

.utf-dashboard-sidebar-item .utf-dashboard-sidebar-item-inner {
    overflow: auto;
    height: 100%
}

.utf-dashboard-content-container-aera {
    flex: 1;
    background-color: #f9f9f9;
    padding: 0;
    overflow: auto;
    position: relative;
    z-index: 99
}

.utf-dashboard-content-inner-aera {
    padding: 40px;
    padding-bottom: 0;
    position: relative
}

@media (min-width:1099px) {
    #utf-header-container-block.dashboard-header .container {
        padding-right: 35px;
        padding-left: 0
    }

    #utf-header-container-block.dashboard-header #logo {
        width: 281px;
        padding-left: 35px
    }
}

@media only screen and (min-width:1100px) and (max-width:1239px) {
    #utf-header-container-block.dashboard-header #logo {
        width: 281px;
        padding-left: 35px
    }
}

@media (max-width:1099px) {
    #utf-header-container-block.dashboard-header #logo {
        width: auto
    }
}

.utf-dashboard-nav {
    display: block;
    z-index: 11;
    padding-bottom: 30px
}

a.utf-dashboard-responsive-trigger-item {
    display: none
}

.utf-dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.utf-dashboard-nav ul:first-child {
    margin: 15px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, .05)
}

.utf-dashboard-nav ul:before {
    content: attr(data-submenu-title);
    padding: 0 35px;
    margin-bottom: 0;
    display: block;
    color: #66676b;
    font-weight: 600;
    font-size: 15px
}

.utf-dashboard-nav ul li {
    display: block;
    border-left: 4px solid transparent;
    transition: .3s;
    line-height: 25px;
    font-size: 15px;
    margin-bottom: -1px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.utf-dashboard-nav ul li a {
    color: #fff;
    display: block;
    padding: 12px 25px;
    transition: .3s;
    cursor: pointer;
    position: relative
}

.utf-dashboard-nav ul li a i {
    padding: 8px;
    width: 32px;
    height: 32px;
    line-height: 28px;
    font-size: 18px;
    color: #fff;
    transition: .3s;
    position: relative;
    top: 0;
    background: rgba(255, 255, 255, .08);
    text-align: center;
    vertical-align: middle;
    border-radius: 20px;
    left: -8px
}

.utf-dashboard-nav ul li.active a i,
.utf-dashboard-nav ul li.active-submenu a i,
.utf-dashboard-nav ul li:hover a i {
    color: #66676b
}

.utf-dashboard-nav ul li.active,
.utf-dashboard-nav ul li.active-submenu,
.utf-dashboard-nav ul li:hover {
    border-color: #66676b;
    background-color: rgba(102, 103, 107, .04)
}

.utf-dashboard-nav ul li.active,
.utf-dashboard-nav ul li.active-submenu,
.utf-dashboard-nav ul li:hover {
    border-bottom: 1px solid rgba(255, 255, 255, .05) !important
}

.utf-dashboard-nav ul li.active a,
.utf-dashboard-nav ul li.active-submenu a,
.utf-dashboard-nav ul li:hover a {
    color: #66676b
}

.dashboard-profile-box {
    margin: 10px 0 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #454545;
    float: left;
    width: 100%
}

.dashboard-profile-box>span {
    display: block;
    text-align: center
}

.dashboard-profile-box img {
    margin-bottom: 0;
    border-radius: 100px
}

.dashboard-profile-box .fullname {
    color: #fff;
    display: block;
    font-weight: 600;
    font-size: 15px
}

.dashboard-profile-box .user-role {
    color: #a1a1a1;
    font-size: 15px;
    font-weight: 600
}

.dashboard-profile-box>span.avatar-img {
    float: left;
    width: 100px;
    height: auto;
    padding: 10px 17px 10px 20px
}

.dashboard-profile-box .user-profile-text {
    float: left;
    margin-top: 14px;
    width: 160px
}

.dashboard-profile-box>span {
    display: block;
    text-align: left;
    padding-left: 90px
}

.utf-dashboard-nav ul li span.nav-tag {
    display: inline-block;
    font-weight: 500;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background-color: #66676b;
    border-radius: 50%;
    position: relative;
    margin: 0 0 0 4px;
    top: 0
}

.utf-dashboard-nav ul li ul {
    padding: 0;
    margin: 0;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    line-height: 0;
    transition: .3s;
    pointer-events: none
}

.utf-dashboard-nav ul li.active-submenu ul {
    visibility: visible;
    padding: 0;
    opacity: 1;
    max-height: 200px;
    pointer-events: all
}

.utf-dashboard-nav ul li ul li {
    background-color: transparent;
    border: none;
    padding-left: 25px;
    position: relative;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .05) !important
}

.utf-dashboard-nav ul li ul li a {
    padding: 8px 0
}

.utf-dashboard-nav ul li ul li:hover {
    background-color: rgba(255, 255, 255, .08);
    border-bottom: 0 !important
}

.utf-dashboard-nav ul li a:after {
    font-family: Material-Icons;
    content: '\e957';
    opacity: 1;
    font-size: 18px;
    transition: .3s;
    opacity: 1;
    line-height: 18px;
    width: 18px;
    height: 18px;
    background-color: transparent !important;
    color: #a8a8a8;
    display: inline-block;
    border-radius: 3px;
    margin-left: 7px;
    text-indent: 0;
    top: 1px;
    position: absolute;
    right: 20px;
    top: 17px
}

.utf-dashboard-nav ul li.active-submenu a:after {
    transform: rotate(180deg);
    top: 18px
}

.utf-dashboard-nav ul li.active a:after,
.utf-dashboard-nav ul li.active-submenu a:after,
.utf-dashboard-nav ul li:hover a:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

.utf-dashboard-nav ul li a:only-child:after,
.utf-dashboard-nav ul li ul:before {
    content: '';
    display: none
}

.utf-dashboard-headline-item {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding: 50px 40px;
    border-bottom: 1px solid #eee
}

#dashboard-titlebar {
    position: relative;
    background-image: url(../images/page-title.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat
}

#dashboard-titlebar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .65
}

.utf-dashboard-headline-item h3 {
    display: block;
    font-size: 26px;
    color: #fff;
    font-weight: 600
}

.utf-dashboard-headline-item span {
    display: block;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    margin-top: 5px
}

.utf-funfacts-container-aera {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-bottom: 0
}

.fun-fact {
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    border-radius: 4px;
    padding: 20px 10px;
    margin-right: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1 1 calc(20% - 30px);
    height: auto;
    cursor: default;
    transition: .3s
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .fun-fact {
        flex: 1
    }
}

.fun-fact-icon {
    border-radius: 50px;
    background-color: rgba(0, 0, 0, .04);
    flex: 0 0 70px;
    height: 70px;
    display: flex;
    text-align: center;
    margin: 0 auto
}

.fun-fact-icon i {
    font-size: 34px;
    align-self: center;
    margin: 0 auto;
    color: #222
}

.fun-fact-icon i.icon-material-outline-gavel {
    transform: scale(.91)
}

.fun-fact-text {
    margin-top: 15px;
    width: 100%;
    text-align: center
}

.fun-fact span {
    font-size: 15px;
    color: #888;
    line-height: 22px
}

.fun-fact h4 {
    font-size: 38px;
    color: #0e1133;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 5px
}

.dashboard-box {
    display: block;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
    position: relative
}

.dashboard-box .headline {
    background: #424242;
    display: block;
    padding: 20px 25px;
    position: relative;
    border-radius: 4px 4px 0 0
}

.dashboard-box .headline h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 26px
}

.dashboard-box .headline h3 i {
    color: #fff !important;
    font-size: 21px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-right: 4px
}

.dashboard-box .headline h3 i.icon-material-outline-gavel {
    font-size: 20px
}

.dashboard-box .headline h3 i.icon-material-outline-supervisor-account {
    font-size: 24px;
    top: 3px
}

.dashboard-box .headline h3 i.icon-feather-folder-plus {
    font-size: 20px;
    top: 2px;
    margin-right: 5px
}

.button.big i.icon-feather-plus {
    font-size: 20px;
    top: 2px;
    margin-left: -4px;
    margin-right: 5px
}

.dashboard-box .content.with-padding {
    padding: 30px
}

.dashboard-box .chart {
    padding: 30px 20px 17px 18px
}

.dashboard-box .headline .sort-by {
    float: none;
    display: inline-block;
    position: absolute;
    top: calc(50% + 3px);
    transform: translateY(-50%);
    right: 30px;
    z-index: 100;
    height: 33px
}

.dashboard-box .headline .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-weight: 500;
    color: #fff
}

.dashboard-note {
    border-radius: 4px;
    background-color: #f8f8f8;
    padding: 25px;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.dashboard-note:last-child {
    margin-bottom: 65px
}

.dashboard-note:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 20px 20px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, .15) #fff;
    transition: .3s;
    border-radius: 0 0 0 4px
}

.dashboard-note p {
    line-height: 24px;
    margin-bottom: 20px;
    color: #777;
    font-size: 14.7px
}

.utf_dashboard_list_box {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
    border-radius: 4px;
    width: 100%
}

.dashboard-list-box {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
    border-radius: 6px
}

.utf_dashboard_list_box table.table-hover thead tr {
    background: #efefef
}

.utf_dashboard_list_box table.table-hover tr th {
    font-weight: 600
}

.dashboard-list-box .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0
}

.utf_dashboard_list_box .button.gray {
    background-color: #eee;
    color: #222;
    font-size: 13px;
    padding: 5px 12px;
    line-height: 22px;
    border-radius: 30px;
    vertical-align: middle
}

.utf_dashboard_list_box .button.gray i {
    font-size: 15px;
    margin-right: 2px;
    margin-left: 0
}

.dashboard-list-box .table thead th {
    vertical-align: bottom;
    border-bottom: .125rem solid #dee2e6
}

.dashboard-list-box .table td,
.dashboard-list-box .table th {
    padding: 15px 20px;
    vertical-align: middle
}

.dashboard-list-box .table tr {
    border-bottom: 1px solid #e4e4e4
}

.dashboard-list-box .table tr:last-child {
    border-bottom: 0
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.rounded-circle {
    border-radius: 30px
}

.dashboard-list-box .badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 40px;
    height: 26px;
    line-height: 18px
}

.badge-primary {
    color: #fff;
    background-color: #d7f2e3
}

.badge-danger {
    color: #fff;
    background-color: #12b6e8
}

.badge-canceled {
    color: #fff;
    background-color: #dc3139
}

.note-priority {
    background-color: #0e1133;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    padding: 5px 9px;
    display: inline-block;
    line-height: 20px
}

.note-priority.high {
    background-color: #dc3139
}

.note-priority.medium {
    background-color: #f59110
}

.note-priority.low {
    background-color: #3fb660
}

.note-footer {
    display: flex
}

.note-buttons {
    align-self: center;
    margin-left: auto
}

.note-buttons a {
    font-size: 15px;
    padding-left: 3px;
    margin-top: 2px;
    display: inline-block;
    color: #888
}

.note-buttons a:hover {
    color: #444
}

.add-note-button {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    padding-top: 10px;
    background: #fff;
    border-radius: 4px;
    width: calc(100% - 15px)
}

.add-note-button a.button {
    width: calc(100% + 15px) !important;
    max-width: calc(100% + 15px) !important
}

ul.utf-dashboard-box-list {
    list-style: none;
    padding: 0;
    margin: 0
}

ul.utf-dashboard-box-list>li {
    border-bottom: 1px solid #e4e4e4;
    padding: 0;
    line-height: 26px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    flex-flow: row wrap;
    transition: .3s;
    z-index: 0
}

ul.utf-dashboard-box-list>li:last-child {
    border-bottom: none
}

ul.utf-dashboard-box-list>li:hover {
    background-color: #fcfcfc;
    transform: scale(1.02);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .08)
}

ul.utf-dashboard-box-list>li:hover .utf-job-listing-details .utf-job-listing-description h3.utf-job-listing-title a {
    color: #a1d244
}

ul.utf-dashboard-box-list>li:hover .utf-manage-resume-overview-aera-inner .utf-manage-resume-item h4 a {
    color: #a1d244
}

.utf-dashboard-box-list .notification-text {
    font-size: 14.7px;
    flex: 1
}

.utf-dashboard-box-list .notification-text a {
    background: #a1d244;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 3px;
    padding: 2px 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08)
}

.utf-dashboard-box-list .notification-text a:hover {
    background: #fff;
    color: #a1d244
}

.utf-dashboard-box-list .notification-icon {
    flex: 0 0 40px
}

.utf-dashboard-box-list .notification-text .utf-star-rating {
    position: relative;
    top: -18px;
    line-height: 0;
    height: 0;
    display: inline-block;
    margin: 0 3px;
    transform: scale(.93)
}

.utf-buttons-to-right,
.utf-dashboard-box-list .button.to-right {
    position: absolute;
    right: 20px;
    top: 25%;
    transform: translateY(-25%);
    opacity: 0;
    transition: .3s;
    box-shadow: 0 0 20px 10px #fff;
    background-color: #fff
}

.utf-dashboard-box-list .utf-buttons-to-right.always-visible,
.utf-dashboard-box-list li:hover .utf-buttons-to-right {
    opacity: 1
}

.utf-dashboard-box-list .utf-job-listing .utf-job-listing-footer ul {
    margin-top: 5px
}

.utf-dashboard-box-list .utf-buttons-to-right.always-visible:not(.single-right-button) {
    position: relative;
    transform: none;
    top: 0;
    margin: 10px 0 0 0;
    opacity: 1;
    right: auto;
    display: inline-block;
    box-shadow: none;
    width: 100%;
    background-color: transparent;
    box-shadow: none
}

.utf-dashboard-box-list .button {
    padding: 6px 15px;
    line-height: 20px;
    font-size: 13px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(102, 103, 107, .15)
}

.utf-dashboard-box-list .button i[class*=icon-material] {
    font-size: 18px;
    top: 3px
}

.utf-dashboard-box-list .utf-buttons-to-right .button {
    margin: 0 0 -6px 2px
}

.utf-dashboard-box-list .utf-buttons-to-right.always-visible .button {
    margin: 0 3px 0 0
}

.dashboard-box .button.red {
    background-color: #dc3139;
    box-shadow: 0 3px 8px rgba(234, 65, 81, .15)
}

.dashboard-box .button.green {
    background-color: #40b660;
    box-shadow: 0 3px 8px rgba(64, 182, 96, .15)
}

.dashboard-box .button.dark {
    background-color: #0e1133;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1)
}

.dashboard-box .button.gray {
    background-color: #eee;
    color: #222;
    box-shadow: none
}

.dashboard-box .button.gray:not(.ico):hover,
.dashboard-box .button.green:not(.ico):hover,
.dashboard-box .button.red:not(.ico):hover,
.dashboard-box .utf-dashboard-box-list .button:not(.ico):hover {
    color: #fff;
    background-color: #0e1133;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1)
}

.dashboard-box .button.dark:not(.ico):hover {
    background-color: #66676b;
    box-shadow: 0 3px 8px rgba(102, 103, 107, .15)
}

.dashboard-box .button.ico {
    width: 32px;
    text-align: center
}

.dashboard-box .button.ico i {
    font-size: 15px;
    margin-left: -7px;
    top: 2px;
    color: #fff;
    position: relative
}

.dashboard-box .button i.icon-material-outline-check {
    margin-left: -5px
}

.dashboard-box .button.ico i[class*=icon-material] {
    font-size: 18px;
    margin-left: -8px;
    top: 3px;
    position: relative
}

.utf-dashboard-box-list {
    box-shadow: none
}

.utf-dashboard-box-list a.button i {
    margin: 0;
    padding: 0;
    position: relative;
    top: 1px;
    font-size: 15px;
    line-height: 0;
    margin-right: 3px
}

.dashboard-box .mark-as-read {
    float: none;
    background-color: #f4f4f4;
    position: absolute;
    right: 25px;
    top: 16px
}

.button-info {
    background: rgba(255, 255, 255, .25);
    color: #fff;
    width: 19px;
    height: 19px;
    display: inline-block;
    text-align: center;
    line-height: 19px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 500;
    margin-left: 3px;
    margin-right: -2px
}

.dashboard-status-button {
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    line-height: 21px;
    padding: 2px 10px;
    display: inline-block;
    position: relative;
    top: -2px;
    margin: 0 0 4px 8px;
    font-weight: 600
}

.utf-job-status-item,
.utf-status-item {
    margin: 0 0 4px 0
}

.dashboard-status-button.green {
    background: #d7f2e3;
    color: #449626;
    font-size: 11px;
    height: 16px;
    padding: 2px 6px 2px 4px;
    display: inline;
}

.dashboard-status-button.yellow {
    background-color: #fbf6dd;
    color: #a1d244;
    font-size: 11px;
    height: 16px;
    padding: 2px 6px 2px 4px;
    display: inline;
}

.dashboard-status-button.red {
    background-color: #ffe6e6;
    color: #ea5252;
    font-size: 11px;
    height: 16px;
    padding: 2px 6px 2px 4px;
    display: inline;
}

.utf-invoice-list-item ul {
    line-height: 22px;
    padding-bottom: 2px;
    color: #909090;
    list-style: none;
    padding: 0;
    margin: 0
}

.utf-invoice-list-item ul li {
    padding: 0;
    display: inline-block;
    font-size: 15px;
    margin-bottom: 5px
}

.utf-invoice-list-item .utf-invoice-user-city {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    color: #626262;
    font-weight: 600;
    font-size: 15px
}

.utf-invoice-list-item .utf-invoice-user-city img.flag {
    height: 16px;
    border-radius: 2px;
    position: relative;
    top: -1px;
    display: inline-block;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    margin-left: 5px;
    cursor: default
}

.utf-invoice-list-item ul li span {
    font-weight: 600;
    color: #626262
}

.utf-invoice-list-item ul li:after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 11px;
    background-color: #d0d0d0;
    position: relative;
    margin: 0 7px
}

.utf-invoice-list-item ul li:last-child:after {
    display: none
}

.utf-invoice-list-item strong {
    font-weight: 600;
    color: #0e1133;
    margin-bottom: 5px;
    margin-top: -2px;
    display: block
}

.paid,
.unpaid {
    background-color: #0e1133;
    color: #fff;
    border-radius: 40px;
    line-height: 20px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    top: -2px;
    display: inline-block
}

.paid {
    background-color: #40b660
}

.unpaid {
    background-color: #dc3139
}

.dashboard-box .utf-job-listing-details {
    box-shadow: none;
    padding: 10px 0;
    align-items: center;
    flex: auto
}

.dashboard-box .utf-job-listing {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    width: 100%
}

.dashboard-box .utf-job-listing.width-adjustment {
    max-width: 95%
}

.dashboard-box .utf-job-listing h3 a {
    color: #0e1133;
    font-size: 18px;
    font-weight: 600
}

.dashboard-box .utf-job-listing .utf-job-listing-company-logo {
    max-width: 80px
}

.dashboard-box .utf-job-listing .utf-job-listing-description {
    padding-top: 0
}

.dashboard-box .utf-job-listing:hover {
    transform: none
}

.dashboard-box .utf-job-listing .utf-job-listing-footer {
    background-color: transparent;
    padding: 0;
    border-radius: none
}

.dashboard-box .utf-manage-resume-overview-aera {
    padding: 7px 0
}

.dashboard-box .utf-manage-resume-overview-aera-inner {
    flex: auto;
    display: flex;
    align-items: center
}

.dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-item {
    text-align: left;
    margin: 0 0 0 30px;
    width: 100%
}

.dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
    margin: 0;
    width: 120px
}

.dashboard-box .utf-manage-resume-overview-aera.utf-manage-candidate .utf-manage-resume-avatar {
    align-self: flex-start
}

.dashboard-task-info {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #a1d244;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    text-align: left;
    border-radius: 4px;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: flex-end;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    justify-content: left
}

.dashboard-task-info li {
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, .3);
    padding-right: 15px;
    margin-right: 15px;
    display: flex;
    flex-direction: initial;
    justify-content: left;
    align-items: left
}

.dashboard-task-info li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none
}

.dashboard-list-box .table {
    text-align: right
}

.dashboard-task-info {
    position: relative;
    right: 0;
    top: 0;
    margin-bottom: 10px;
    transform: translateY(0)
}

.dashboard-task-info li strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 22px
}

.dashboard-task-info li span {
    display: block;
    font-size: 15px;
    color: #f9f9f9;
    line-height: 20px;
    padding-left: 5px;
    padding-top: 1px;
    font-weight: 600
}

.bid-acceptance {
    display: flex;
    color: #a1d244;
    background-color: #fde8cf;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    padding: 12px 18px;
    display: inline-block;
    margin: 0 auto;
    line-height: 20px
}

.bid-acceptance span {
    font-size: 15px;
    opacity: .86;
    line-height: 20px
}

@media (max-width:1366px) {
    .dashboard-box .utf-job-listing.width-adjustment {
        max-width: 100%
    }

    .dashboard-task-info {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 5px 0 10px 0
    }

    .dashboard-task-info.bid-info {
        margin-bottom: 0;
        margin-top: 20px
    }
}

.utf-manage-resume-overview-aera .dashboard-task-inner-item .dashboard-task-info.bid-info {
    margin-top: 12px;
    display: inline-flex
}

@media (max-width:768px) {
    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 100px
    }

    .utf-manage-resume-overview-aera .utf-manage-resume-avatar img {
        border: 2px solid rgba(0, 0, 0, .03)
    }

    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-avatar .utf-verified-badge {
        transform: scale(.8);
        top: -6px;
        right: 0
    }

    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-item {
        margin: 0 0 0 20px
    }

    .dashboard-box .utf-job-listing .utf-job-listing-company-logo {
        display: none
    }

    .dashboard-task-info li:last-child {
        border-right: none;
        border-bottom: none;
        padding: 0;
        margin: 0
    }
}

@media (max-width:767px) {

    .dashboard-task-info.bid-info,
    .dashboard-task-info:not(.bid-info) {
        flex-direction: column;
        width: 100%
    }

    .dashboard-task-info li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        padding: 0 0 7px 0;
        margin: 0 0 7px 0;
        width: 100%
    }

    .utf-manage-resume-overview-aera .dashboard-task-inner-item .dashboard-task-info.bid-info {
        margin-bottom: 10px
    }

    .freelancer-rating .utf-detail-item {
        width: 100%;
        margin-bottom: 10px
    }

    .freelancer-rating {
        display: block
    }

    .utf-dashboard-headline-item h3 {
        font-size: 24px;
        font-weight: 600
    }
}

@media (max-width:329px) {
    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 80px
    }
}

.dashboard-box .utf-boxed-list-item-item {
    padding: 10px 0;
    width: 100%
}

.utf-sidebar-widget-item .bootstrap-select {
    border-radius: 4px
}

.utf-submit-field {
    margin-bottom: 20px;
    display: block
}

.utf-submit-field .pac-container {
    box-shadow: none;
    border: 1px solid #e0e0e0;
    border-top: 1px solid #fff;
    padding-top: 0;
    z-index: 9;
    left: 0 !important;
    top: 47px !important;
    border-radius: 0 0 4px 4px
}

.utf-submit-field h5 {
    font-size: 15px;
    font-weight: 600;
    color: #0e1133;
    margin-bottom: 12px
}

.utf-submit-field h5 i {
    margin-right: 5px
}

.utf-submit-field h5 i.icon-brand-facebook {
    color: #3b5998
}

.utf-submit-field h5 i.icon-brand-twitter {
    color: #00acee
}

.utf-submit-field h5 i.icon-brand-linkedin {
    color: #0e76a8
}

.utf-submit-field h5 i.icon-brand-google-plus-g {
    color: #db4a39
}

.utf-submit-field h5 i.icon-brand-pinterest {
    color: #c8232c
}

.utf-submit-field h5 i.icon-feather-instagram {
    color: #c8232c
}

.utf-submit-field h5 span {
    color: #888;
    font-weight: 500
}

.help-icon {
    color: #66676b;
    display: inline-block;
    font-size: 19px;
    font-weight: 400;
    line-height: 18px;
    height: 16px;
    position: relative;
    top: 3px;
    margin: 0 3px;
    font-style: normal;
    cursor: help
}

.help-icon:before {
    content: "\e97c";
    font-family: Feather-Icons
}

.utf-avatar-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    margin: 0 0 30px 0;
    transition: all .3s ease
}

.utf-avatar-wrapper:hover {
    cursor: pointer
}

.utf-avatar-wrapper .profile-pic {
    height: 100%;
    width: 100%;
    transition: all .3s ease;
    object-fit: cover
}

.utf-avatar-wrapper .profile-pic:after {
    font-family: Feather-Icons;
    content: "\e9f1";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 120px;
    position: absolute;
    font-size: 60px;
    background: #f0f0f0;
    color: #aaa;
    text-align: center
}

.utf-avatar-wrapper .upload-button {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px dashed #dde6ef;
    height: 100%;
    width: 100%
}

.utf-avatar-wrapper .file-upload {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

@media (max-width:767px) {
    .utf-avatar-wrapper {
        position: relative;
        width: 150px;
        height: 150px;
        border-radius: 10px;
        overflow: hidden;
        margin: 0 auto 30px auto;
        display: block;
        box-shadow: none;
        transition: all .3s ease
    }

    .attachments-container {
        display: block;
        width: 100%
    }

    .utf_dashboard_list_box {
        display: none
    }

    .jbm-callout-in-padding {
        padding: 0 10px
    }

    .jbm-section-title h2 {
        font-size: 28px
    }

    #titlebar.gradient {
        padding-top: 40px;
        padding-bottom: 45px
    }

    ul.utf-dashboard-box-list>li:hover {
        transform: scale(1.02);
        box-shadow: none
    }
}

.utf-dashboard-content-inner-aera .utf-small-footer {
    width: 100%;
    left: 0;
    padding: 25px 15px;
    position: absolute;
    bottom: 0
}

.utf-dashboard-footer-spacer-aera {
    padding-top: 125px
}

@media (max-width:1365px) {
    .fun-fact {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px)
    }
}

@media (max-width:992px) {
    .utf-dashboard-content-inner-aera {
        min-height: auto !important
    }

    .utf-dashboard-content-inner-aera,
    .utf-dashboard-sidebar-item .utf-dashboard-nav-container {
        padding: 15px
    }

    .utf-dashboard-sidebar-item-inner {
        padding-bottom: 0
    }

    .utf-dashboard-headline-item {
        padding: 40px 15px
    }

    .utf-dashboard-sidebar-item .simplebar-content {
        overflow-x: hidden
    }

    .utf-dashboard-nav-inner {
        padding: 0;
        margin-bottom: 0
    }

    .utf-dashboard-sidebar-item {
        flex: 1;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        height: auto !important
    }

    .full-page-sidebar .simplebar-track,
    .utf-dashboard-sidebar-item .simplebar-track {
        display: none
    }

    .full-page-sidebar-inner,
    .utf-dashboard-sidebar-item-inner {
        height: auto !important
    }

    .utf-dashboard-container-aera {
        display: block;
        width: 100%;
        flex-wrap: wrap;
        height: auto !important
    }

    .utf-dashboard-content-container-aera {
        height: auto !important
    }

    .utf-dashboard-content-container-aera .simplebar-scrollbar {
        display: none
    }

    .utf-dashboard-nav {
        width: 100%;
        margin: 0;
        margin-top: 10px;
        border-radius: 6px;
        position: relative;
        min-height: auto;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        padding: 0;
        transition: all .3s;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        background: #2b2b2b
    }

    .utf-dashboard-nav ul:first-child {
        margin: 0
    }

    .utf-buttons-to-right,
    .utf-dashboard-box-list .button.to-right {
        background: 0 0
    }

    .utf-dashboard-nav ul {
        margin-top: 15px
    }

    .utf-dashboard-nav.active,
    .utf-dashboard-nav.active ul {
        opacity: 1;
        visibility: visible;
        max-height: 900px
    }

    .dashboard-profile-box {
        display: none
    }

    .utf-dashboard-nav.active,
    .utf-dashboard-nav.active .dashboard-profile-box {
        opacity: 1;
        visibility: visible;
        display: block
    }

    .utf-dashboard-nav ul:before {
        padding: 0 29px
    }

    .utf-dashboard-nav ul li a {
        padding: 12px 20px
    }

    .utf-dashboard-nav ul,
    .utf-dashboard-nav ul li ul,
    .utf-dashboard-nav.active ul li ul {
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        transition: all .3s
    }

    .utf-dashboard-nav.active ul li.active-submenu ul {
        visibility: visible;
        opacity: 1;
        max-height: 300px
    }

    a.utf-dashboard-responsive-trigger-item {
        width: 100%;
        margin: 0;
        margin-top: 10px;
        background-color: #0e1133;
        border-radius: 4px;
        color: #fff;
        padding: 15px 20px;
        font-weight: 600;
        transition: .2s;
        display: block;
        text-align: center;
        line-height: 26px
    }

    a.utf-dashboard-responsive-trigger-item span.trigger-title {
        padding-left: 33px
    }

    a.utf-dashboard-responsive-trigger-item .utf-hamburger-inner-item,
    a.utf-dashboard-responsive-trigger-item .utf-hamburger-inner-item::after,
    a.utf-dashboard-responsive-trigger-item .utf-hamburger-inner-item::before {
        background-color: #fff
    }

    a.utf-dashboard-responsive-trigger-item .hamburger {
        top: 16px;
        left: 0;
        height: 20px;
        transform: scale(.66)
    }

    a.utf-dashboard-responsive-trigger-item i {
        margin-right: 8px;
        margin-left: -2px;
        font-size: 28px;
        line-height: 0;
        position: relative;
        top: 6px
    }

    a.utf-dashboard-responsive-trigger-item.active {
        border-radius: 6px
    }

    .utf-funfacts-container-aera {
        width: calc(100% + 15px);
        margin-bottom: 10px
    }

    .fun-fact {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
        margin: 0 15px 15px 0
    }

    .dashboard-box.main-box-in-row {
        margin-bottom: 30px
    }
}

@media (max-width:768px) {
    .fun-fact {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
        margin: 0 15px 15px 0
    }

    #titlebar #breadcrumbs,
    .utf-dashboard-headline-item #breadcrumbs {
        right: 0;
        position: relative;
        top: 0;
        transform: none;
        margin-top: 7px;
        max-width: 100%
    }

    #breadcrumbs ul {
        padding-left: 0
    }

    .utf-dashboard-headline-item {
        text-align: center;
        padding: 20px 10px;
        margin: 0 15px;
        border-radius: 4px;
        margin-top: 15px
    }

    #dashboard-titlebar::before {
        border-radius: 4px
    }

    #breadcrumbs ul {
        padding: 0
    }

    #breadcrumbs,
    #titlebar h2 {
        text-align: center;
        left: 0;
        right: 0;
        width: 100%
    }

    #titlebar h2 {
        font-size: 26px
    }

    .utf-buttons-to-right:not(.single-right-button) {
        position: relative;
        transform: none;
        top: 5px;
        margin: 0;
        opacity: 1;
        text-align: right;
        right: auto;
        display: inline-block;
        box-shadow: none;
        width: 100%
    }

    .dashboard-box .headline .sort-by {
        display: block
    }

    .dashboard-box .headline .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }
}

.messages-container {
    margin: 0;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
    border-radius: 4px;
    background-color: #fff
}

.messages-inbox ul {
    max-height: 875px
}

.message-content-inner {
    max-height: 750px
}

.message-content,
.messages-container-inner .messages-inbox {
    overflow: hidden
}

.message-content-inner,
.messages-container-inner .messages-inbox ul {
    overflow-y: scroll;
    width: calc(100% + 18px)
}

.message-content-inner::-webkit-scrollbar,
.messages-container-inner .messages-inbox ul::-webkit-scrollbar {
    width: 17px
}

.messages-headline {
    max-height: 82px;
    font-size: 15px;
    margin: 0;
    padding: 22px 30px;
    color: #0e1133;
    background-color: #fff;
    display: block;
    border-bottom: 1px solid #eaeaea;
    border-radius: 4px 4px 0 0;
    position: relative
}

.messages-headline input {
    background-color: #f6f6f6;
    box-shadow: none;
    height: 38px;
    padding: 14px;
    font-size: 15px;
    margin: 0
}

.messages-headline input:focus {
    box-shadow: none
}

.messages-headline .utf-input-with-icon i {
    font-size: 18px;
    right: 14px
}

.messages-headline h4 {
    font-size: 15px;
    color: #0e1133;
    padding: 6px 0;
    margin: 0;
    font-weight: 600;
    display: inline-block
}

.message-action {
    border-radius: 50px;
    font-size: 13px;
    color: #222;
    font-weight: 500;
    display: inline-block;
    transition: .3s;
    color: #222;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%)
}

.message-action i {
    font-size: 15px;
    position: relative;
    top: 1px;
    margin-right: 1px
}

.message-action:hover {
    color: #ee3535
}

.messages-inbox ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.message-avatar img {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%
}

.messages-inbox ul li a {
    position: relative;
    display: block;
    padding: 30px
}

.messages-inbox ul li {
    transition: .2s;
    position: relative
}

.messages-inbox ul li:nth-child(2n) {
    background-color: #fafafa
}

.messages-inbox ul li:last-child {
    border-bottom: none
}

.messages-inbox ul li.active-message {
    background-color: #fafafa
}

.messages-inbox ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #66676b;
    display: block;
    content: "";
    opacity: 0;
    transition: .3s
}

.messages-inbox ul li.active-message:before,
.messages-inbox ul li:hover:before {
    opacity: 1
}

.messages-inbox .message-avatar {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%)
}

.messages-inbox .message-by {
    margin-left: 85px;
    font-size: 15px;
    color: #222
}

.messages-inbox .message-by p {
    margin: 0;
    padding: 0;
    line-height: 25px;
    font-size: 15px
}

.message-by-headline h5,
.message-by-headline span {
    display: inline-block
}

.message-by-headline span {
    float: right;
    color: #888;
    font-size: 15px
}

.message-by-headline h5 {
    font-weight: 600;
    color: #0e1133;
    margin: 0 0 7px 0;
    padding: 0
}

.message-by-headline:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.message-by h5 i {
    background-color: #66676b;
    border-radius: 4px;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    font-style: normal;
    padding: 3px 8px;
    margin-left: 3px
}

.messages-container-inner {
    display: flex
}

.messages-container-inner .message-content,
.messages-container-inner .messages-inbox {
    flex: 1
}

.messages-container-inner .message-content-inner {
    padding: 30px;
    padding-bottom: 0;
    flex-grow: 1
}

.messages-container-inner .message-content {
    display: flex;
    flex-direction: column
}

.messages-container-inner .messages-inbox {
    max-width: 340px;
    border-right: 1px solid #eaeaea
}

.messages-container-inner .messages-inbox ul li a {
    padding: 25px
}

.messages-container-inner .messages-inbox .message-by p {
    height: 26px;
    max-width: 205px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 15px;
    color: #888
}

.messages-container-inner .message-avatar img {
    width: 40px;
    height: 40px
}

.messages-container-inner .messages-inbox .message-avatar {
    left: 25px
}

.messages-container-inner .messages-inbox .message-by {
    margin-left: 60px
}

.messages-container-inner .message-by-headline h5 {
    font-size: 15px;
    margin-bottom: 3px;
    max-width: 160px;
    line-height: 23px
}

.messages-container-inner .message-by-headline span {
    font-size: 13px;
    position: absolute;
    top: 25px;
    right: 25px
}

.message-bubble {
    display: block;
    position: relative;
    margin-bottom: 25px
}

.message-bubble .message-avatar {
    position: absolute;
    left: 0;
    top: 0
}

.message-bubble .message-avatar img {
    width: 50px;
    height: 50px
}

.message-bubble .message-text {
    margin-left: 70px;
    background-color: #f4f4f4;
    border-radius: 4px;
    padding: 12px 18px;
    position: relative;
    display: inline-block;
    float: left;
    line-height: 25px
}

.message-bubble.me .message-text {
    float: right
}

.message-bubble .message-text p {
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 25px
}

.message-bubble.me .message-avatar {
    left: auto;
    right: 0
}

.message-bubble.me .message-text {
    margin-left: 0;
    margin-right: 70px;
    background-color: #66676b;
    color: #fff;
    position: relative
}

.message-bubble .message-text:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #f4f4f4;
    left: -6px;
    right: auto;
    top: 19px;
    position: absolute
}

.message-bubble.me .message-text:before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #66676b;
    border-right: none;
    right: -6px;
    left: auto
}

.message-time-sign {
    text-align: center;
    display: block;
    position: relative;
    margin-bottom: 25px
}

.message-time-sign:before {
    content: "";
    height: 1px;
    background-color: #eaeaea;
    display: block;
    max-width: 30%;
    margin: 0 auto;
    position: relative;
    top: 14px;
    z-index: 10
}

.message-time-sign span {
    background-color: #fff;
    font-size: 15px;
    color: #888;
    z-index: 11;
    position: relative;
    padding: 0 10px
}

.message-reply {
    border-top: 1px solid #eaeaea;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    margin-top: 15px
}

.message-reply textarea {
    min-width: auto;
    height: 48px;
    min-height: 48px;
    padding: 10px 0;
    margin: 0 15px 0 0;
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    box-shadow: none;
    border: none;
    box-sizing: border-box;
    resize: none
}

.message-reply button {
    border-radius: 4px;
    flex: auto;
    flex-grow: 0;
    height: 44px;
    text-align: center;
    align-self: center;
    padding: 0 25px
}

.message-reply i {
    padding: 0;
    margin: 0
}

.typing-indicator {
    width: auto;
    height: 24px;
    padding-top: 8px
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: #a0a0a0;
    display: block;
    border-radius: 50%;
    opacity: .4
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink infinite .33333s
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite .66666s
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite .99999s
}

@keyframes blink {
    50% {
        opacity: 1
    }
}

@media (max-width:992px) {
    .messages-container-inner .messages-inbox {
        max-width: 300px
    }

    .inner_search_block_section .utf-intro-search-field-item .bootstrap-select,
    .inner_search_block_section .utf-intro-search-field-item input {
        border: 1px solid #dde6ef;
        border-radius: 4px
    }
}

@media (max-width:768px) {
    .messages-container-inner {
        display: block
    }

    .messages-container-inner .messages-inbox {
        max-width: 100%;
        border-bottom: 1px solid #e4e4e4;
        border-right: none
    }

    .messages-inbox ul {
        max-height: 500px
    }

    .messages-container-inner .message-by-headline span {
        position: relative;
        top: 0;
        right: 0;
        display: block;
        float: none;
        padding: 0;
        margin: -4px 0 0 0
    }

    .message-action {
        display: block;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: -5px
    }

    .messages-headline {
        max-height: 120px
    }
}

body {
    color: #222;
    font-size: 15px;
    line-height: 27px;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

body.gray {
    background-color: #fbfbfb
}

body p {
    font-size: 15px;
    line-height: 26px;
}

body,
body .pac-container,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input[type=button],
input[type=email],
input[type=password],
input[type=submit],
input[type=text],
select,
textarea {
    text-transform: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0e1133;
    font-weight: 500;
    margin: 0;
    padding: 0
}

h1 {
    font-size: 32px
}

h2 {
    font-size: 26px
}

h3 {
    font-size: 22px
}

h4 {
    font-size: 15px
}

h5 {
    font-size: 15px
}

h6 {
    font-size: 12px
}

h3.page-title {
    font-size: 20px;
    line-height: 32px
}

.section {
    display: block
}

.section.white {
    background: #fff
}

.section.gray {
    background: #fbfbfb
}

.section.border-top {
    border-top: 1px solid #e0e0e0
}

.section.border-bottom {
    border-bottom: 1px solid #e0e0e0
}

.utf-section-headline-item {
    display: block;
    position: relative;
    padding-right: 20%
}

.utf-section-headline-item.centered {
    text-align: center;
    padding: 0
}

.utf-section-headline-item span {
    background: #0b6624;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    line-height: 26px;
    color: #fff;
    padding: 1.5px 12px;
    display: inline-block;
    max-width: max-content;
    margin: 0 auto 5px auto;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize
}

.utf-section-headline-item h1,
.utf-section-headline-item h2,
.utf-section-headline-item h3,
.utf-section-headline-item h4 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #0e1133;
    position: relative;
    z-index: 9;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.utf-section-headline-item p.utf-slogan-text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #727272;
    margin-top: 20px;
    max-width: 750px;
    text-align: center;
    display: inline-block
}

.utf-section-headline-item h3::before {
    background: #a1d244;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    border-radius: 30px;
    position: absolute;
    bottom: -6px;
    width: 40px
}

.utf-section-headline-item.centered h3::before {
    background: #a1d244;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    border-radius: 30px;
    position: absolute;
    bottom: -7px;
    width: 40px
}

.utf-section-headline-item h4 {
    font-size: 22px;
    line-height: 34px
}

.utf-section-headline-item .utf-headline-display-inner-item {
    /* font-family: 'Open Sans'; */
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, .05);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    z-index: 0;
    text-transform: uppercase
}

.utf-section-headline-item.border-top {
    border-top: 1px solid #e0e0e0
}

h1.in-a-box,
h2.in-a-box,
h3.in-a-box,
h5.in-a-box {
    display: inline-block;
    font-size: 18px;
    background-color: #0e1133;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15)
}

.utf-section-headline-item h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 30px
}

a.headline-link {
    position: absolute;
    right: 0;
    bottom: 0
}

a.headline-link.bottom-icon:after {
    content: "\e957";
    top: 3px
}

a.headline-link:after {
    content: "\e995";
    font-family: Material-Icons;
    font-size: 21px;
    line-height: 0;
    position: relative;
    top: 4px;
    margin-left: 5px
}

@media (max-width:768px) {
    a.headline-link {
        position: relative;
        margin-top: 20px;
        display: inline-block
    }

    .utf-section-headline-item {
        padding-right: 0
    }
}

@media (max-width:768px) {
    .hide-under-768px {
        display: none
    }
}

@media (max-width:767px) {
    .hide-under-992px {
        display: none
    }

    .mmenu-trigger {
        margin: 0 10px
    }

    .utf-dashboard-footer-spacer-aera {
        padding-top: 90px
    }

    .utf-section-headline-item span {
        margin-bottom: 10px
    }

    .utf-section-headline-item h1,
    .utf-section-headline-item h2,
    .utf-section-headline-item h3,
    .utf-section-headline-item h4 {
        line-height: 34px
    }

    .utf-section-headline-item .utf-headline-display-inner-item {
        display: none
    }
}

@media (max-width:480px) {
    .hide-under-480px {
        display: none
    }
}

@media (max-width:479px) {
    .fun-fact {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
        margin: 0 15px 15px 0
    }

    .fun-fact h4 {
        font-size: 32px
    }

    .utf-dashboard-box-list .utf-buttons-to-right .button {
        margin: 0
    }

    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-avatar {
        width: 80px
    }

    .dashboard-box .utf-manage-resume-overview-aera .utf-manage-resume-item {
        margin: 0 0 0 18px
    }

    ul.utf-dashboard-box-list>li {
        padding: 15px
    }

    ul.utf-download-text li,
    ul.utf-download-text li a {
        width: 100%
    }

    .utf-plan-radios-item {
        display: flex
    }

    .utf-carousel-review-item.slick-slide.slick-active:before,
    .utf-testimonial-carousel-block .slick-slide.slick-active .utf-testimonial-box:before {
        opacity: 0
    }

    .utf-testimonial-carousel-block .slick-slide {
        padding: 0;
        background: 0 0;
        box-shadow: none;
        margin-top: 0
    }

    .utf-plan-radios-item .radio {
        width: 50%;
        float: left;
        padding: 8px 10px;
        margin: 5px 6px;
        text-align: left
    }

    .utf-social-login-buttons-block {
        display: inline-block
    }

    .utf-social-login-buttons-block button {
        width: 100%;
        max-width: 100%
    }

    .dialog-with-tabs input {
        margin-bottom: 15px
    }
}

.icon-set-container {
    display: block;
    width: calc(100% + 30px);
    left: -15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center
}

.glyph.fs1 {
    position: relative;
    font-size: 20px;
    margin: 10px;
    float: left;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    border-radius: 6px;
    flex: 1 1 calc(33.3% - 30px);
    align-content: center;
    justify-content: center;
    display: inline-block !important;
    flex-direction: column;
    padding: 15px;
    transition: .3s;
    color: #222
}

.glyph.fs1:hover {
    transform: scale(1.02);
    background-color: #a1d244;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.glyph.fs1:hover span:not([class*=mls]) {
    background-color: #fff;
    color: #0e1133
}

.glyph.fs1 .fs0,
.glyph.fs1 fieldset {
    display: none
}

.glyph.fs1 span:not([class*=mls]) {
    vertical-align: middle;
    top: -6px;
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, .04);
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 40px;
    font-size: 20px;
    transition: .3s;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.glyph.fs1 .mls:not([class*=icon-]) {
    max-width: 100%;
    display: inline-block;
    overflow: hidden;
    font-size: 15px;
    line-height: 20px;
    top: 0;
    vertical-align: middle;
    padding-left: 55px
}

.content-left-offset {
    padding-left: 20px
}

.utf-content-right-offset-aera {
    margin: 0
}

@media (max-width:992px) {
    .content-left-offset {
        padding-left: 15px
    }

    .utf-content-right-offset-aera {
        padding-right: 15px
    }

    .glyph.fs1 {
        flex: 1 1 calc(50% - 30px) !important
    }
}

@media (max-width:767px) {
    .glyph.fs1 {
        flex: 1 1 calc(100% - 0px) !important
    }

    .dashboard-box .content.with-padding {
        padding: 20px
    }

    .compact-list-layout .utf-job-listing {
        padding: 20px !important
    }

    a.apply-now-button {
        margin-bottom: 20px
    }

    .single-page-header {
        padding: 50px 0
    }
}

.margin-top-0 {
    margin-top: 0 !important
}

.margin-top-1 {
    margin-top: 1px !important
}

.margin-top-2 {
    margin-top: 2px !important
}

.margin-top-3 {
    margin-top: 3px !important
}

.margin-top-4 {
    margin-top: 4px !important
}

.margin-top-5 {
    margin-top: 5px !important
}

.margin-top-6 {
    margin-top: 6px !important
}

.margin-top-7 {
    margin-top: 7px !important
}

.margin-top-8 {
    margin-top: 8px !important
}

.margin-top-9 {
    margin-top: 9px !important
}

.margin-top-10 {
    margin-top: 10px !important
}

.margin-top-11 {
    margin-top: 11px !important
}

.margin-top-12 {
    margin-top: 12px !important
}

.margin-top-13 {
    margin-top: 13px !important
}

.margin-top-14 {
    margin-top: 14px !important
}

.margin-top-15 {
    margin-top: 15px !important
}

.margin-top-16 {
    margin-top: 16px !important
}

.margin-top-17 {
    margin-top: 17px !important
}

.margin-top-18 {
    margin-top: 18px !important
}

.margin-top-19 {
    margin-top: 19px !important
}

.margin-top-20 {
    margin-top: 20px !important
}

.margin-top-21 {
    margin-top: 21px !important
}

.margin-top-22 {
    margin-top: 22px !important
}

.margin-top-23 {
    margin-top: 23px !important
}

.margin-top-24 {
    margin-top: 24px !important
}

.margin-top-25 {
    margin-top: 25px !important
}

.margin-top-26 {
    margin-top: 26px !important
}

.margin-top-27 {
    margin-top: 27px !important
}

.margin-top-28 {
    margin-top: 28px !important
}

.margin-top-29 {
    margin-top: 29px !important
}

.margin-top-30 {
    margin-top: 30px !important
}

.margin-top-31 {
    margin-top: 31px !important
}

.margin-top-32 {
    margin-top: 32px !important
}

.margin-top-33 {
    margin-top: 33px !important
}

.margin-top-34 {
    margin-top: 34px !important
}

.margin-top-35 {
    margin-top: 35px !important
}

.margin-top-36 {
    margin-top: 36px !important
}

.margin-top-37 {
    margin-top: 37px !important
}

.margin-top-38 {
    margin-top: 38px !important
}

.margin-top-39 {
    margin-top: 39px !important
}

.margin-top-40 {
    margin-top: 40px !important
}

.margin-top-41 {
    margin-top: 41px !important
}

.margin-top-42 {
    margin-top: 42px !important
}

.margin-top-43 {
    margin-top: 43px !important
}

.margin-top-44 {
    margin-top: 44px !important
}

.margin-top-45 {
    margin-top: 45px !important
}

.margin-top-46 {
    margin-top: 46px !important
}

.margin-top-47 {
    margin-top: 47px !important
}

.margin-top-48 {
    margin-top: 48px !important
}

.margin-top-49 {
    margin-top: 49px !important
}

.margin-top-50 {
    margin-top: 50px !important
}

.margin-top-51 {
    margin-top: 51px !important
}

.margin-top-52 {
    margin-top: 52px !important
}

.margin-top-53 {
    margin-top: 53px !important
}

.margin-top-54 {
    margin-top: 54px !important
}

.margin-top-55 {
    margin-top: 55px !important
}

.margin-top-56 {
    margin-top: 56px !important
}

.margin-top-57 {
    margin-top: 57px !important
}

.margin-top-58 {
    margin-top: 58px !important
}

.margin-top-59 {
    margin-top: 59px !important
}

.margin-top-60 {
    margin-top: 60px !important
}

.margin-top-61 {
    margin-top: 61px !important
}

.margin-top-62 {
    margin-top: 62px !important
}

.margin-top-63 {
    margin-top: 63px !important
}

.margin-top-64 {
    margin-top: 64px !important
}

.margin-top-65 {
    margin-top: 65px !important
}

.margin-top-66 {
    margin-top: 66px !important
}

.margin-top-67 {
    margin-top: 67px !important
}

.margin-top-68 {
    margin-top: 68px !important
}

.margin-top-69 {
    margin-top: 69px !important
}

.margin-top-70 {
    margin-top: 70px !important
}

.margin-top-71 {
    margin-top: 71px !important
}

.margin-top-72 {
    margin-top: 72px !important
}

.margin-top-73 {
    margin-top: 73px !important
}

.margin-top-74 {
    margin-top: 74px !important
}

.margin-top-75 {
    margin-top: 75px !important
}

.margin-top-76 {
    margin-top: 76px !important
}

.margin-top-77 {
    margin-top: 77px !important
}

.margin-top-78 {
    margin-top: 78px !important
}

.margin-top-79 {
    margin-top: 79px !important
}

.margin-top-80 {
    margin-top: 80px !important
}

.margin-top-81 {
    margin-top: 81px !important
}

.margin-top-82 {
    margin-top: 82px !important
}

.margin-top-83 {
    margin-top: 83px !important
}

.margin-top-84 {
    margin-top: 84px !important
}

.margin-top-85 {
    margin-top: 85px !important
}

.margin-top-86 {
    margin-top: 86px !important
}

.margin-top-87 {
    margin-top: 87px !important
}

.margin-top-88 {
    margin-top: 88px !important
}

.margin-top-89 {
    margin-top: 89px !important
}

.margin-top-90 {
    margin-top: 90px !important
}

.margin-top-91 {
    margin-top: 91px !important
}

.margin-top-92 {
    margin-top: 92px !important
}

.margin-top-93 {
    margin-top: 93px !important
}

.margin-top-94 {
    margin-top: 94px !important
}

.margin-top-95 {
    margin-top: 95px !important
}

.margin-top-96 {
    margin-top: 96px !important
}

.margin-top-97 {
    margin-top: 97px !important
}

.margin-top-98 {
    margin-top: 98px !important
}

.margin-top-99 {
    margin-top: 99px !important
}

.margin-top-100 {
    margin-top: 100px !important
}

.margin-bottom-0 {
    margin-bottom: 0 !important
}

.margin-bottom-1 {
    margin-bottom: 1px !important
}

.margin-bottom-2 {
    margin-bottom: 2px !important
}

.margin-bottom-3 {
    margin-bottom: 3px !important
}

.margin-bottom-4 {
    margin-bottom: 4px !important
}

.margin-bottom-5 {
    margin-bottom: 5px !important
}

.margin-bottom-6 {
    margin-bottom: 6px !important
}

.margin-bottom-7 {
    margin-bottom: 7px !important
}

.margin-bottom-8 {
    margin-bottom: 8px !important
}

.margin-bottom-9 {
    margin-bottom: 9px !important
}

.margin-bottom-10 {
    margin-bottom: 10px !important
}

.margin-bottom-11 {
    margin-bottom: 11px !important
}

.margin-bottom-12 {
    margin-bottom: 12px !important
}

.margin-bottom-13 {
    margin-bottom: 13px !important
}

.margin-bottom-14 {
    margin-bottom: 14px !important
}

.margin-bottom-15 {
    margin-bottom: 15px !important
}

.margin-bottom-16 {
    margin-bottom: 16px !important
}

.margin-bottom-17 {
    margin-bottom: 17px !important
}

.margin-bottom-18 {
    margin-bottom: 18px !important
}

.margin-bottom-19 {
    margin-bottom: 19px !important
}

.margin-bottom-20 {
    margin-bottom: 20px !important
}

.margin-bottom-21 {
    margin-bottom: 21px !important
}

.margin-bottom-22 {
    margin-bottom: 22px !important
}

.margin-bottom-23 {
    margin-bottom: 23px !important
}

.margin-bottom-24 {
    margin-bottom: 24px !important
}

.margin-bottom-25 {
    margin-bottom: 25px !important
}

.margin-bottom-26 {
    margin-bottom: 26px !important
}

.margin-bottom-27 {
    margin-bottom: 27px !important
}

.margin-bottom-28 {
    margin-bottom: 28px !important
}

.margin-bottom-29 {
    margin-bottom: 29px !important
}

.margin-bottom-30 {
    margin-bottom: 30px !important
}

.margin-bottom-31 {
    margin-bottom: 31px !important
}

.margin-bottom-32 {
    margin-bottom: 32px !important
}

.margin-bottom-33 {
    margin-bottom: 33px !important
}

.margin-bottom-34 {
    margin-bottom: 34px !important
}

.margin-bottom-35 {
    margin-bottom: 35px !important
}

.margin-bottom-36 {
    margin-bottom: 36px !important
}

.margin-bottom-37 {
    margin-bottom: 37px !important
}

.margin-bottom-38 {
    margin-bottom: 38px !important
}

.margin-bottom-39 {
    margin-bottom: 39px !important
}

.margin-bottom-40 {
    margin-bottom: 40px !important
}

.margin-bottom-41 {
    margin-bottom: 41px !important
}

.margin-bottom-42 {
    margin-bottom: 42px !important
}

.margin-bottom-43 {
    margin-bottom: 43px !important
}

.margin-bottom-44 {
    margin-bottom: 44px !important
}

.margin-bottom-45 {
    margin-bottom: 45px !important
}

.margin-bottom-46 {
    margin-bottom: 46px !important
}

.margin-bottom-47 {
    margin-bottom: 47px !important
}

.margin-bottom-48 {
    margin-bottom: 48px !important
}

.margin-bottom-49 {
    margin-bottom: 49px !important
}

.margin-bottom-50 {
    margin-bottom: 50px !important
}

.margin-bottom-51 {
    margin-bottom: 51px !important
}

.margin-bottom-52 {
    margin-bottom: 52px !important
}

.margin-bottom-53 {
    margin-bottom: 53px !important
}

.margin-bottom-54 {
    margin-bottom: 54px !important
}

.margin-bottom-55 {
    margin-bottom: 55px !important
}

.margin-bottom-56 {
    margin-bottom: 56px !important
}

.margin-bottom-57 {
    margin-bottom: 57px !important
}

.margin-bottom-58 {
    margin-bottom: 58px !important
}

.margin-bottom-59 {
    margin-bottom: 59px !important
}

.margin-bottom-60 {
    margin-bottom: 60px !important
}

.margin-bottom-61 {
    margin-bottom: 61px !important
}

.margin-bottom-62 {
    margin-bottom: 62px !important
}

.margin-bottom-63 {
    margin-bottom: 63px !important
}

.margin-bottom-64 {
    margin-bottom: 64px !important
}

.margin-bottom-65 {
    margin-bottom: 65px !important
}

.margin-bottom-66 {
    margin-bottom: 66px !important
}

.margin-bottom-67 {
    margin-bottom: 67px !important
}

.margin-bottom-68 {
    margin-bottom: 68px !important
}

.margin-bottom-69 {
    margin-bottom: 69px !important
}

.margin-bottom-70 {
    margin-bottom: 70px !important
}

.margin-bottom-71 {
    margin-bottom: 71px !important
}

.margin-bottom-72 {
    margin-bottom: 72px !important
}

.margin-bottom-73 {
    margin-bottom: 73px !important
}

.margin-bottom-74 {
    margin-bottom: 74px !important
}

.margin-bottom-75 {
    margin-bottom: 75px !important
}

.margin-bottom-76 {
    margin-bottom: 76px !important
}

.margin-bottom-77 {
    margin-bottom: 77px !important
}

.margin-bottom-78 {
    margin-bottom: 78px !important
}

.margin-bottom-79 {
    margin-bottom: 79px !important
}

.margin-bottom-80 {
    margin-bottom: 80px !important
}

.margin-bottom-81 {
    margin-bottom: 81px !important
}

.margin-bottom-82 {
    margin-bottom: 82px !important
}

.margin-bottom-83 {
    margin-bottom: 83px !important
}

.margin-bottom-84 {
    margin-bottom: 84px !important
}

.margin-bottom-85 {
    margin-bottom: 85px !important
}

.margin-bottom-86 {
    margin-bottom: 86px !important
}

.margin-bottom-87 {
    margin-bottom: 87px !important
}

.margin-bottom-88 {
    margin-bottom: 88px !important
}

.margin-bottom-89 {
    margin-bottom: 89px !important
}

.margin-bottom-90 {
    margin-bottom: 90px !important
}

.margin-bottom-91 {
    margin-bottom: 91px !important
}

.margin-bottom-92 {
    margin-bottom: 92px !important
}

.margin-bottom-93 {
    margin-bottom: 93px !important
}

.margin-bottom-94 {
    margin-bottom: 94px !important
}

.margin-bottom-95 {
    margin-bottom: 95px !important
}

.margin-bottom-96 {
    margin-bottom: 96px !important
}

.margin-bottom-97 {
    margin-bottom: 97px !important
}

.margin-bottom-98 {
    margin-bottom: 98px !important
}

.margin-bottom-99 {
    margin-bottom: 99px !important
}

.margin-bottom-100 {
    margin-bottom: 100px !important
}

.margin-left-0 {
    margin-left: 0 !important
}

.margin-left-1 {
    margin-left: 1px !important
}

.margin-left-2 {
    margin-left: 2px !important
}

.margin-left-3 {
    margin-left: 3px !important
}

.margin-left-4 {
    margin-left: 4px !important
}

.margin-left-5 {
    margin-left: 5px !important
}

.margin-left-6 {
    margin-left: 6px !important
}

.margin-left-7 {
    margin-left: 7px !important
}

.margin-left-8 {
    margin-left: 8px !important
}

.margin-left-9 {
    margin-left: 9px !important
}

.margin-left-10 {
    margin-left: 10px !important
}

.margin-left-15 {
    margin-left: 15px !important
}

.margin-left-20 {
    margin-left: 20px !important
}

.margin-left-25 {
    margin-left: 25px !important
}

.margin-left-30 {
    margin-left: 30px !important
}

.margin-left-35 {
    margin-left: 35px !important
}

.margin-left-40 {
    margin-left: 40px !important
}

.margin-left-45 {
    margin-left: 45px !important
}

.margin-left-50 {
    margin-left: 50px !important
}

.margin-left-55 {
    margin-left: 55px !important
}

.margin-left-60 {
    margin-left: 60px !important
}

.margin-left-65 {
    margin-left: 65px !important
}

.margin-left-70 {
    margin-left: 70px !important
}

.margin-left-75 {
    margin-left: 75px !important
}

.margin-left-80 {
    margin-left: 80px !important
}

.margin-left-85 {
    margin-left: 85px !important
}

.margin-left-90 {
    margin-left: 90px !important
}

.margin-left-95 {
    margin-left: 95px !important
}

.margin-left-100 {
    margin-left: 100px !important
}

.margin-right-0 {
    margin-right: 0 !important
}

.margin-right-1 {
    margin-right: 1px !important
}

.margin-right-2 {
    margin-right: 2px !important
}

.margin-right-3 {
    margin-right: 3px !important
}

.margin-right-4 {
    margin-right: 4px !important
}

.margin-right-5 {
    margin-right: 5px !important
}

.margin-right-6 {
    margin-right: 6px !important
}

.margin-right-7 {
    margin-right: 7px !important
}

.margin-right-8 {
    margin-right: 8px !important
}

.margin-right-9 {
    margin-right: 9px !important
}

.margin-right-10 {
    margin-right: 10px !important
}

.margin-right-15 {
    margin-right: 15px !important
}

.margin-right-20 {
    margin-right: 20px !important
}

.margin-right-25 {
    margin-right: 25px !important
}

.margin-right-30 {
    margin-right: 30px !important
}

.margin-right-35 {
    margin-right: 35px !important
}

.margin-right-40 {
    margin-right: 40px !important
}

.margin-right-45 {
    margin-right: 45px !important
}

.margin-right-50 {
    margin-right: 50px !important
}

.margin-right-55 {
    margin-right: 55px !important
}

.margin-right-60 {
    margin-right: 60px !important
}

.margin-right-65 {
    margin-right: 65px !important
}

.margin-right-70 {
    margin-right: 70px !important
}

.margin-right-75 {
    margin-right: 75px !important
}

.margin-right-80 {
    margin-right: 80px !important
}

.margin-right-85 {
    margin-right: 85px !important
}

.margin-right-90 {
    margin-right: 90px !important
}

.margin-right-95 {
    margin-right: 95px !important
}

.margin-right-100 {
    margin-right: 100px !important
}

.padding-top-0 {
    padding-top: 0 !important
}

.padding-top-1 {
    padding-top: 1px !important
}

.padding-top-2 {
    padding-top: 2px !important
}

.padding-top-3 {
    padding-top: 3px !important
}

.padding-top-4 {
    padding-top: 4px !important
}

.padding-top-5 {
    padding-top: 5px !important
}

.padding-top-6 {
    padding-top: 6px !important
}

.padding-top-7 {
    padding-top: 7px !important
}

.padding-top-8 {
    padding-top: 8px !important
}

.padding-top-9 {
    padding-top: 9px !important
}

.padding-top-10 {
    padding-top: 10px !important
}

.padding-top-11 {
    padding-top: 11px !important
}

.padding-top-12 {
    padding-top: 12px !important
}

.padding-top-13 {
    padding-top: 13px !important
}

.padding-top-14 {
    padding-top: 14px !important
}

.padding-top-15 {
    padding-top: 15px !important
}

.padding-top-16 {
    padding-top: 16px !important
}

.padding-top-17 {
    padding-top: 17px !important
}

.padding-top-18 {
    padding-top: 18px !important
}

.padding-top-19 {
    padding-top: 19px !important
}

.padding-top-20 {
    padding-top: 20px !important
}

.padding-top-21 {
    padding-top: 21px !important
}

.padding-top-22 {
    padding-top: 22px !important
}

.padding-top-23 {
    padding-top: 23px !important
}

.padding-top-24 {
    padding-top: 24px !important
}

.padding-top-25 {
    padding-top: 25px !important
}

.padding-top-26 {
    padding-top: 26px !important
}

.padding-top-27 {
    padding-top: 27px !important
}

.padding-top-28 {
    padding-top: 28px !important
}

.padding-top-29 {
    padding-top: 29px !important
}

.padding-top-30 {
    padding-top: 30px !important
}

.padding-top-31 {
    padding-top: 31px !important
}

.padding-top-32 {
    padding-top: 32px !important
}

.padding-top-33 {
    padding-top: 33px !important
}

.padding-top-34 {
    padding-top: 34px !important
}

.padding-top-35 {
    padding-top: 35px !important
}

.padding-top-36 {
    padding-top: 36px !important
}

.padding-top-37 {
    padding-top: 37px !important
}

.padding-top-38 {
    padding-top: 38px !important
}

.padding-top-39 {
    padding-top: 39px !important
}

.padding-top-40 {
    padding-top: 40px !important
}

.padding-top-41 {
    padding-top: 41px !important
}

.padding-top-42 {
    padding-top: 42px !important
}

.padding-top-43 {
    padding-top: 43px !important
}

.padding-top-44 {
    padding-top: 44px !important
}

.padding-top-45 {
    padding-top: 45px !important
}

.padding-top-46 {
    padding-top: 46px !important
}

.padding-top-47 {
    padding-top: 47px !important
}

.padding-top-48 {
    padding-top: 48px !important
}

.padding-top-49 {
    padding-top: 49px !important
}

.padding-top-50 {
    padding-top: 50px !important
}

.padding-top-51 {
    padding-top: 51px !important
}

.padding-top-52 {
    padding-top: 52px !important
}

.padding-top-53 {
    padding-top: 53px !important
}

.padding-top-54 {
    padding-top: 54px !important
}

.padding-top-55 {
    padding-top: 55px !important
}

.padding-top-56 {
    padding-top: 56px !important
}

.padding-top-57 {
    padding-top: 57px !important
}

.padding-top-58 {
    padding-top: 58px !important
}

.padding-top-59 {
    padding-top: 59px !important
}

.padding-top-60 {
    padding-top: 60px !important
}

.padding-top-61 {
    padding-top: 61px !important
}

.padding-top-62 {
    padding-top: 62px !important
}

.padding-top-63 {
    padding-top: 63px !important
}

.padding-top-64 {
    padding-top: 64px !important
}

.padding-top-65 {
    padding-top: 65px !important
}

.padding-top-66 {
    padding-top: 66px !important
}

.padding-top-67 {
    padding-top: 67px !important
}

.padding-top-68 {
    padding-top: 68px !important
}

.padding-top-69 {
    padding-top: 69px !important
}

.padding-top-70 {
    padding-top: 70px !important
}

.padding-top-71 {
    padding-top: 71px !important
}

.padding-top-72 {
    padding-top: 72px !important
}

.padding-top-73 {
    padding-top: 73px !important
}

.padding-top-74 {
    padding-top: 74px !important
}

.padding-top-75 {
    padding-top: 75px !important
}

.padding-top-76 {
    padding-top: 76px !important
}

.padding-top-77 {
    padding-top: 77px !important
}

.padding-top-78 {
    padding-top: 78px !important
}

.padding-top-79 {
    padding-top: 79px !important
}

.padding-top-80 {
    padding-top: 80px !important
}

.padding-top-81 {
    padding-top: 81px !important
}

.padding-top-82 {
    padding-top: 82px !important
}

.padding-top-83 {
    padding-top: 83px !important
}

.padding-top-84 {
    padding-top: 84px !important
}

.padding-top-85 {
    padding-top: 85px !important
}

.padding-top-86 {
    padding-top: 86px !important
}

.padding-top-87 {
    padding-top: 87px !important
}

.padding-top-88 {
    padding-top: 88px !important
}

.padding-top-89 {
    padding-top: 89px !important
}

.padding-top-90 {
    padding-top: 90px !important
}

.padding-top-91 {
    padding-top: 91px !important
}

.padding-top-92 {
    padding-top: 92px !important
}

.padding-top-93 {
    padding-top: 93px !important
}

.padding-top-94 {
    padding-top: 94px !important
}

.padding-top-95 {
    padding-top: 95px !important
}

.padding-top-96 {
    padding-top: 96px !important
}

.padding-top-97 {
    padding-top: 97px !important
}

.padding-top-98 {
    padding-top: 98px !important
}

.padding-top-99 {
    padding-top: 99px !important
}

.padding-top-100 {
    padding-top: 100px !important
}

.padding-bottom-0 {
    padding-bottom: 0 !important
}

.padding-bottom-1 {
    padding-bottom: 1px !important
}

.padding-bottom-2 {
    padding-bottom: 2px !important
}

.padding-bottom-3 {
    padding-bottom: 3px !important
}

.padding-bottom-4 {
    padding-bottom: 4px !important
}

.padding-bottom-5 {
    padding-bottom: 5px !important
}

.padding-bottom-6 {
    padding-bottom: 6px !important
}

.padding-bottom-7 {
    padding-bottom: 7px !important
}

.padding-bottom-8 {
    padding-bottom: 8px !important
}

.padding-bottom-9 {
    padding-bottom: 9px !important
}

.padding-bottom-10 {
    padding-bottom: 10px !important
}

.padding-bottom-11 {
    padding-bottom: 11px !important
}

.padding-bottom-12 {
    padding-bottom: 12px !important
}

.padding-bottom-13 {
    padding-bottom: 13px !important
}

.padding-bottom-14 {
    padding-bottom: 14px !important
}

.padding-bottom-15 {
    padding-bottom: 15px !important
}

.padding-bottom-16 {
    padding-bottom: 16px !important
}

.padding-bottom-17 {
    padding-bottom: 17px !important
}

.padding-bottom-18 {
    padding-bottom: 18px !important
}

.padding-bottom-19 {
    padding-bottom: 19px !important
}

.padding-bottom-20 {
    padding-bottom: 20px !important
}

.padding-bottom-21 {
    padding-bottom: 21px !important
}

.padding-bottom-22 {
    padding-bottom: 22px !important
}

.padding-bottom-23 {
    padding-bottom: 23px !important
}

.padding-bottom-24 {
    padding-bottom: 24px !important
}

.padding-bottom-25 {
    padding-bottom: 25px !important
}

.padding-bottom-26 {
    padding-bottom: 26px !important
}

.padding-bottom-27 {
    padding-bottom: 27px !important
}

.padding-bottom-28 {
    padding-bottom: 28px !important
}

.padding-bottom-29 {
    padding-bottom: 29px !important
}

.padding-bottom-30 {
    padding-bottom: 30px !important
}

.padding-bottom-31 {
    padding-bottom: 31px !important
}

.padding-bottom-32 {
    padding-bottom: 32px !important
}

.padding-bottom-33 {
    padding-bottom: 33px !important
}

.padding-bottom-34 {
    padding-bottom: 34px !important
}

.padding-bottom-35 {
    padding-bottom: 35px !important
}

.padding-bottom-36 {
    padding-bottom: 36px !important
}

.padding-bottom-37 {
    padding-bottom: 37px !important
}

.padding-bottom-38 {
    padding-bottom: 38px !important
}

.padding-bottom-39 {
    padding-bottom: 39px !important
}

.padding-bottom-40 {
    padding-bottom: 40px !important
}

.padding-bottom-41 {
    padding-bottom: 41px !important
}

.padding-bottom-42 {
    padding-bottom: 42px !important
}

.padding-bottom-43 {
    padding-bottom: 43px !important
}

.padding-bottom-44 {
    padding-bottom: 44px !important
}

.padding-bottom-45 {
    padding-bottom: 45px !important
}

.padding-bottom-46 {
    padding-bottom: 46px !important
}

.padding-bottom-47 {
    padding-bottom: 47px !important
}

.padding-bottom-48 {
    padding-bottom: 48px !important
}

.padding-bottom-49 {
    padding-bottom: 49px !important
}

.padding-bottom-50 {
    padding-bottom: 50px !important
}

.padding-bottom-51 {
    padding-bottom: 51px !important
}

.padding-bottom-52 {
    padding-bottom: 52px !important
}

.padding-bottom-53 {
    padding-bottom: 53px !important
}

.padding-bottom-54 {
    padding-bottom: 54px !important
}

.padding-bottom-55 {
    padding-bottom: 55px !important
}

.padding-bottom-56 {
    padding-bottom: 56px !important
}

.padding-bottom-57 {
    padding-bottom: 57px !important
}

.padding-bottom-58 {
    padding-bottom: 58px !important
}

.padding-bottom-59 {
    padding-bottom: 59px !important
}

.padding-bottom-60 {
    padding-bottom: 60px !important
}

.padding-bottom-61 {
    padding-bottom: 61px !important
}

.padding-bottom-62 {
    padding-bottom: 62px !important
}

.padding-bottom-63 {
    padding-bottom: 63px !important
}

.padding-bottom-64 {
    padding-bottom: 64px !important
}

.padding-bottom-65 {
    padding-bottom: 65px !important
}

.padding-bottom-66 {
    padding-bottom: 66px !important
}

.padding-bottom-67 {
    padding-bottom: 67px !important
}

.padding-bottom-68 {
    padding-bottom: 68px !important
}

.padding-bottom-69 {
    padding-bottom: 69px !important
}

.padding-bottom-70 {
    padding-bottom: 70px !important
}

.padding-bottom-71 {
    padding-bottom: 71px !important
}

.padding-bottom-72 {
    padding-bottom: 72px !important
}

.padding-bottom-73 {
    padding-bottom: 73px !important
}

.padding-bottom-74 {
    padding-bottom: 74px !important
}

.padding-bottom-75 {
    padding-bottom: 75px !important
}

.padding-bottom-76 {
    padding-bottom: 76px !important
}

.padding-bottom-77 {
    padding-bottom: 77px !important
}

.padding-bottom-78 {
    padding-bottom: 78px !important
}

.padding-bottom-79 {
    padding-bottom: 79px !important
}

.padding-bottom-80 {
    padding-bottom: 80px !important
}

.padding-bottom-81 {
    padding-bottom: 81px !important
}

.padding-bottom-82 {
    padding-bottom: 82px !important
}

.padding-bottom-83 {
    padding-bottom: 83px !important
}

.padding-bottom-84 {
    padding-bottom: 84px !important
}

.padding-bottom-85 {
    padding-bottom: 85px !important
}

.padding-bottom-86 {
    padding-bottom: 86px !important
}

.padding-bottom-87 {
    padding-bottom: 87px !important
}

.padding-bottom-88 {
    padding-bottom: 88px !important
}

.padding-bottom-89 {
    padding-bottom: 89px !important
}

.padding-bottom-90 {
    padding-bottom: 90px !important
}

.padding-bottom-91 {
    padding-bottom: 91px !important
}

.padding-bottom-92 {
    padding-bottom: 92px !important
}

.padding-bottom-93 {
    padding-bottom: 93px !important
}

.padding-bottom-94 {
    padding-bottom: 94px !important
}

.padding-bottom-95 {
    padding-bottom: 95px !important
}

.padding-bottom-96 {
    padding-bottom: 96px !important
}

.padding-bottom-97 {
    padding-bottom: 97px !important
}

.padding-bottom-98 {
    padding-bottom: 98px !important
}

.padding-bottom-99 {
    padding-bottom: 99px !important
}

.padding-bottom-100 {
    padding-bottom: 100px !important
}

.padding-right-0 {
    padding-right: 0 !important
}

.padding-right-5 {
    padding-right: 5px !important
}

.padding-right-10 {
    padding-right: 10px !important
}

.padding-right-15 {
    padding-right: 15px !important
}

.padding-right-20 {
    padding-right: 20px !important
}

.padding-right-25 {
    padding-right: 25px !important
}

.padding-right-30 {
    padding-right: 30px !important
}

.padding-right-35 {
    padding-right: 35px !important
}

.padding-right-40 {
    padding-right: 40px !important
}

.padding-right-45 {
    padding-right: 45px !important
}

.padding-right-50 {
    padding-right: 50px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-60 {
    padding-right: 60px !important
}

.padding-right-65 {
    padding-right: 65px !important
}

.padding-right-70 {
    padding-right: 70px !important
}

.padding-right-75 {
    padding-right: 75px !important
}

.padding-right-80 {
    padding-right: 80px !important
}

.padding-right-85 {
    padding-right: 85px !important
}

.padding-right-90 {
    padding-right: 90px !important
}

.padding-right-95 {
    padding-right: 95px !important
}

.padding-right-100 {
    padding-right: 100px !important
}

.padding-left-0 {
    padding-left: 0 !important
}

.padding-left-5 {
    padding-left: 5px !important
}

.padding-left-10 {
    padding-left: 10px !important
}

.padding-left-15 {
    padding-left: 15px !important
}

.padding-left-20 {
    padding-left: 20px !important
}

.padding-left-25 {
    padding-left: 25px !important
}

.padding-left-30 {
    padding-left: 30px !important
}

.padding-left-35 {
    padding-left: 35px !important
}

.padding-left-40 {
    padding-left: 40px !important
}

.padding-left-45 {
    padding-left: 45px !important
}

.padding-left-50 {
    padding-left: 50px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-60 {
    padding-left: 60px !important
}

.padding-left-65 {
    padding-left: 65px !important
}

.padding-left-70 {
    padding-left: 70px !important
}

.padding-left-75 {
    padding-left: 75px !important
}

.padding-left-80 {
    padding-left: 80px !important
}

.padding-left-85 {
    padding-left: 85px !important
}

.padding-left-90 {
    padding-left: 90px !important
}

.padding-left-95 {
    padding-left: 95px !important
}

.padding-left-100 {
    padding-left: 100px !important
}

.numbered.color ol>li::before {
    border: 1px solid #a1d244;
    color: #a1d244
}

.numbered.color.filled ol>li::before {
    border: 1px solid #a1d244;
    background-color: #a1d244
}

.radio input[type=radio]:checked+label .radio-label {
    background-color: #a1d244;
    border-color: #a1d244
}

.checkbox input:checked+label span.checkbox-icon {
    background-color: #a1d244;
    border-color: #a1d244
}

.slider-handle {
    border: 2px solid #a1d244
}

.infoBox-close:hover {
    color: #fff;
    background-color: #a1d244
}

.message-bubble.me .message-text:before {
    border-left: 6px solid #a1d244
}

.utf-dashboard-nav ul li.active a i {
    background: #a1d244;
    color: #fff !important
}

.utf-dashboard-nav ul li.active-submenu li a i {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.utf-dashboard-nav ul li.active-submenu li a:hover i {
    background: #a1d244;
    color: #fff
}

.utf-dashboard-nav ul li.active-submenu li.active a i {
    background: #a1d244;
    color: #fff
}

.utf-dashboard-nav ul li.active a,
.utf-dashboard-nav ul li:hover a {
    color: #a1d244
}

.utf-dashboard-nav ul li ul li.active a {
    color: #a1d244
}

.utf-dashboard-nav ul li:hover>a i {
    background: #a1d244;
    color: #fff !important
}

#breadcrumbs ul li a:hover,
#breadcrumbs.white ul li a:hover,
#navigation ul li a.current:after,
#navigation ul li:hover a,
#navigation ul li:hover a:after,
#posts-nav li a:hover,
.banner-headline strong.color,
.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before,
.boxed-widget.summary li.total-costs span,
.dashboard-box .headline h3 i,
.dialog-with-tabs .forgot-password:hover,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>li>a:hover,
.help-icon,
.keyword,
.list-1 li:before,
.list-2 li:before,
.list-3 li:before,
.list-4 li:before,
.notification-text span.color,
.share-buttons-content span strong,
.single-page-header .utf-header-details li a:hover,
.task-tags span,
.utf-blog-post-content h3 a:hover,
.utf-boxed-list-headline-item h3 i,
.utf-boxed-list-item-item .item-details .utf-detail-item a:hover,
.utf-category-box-icon-item,
.utf-dashboard-nav ul li.active a:after,
.utf-dashboard-nav ul li.active-submenu a i,
.utf-dashboard-nav ul li.active-submenu a:after,
.utf-dashboard-nav ul li:hover a:after,
.utf-dashboard-nav ul:before,
.utf-header-widget-item .log-in-button:hover,
.utf-header-widget-item .log-in-button:hover i,
.utf-job-overview .utf-job-overview-inner ul li i,
.utf-manage-resume-detail-item a:hover,
.utf-popup-tabs-nav-item li.active a,
.utf-testimonial-box:before,
a,
ul.utf-user-menu-dropdown-nav li a:hover,
ul.utf-user-menu-dropdown-nav li a:hover i {
    color: #222
}

.utf-dashboard-nav ul li.active-submenu a {
    color: #fff
}

.utf-dashboard-nav ul li.active-submenu a:hover {
    color: #a1d244
}

.utf-header-notifications-content .notification-text span.color_blue {
    background: #2a41e8;
    display: inline-block;
    margin-right: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 7px;
    border-radius: 4px
}

.utf-header-notifications-content .notification-text span.color_yellow {
    background: #ff9d1f;
    display: inline-block;
    margin-right: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 7px;
    border-radius: 4px
}

.utf-header-notifications-content .notification-text span.color_green {
    background: #38b653;
    display: inline-block;
    margin-right: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 0 7px;
    border-radius: 4px
}

.utf-dashboard-nav ul li span.nav-tag {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

#backtotop a,
#geoLocation:hover,
#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after,
#posts-nav li a:hover span,
#scrollEnabling.enabled,
#scrollEnabling:hover,
#small-dialog .mfp-close:hover,
#small-dialog-1 .mfp-close:hover,
#small-dialog-2 .mfp-close:hover,
#small-dialog-3 .mfp-close:hover,
#small-dialog-4 .mfp-close:hover,
#streetView:hover,
#utf-signin-dialog-block .mfp-close:hover,
#quick-connect .mfp-close:hover,
#pro-connect-modal1 .mfp-close:hover,
#pro-connect-modal2 .mfp-close:hover,
#pro-connect-modal3 .mfp-close:hover,
#case-study .mfp-close:hover,
#online-exam-modal-1 .mfp-close:hover,
#online-exam-modal-2 .mfp-close:hover,
#prex-assess-entrnc-modal-1.mfp-close:hover,
#prex-assess-entrnc-modal-2.mfp-close:hover,
#prex-assess-entrnc-modal-3.mfp-close:hover,
#pro-request-modal-1.mfp-close:hover,
#gold-request-modal-1 .mfp-close:hover,
#jobility_req_modal-1 .mfp-close:hover,
#round-zero-modal-1 .mfp-close:hover,
#job-application-modal .mfp-close:hover,
#mylogin .mfp-close:hover,
.cluster-visible,
.contact-address-headline:after,
.copy-url .copy-url-button,
.custom-zoom-in:hover,
.custom-zoom-out:hover,
.dashboard-box .button.dark:not(.ico):hover,
.enable-filters-button i,
.enable-filters-button span,
.freelancer-indicators .indicator-bar span,
.icon-box-check,
.keyword-input-container .keyword-input-button,
.language-switcher.bootstrap-select.btn-group button:hover,
.language-switcher.bootstrap-select.btn-group.open button,
.letters-list a.current,
.list-1 li:before,
.marker-container,
.message-bubble.me .message-text,
.message-by h5 i,
.messages-inbox ul li:before,
.newsletter button,
.pagination ul li a.current-page,
.pricing-plan .button:hover,
.pricing-plan.recommended .button,
.qtyDec:hover,
.qtyInc:hover,
.radio input[type=radio]+label .radio-label:after,
.slider-selection,
.uploadButton .uploadButton-button:hover,
.utf-breathing-icon,
.utf-comment-by a.reply:hover,
.utf-footer-item-links ul li a span:before,
.utf-header-notifications-trigger span,
.utf-job-listing.utf-apply-button-item:hover .list-apply-button,
.utf-payment-tab-trigger>input:checked~label::after,
.utf-tags-container-item input[type=checkbox]:checked+label,
a.apply-now-button,
a.attachment-box:hover,
a.blog-post-info:hover,
a.button,
a.utf-header-notifications-button,
button.button,
input:checked+.switch-button,
input[type=button],
input[type=submit],
mark.color,
span.button,
table.basic-table th {
    background-color: #a1d244
}

a.utf-header-notifications-button {
    background: #424242
}

.dashboard-box a.utf-header-notifications-button {
    background: #a1d244
}

.accordion-header,
.bootstrap-select.btn-group .bs-actionsbox div button:hover,
.compact-list.freelancers-list-layout .freelancer:before,
.photo-box.small .utf-opening-box-content-part span,
.photo-box:hover:before,
.slick-next:hover,
.slick-prev:hover,
.tabs-header,
.tasks-list-container.compact-list .task-listing:before,
.utf-category-box:hover,
.utf-intro-search-field-item .field-title,
.utf-transparent-header-block #navigation>ul li a.current:after,
.utf-transparent-header-block #navigation>ul li:hover a:after,
.utf-transparent-header-block #navigation>ul li:hover ul li:hover a:after {
    background: #a1d244
}

.pricing-plan .button,
.uploadButton .uploadButton-button {
    color: #a1d244;
    border: 1px solid #a1d244
}

.uploadButton .uploadButton-button {
    background-color: #a1d244;
    color: #fff;
    border: 1px solid #a1d244
}

.uploadButton .uploadButton-button:hover {
    background-color: #424242;
    color: #fff;
    border: 1px solid #424242
}

.utf-dashboard-nav ul li.active-submenu,
.utf-payment-tab-trigger>input:checked~label::before {
    border-color: #a1d244
}

.utf-dashboard-nav ul li.active,
.utf-dashboard-nav ul li:hover {
    border-color: #fff
}

#navigation ul li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after {
    background: rgba(255, 138, 0, .13)
}

#navigation ul li a.current:after {
    background: rgba(255, 138, 0, .13)
}

.pagination ul li a.current-page {
    box-shadow: 0 2px 8px rgba(255, 138, 0, .25)
}

.sidebar-search-button-container button {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .1)
}

.sidebar-search-button-container button:hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .25)
}

.utf-job-listing.utf-apply-button-item:hover .list-apply-button {
    background: #424242;
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.utf-job-listing.utf-apply-button-item:hover .list-apply-button i {
    background: #fff
}

.task-listing-bid-inner .button {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.task-listing-bid-inner .button:hover {
    background: #424242;
    box-shadow: 0 4px 12px rgba(255, 138, 0, .25)
}

.task-tags span {
    color: #fff;
    background-color: #424242;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.utf-single-page-section-aera .task-tags {
    background: 0 0;
    padding: 0;
    margin: 0;
    box-shadow: none
}

.utf-single-page-section-aera .task-tags a {
    background: #f4f4f4;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
    transition: .3s;
    font-size: 15px;
    border-radius: 4px;
    background-color: rgba(102, 103, 107, .07);
    color: #66676b;
    display: inline-block;
    padding: 5px 15px;
    margin: 4px 2px;
    line-height: 24px
}

.utf-single-page-section-aera .task-tags a:hover {
    background: #a1d244;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(255, 138, 0, .3)
}

.utf-sidebar-categorie ul {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    margin: 0
}

.utf-sidebar-categorie ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: inline-block;
    padding: 7px 0
}

.utf-sidebar-categorie ul li:last-child {
    border-bottom: 0
}

.utf-sidebar-categorie ul li a {
    color: #626262
}

.utf-sidebar-categorie ul li a:hover {
    color: #a1d244;
    padding-left: 5px
}

.freelancers-grid-layout .freelancer-details a.button {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .1)
}

.freelancer-details a.button:hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .2)
}

.freelancers-list-layout .freelancer-details a.button {
    box-shadow: 0 4px 4px rgba(255, 138, 0, .3)
}

.freelancer:hover a.button:hover {
    background: #424242;
    box-shadow: 0 4px 12px rgba(255, 138, 0, .25)
}

.letters-list a.current {
    box-shadow: 0 2px 8px rgba(255, 138, 0, .25)
}

a.button,
button.button,
input[type=button],
input[type=submit],
span.button {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .05)
}

.move-on-hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .1)
}

.move-on-hover:hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .2)
}

.keyword {
    background-color: rgba(255, 138, 0, .07)
}

@keyframes switch-shadow-color {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, .6)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

@keyframes radius-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 138, 0, .4)
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
    }
}

.uploadButton .uploadButton-button {
    box-shadow: 0 3px 10px rgba(255, 138, 0, .1)
}

.uploadButton .uploadButton-button:hover {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.utf-category-box:hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .2)
}

.photo-box:hover {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .25)
}

.recommended .utf-pricing-plan-label {
    background-color: rgba(0, 0, 0, .1)
}

.pricing-plan .button:hover,
.pricing-plan.recommended .button {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.pricing-plan .button {
    box-shadow: 0 4px 12px rgba(255, 138, 0, .1)
}

.pricing-plan .button:hover {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.utf-order-confirm-aera i {
    color: #a1d244;
    font-size: 140px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 800
}

.utf-breathing-icon {
    box-shadow: 0 0 0 15px rgba(255, 138, 0, .07)
}

@keyframes bicokAnim {

    0%,
    100% {
        box-shadow: 0 0 0 15px rgba(255, 138, 0, .07)
    }

    50% {
        box-shadow: 0 0 0 28px rgba(255, 138, 0, .12)
    }
}

.icon-box-check {
    box-shadow: 0 0 0 5px rgba(255, 138, 0, .1)
}

@keyframes checkAnim {

    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(255, 138, 0, .15)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 138, 0, .15)
    }
}

.bidding-widget .button {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.bidding-widget .button:hover {
    background: #424242;
    box-shadow: 0 4px 12px rgba(255, 138, 0, .25)
}

.dialog-with-tabs .button {
    box-shadow: 0 4px 12px rgba(54, 54, 54, .15)
}

.slider-handle:after {
    box-shadow: 0 0 0 6px rgba(255, 138, 0, .12)
}

.slider-handle:hover:after {
    box-shadow: 0 0 0 8px rgba(255, 138, 0, .12)
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>li>a:hover {
    background-color: rgba(255, 138, 0, .07)
}

@keyframes clusterAnimation {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(255, 138, 0, .15)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 138, 0, .15)
    }
}

@keyframes markerAnimation {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(255, 138, 0, .15)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 138, 0, .15)
    }
}

a.apply-now-button {
    box-shadow: 0 2px 8px rgba(255, 138, 0, .15)
}

a.apply-now-button:hover {
    background: #424242;
    box-shadow: 0 2px 8px rgba(48, 48, 48, .35)
}

.utf-dashboard-nav ul li.active,
.utf-dashboard-nav ul li.active-submenu,
.utf-dashboard-nav ul li:hover {
    background-color: rgba(255, 255, 255, .08)
}

.utf-dashboard-nav ul li.active a:after,
.utf-dashboard-nav ul li.active-submenu a:after,
.utf-dashboard-nav ul li:hover a:after {
    background: rgba(255, 138, 0, .13)
}

.utf-dashboard-box-list .button {
    box-shadow: 0 3px 8px rgba(255, 138, 0, .15)
}

.dashboard-box .button.dark:not(.ico):hover {
    box-shadow: 0 3px 8px rgba(255, 138, 0, .15)
}

#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after {
    background-color: #a1d244
}

.need-help-area .info-box-1 {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: center;
    z-index: 1;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05)
}

.need-help-area .info-box-1:hover {
    transition: .4s;
    transform: scale(1.05)
}

.need-help-area .info-box-1 h4 {
    line-height: 26px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px
}

.need-help-area .info-box-1 p {
    margin-bottom: 15px;
    font-size: 15px;
    padding: 0;
    color: #212529
}

.need-help-area .info-box-1 .utf-icon-box-circle {
    background-color: #f7f7f7;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50px;
    z-index: 100;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    margin-bottom: 20px
}

.need-help-area .info-box-1 .utf-icon-box-circle-inner {
    font-size: 36px;
    line-height: 88px;
    color: #a1d244;
    position: relative;
    margin: 0 auto;
    display: inline-block
}

.preloader {
    background: radial-gradient(circle, #fff, #f3f3f3);
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999
}

.utf-preloader {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100px;
    text-align: center;
    z-index: 9999
}

.utf-preloader span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #a1d244;
    -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
    animation: ball-pulse-sync .6s 0s infinite ease-in-out
}

.utf-preloader span:nth-child(1) {
    -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
    animation: ball-pulse-sync .6s -.14s infinite ease-in-out
}

.utf-preloader span:nth-child(2) {
    -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync .6s -70ms infinite ease-in-out
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.utf-header-notifications-dropdown-block p {
    line-height: 16px;
    font-size: 12px;
    margin: 0 20px 20px
}

.utf-header-notifications-dropdown-block h3 {
    margin: 20px 20px 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 20px
}

.lightGreen {
    background: #f4f5fa
}

/*.top-header {
    background-color: #fafafa;
    padding: 0;
    float: left;
    width: 100%
}*/

.top-header {
    background-color: #e9ffef;
    padding: 0;
    float: left;
    width: 100%;
    position: relative;
    z-index: 999
}

.top-header-full {
    float: left;
    width: 100%
}

.top-left-hd {
    float: left
}

.top-left-hd ul,
.top-right-hd ul {
    margin: 0;
    padding: 0
}

.top-left-hd li:nth-child(2) {
    margin-left: -5px
}

.top-left-hd li {
    display: inline-block;
    padding: 8px 10px;
    border-right: 1px solid #eaeaea
}

.top-left-hd li:first-child {
    padding: 8px 10px 8px 0;
}

.top-right-hd {
    float: right
}

.top-right-hd li:first-child {
    border-left: 1px solid #eaeaea;
}

.top-right-hd li:last-child {
    border-right: 0;
    padding: 5px 0 0 10px;
}

.top-right-hd li {
    display: inline-block;
    padding: 5px 10px;
    border-right: 1px solid #eaeaea
}

.wlcm-text {
    font-size: 12px;
    font-weight: 400;
    color: #847577;
    line-height: 24px
}

.icon15 {
    font-size: 15px;
    color: #757575;
    line-height: 24px;
    position: relative
}

@media (max-width:575.98px) {
    .top-left-hd {
        display: none
    }

    .top-right-hd {
        float: inherit;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center
    }

    .top-right-hd li {
        padding: 5px 16px !important
    }

    .top-left-hd li:first-child {
        display: none !important;
    }

    .top-left-hd li:nth-child(2) {
        border-right: none !important;
        padding-left: 5px !important
    }

    .top-right-hd li {
        padding: 8px !important
    }

    .top-right-hd li:last-child {
        padding-right: 0 !important;
        border-right: 0 !important
    }

    .top-left-hd ul,
    .top-right-hd ul {
        margin: 0;
        padding: 0
    }

    .search-icon {
        margin: 0 !important
    }

    .search-toggle.closed {
        margin: -2px 0 0 auto !important
    }

    .search-container.opened {
        max-height: 300px !important
    }

    #search-terms .utf-intro-banner-search-form-block {
        border-radius: 0 !important;
        border: 0 !important
    }

    .search-container {
        top: 78px !important;
    }

    #search-terms .utf-intro-banner-search-form-block .utf-intro-search-field-item {
        margin-right: 0 !important
    }

    #search-terms .utf-intro-search-button button i {
        display: none !important
    }
}

.search-icon {
    font-size: 24px;
    outline: 0;
    padding: 5px 10px 0;
    border-radius: 5px;
    position: absolute;
    right: 0;
}

.search-toggle .search-icon.icon-close {
    display: none
}

.search-toggle.opened .search-icon.icon-search {
    display: none
}

.search-toggle.opened .search-icon.icon-close {
    display: block
}

.search-container {
    position: relative;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-height: 0;
    overflow: hidden;
    background-color: #eee
}

.search-container.opened {
    max-height: 200px;
    overflow: inherit;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s
}

.search-container input[type=text] {
    outline: 0;
    font-size: 1.6rem;
    margin: 18px;
    background-color: inherit;
    border: 0
}

.search-container .search-icon {
    vertical-align: middle
}

.search-container {
    position: absolute;
    right: 0;
    top: 110px;
    width: 100%;
    z-index: 9;
}

#search-terms .utf-intro-banner-search-form-block {
    display: flex;
    width: 100%;
    background-color: #fbfdff;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .09)
}

#search-terms .utf-intro-banner-search-form-block .utf-intro-search-field-item:nth-last-child(2) {
    margin-right: 10px
}

#search-terms .utf-intro-banner-search-form-block input:focus {
    box-shadow: none
}

#search-terms .utf-intro-banner-search-form-block input::placeholder {
    color: #888
}

#search-terms .utf-intro-banner-search-form-block .utf-input-with-icon {
    align-self: center;
    flex: 1
}

#search-terms .utf-intro-banner-search-form-block input {
    padding: 10px 15px
}

#search-terms .utf-intro-banner-search-form-block input {
    box-shadow: none;
    font-size: 13px;
    margin: 0;
    padding-left: 35px
}

#search-terms .utf-intro-banner-search-form-block i {
    left: 20px;
    position: absolute;
    font-size: 13px;
    color: #b0b0b0
}

#search-terms .utf-intro-search-button button i {
    left: 0;
    color: #fff;
    display: none
}

#search-terms .utf-intro-banner-search-form-block .utf-input-with-icon input {
    padding: 10px 15px;
    padding-left: 43px
}

#search-terms .utf-intro-banner-search-form-block .utf-input-with-icon i {
    position: absolute;
    right: auto;
    left: 10px;
    top: calc(50% - 1px);
    font-size: 24px;
    color: #b0b0b0
}

#search-terms .utf-intro-banner-search-form-block .utf-intro-search-field-item .bootstrap-select.btn-group button,
#search-terms .utf-intro-banner-search-form-block input {
    height: 36px;
    padding: 4px 22px
}

#search-terms .utf-intro-banner-search-form-block input {
    padding: 0 20px
}

#search-terms .utf-intro-banner-search-form-block .utf-input-with-icon i {
    left: 17px
}

#search-terms .utf-intro-banner-search-form-block .utf-input-with-icon input {
    padding-left: 50px
}

#search-terms .utf-intro-banner-search-form-block {
    background: #0b6624 !important;
    border-radius: 0;
    padding: 15px;
    background: 0 0;
    box-shadow: none;
    margin-top: 0;
    border: 0
}

#search-terms .utf-intro-banner-search-form-block .utf-intro-search-field-item {
    padding: 0;
    border-right: 0;
    border-radius: 4px;
    background: #fbfdff;
    margin-right: 15px
}

#search-terms .utf-intro-banner-search-form-block .utf-intro-search-field-item.with-label {
    margin-top: 80px
}

#search-terms .utf-intro-banner-search-form-block .utf-intro-search-button {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0
}

#search-terms .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    overflow: hidden;
    width: 100%;
    line-height: 30px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90%;
    float: left;
    height: 48px;
    display: block
}

#search-terms .utf-intro-search-field-item .bootstrap-select.btn-group button {
    font-size: 13px
}

#search-terms .bs-actionsbox,
#search-terms .bs-donebutton,
#search-terms .bs-searchbox {
    padding: 0
}

.ellipsis_content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 26px;
    height: auto
}

.address {
    color: #d9d9d9;
    font-size: 13px;
    line-height: 22px;
}

.mainMenu {
    background: #0b6624;
    justify-content: center !important
}

.mainMenu ul li a {
    color: #fff !important
}

.productMenu {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 !important;
    width: 100%
}

.productMenu ul {
    margin: 0;
    padding: 0
}

.productMenu ul li {
    display: inline-block;
    padding: 0 15px
}

.productMenu ul li:first-child {
    padding-left: 0
}

.productMenu ul li a span {
    font-size: 12px;
    line-height: 18px;
    color: #969696
}

.productMenu ul li a h3 {
    font-size: 13px;
    margin: 0;
    line-height: 15px !important;
    font-weight: 500
}

#navigation ul ul li a {
    padding: 10px
}

@media (max-width:768px) {
    .compact-list-layout .utf-job-listing.utf-apply-button-item {
        width: 100% !important
    }
}

.lazyimages {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 50%
}

.mobile-app-icon {
    width: 120px;
    display: inline-block;
}

.assoCertifi li {
    display: inline-block !important
}

.social {
    padding-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
    display: inline-block
}

.socialAddress {
    text-align: left;
    line-height: normal;
    margin-bottom: 0
}

.socialAddress p {
    color: #d9d9d9 !important;
}

.socialAddress a {
    color: #8fe33e;
    display: block;
    height: auto;
    line-height: 26px;
}

.border-bottom {
    /*border-bottom: 1px solid #2a2a2a !important*/
    border-bottom: 1px solid #d1d1d1 !important
}

#titlebar.companyBanner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(../images/company/company-banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 0
}

#titlebar.companyBanner #breadcrumbs ul li a,
#titlebar.companyBanner #breadcrumbs ul li,
#titlebar.companyBanner #breadcrumbs ul li:before {
    color: #fff;
}

#listwrapper {
    overflow: hidden
}

@media (min-width:768px) {
    .content {
        min-width: 0;
        width: 100%;
        margin: 0 .3rem 0 0
    }
}

.content-box {
    padding: 1.25rem;
    font-size: .875rem;
    border-radius: .25rem
}

.sidebar {
    min-height: calc(100vh - 3.5rem);
    margin-left: -18rem;
    transition: margin .15s ease-out;
    border-top-right-radius: .25rem
}

@media (min-width:768px) {
    .sidebar {
        margin-left: -18rem
    }
}

.sidebar-toggle .sidebar {
    margin-left: 0rem
}

@media (min-width:768px) {
    .sidebar-toggle .sidebar {
        margin-left: 0
    }
}

.sidebar-menu {
    width: 17rem;
    margin: 1rem 0 1rem 1rem
}

.navbar-link {
    margin-left: 1rem
}

.navbar-bars {
    transition: .2s all;
    margin-left: .3125rem;
    font-size: .875rem
}

.dropdown-logged {
    margin-left: auto
}

.list {
    max-height: 90vh;
    padding: 0 1.25rem;
    font-size: .875rem
}

.list-item {
    padding: 0;
    margin-top: .625rem;
    line-height: 2.125rem
}

.list-title {
    margin-bottom: 0;
    font-size: .75rem
}

.list-hidden {
    display: none;
    padding-left: .625rem;
    margin: .9375rem 0 .9375rem .625rem;
    overflow: hidden
}

.list-link {
    display: block;
    padding: 0 .625rem;
    margin-bottom: .125rem;
    border-radius: .25rem
}

.list-link:hover {
    text-decoration: none
}

.list-link:hover .fa {
    transform: rotate(359deg);
    transition: .5s all
}

.list-icon {
    width: 1.375rem;
    display: inline-block
}

.link-arrow:before {
    font-family: FontAwesome;
    margin-right: .1875rem;
    float: right
}

.link-arrow.up:before {
    content: "\f106"
}

.link-arrow.down:before {
    content: "\f107"
}

.link-arrow.transition:before {
    transition: .2s all
}

.link-arrow.rotate:before {
    transform: rotate(180deg)
}

.link-arrow.rotate-revert:before {
    transform: rotate(-180deg)
}

.list-scrollbar {
    position: relative;
    overflow: hidden
}

.ps__rail-y {
    margin-top: .0625rem
}

.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__rail-y:focus .ps__thumb-y,
.ps__rail-y:hover .ps__thumb-y,
.ps__thumb-y {
    width: .3125rem
}

.nanobar {
    width: 100%;
    height: .125rem;
    z-index: 9999;
    top: 0
}

.nanobar .bar {
    width: 0;
    height: 100%;
    transition: height .3s
}

.body-lighten {
    background-color: #f4f4f4;
    color: #404040
}

.sidebar-lighten {
    background-color: #fff
}

.sidebar-lighten .ps__rail-y.ps--clicking .ps__thumb-y,
.sidebar-lighten .ps__rail-y:focus .ps__thumb-y,
.sidebar-lighten .ps__rail-y:hover .ps__thumb-y,
.sidebar-lighten .ps__thumb-y {
    background-color: #e6e6e6
}

.sidebar-lighten .list {
    color: #a6a6a6;
    list-style: none
}

.sidebar-lighten .list-link {
    color: #404040
}

.sidebar-lighten .list-hidden {
    border-left: .0625rem solid #f0f0f0
}

.sidebar-lighten .link-current,
.sidebar-lighten .list-link:hover {
    background-color: #f4f4f4
}

.navbar-lighten .navbar-link {
    color: #404040;
    background: #e3e4e7
}

.navbar-lighten .navbar-bars {
    color: #404040
}

.dropdown-logged-lighten .dropdown-link {
    color: #404040
}

.dropdown-menu-lighten {
    background-color: #ededed
}

.dropdown-menu-lighten .dropdown-logged-item {
    color: #404040
}

.dropdown-menu-lighten .dropdown-logged-item:hover {
    background-color: #fff;
    color: #404040
}

.dropdown-menu-lighten .dropdown-menu-arrow:after {
    border-bottom-color: #ededed
}

.content-lighten {
    background-color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 6%);
    border: 1px solid rgba(0, 0, 0, .05)
}

.dropdown-logged-lighten .dropdown-logged-toggle:before,
.dropdown-menu-lighten .dropdown-logged-item .fa,
.navbar-lighten .navbar-bars,
.sidebar-lighten .link-arrow:before,
.sidebar-lighten .list-link .fa {
    opacity: .3
}

.navbar-lighten .navbar-bars:hover {
    opacity: .7
}

.sidebar-lighten .link-arrow.active:before,
.sidebar-lighten .list-link:hover .fa {
    opacity: 1
}

.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
    background: 0 0
}

.nanobar .bar {
    background-color: #404040
}

.body-darken {
    background-color: #30353c;
    color: #cbd0d5
}

.sidebar-darken {
    background-color: #262a2f
}

.sidebar-darken .ps__rail-y.ps--clicking .ps__thumb-y,
.sidebar-darken .ps__rail-y:focus .ps__thumb-y,
.sidebar-darken .ps__rail-y:hover .ps__thumb-y,
.sidebar-darken .ps__thumb-y {
    background-color: #3d434b
}

.sidebar-darken .list {
    color: #778291
}

.sidebar-darken .list-link {
    color: #cbd0d5
}

.sidebar-darken .list-hidden {
    border-left: .0625rem solid #343940
}

.sidebar-darken .link-current,
.sidebar-darken .list-link:hover {
    background-color: #30353c
}

.navbar-darken .navbar-link {
    color: #cbd0d5
}

.navbar-darken .navbar-bars {
    color: #cbd0d5
}

.dropdown-logged-darken .dropdown-link {
    color: #cbd0d5
}

.dropdown-menu-darken {
    background-color: #30353c
}

.dropdown-menu-darken .dropdown-logged-item {
    color: #cbd0d5
}

.dropdown-menu-darken .dropdown-logged-item:hover {
    background-color: #262a2f;
    color: #cbd0d5
}

.dropdown-menu-darken .dropdown-menu-arrow:after {
    border-bottom-color: #30353c
}

.content-darken {
    background-color: #262a2f
}

.dropdown-logged-darken .dropdown-logged-toggle:before,
.dropdown-menu-darken .dropdown-logged-item .fa,
.navbar-darken .navbar-bars,
.sidebar-darken .link-arrow:before,
.sidebar-darken .list-link .fa {
    opacity: .3
}

.navbar-darken .navbar-bars:hover {
    opacity: .7
}

.sidebar-darken .link-arrow.active:before,
.sidebar-darken .list-link:hover .fa {
    opacity: 1
}

.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
    background: 0 0
}

.nanobar .bar {
    background-color: #e8eaec
}

.priamyBg {
    background: #8fc740
}

.companyDetailsJob .utf-job-listing.utf-apply-button-item {
    width: 99%
}

.companyDetailsJob .utf-job-listing.utf-apply-button-item .ellipsis {
    max-width: calc(100% - 30px);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap
}

.followUp {
    width: auto;
    padding: 0;
    display: flex;
}

.followUp .followers {
    font-size: 22px;
    display: block;
    line-height: 18px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

@media (max-width:767px) {
    .companyDetailsJob .utf-job-listing.utf-apply-button-item {
        width: 100%
    }
}

.widget.border {
    border: 1px solid #e6e7ef;
    margin: 0 0 20px;
    padding: 0;
    float: left;
    background: #f4f5fa
}

.companyDetailsJob .utf-job-listing:hover {
    border: 1px solid rgba(0, 0, 0, .06);
    transform: none !important
}

.companyDetailsJob .utf-job-listing:hover::before {
    background: 0 0 !important
}

.companyDetailsJob .utf-job-listing {
    width: 100% !important
}

.companyDetailsJob .utf-job-listing-description {
    flex: 1 75%
}

.companyDetailsJob .applyView {
    flex: 1 25%
}

ul.topfresh-employee {
    float: left;
    margin: 0 0 20px
}

ul.topfresh-employee li {
    margin: 10px 18px 0;
    float: left;
    list-style: none
}

.utf-assessment-tabs-nav-item li {
    width: auto !important;
    text-align: center
}

.utf-popup-tabs-nav-item li a:hover,
.utf-popup-tabs-nav-item li.active a,
.utf-popup-tabs-nav-item li.active a:hover {
    background: #0b6624;
    color: #fff !important;
    border-bottom: 1px solid #0b6624 !important
}

.utf-assessment-tabs-nav-item::before {
    opacity: 0 !important
}

.utf-assessment-tabs-nav-item .utf-popup-tabs-nav-item {
    padding: 0 !important;
    width: 28% !important;
    display: flex !important;
    border: 1px solid #e9e5e5 !important;
    margin: 30px auto 0 !important;
    justify-content: space-between;
    background: #f5f5f5 !important
}

.utf-popup-tabs-nav-item li {
    width: 100% !important;
    line-height: 50px !important;
    height: 50px !important;
    border-right: 1px solid #e9e5e5 !important
}

.utf-popup-tabs-nav-item li a {
    width: 100%;
    padding: 0 !important;
    color: #323232 !important
}

.assessment-tab-items {
    background-color: transparent;
    padding: 0;
    margin-top: 3px
}

.assessment-tab-items ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0
}

.assessment-tab-items ul li {
    background: #f6f6f6;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 5px;
    color: #222;
    font-size: 12px;
    font-weight: normal;
    padding: 0 8px;
    border-radius: 10px;
}

.assessment-tab-div {
    display: block !important
}

.assessment-tab-div:hover {
    transform: scale(1.01);
    box-shadow: 0 1px 12px rgb(0 0 0 / 6%);
    overflow: hidden;
    border: 1px solid #ff8a00 !important
}

.assessment-tab-div:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    display: block;
    background: #ff8a00;
    transition: .3s;
    opacity: 1
}

.assessment-tab-items img {
    height: 45px !important
}

.assessment-tab-div small {
    font-size: 11px;
    line-height: 18px;
    font-weight: 600;
    color: #7b7b7b;
    margin: 10px 0 0;
}

.assessment-tab-div {
    height: 100%
}

.topCollegeList {
    border: 1px solid #e7e7e7;
    width: 100%;
    display: block;
    height: 50px;
    text-align: center;
    background: #fff
}

.topCollegeList img {
    height: 100%;
    object-fit: contain;
    padding: 5px
}

.topfresh-employee {
    margin-bottom: 30px;
    border: 0;
    padding: 20px 20px 20px !important;
    background: #fff;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
}

.topfresh-employee h3 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.innerBannerBottom {
    box-shadow: 0 5px 15px rgb(0 0 0 / 6%)
}

.companyListView {
    background-color: transparent;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: none !important
}

.companyListView a {
    width: 48% !important;
    margin-right: 0 !important
}

.form-area {
    background-color: #2c3350;
    padding: 0 20px 20px;
    margin: 0;
    display: inline-block;
    width: 100%
}

.alpha-pag {
    display: flex;
    width: 100%;
    background: #f4f5fa;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.alpha-pag a.active,
.alpha-pag a:hover {
    background: #8fc74a;
    color: #fff
}

.alpha-pag a {
    font-size: 13px;
    color: #262626;
    padding: 0 7px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    letter-spacing: 0;
    font-weight: 600
}

.btn-primary {
    background: #0b6624;
    padding: 5px 20px;
    border-radius: 3px;
    color: #fff
}

.notify-badge {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 10px 20px
}

.AssSupport {
    background: #2c3350
}

.AssSupport h3 {
    color: #fff
}

.viewApply-job {
    background: #a1d244;
    position: relative;
    top: 50%;
    border-radius: 15px;
    transition: .3s;
    color: #fff;
    border: 1px solid #a1d244;
    padding: 1px 7px;
    display: block;
    margin: 0;
    min-width: 80px;
    text-align: center;
    line-height: 24px;
    font-size: 13px
}

.college-details {
    padding: 25px 5px
}

.college-details ul {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 !important
}

.college-details ul li {
    display: block;
    margin: 0;
    margin-bottom: 0;
    position: relative;
    padding-left: 23px;
    line-height: 21px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #262626;
    padding-left: 0
}

.contact-address h5 {
    margin: 0;
    font-size: 15px
}

.contact-address h3 {
    width: 100%;
    font-size: 20px;
    color: #202020
}

address {
    font-size: 13px;
    line-height: 20px
}

.listJobs ul {
    margin: 0;
    padding: 0
}

.listJobs ul li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    line-height: 20px;
    font-size: 15px
}

.listJobs ul li:last-child {
    border-bottom: 0
}

.listJobs ul li a {
    display: block;
    padding: 5px 0
}

.listJobs ul li:hover a {
    color: #a1d244;
    background: #f5f5f5;
    padding-left: 10px
}

.listJobs2 ul {
    margin: 0;
    padding: 0
}

.listJobs2 ul li {
    list-style: none;
    line-height: 20px;
    font-size: 15px
}

.listJobs2 ul li:last-child {
    border-bottom: 0
}

.listJobs2 ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0
}

.listJobs2 ul li a .utf-job-listing-company-logo {
    width: 60px;
    height: 60px;
    margin: 0 15px 0 0;
    padding: 0;
    line-height: 60px
}

.listJobs2 ul li a span {
    flex: 1;
    padding-top: 0;
    margin-top: -2px
}

.listJobs2 ul li:hover a {
    color: #a1d244
}

.followUp p {
    color: #fff
}

.followUp p span.oppCount {
    color: #ffc000;
    font-size: 18px
}

@media (max-width:767px) {
    .utf-assessment-tabs-nav-item .utf-popup-tabs-nav-item {
        width: 100% !important
    }

    .followUp {
        width: 100%;
        padding: 0;
        display: inline-block;
    }
}

.p-relative {
    position: relative
}

.hero__height {
    min-height: 490px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__height {
        min-height: 850px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__height {
        min-height: 750px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__height {
        min-height: 1100px
    }
}

@media (max-width:575px) {
    .hero__height {
        min-height: 850px;
        padding-top: 50px
    }

    .hero__shape img.hero-1-circle {
        display: none
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__height-2 {
        min-height: 1350px
    }
}

@media (max-width:575px) {
    .hero__height-2 {
        min-height: 850px
    }
}

.hero__title {
    font-size: 60px;
    line-height: 1
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__title {
        font-size: 55px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__title {
        font-size: 45px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__title {
        font-size: 35px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__title {
        font-size: 50px
    }
}

@media (max-width:575px) {
    .hero__title {
        font-size: 30px
    }
}

.hero__title span:first-child {
    font-weight: 300;
    display: block
}

.hero__title span.yellow-shape {
    position: relative;
    z-index: 1
}

.hero__title span.yellow-shape img {
    position: absolute;
    bottom: 22px;
    left: -8px;
    z-index: -1;
    -webkit-animation: section-animation 3s infinite;
    animation: section-animation 3s infinite
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__title span.yellow-shape img {
        bottom: 12px;
        height: 40% !important
    }
}

.hero__title-2 {
    margin-bottom: 20px
}

.hero__content p {
    font-size: 22px;
    color: #0e1133;
    padding-right: 130px;
    line-height: 30px;
    margin-bottom: 0
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__content p {
        padding-right: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__content p {
        padding-right: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__content p {
        padding-right: 0
    }
}

@media (max-width:575px) {
    .hero__content p {
        padding-right: 0
    }
}

.hero__content-2 h4 {
    font-size: 22px;
    margin-bottom: 0
}

.hero__content-2 p {
    color: #53545b;
    font-size: 15px;
    margin-bottom: 37px
}

.hero__thumb {
    z-index: 1
}

.hero__thumb-big {
    position: relative
}

.hero__thumb-big img {
    max-width: 400px;
    max-height: 460px;
    -webkit-border-radius: 40px 4px 40px 4px;
    -moz-border-radius: 40px 4px 40px 4px;
    border-radius: 40px 4px 40px 4px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    -moz-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14)
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__thumb-big img {
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__thumb-big img {
        margin-top: 50px;
        width: 100%
    }
}

@media (max-width:575px) {
    .hero__thumb-big img {
        margin-top: 50px;
        width: 100%
    }
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__thumb-sm {
        margin-left: -50px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__thumb-sm {
        margin-left: -160px;
        margin-top: -95px
    }
}

.hero__thumb-sm img {
    max-width: 200px;
    max-height: 240px;
    -webkit-border-radius: 4px 40px 4px 40px;
    -moz-border-radius: 4px 40px 4px 40px;
    border-radius: 4px 40px 4px 40px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    -moz-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14)
}

.hero__thumb-shape img {
    position: absolute;
    z-index: -1
}

.hero__thumb-shape img.hero-1-dot {
    bottom: -25px;
    left: -30px;
    -webkit-animation: hero-dot-1 5s linear 0s infinite alternate;
    -moz-animation: hero-dot-1 5s linear 0s infinite alternate;
    -o-animation: hero-dot-1 5s linear 0s infinite alternate;
    animation: hero-dot-1 5s linear 0s infinite alternate
}

.hero__thumb-shape img.hero-1-circle-3 {
    bottom: -47px;
    right: 1%
}

.hero__thumb-shape img.hero-1-circle-4 {
    top: -50px;
    right: 10%
}

.hero__thumb-2 {
    position: relative;
    z-index: 1
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__thumb-2 img.hero-big {
        width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__thumb-2 img.hero-big {
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__thumb-2 img.hero-big {
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__thumb-2 img.hero-big {
        width: 100%
    }
}

@media (max-width:575px) {
    .hero__thumb-2 img.hero-big {
        width: 100%
    }
}

.hero__thumb-2 img.hero-shape-purple {
    position: absolute;
    left: 0;
    bottom: 19%;
    z-index: -1
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__thumb-2 img.hero-shape-purple {
        width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__thumb-2 img.hero-shape-purple {
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__thumb-2 img.hero-shape-purple {
        width: 100%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__thumb-2 img.hero-shape-purple {
        width: 100%
    }
}

@media (max-width:575px) {
    .hero__thumb-2 img.hero-shape-purple {
        width: 100%
    }
}

.hero__quote {
    position: absolute;
    bottom: 60px;
    right: -200px;
    padding: 15px 25px;
    padding-bottom: 20px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    -moz-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14)
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__quote {
        right: -145px
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__quote {
        right: 60px;
        bottom: -50px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__quote {
        right: 30px;
        bottom: -50px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__quote {
        right: 30px;
        bottom: -50px
    }
}

@media (max-width:575px) {
    .hero__quote {
        right: 15px;
        bottom: -50px
    }
}

.hero__quote span {
    font-size: 15px;
    color: #474956
}

.hero__quote h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1
}

.hero__quote-animation {
    animation-duration: 2.5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce
}

.hero__shape img {
    position: absolute
}

.hero__shape img.hero-1-circle {
    top: 0;
    left: 5%;
    -webkit-animation: hero-circle-1 6s linear 0s infinite alternate;
    -moz-animation: hero-circle-1 6s linear 0s infinite alternate;
    -o-animation: hero-circle-1 6s linear 0s infinite alternate;
    animation: hero-circle-1 6s linear 0s infinite alternate
}

.hero__shape img.hero-1-circle-2 {
    bottom: 29%;
    left: 0
}

.hero__shape img.hero-1-dot-2 {
    right: 0;
    bottom: 38%
}

.hero__search-input {
    position: relative;
    width: 370px
}

@media (max-width:575px) {
    .hero__search-input {
        width: 100%
    }
}

.hero__search-input input {
    width: 100%;
    height: 54px;
    line-height: 54px;
    padding: 0 24px;
    padding-right: 35px;
    font-size: 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    outline: 0;
    border: none
}

.hero__search-input input::placeholder {
    color: #8d8e9a
}

.hero__search-input button {
    position: absolute;
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    background: 0 0
}

.hero__search-input button i::after {
    color: #0e1133;
    opacity: 1
}

.hero__search-input button i::before {
    color: #8c8faa
}

.hero__search p {
    font-size: 15px;
    color: #6d6e75
}

.hero__promotion {
    position: absolute !important;
    left: -7% !important;
    top: 44% !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    -moz-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    padding: 15px 20px;
    padding-bottom: 10px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .hero__promotion {
        left: 20% !important;
        top: 71% !important
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .hero__promotion {
        left: 9% !important;
        top: 71% !important
    }
}

@media (max-width:575px) {
    .hero__promotion {
        left: 9% !important;
        top: 52% !important
    }
}

.hero__promotion.education {
    bottom: 28% !important;
    top: auto !important;
    left: -11% !important
}

.hero__promotion-icon span {
    display: inline-block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ff7921
}

.hero__promotion-icon span svg {
    height: 24px;
    fill: #fff
}

.hero__promotion-icon span.cap {
    background: #5773ff
}

.hero__promotion-text h5 {
    font-size: 15px;
    margin-bottom: 0
}

.hero__promotion-text p {
    font-size: 15px;
    color: #474956;
    margin-bottom: 0
}

.hero__class {
    position: absolute;
    left: auto !important;
    top: auto !important;
    bottom: 33%;
    right: -12%;
    -webkit-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    -moz-box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    box-shadow: 0 30px 60px 0 rgba(1, 11, 60, .14);
    background: rgba(255, 255, 255, .9);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 20px
}

@media only screen and (min-width:1200px) and (max-width:1399px) {
    .hero__class {
        right: -5%
    }
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .hero__class {
        right: 1%;
        bottom: 15%
    }
}

.hero__class-thumb img {
    width: 34px;
    height: 34px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.hero__class-text h5 {
    font-size: 15px;
    margin-bottom: 0
}

.hero__class-text p {
    font-size: 15px;
    color: #474956;
    margin-bottom: 0
}

.hero__class-text a {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 0 15px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #e233fb
}

.hero__mic {
    position: absolute;
    top: 30%;
    right: 10%;
    animation-duration: 2.5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: hero-bounce
}

.hero__mic span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #ff3c4e;
    -webkit-box-shadow: 0 14px 30px 0 rgba(131, 2, 14, .2);
    -moz-box-shadow: 0 14px 30px 0 rgba(131, 2, 14, .2);
    box-shadow: 0 14px 30px 0 rgba(131, 2, 14, .2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

.hero__mic span svg {
    height: 28px;
    fill: #fff
}

@keyframes hero-dot-1 {
    0% {
        transform: translateY(-100px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes hero-bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

@keyframes hero-circle-1 {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.companyBannerTag {
    font-size: 15px;
    font-weight: 600;
    color: #707070;
    background: 0 0;
    display: inline-block;
    margin: 4px 0;
    padding: 0 12px;
    border-radius: 50px;
    border: 1px solid #80868d
}

.companyBannerLogo {
    flex: 1;
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.companyBannerLogo .utf-header-image {
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    margin-right: 25px;
    background: #757575;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgb(0 0 0 / 10%);
    display: flex;
    padding: 0;
    overflow: hidden
}

.companyBannerLogo .utf-header-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-self: center;
    transform: translate3d(0, 0, 0)
}

.companyBannerLogo .utf-header-details {
    flex: 1
}

.companyBannerLogo h3 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 32px;
    color: #a1d244;
}

.companyBannerLogo h4 {
    color: #ccc;
}

.about__thumb img {
    width: 370px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px
}

@media (max-width:575px) {
    .about__thumb img {
        width: 100%;
        margin-top: 20px;
    }
}

.about__thumb-wrapper {
      position: relative;
    border: 1px solid #d0e3d5;
    padding: 10px;
    height: 100%;
    overflow: hidden;
    background: #e9ffef;
}

@media (max-width:575px) {
    .about__banner {
        margin-top: -25px
    }
}

.about__banner img {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    max-width: 240px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .about__content {
        padding-left: 55px
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .about__content {
        margin-top: 50px;
        padding-left: 0
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .about__content {
        margin-top: 50px;
        padding-left: 0
    }
}

@media (max-width:575px) {
    .about__content {
        margin-top: 0;
        padding-left: 0 !important;
        padding-right: 0
    }
}

@media (max-width:575px) {
    .about__student {
        margin-top: 20px;
        margin-left: 0
    }
}

.about__student img {
    height: 36px;
    width: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 5, 52, .1);
    -moz-box-shadow: 0 10px 20px 0 rgba(0, 5, 52, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 5, 52, .1)
}

.about__student img+img {
    margin-left: -12px
}

.about__student p {
    margin-top: 4px;
    margin-bottom: 0
}

.about__student p span {
    font-weight: 600;
    color: #0e1133
}

.about__review {
    position: absolute;
    right: 100px;
    top: 100px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #f5f5f5;
    padding: 20px
}

.about__review h5 {
    font-size: 15px;
    font-weight: 400;
    color: #6d6e75;
    margin-bottom: 0
}

.about__review h5 span {
    font-weight: 600;
    color: #0e1133
}

.about__list ul li {
    font-size: 15px;
    font-weight: 500;
    color: #0e1133;
    margin-bottom: 5px
}

.about__list ul li i {
    font-size: 15px;
    color: #30a820;
    padding-right: 9px
}

.section__title-wrapper {
    position: relative;
    z-index: 1
}

.mb-25 {
    margin-bottom: 25px
}

.section__sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #a1d244;
    display: inline-block;
    margin-bottom: 5px
}

.section__title {
    font-size: 36px;
    color: #0e1133;
    z-index: 1;
    margin-bottom: 20px;
    line-height: 46px;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

@media (max-width:575px) {
    .section__title {
        font-size: 33px;
    }

    .mobileapp-down-menu {
        right: auto !important;
        transform: translate(-6%, 2%);
        padding-right: 10px !important;
    }
}

.section__title span {
    position: relative
}

.section__title span img {
    position: absolute;
    left: -14px;
    bottom: 12px;
    z-index: -1
}

.section__title span.yellow-bg-big img {
    bottom: 15px
}

.section__title span.yellow-bg-sm img {
    bottom: 10px;
    width: 120%;
    -webkit-animation: section-animation-2 3s infinite;
    animation: section-animation-2 3s infinite
}

.section__title-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.section__title-wrapper p {
    font-size: 15px;
    color: #53545b
}

@keyframes section-animation {
    0% {
        width: 0
    }

    15% {
        width: 100%
    }

    85% {
        opacity: 1
    }

    90% {
        width: 100%;
        opacity: 0
    }

    to {
        width: 0;
        opacity: 0
    }
}

@keyframes section-animation-2 {
    0% {
        width: 0
    }

    15% {
        width: 125%
    }

    85% {
        opacity: 1
    }

    90% {
        width: 125%;
        opacity: 0
    }

    to {
        width: 0;
        opacity: 0
    }
}

.pt-90 {
    padding-top: 90px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-150 {
    padding-bottom: 150px
}

.pt-150 {
    padding-top: 150px
}

.pr-60 {
    padding-right: 60px
}

.pl-70 {
    padding-left: 70px
}

.pt-25 {
    padding-top: 25px
}

.ml-100 {
    margin-left: 100px
}

.e-btn {
    display: inline-block;
    /*height: 50px;
    line-height: 52px;*/
    text-align: center;
    padding: 0 25px;
    color: #fff;
    background: #a1d244;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 500;
}

.e-btn-border:hover {
    background: #a1d244;
    border-color: #a1d244;
    color: #fff
}

.e-btn-border {
    height: 46px;
    line-height: 44px;
    border: 2px solid #d7d9e3;
    color: #0e1133;
    background: 0 0
}

.mt--210 {
    margin-top: -210px
}

.mt--80 {
    margin-top: -79px
}

.ml-270 {
    margin-left: 270px
}

.category__item {
    padding: 20px 40px 10px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 2px solid #eef0f6;
    background: #ffffff;
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .category__item {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .category__item {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media (max-width:575px) {
    .category__item {
        padding-left: 30px;
        padding-right: 30px
    }
}

.category__item:hover {
    background: #a1d244;
    border-color: #a1d244;
    -webkit-box-shadow: 0 10px 15px 0 rgb(225 245 186);
    -moz-box-shadow: 0 10px 15px 0 rgba(225 245 186);
    box-shadow: 0 10px 15px 0 rgb(225 245 186)
}

.category__item:hover .category__title {
    color: #fff
}

.category__item:hover svg .st0,
.category__item:hover svg .st1,
.category__item:hover svg .st2,
.category__item:hover svg .st4,
.category__item:hover svg .st5 {
    fill: #fff
}

.category__item:hover .category__content p {
    color: #fff
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .category__icon {
        margin-right: 15px
    }
}

.category__icon svg {
    width: 40px;
    height: 40px
}

.category__icon svg .st0 {
    fill: #cee1f2
}

.category__icon svg .st1 {
    fill: #3444f1
}

.category__icon svg .st4 {
    fill: #3444f1
}

.category__icon svg .st2 {
    fill: #ffb31f
}

.category__icon svg .st5 {
    fill: #ffb31f
}

.category__title {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 600
}

.category__content p {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 13px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-30 {
    margin-bottom: 30px
}

.mr-30 {
    margin-right: 30px
}

.pb-70 {
    padding-bottom: 70px
}

.pt-120 {
    padding-top: 120px
}

.fix {
    overflow: hidden
}

@media (min-width:768px) {
    .float-md-end {
        float: right !important
    }
}

.link-btn {
    position: relative;
    font-size: 15px;
    color: #6d6e75;
    font-weight: 500;
    padding-right: 21px;
    display: inline-block
}

.link-btn i {
    font-size: 15px;
    position: absolute;
    top: 12px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s
}

.link-btn i:first-child {
    right: 10%;
    visibility: hidden;
    opacity: 0
}

.link-btn i:last-child {
    right: 0
}

.link-btn:hover {
    color: #a1d244
}

.link-btn:hover i:first-child {
    right: 0;
    visibility: visible;
    opacity: 1
}

.link-btn:hover i:last-child {
    right: -10%;
    visibility: hidden;
    opacity: 0
}

.link-btn.link-prev {
    padding-right: 0;
    padding-left: 21px
}

.link-btn.link-prev i:first-child {
    left: 10%;
    right: auto
}

.link-btn.link-prev i:last-child {
    left: 0;
    right: auto
}

.link-btn.link-prev:hover i:first-child {
    left: 0;
    right: auto
}

.link-btn.link-prev:hover i:last-child {
    left: -10%;
    right: auto
}

.events__shape img.events-1-shape {
    position: absolute;
    top: 60%;
    left: 53%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .events__shape img.events-1-shape {
        left: 50%;
        width: 90%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .events__shape img.events-1-shape {
        left: 50%;
        width: 90%
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .events__shape img.events-1-shape {
        left: 50%;
        width: 90%
    }
}

@media (max-width:575px) {
    .events__shape img.events-1-shape {
        left: 50%;
        width: 90%
    }
}

.events__item {
    position: relative;
    z-index: 1
}

.events__item-inner {
    padding: 28px 50px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .events__item-inner {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (max-width:575px) {
    .events__item-inner {
        padding-left: 30px;
        padding-right: 30px
    }
}

.events__item::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: -3px;
    width: 2%;
    height: 0%;
    background: #a1d244;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    z-index: -1
}

.events__item.active::after,
.events__item:hover::after {
    top: 0;
    bottom: auto;
    height: 100%
}

.events__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0
}

.events__title a:hover {
    color: #a1d244
}

.events__meta {
    margin-bottom: 5px
}

.events__meta span {
    display: inline-block;
    position: relative;
    padding-right: 7px;
    margin-right: 7px
}

.events__meta span:not(:last-child)::after {
    position: absolute;
    content: "";
    right: 0;
    top: 5px;
    width: 1px;
    height: 14px;
    background: #6d6e75
}

@media (max-width:575px) {
    .events__more {
        margin-top: 15px
    }
}

.events__more .link-btn {
    color: #0e1133
}

.events__more .link-btn:hover {
    color: #a1d244
}

.events__details h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px
}

.events__details p {
    font-size: 18px;
    line-height: 28px;
    color: #53545b
}

.events__allow h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px
}

.events__allow ul li {
    font-size: 15px;
    color: #0e1133
}

.events__allow ul li:not(:last-child) {
    margin-bottom: 5px
}

.events__allow ul li i {
    display: inline-block;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-size: 10px;
    font-weight: 500;
    color: #30a820;
    background: rgba(48, 168, 32, .1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 10px
}

.events__tag {
    border-top: 1px solid #e4e6ef;
    padding-top: 25px
}

.events__tag span {
    font-size: 15px;
    color: #a1d244;
    margin-right: 7px
}

.events__tag a {
    font-size: 15px;
    color: #53545b;
    font-weight: 600
}

.events__tag a:hover {
    color: #a1d244
}

.events__info-price h5 {
    font-size: 26px;
    display: inline-block;
    margin-bottom: 0
}

.events__info-price h5 span {
    font-size: 20px;
    font-weight: 600
}

.events__info-price h5.old-price {
    text-decoration: line-through;
    color: #6d6e75;
    font-weight: 500;
    font-size: 15px;
    padding-left: 10px
}

.events__info-discount span {
    display: inline-block;
    font-size: 15px;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    color: #ff4690;
    background: rgba(255, 70, 144, .08);
    font-weight: 600;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.events__info-content ul li:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eef0f6
}

.events__info-icon svg {
    width: 16px;
    height: 20px;
    margin-right: 12px
}

.events__info-icon svg .st0 {
    fill: none;
    stroke: #a1d244;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 2.6667
}

.events__info-item h5 {
    margin-bottom: 0;
    font-weight: 400;
    color: #6d6e75;
    font-size: 15px;
    line-height: 1
}

.events__info-item h5 span {
    font-weight: 500;
    color: #0e1133;
    padding-right: 5px
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .events__sidebar {
        padding-left: 0;
        margin-top: 50px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .events__sidebar {
        padding-left: 0;
        margin-top: 50px
    }
}

@media (max-width:575px) {
    .events__sidebar {
        padding-left: 0;
        margin-top: 50px
    }
}

.events__sidebar-widget {
    position: relative;
    padding: 30px;
    -webkit-box-shadow: 0 30px 50px 0 rgba(1, 11, 60, .1);
    -moz-box-shadow: 0 30px 50px 0 rgba(1, 11, 60, .1);
    box-shadow: 0 30px 50px 0 rgba(1, 11, 60, .1);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.events__sidebar-shape img {
    position: absolute;
    z-index: -1
}

.events__sidebar-shape img.events-sidebar-img-2 {
    top: 40px;
    left: -25px
}

.events__sidebar-shape img.events-sidebar-img-3 {
    bottom: 90px;
    right: -30px
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .events__sidebar-shape img.events-sidebar-img-3 {
        right: -15px
    }
}

@media (max-width:575px) {
    .events__sidebar-shape img.events-sidebar-img-3 {
        right: -10px
    }
}

.events__join-btn a {
    background: #ff4690
}

.events__join-btn a i {
    padding-left: 5px
}

.events__social h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 10px
}

.events__social ul li {
    display: inline-block;
    margin-left: 5px
}

.events__social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 44px;
    text-align: center;
    font-size: 13px;
    color: #0e1133;
    background: #f3f4f8;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.events__social ul li a.fb {
    color: #285da1;
    background: rgba(40, 93, 161, .1)
}

.events__social ul li a.fb:hover {
    color: #fff;
    background: #285da1
}

.events__social ul li a.tw {
    color: #03a9f4;
    background: rgba(3, 169, 244, .1)
}

.events__social ul li a.tw:hover {
    color: #fff;
    background: #03a9f4
}

.events__social ul li a.pin {
    color: #d8163f;
    background: rgba(216, 22, 63, .1)
}

.events__social ul li a.pin:hover {
    color: #fff;
    background: #d8163f
}

.events__sponsor-title {
    font-size: 20px;
    margin-bottom: 20px
}

.events__sponsor-info h3 {
    font-size: 15px
}

.events__sponsor-info>h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px
}

.events__sponsor-info>h4 span {
    font-weight: 400;
    color: #6d6e75
}

.white-bg {
    background: #ffffff;
}

.mb-10 {
    margin-bottom: 10px;
}

.text-center {
    text-align: center !important;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-115 {
    padding-top: 115px;
}

.transition-3 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.w-img img {
    width: 100%;
}

.white-color {
    color: #ffffff;
}

.p-absolute {
    position: absolute;
}

.what__item {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.what__item::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 17, 51, 0.5);
}

.what__item:hover::after {
    background: rgba(11, 102, 36, 0.8);
}

.what__item:hover .what__thumb img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.what__title {
    font-size: 21px;
    margin-bottom: 18px;
}

@media (max-width: 575px) {
    .what__title {
        font-size: 18px;
    }
}

.what__content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 60%;
    line-height: 30px;
}

@media (max-width: 575px) {
    .what__content {
        width: 90%;
    }
}

.cta__inner {
    padding: 50px 100px 53px 70px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 30px 60px 0px rgba(0, 4, 48, 0.3);
    -moz-box-shadow: 0px 30px 60px 0px rgba(0, 4, 48, 0.3);
    box-shadow: 0px 30px 60px 0px rgba(0, 4, 48, 0.3);
    position: relative;
    z-index: 1;
}

.cta__inner-3 {
    padding-left: 100px;
    padding-right: 100px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.cta__shape img {
    position: absolute;
    bottom: -48px;
    right: -148px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta__inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 575px) {
    .cta__inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta__inner-2 {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta__shape img {
        right: -80%;
    }

    .cta__inner-3 {
        padding-left: 80px;
        padding-right: 80px;
    }

    .cta__inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 575px) {
    .cta__shape img {
        right: -170%;
    }

    .cta__inner-3 {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.cta__shape-3 img {
    position: absolute;
}

.cta__shape-3 img.cta-2 {
    left: -117px;
    top: -77px;
}

.cta__shape-3 img.cta-3 {
    right: -16px;
    top: 100px;
}

.cta__title {
    position: relative;
    z-index: 1;
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .cta__title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta__title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta__title {
        font-size: 31px;
    }

    .counter-one__right {
        margin-top: 50px px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta__title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .cta__title {
        font-size: 25px;
    }
}

.cta__title-2 {
    font-size: 36px;
    margin-bottom: 33px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.cta__content span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    padding: 0 10px;
    height: 22px;
    line-height: 22px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #0b6624;
    margin-bottom: 14px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta__more {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .cta__more {
        margin-top: 30px;
    }
}

.cta__apps a {
    display: inline-block;
    height: 54px;
    line-height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 0 20px;
    padding-right: 26px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta__apps a {
        margin-bottom: 10px;
    }
}

.cta__apps a i {
    margin-right: 2px;
}

.cta__apps a:hover,
.cta__apps a.active {
    color: #0e1133;
    border-color: #ffffff;
    background: #ffffff;
    -webkit-box-shadow: 0px 16px 24px 0px rgba(107, 25, 0, 0.3);
    -moz-box-shadow: 0px 16px 24px 0px rgba(107, 25, 0, 0.3);
    box-shadow: 0px 16px 24px 0px rgba(107, 25, 0, 0.3);
}

.cta__form-inner {
    margin-bottom: 13px;
}

.cta__form-inner input {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    padding: 0 22px;
    padding-top: 2px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    border: 2px solid #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-right: 20px;
}

.cta__form-inner textarea {
    background: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .cta__form-inner input {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cta__form-inner input {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta__form-inner input {
        margin-bottom: 20px;
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta__form-inner input {
        margin-bottom: 20px;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .cta__form-inner input {
        margin-bottom: 20px;
        width: 100%;
    }
}

.cta__form-inner input::placeholder {
    color: #6d6e75;
}

.cta__form-inner input:focus {
    border-color: #2b4eff;
}

.cta__form-inner button {
    height: 56px;
    line-height: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta__form-inner button {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cta__form-inner button {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .cta__form-inner button {
        width: 100%;
    }
}

.cta__agree {
    padding-left: 5px;
}

.cta__agree input {
    margin: 0;
    appearance: none;
    -moz-appearance: none;
    display: block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #b9bac1;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.cta__agree input:checked {
    position: relative;
    background-color: #2b4eff;
    border-color: transparent;
}

.cta__agree input:checked::after {
    box-sizing: border-box;
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-size: 10px;
    color: #ffffff;
    top: 46%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cta__agree input:hover {
    cursor: pointer;
}

.cta__agree label {
    padding-left: 8px;
    color: #53545b;
}

.cta__agree label a {
    color: #0e1133;
    font-weight: 600;
}

.cta__agree label a:hover {
    color: #2b4eff;
}

.cta__agree label:hover {
    cursor: pointer;
}

.pb-75 {
    padding-bottom: 75px;
}

.pt-75 {
    padding-top: 75px;
}

.bannerBg:before,
.bannerBg:after {
    content: inherit !important
}

.bannerBg {
    border-radius: 0;
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.bannerBg .utf-left-side {
    padding: 20px;
    border-radius: 10px;
}

.bannerBg .single-page-header:after,
.bannerBg .single-page-header:before {
    background: none
}

.bannerBg .single-page-header {
    margin: 0;
    padding: 0;
    position: relative;
}

.bannerBg .single-page-header .utf-header-details h5 {
    color: #0b6624;
    border: 1px solid #d0f58c;
}

.bannerBg .button.utf-button-sliding-icon {
    padding-left: 20px;
    padding-right: 10px;
    background: #0b6624;
}

.bannerBg .single-page-header .utf-header-details h4,
.bannerBg .single-page-header .utf-header-details h4 i {
    color: #ffffff;
}

.bottom-shape-img {
    top: 36%;
    width: 100%;
    position: absolute;
    z-index: 0;
}

@media (max-width:767px) {
    .bannerBg .single-page-header {
        margin-bottom: 0;
    }
}

.full-screen-bg {
    height: 20vh;
    min-height: 20vh;
    position: relative;
}

.hero-text-wrap.app-gradient-overlay {
    background: rgb(161, 210, 68);
    background: -moz-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -webkit-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -o-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -ms-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background-image: linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee3838', endColorstr='#ce1500', GradientType=1);
    width: 100%;
    height: 20vh;
    position: absolute;
    z-index: auto;
}

.gradient-overlay-bg {
    background: rgb(161, 210, 68);
    background: -moz-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -webkit-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -o-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background: -ms-linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    background-image: linear-gradient(109.6deg, rgb(161, 210, 68) 0%, rgb(161, 210, 68) 90.1%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee3838', endColorstr='#ce1500', GradientType=1);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.hero-text-wrap {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    position: relative;
    background-color: rgba(34, 34, 37, 0.45);
    z-index: 200;
}

.white-color {
    color: #fff !important;
}

.hero-text {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 100%;
    z-index: 10;
    color: #fff;
}

.jobListpage .events__title {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 26px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    color: #091e42 !important;
    max-width: 100%;
    line-height: 26px;
}

.jobListpage .events__title small {
    font-size: 15px;
    color: #ff9900;
}

.jobListpage .events__item-inner {
    padding: 24px 24px 16px;
    height: 100%;
    float: left;
    width: 100%;
    margin: 0 0 20px;
}

.jobListpage .job-description {
    background: transparent;
}

.jobListview {
    -webkit-transition: -webkit-box-shadow .2s linear;
    transition: -webkit-box-shadow .2s linear;
    -o-transition: box-shadow .2s linear;
    transition: box-shadow .2s linear;
    transition: box-shadow .2s linear, -webkit-box-shadow .2s linear;
}

.jobListview:hover {
    -webkit-box-shadow: 0 3px 8px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 20%);
    cursor: pointer;
}

.job-description {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    padding: 0;
    margin: 3px 0 0;
    background: #f4f5fa;
}

.job-description ul li {
    font-size: 13px;
}

.jobListpage .events__content {
    flex: 1;
}

.jobListpage .events__more .link-btn {
    width: 100px;
    height: 100px;
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin-right: 20px;
}

.tags {
    margin-top: 12px;
    width: 100%;
}

.tags li {
    margin-top: 4px;
    line-height: 16px;
    color: #536777;
    list-style: none
}

.tags li.dot {
    padding-right: 20px;
    padding-left: 0;
    font-size: 12px;
    position: relative;
}

.fleft {
    float: left;
}

.tags li.dot:before {
    right: 8px;
    left: auto;
    top: 7px;
}

.dot:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 2px;
    border-radius: 50%;
    background: #536777;
    vertical-align: middle;
    top: 7px;
    left: 8px;
}

.utf-sidebar-widget-item .list-2 li {
    line-height: 20px;
    font-size: 15px;
}

.dynamicHeader {
    width: 100%;
    height: 15vh;
    background: #dbf3ad;
}

.lightGreen-bg {
    width: 100%;
    background: #dbf3ad !important;
    color: #323232 !important;
}

.dynamicHeader #breadcrumbs {
    border: 0;
}

.dynamicHeader #breadcrumbs ul li,
.dynamicHeader #breadcrumbs ul li a,
#breadcrumbs ul li:before {
    color: #323232
}

.mt--50 {
    margin-top: -50px;
}

.mt--100 {
    margin-top: -100px;
}

.utf-header-widget-item .log-outline-button {
    background: #fff;
    position: relative;
    top: 50%;
    border-radius: 15px;
    transition: .3s;
    color: #323232;
    border: 1px solid #a1d244;
    padding: 1px 7px;
    display: block;
    margin: 0;
    min-width: 80px;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
}

.utf-header-widget-item .log-outline-button:hover {
    background: #a1d244;
    color: #fff
}

.border-right {
    border-right: 1px solid #e7e7e7
}

.innerPageHeader {
    width: 100%;
    padding: 15px 30px;
    background: #dbf3ad;
}

.innerPageHeader h1 {
    font-weight: 800;
}

.innerPageHeader #breadcrumbs {
    border: 0;
    padding: 5px 0 0;
    text-align: left;
}

.innerPageHeader #breadcrumbs ul li,
.innerPageHeader #breadcrumbs ul li a,
#breadcrumbs ul li:before {
    color: #323232
}

.utf-header-widget-item .log-outline-button {
    background: #fff;
    position: relative;
    top: 50%;
    border-radius: 15px;
    transition: .3s;
    color: #323232;
    border: 1px solid #a1d244;
    padding: 1px 7px;
    display: block;
    margin: 0;
    min-width: 80px;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
}

.promo {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    background-image: url(../images/skill-banner-bg-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.promo .container {
    position: relative;
    z-index: 3
}

.promo h1 {
    margin-bottom: 30px
}

.promo h1 span {
    font-size: 35px;
    display: inline;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
}

.promo p {
    margin-bottom: 30px;
    color: #fff
}

.promo__links-wrap {
    margin-bottom: 30px;
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.promo__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s
}

.promo__link img {
    margin-right: 11px
}

.promo__link i {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
    margin-right: 14px;
    -webkit-transition: background-color .4s;
    -o-transition: background-color .4s;
    transition: background-color .4s
}

.promo__link i svg {
    position: absolute;
    top: 50%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: fill .4s;
    -o-transition: fill .4s;
    transition: fill .4s
}

.promo__link:first-child {
    margin-bottom: 20px
}

.promo__link:hover {
    color: #fff
}

.promo__link:hover i {
    background-color: #fff
}

.promo__link:hover i svg path {
    fill: #8761a8
}

.promo__btns-wrap {
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.promo .btn {
    width: 100%;
    text-align: center
}

.promo .btn:first-child {
    margin-bottom: 15px
}

.promo .scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;
    width: 51px;
    height: 51px;
    cursor: pointer
}

.ico {
    padding: 30px 25px 30px;
    text-align: center;
}

@media (min-width:768px) {
    .promo h1 {
        margin-bottom: 36px;
        font-size: 60px;
        line-height: 60px;
        font-weight: 500;
        color: #fff;
        font-family: "Poppins", sans-serif;
    }
}

.ico {
    padding: 30px 25px 30px;
    text-align: center
}

.ico__title {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 45px;
    margin-bottom: 25px;
    font-size: 26px
}

.ico__subtitle {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #fff;
    margin-bottom: 35px
}

.ico__text {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff
}

.ico__btn {
    -webkit-box-shadow: 0 3px 32px rgba(209, 34, 83, .54);
    box-shadow: 0 3px 32px rgba(209, 34, 83, .54);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #ef1552;
    height: 70px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    display: block;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0;
    margin-bottom: 35px;
    -webkit-transition: background-color .4s, -webkit-box-shadow .4s;
    transition: background-color .4s, -webkit-box-shadow .4s;
    -o-transition: box-shadow .4s, background-color .4s;
    transition: box-shadow .4s, background-color .4s;
    transition: box-shadow .4s, background-color .4s, -webkit-box-shadow .4s;
}

.ico__btn span {
    font-weight: 500
}

.ico__btn:hover {
    -webkit-box-shadow: 0 3px 32px rgba(209, 34, 83, .54);
    box-shadow: 0 3px 32px rgba(209, 34, 83, .54);
    background-color: #ff3f75;
    color: #fff
}

.about {
    padding: 50px 0;
}

.road {
    padding: 20px;
}

.road__item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px
}

.road__item:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 8.5px;
    width: 1px;
    border-left: 1px solid #8761a8;
    height: -webkit-calc(100% + 30px);
    height: calc(100% + 30px)
}

.road__item:last-child {
    margin-bottom: 0
}

.road__item:last-child:after {
    display: none
}

.road__item-active:after {
    border-left: 1px dashed #c6c6c6
}

.road__item-active .road__item-metka {
    width: 31px;
    height: 31px;
    border: 2px solid #8761a8;
    position: absolute;
    top: -5px;
    left: -7px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.road__item-active .road__item-metka:after {
    content: '';
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: #a1d244
}

.road__item-next:after {
    border-left: 1px dashed #c6c6c6
}

.road__item-next .road__item-metka {
    border: 2px solid #c6c6c6
}

.road__item-metka {
    width: 17px;
    height: 17px;
    border: 2px solid #8761a8;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1
}

.road__item-title {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px
}

.road p {
    line-height: 25px
}

.map {
    padding: 50px 0;
}

.map .section-header--medium-margin {
    text-align: center;
}

.bg-triangle-left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 0;
    display: none;
}

.bg-triangle-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    display: none;
}

.platform {
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}

.platform__content {
    position: relative
}

.platform__content h2 {
    font-size: 20px;
    font-weight: 800;
}

.platform p {
    margin-bottom: 30px
}

.platform .btn {
    margin-bottom: 35px
}

.platform__img {
    -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, .08);
    box-shadow: 0 0 32px rgba(0, 0, 0, .08);
    position: relative;
    display: block;
    z-index: 1;
    max-width: fit-content;
}

.parallax-el {
    position: absolute;
    top: -30%;
    right: -5%;
    z-index: 0;
    display: none
}

.section-header--tire h4 {
    position: relative
}

.section-header--tire h4:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    left: 0;
    border-bottom: 1px solid #8761a8
}

.platform p {
    margin-bottom: 36px;
}

@media (min-width: 576px) {
    .ico {
        padding: 45px 35px 20px;
    }

    .road__item-title {
        position: absolute;
        left: -230px;
        text-align: right;
        width: 200px;
        top: -1px;
    }
}

@media (min-width: 1360px) {
    .parallax-el {
        right: -5%;
    }

    .platform__img {
        right: -935px;
    }

    .promo {
        padding-bottom: 150px;
        padding-top: 100px !important;
    }
}

@media (min-width: 992px) {
    .bg-triangle-left {
        display: block;
    }

    .bg-triangle-right {
        display: block;
    }

    .parallax-el {
        display: block;
        right: -20%;
    }

    .platform__img {
        width: initial !important;
        right: -900px;
    }
}

@media (min-width: 768px) {

    .about .section-header--medium-margin,
    .map .section-header--medium-margin {
        margin-bottom: 40px;
    }

    .about h2 {
        font-size: 36px;
        line-height: 45px;
        font-family: 'Barlow Condensed Medium', sans-serif;
        color: #0e1133;
    }

    .about p {
        color: #777;
    }

    .section-header--small-margin {
        margin-bottom: 35px;
    }

    .platform__img {
        position: absolute;
        top: -90px;
    }
}

.left-side {
    text-align: right;
}

@media (max-width: 768px) {
    .promo h1 {
        margin-bottom: 30px;
        color: #fff;
        line-height: 46px;
    }

    .left-side {
        text-align: left;
    }
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.assessment-test-sol .utf-section-headline-item {
    display: block;
    position: relative;
    padding-bottom: 5%;
    padding-right: 0;
}

.assessment-test-sol .utf-section-headline-item h3,
.assessment-test-sol p {
    color: #fff;
}

.assessment-test-sol p {
    font-size: 15px;
    line-height: 26px;
}

.secondary-green {
    color: #a1d244 !important;
}

.bg-lightdark {
    background-color: #0b6624;
}

.wide-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

#video-1 {
    position: relative;
    z-index: 999;
}

.video-1-img {
    background-image: url(../images/assessment-test-solution.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    left: 0;
    padding: 60px;
}

.video-1-img h3 {
    color: #fff;
}

@media (max-width: 768px) {
    .video-1-img {
        position: inherit;
        width: 100%;
    }
}

.main-features .features-circle {
    position: relative;
    z-index: 0;
}

.features-circle .circle-svg {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: -1;
    max-width: 80%;
    margin: 0 auto;
}

.features-circle svg g {
    transform-origin: 50%;
}

.main-features .one-feature {
    margin-bottom: 5em;
}

.main-features .one-feature h5 {
    line-height: 28px;
    display: inline-block;
    margin: 0 0 0.5rem;
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.main-features .one-feature .lnr {
    font-size: 35px;
}

.main-features .one-feature p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 20px;
}

.main-features .left-side .one-feature span {
    float: right;
}

.main-features .left-side .one-feature:nth-child(3),
.main-features .right-side .one-feature:nth-child(3) {
    margin-bottom: 0;
}

.main-features .right-side .one-feature span {
    float: left;
}

@media (min-width: 992px) {

    .main-features .left-side .one-feature:nth-child(1),
    .main-features .left-side .one-feature:nth-child(3) {
        position: relative;
        left: 50px;
    }

    .main-features .right-side .one-feature:nth-child(1),
    .main-features .right-side .one-feature:nth-child(3) {
        position: relative;
        right: 50px;
    }
}

@media (max-width: 992px) {
    .main-features .one-feature {
        margin-bottom: 1.5em;
    }

    .main-features .left-side .one-feature span {
        float: left;
    }
}

@media (max-width: 414px) {
    .features-circle svg {
        max-width: 100%;
        height: 410px;
    }
}

@media (max-width: 375px) {
    .features-circle svg {
        height: 350px;
    }
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.rotating {
    -webkit-animation: rotating 30s linear infinite;
    -moz-animation: rotating 30s linear infinite;
    -ms-animation: rotating 30s linear infinite;
    -o-animation: rotating 30s linear infinite;
    animation: rotating 30s linear infinite;
}

.clients-area {
    padding: 120px 0;
}

.clients-area h5 {
    font-size: 20px;
    font-weight: 600;
}

.clients-area h5 strong {
    color: #4628ba;
    font-size: 30px;
    border-bottom: 1px solid;
}

.clients-area .partner-items {
    position: relative;
    z-index: 1;
    padding: 135px 0;
}

.clients-area .partner-items::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 500px;
    width: 500px;
    z-index: -1;
    -webkit-animation: rotating 30s linear infinite;
    -moz-animation: rotating 30s linear infinite;
    -ms-animation: rotating 30s linear infinite;
    -o-animation: rotating 30s linear infinite;
    animation: rotating 30s linear infinite;
    margin-left: -250px;
    margin-top: -250px;
    background: url(../images/global-dot-rotate.png);
    background-size: contain;
}

.clients-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.clients-area .fixed-shape {
    position: absolute;
    right: 0;
    top: 0;
}

.clients-area .fixed-shape img {
    height: 100%;
}

.clients-area {
    padding: 200px 0;
}

.clients-area .partner-carousel img {
    width: auto;
    margin: auto;
}

.clients-area .partner-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-area .partner-box .item {
    height: 100px;
    width: 120px;
    margin: 30px 16px 0;
    background: #ffffff;
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    text-align: center;
    line-height: 100px;
    border-radius: 8px;
}

.clients-area .partner-box .item img {
    height: 45px;
    width: auto;
}

.clients-area h5 {
    font-weight: 500;
    margin-bottom: 19px;
}

.clients-area h2 {
    font-weight: 500;
    margin: 0;
    font-size: 32px;
    line-height: 40px;
}

.clients-area .partner-box:first-child {
    margin-top: -30px;
}

.clients-area a {
    margin-top: 24px;
    width: 100%;
}

.clients-area a h3 {
    line-height: 25px;
    font-weight: 500;
    font-size: 20px;
}

.clients-area a h3 small {
    display: block;
}

.mx-auto {
    margin: 0 auto;
}

@media (min-width:1360px) {
    .bottom-shape-img {
        top: 23%;
        width: 100%;
        position: absolute;
        z-index: 0;
    }

    .full-screen-bg {
        height: 25vh;
        min-height: 25vh;
        position: relative;
    }
}

.bg-white {
    background: #fff;
}

.border-0 {
    border: 0 !important;
}

.keyTag {
    margin-top: 10px;
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 0 10px;
}

.keyTag:hover a {
    color: #4a90e2;
}

.keyTag:hover {
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

.interested-jobslist {
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0 20px;
}

.interested-jobslist:last-child {
    border-bottom: 0;
    padding: 10px 0 0;
}

.events__content h4 {
    font-size: 20px;
    line-height: 20px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    margin: 20px 0 10px;
}

.color_green {
    background: #d7f2e3;
    display: inline-block;
    margin-right: 3px;
    color: #449626;
    font-size: 12px;
    font-weight: 600;
    padding: 0 7px;
    border-radius: 4px
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: .75em;
    font-weight: 500;
    line-height: 1;
    color: #449626;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.link_widgets1 a {
    float: left;
    width: 100%;
    position: relative;
    font-size: 13px;
    color: #262626;
    margin-bottom: 0;
    padding-left: 24px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    line-height: 24px;
}

.link_widgets1 a::before {
    position: absolute;
    left: 7px;
    top: 10px;
    width: 10px;
    height: 2px;
    content: "";
    background: #8bc34a;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.link_widgets1 a:hover {
    color: #7dc246 !important;
    padding-left: 36px !important;
}

.link_widgets1 a:hover::before {
    background: #7dc246;
    width: 27px;
}

.job-industry h3 {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    line-height: 24px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.job-industry h3::before {
    background: #a1d244;
    border: 0 none;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    bottom: -2px;
    width: 40px;
    border-radius: 30px;
}

.jobHeading span {
    font-size: 15px;
    text-decoration: underline;
}

.jobHeading span a {
    color: #2c3350 !important;
}

.log-in-button {
    background: #0b6624;
    position: relative;
    top: 50%;
    border-radius: 15px;
    transition: .3s;
    color: #fff;
    border: 1px solid #8fc740;
    padding: 1px 7px;
    margin: 0;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    min-width: 200px;
}

@media (max-width:767px) {
    .sidebar-menu {
        width: 17rem;
    }
}

#titlebar.collegesBanner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(../images/colleges/colleges-banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 0
}

#titlebar.collegesBanner #breadcrumbs ul li a,
#titlebar.collegesBanner #breadcrumbs ul li,
#titlebar.collegesBanner #breadcrumbs ul li:before {
    color: #fff;
}

@media (min-width:1440px) {
    .dynamicHeader {
        height: 10vh;
    }
}

.collegesbannerBg {
    position: relative;
}

.collegesbannerBg .single-page-header:after,
.collegesbannerBg .single-page-header:before {
    background: none
}

.collegesbannerBg .single-page-header {
    padding-bottom: 30px;
    position: relative;
    padding-top: 50px;
}

.collegesbannerBg .single-page-header .utf-header-details h5 {
    color: #0b6624;
    border: 1px solid #d0f58c;
}

.collegesbannerBg .button.utf-button-sliding-icon {
    padding-left: 20px;
    padding-right: 10px;
    background: #0b6624;
}

.collegesbannerBg .single-page-header .utf-header-details h4,
.collegesbannerBg .single-page-header .utf-header-details h4 i {
    color: #323232;
}

.colleges-text-wrap.app-gradient-overlay {
    width: 100%;
}

.collegesbannerBg .single-page-header .utf-header-details h3 {
    color: #323232;
}

.collegesbannerBg .mockup-top {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
}

.collegesbannerBg .single-page-header .utf-header-image {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
}

.posted_widget label {
    float: left;
    font-size: 11px;
    color: #262626;
    padding-left: 16px;
    font-weight: bold;
    line-height: 20px;
}

.check {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    padding-right: 7px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.check input:checked~.checkmark {
    background-color: #fff;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border-color: #0b6624;
    border-style: solid;
    border-width: 1px;
}

.check input:checked~.checkmark:after {
    display: block;
}

.check .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid;
    border-color: #0b6624;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.collegesbannerBg .single-page-header {
    margin-bottom: 0;
}

.darkGreen-bg {
    width: 100%;
    background: #064b19;
}

.darkGreen-bg a {
    color: #fff;
}

.darkGreen-bg #breadcrumbs ul li:before {
    color: #fff;
}

::ng-deep .tooltip {
    max-width: 80px !important;
    width: 80px;
    font-size: 12px !important;
}

.ebook-banner-bg {
    background: #8fc740;
}

.ebook-banner-bg h1 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    ;
    line-height: 46px;
    text-align: left;
    text-shadow: 2px 2px 2px #629913
}

.ebook-banner-bg h1 .typed-words {
    color: #fff !important;
    font-size: 60px !important;
    font-weight: normal;
    line-height: 60px;
}

.ebook-banner-bg h1 .typed-words span {
    font-weight: 800;
    font-size: 60px;
}

@media (max-width:767px) {
    .ebook-banner-bg h1 .typed-words {
        color: #fff !important;
        font-size: 36px !important;
        font-weight: normal;
        line-height: 46px;
        padding: 30px;
        text-align: center;
    }

    .ebook-banner-bg h1 .typed-words span {
        font-size: 36px;
    }
}

.vission-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 6px;
}

@keyframes up-dn-mark-1 {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(-0px);
    }
}

.hero-area {
    position: relative;
    background: #F9FCFB;
    padding-bottom: 50px;
}

.hero-content h1 span.subtext {
    font-size: 20px;
    display: block;
    line-height: 32px;
    font-weight: 500;
    margin: 10px 0 0;
}

.hero-content h1 {
    font-style: normal;
    font-size: 50px;
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 10px;
}

.title-mark {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.title-mark::before {
    width: 100%;
    height: 25px;
    background: rgb(123 198 120);
    content: "";
    position: absolute;
    bottom: 10px;
    z-index: -1;
    -webkit-animation: up-dn-mark-1 1s alternate infinite;
    animation: up-dn-mark-1 1s alternate infinite;
}

.common-btn {
    border-radius: 10px;
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    padding: 15px 40px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 20px 0;
    text-transform: uppercase;
}

.common-btn.btn-style-2 {
    background: #0e1133;
}

.common-btn.btn-style-2::before {
    background: #FF8345;
}

.common-btn::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 0;
    height: 100%;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: -1;
}

.testimonial-area {
    padding: 100px 0;
}

.popular-jobs-area {
    z-index: 0;
    position: relative;
}

.popular-jobs-area .popular-jobs-shape {
    z-index: -1;
    left: 0;
}

.shape {
    position: absolute;
    z-index: -1;
}

.ch-section-title h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    color: #0e1133;
    font-family: 'Barlow Condensed Medium', sans-serif;
    margin: 0;
}

.ch-section-title h2 {
    font-size: 15px;
    margin: 0 0 30px;
    font-style: italic;
    font-weight: 600;
}

.ch-section-title h2 span {
    color: #7bc678;
}

.platform-work-wrap .platform-work-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 30px 10px 30px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    margin-bottom: 16px;
    -webkit-transition: .2s;
    transition: .2s;
}

.platform-work-wrap .platform-work-box .platform-icon i {
    width: 56px;
    height: 56px;
    background: #FFFFFF;
    -webkit-box-shadow: 2px 10px 25px rgb(0 0 0 / 10%);
    box-shadow: 2px 10px 25px rgb(0 0 0 / 10%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
}

.platform-work-wrap .platform-work-box .platform-content {
    padding-left: 16px;
}

@media (max-width:767px) {
    .hero-content h1 {
        font-style: normal;
        position: relative;
        z-index: 1;
        font-family: "Poppins", sans-serif;
        color: #0e1133;
        line-height: 70px;
        font-weight: 700;
    }

    .hero-content h1 span.subtext {
        font-size: 18px;
        display: block;
        line-height: 30px;
        font-weight: 600;
    }
}

.what-does-area {
    padding: 0;
}

.why-choose-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 60px 0px;
    overflow: hidden;
}

.why-choose-one::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #f1f2f6;
    width: 43%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    content: "";
}

.why-choose-one img {
    max-width: none;
}

@media (max-width:768px) {
    .why-choose-one img {
        max-width: 100%;
    }
}

@media (max-width:1440px) {
    .why-choose-one img {
        max-width: 100%;
    }
}

.jobilty-banner {
    background-image: url(../images/products/jobility-banner-1.jpg);
    height: 300px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    color: #fff;
}

.jobilty-banner h1 {
    color: #fff;
    font-size: 60px;
    margin: 0;
}

.jobilty-banner h3 {
    color: #fff;
    font-size: 26px;
    line-height: 55px;
}

.jobilty-banner .common-btn.btn-style-2 {
    background: #8fc740;
    border-radius: 5px;
    margin: 50px 0 0;
}

.about-one {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0;
}

.about-one__left {
    position: relative;
    display: block;
}

.about-one__left-img-box {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
    z-index: 1;
}

.about-one__left::before {
    position: absolute;
    top: 30px;
    left: -20px;
    bottom: 30px;
    background: #8fc740;
    width: 40px;
    border-radius: 8px;
    content: "";
    z-index: 1;
}

.about-one__left-single {
    position: relative;
    float: left;
    padding: 0px 5px 0px;
}

.about-one__left-img1 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.about-one__left-img1::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-one__left-img1:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-one__left-img1 img {
    border-radius: 8px;
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.about-one__left-img1:hover img {
    transform: scale(1.1);
}

.about-one__left-img2 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.about-one__left-img2::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-one__left-img2:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.about-one__left-img2 img {
    border-radius: 8px;
    width: 100%;
    transform: scale(1);
    transition: all 0.7s ease 0s;
}

.about-one__left-img2:hover img {
    transform: scale(1.1);
}

.about-one__left-overlay {
    bottom: 20px;
    right: 100px;
    display: flex;
    align-items: center;
    background: #0b6624;
    box-shadow: 0px 0px 60px 0px rgb(0 0 0 / 20%);
    left: 100px;
    border-radius: 8px;
    padding: 25px 50px 20px 30px;
    z-index: 10;
}

.about-one__left-overlay .icon {
    position: relative;
    display: block;
}

.about-one__left-overlay .icon span::before {
    font-size: 60px;
    color: #8fc740;
}

.about-one__left-overlay .title {
    position: relative;
    display: block;
    padding-left: 19px;
}

.about-one__left-overlay .title h6 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
}

.about-one__left-overlay .title h6 span {
    position: relative;
    display: inline-block;
    line-height: 28px;
}

.about-one__right {
    position: relative;
    display: block;
}

.about-one__right-inner {
    position: relative;
    display: block;
}

.about-one__right-text {
    margin: 0;
}

.about-one__right-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 40px;
}

.about-one__right-list-item {
    position: relative;
    display: block;
    margin-bottom: 8px;
}

.about-one__right-list-item:last-child {
    margin-bottom: 0;
}

.about-one__right-list-item .icon {
    position: absolute;
    top: 3px;
    left: 0;
    color: #8fc740;
    font-size: 20px;
    transform: scale(1);
    transition: color 500ms ease, transform 500ms ease;
}

.about-one__right-list-item:hover .icon {
    color: #323232;
    transform: scale(.8);
}

.about-one__right-list-item .text {
    position: relative;
    display: block;
    padding-left: 35px;
}

.about-one__right-list-item .text p {
    margin: 0;
}

.about-one__btn {
    position: relative;
    display: block;
    margin-top: 54px;
}

.section-title__title {
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
    margin-bottom: 20px;
}

.jobilty-abt-p {
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    color: #303922;
    margin-bottom: 20px;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@media (max-width:768px) {
    .about-one__left-single {
        display: block;
        float: none;
        padding: 0px 5px 0px;
    }

    .about-one .section-title__title br {
        display: none;
    }

    .about-one__left {
        margin-left: 0px;
        margin-right: 0;
    }

    .about-one__left-img2 {
        margin-top: 20px;
    }

    .about-one__left-overlay {
        position: relative;
        bottom: 0px;
        left: 0px;
        margin-top: 25px;
        padding: 15px;
    }

    .about-one__right {
        margin-top: 50px;
    }

    .about-one__left::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about-one .section-title__title br {
        display: none;
    }

    .about-one__left {
        margin-left: 0px;
    }

    .about-one__left-overlay {
        bottom: 20px;
        right: 230px;
    }

    .about-one__right {
        margin-top: 50px;
    }
}

.testimonials-two {
    position: relative;
    display: block;
    background: #f1f2f6;
    padding: 120px 0px 120px;
    z-index: 1;
    overflow: hidden;
}

.testimonials-two .container {
    position: relative;
}

@media(min-width: 1845px) {
    .testimonials-two {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.testimonials-two__pattern {
    position: absolute;
    left: -220px;
    bottom: -410px;
    z-index: 4;
    opacity: 0.15;
}

.testimonials-two__left {
    position: relative;
    display: block;
    z-index: 11;
}

.testimonials-two .section-title {
    z-index: 4;
}

.testimonials-two__left-text {
    position: relative;
    margin: 0 0 20px;
    z-index: 4;
}

.testimonials-two__right {
    position: relative;
    display: block;
    z-index: 9;
}

@media(min-width: 1200px) {
    .testimonials-two__right {
        margin-top: 50px;
    }
}

@media(min-width: 1845px) {
    .testimonials-two__right {
        position: absolute;
        top: 0px;
        left: calc(100% - 775px);
        min-width: 1470px;
        margin-top: 0;
    }

    .testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
        position: absolute;
        top: 213px;
        left: -445px;
    }
}

.testimonials-two__carousel.owl-theme .owl-stage-outer {
    overflow: visible;
}

.testimonials-two__carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.testimonials-two__carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
    transition: all 200ms linear;
}

.testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 9;
}

@media(min-width: 1845px) {
    .testimonials-two__carousel.owl-dot-type1.style2 .owl-dots {
        position: absolute;
        top: 279px;
        left: -430px;
    }
}

.why-jobility {
    padding: 120px 0;
}

.video-one {
    position: relative;
    display: block;
    padding: 0px 0px 0px;
    z-index: 2;
}

.video-one__box {
    position: relative;
    display: flex;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 8px;
}

.video-one__box-title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-one__box-title h2 {
    color: rgba(255, 255, 255, .5);
    font-size: 70px;
    line-height: 1em;
    font-weight: 400;
}

.video-one__box .icon {
    position: relative;
    display: inline-block;
}

.video-one__box .icon a {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 50%;
    z-index: 1;
    transition: all 500ms ease;
}

.video-one__box .icon a span::before {
    font-size: 35px;
    line-height: 110px;
}

.video-one__box .icon .border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
}

.video-one__box .icon .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.video-one__box .icon .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.counter-one {
    position: relative;
    display: block;
    padding: 340px 0px 108px;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    margin-top: -220px;
    background-image: url(../images/products/jobility-banner-2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat
}

.counter-one::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
    content: "";
}

.counter-one .section-title__title {
    color: #ffffff;
}

.counter-one__left-text {
    color: #aeb2c2;
    margin: 0;
}

.counter-one__right {
    position: relative;
    display: block;
}

.counter-one__right-box {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

.counter-one__right-single {
    position: relative;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    background: #1c2028;
    margin-right: 20px;
    padding: 40px 20px 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.counter-one__right-single:last-child {
    margin-right: 0;
}

.counter-one__right-single-icon {
    color: #000;
    font-size: 60px;
    margin-bottom: 25px;
}

.counter-one__right-text {
    color: #aeb2c2;
    font-size: 12px;
    line-height: 26px;
    margin: 0;
}

.counter-one__right-single h3 {
    color: #a1d244;
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
}

.counter-one--about {
    position: relative;
    display: block;
    padding: 120px 0px 108px;
    margin-top: 0px;
}

.counter-one__left .list-2 li:before {
    color: #fff;
}

@media (max-width:768px) {
    .jobilty-banner h1 {
        font-size: 36px;
        margin: 0;
    }

    .jobilty-banner h3 {
        color: #fff;
        font-size: 24px;
        line-height: 36px;
    }

    .video-one__box {
        min-height: 300px
    }

    .counter-one__right-single {
        display: block;
        float: none;
        margin: 0 auto 30px;
    }

    .counter-one__left {
        padding-bottom: 20px;
    }
}

.features-one {
    position: relative;
    display: block;
    padding: 120px 0px 90px;
    margin: 0 0 50px;
    overflow: hidden;
}

.features-one__single {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 35px 40px 26px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border: 1px solid #ffffff;
    margin-bottom: 30px;
    height: 100%;
    text-align: center;
}

.features-one__single:hover {
    border: 1px solid#a1d244;
}

.features-one__single::before {
    position: absolute;
    left: -1px;
    bottom: -1px;
    right: -1px;
    height: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #a1d244;
    content: "";
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.22);
    z-index: 1;
}

.features-one__single:hover:before {
    transform: scaleY(1.0);
}

.features-one__single-icon {
    position: relative;
    display: block;
    color: #1c1e27;
    transition: all 500ms ease;
}

.features-one__single:hover .features-one__single-icon {
    transform: rotateY(180deg);
    color: #a1d244;
}

.features-one__single-icon span::before {
    font-size: 60px;
}

.features-one__single-text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.features-one__single-text h4 {
    font-size: 20px;
    line-height: 28px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.features-one__single-text h4 a {
    color: #1c1e27;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.features-one__single-text h4 a:hover {
    color: #a1d244;
}

.features-one__single-text p {
    margin: 0;
    line-height: 28px;
}

.mb-30 {
    margin-bottom: 30px;
}

.features-one .testimonials-two__pattern {
    position: absolute;
    right: -220px;
    bottom: 0;
    z-index: 0;
    opacity: inherit;
    left: inherit;
}

.round-zero-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    line-height: 80px;
    color: #0e1133;
}

.round-zero-content .round-zero-client-logo ul {
    display: flex;
    justify-content: space-between;
}

.round-zero-content .round-zero-client-logo ul li {
    display: inline-block;
}

.round-zero-content .round-zero-client-logo ul li:hover img {
    transform: translateY(-4px);
}

.round-zero-content .round-zero-client-logo ul li img {
    transition: all 0.4s ease-in-out;
}

.round-zero-content .round-zero-btn-wrap {
    margin: 20px 0;
}

.round-zero-img-wrap {
    position: relative;
}

.round-zero-img-wrap .round-zero-post {
    background: #fff;
    box-shadow: 0px 14.8745px 34.9551px rgba(0, 0, 0, 0.05);
    border-radius: 7.13976px;
    display: inline-block;
    padding: 25px 30px;
    position: absolute;
    left: -30px;
    top: -10px;
    animation: up-dn-cart-time 2s alternate linear infinite;
}

.round-zero-img-wrap .round-zero-post h4 {
    font-family: "Poppins", sans-serif;
    font-size: 17.8494px;
    letter-spacing: 0.178494px;
    color: #0e1133;
}

.round-zero-img-wrap .round-zero-post .round-zero-post-shape {
    position: relative;
    text-align: center;
    margin: 24px 0px 24px;
}

.round-zero-img-wrap .round-zero-post .round-zero-post-shape i {
    width: 42px;
    height: 42px;
    font-size: 15px;
    color: #0e1133;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 14.8745px 34.9551px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.round-zero-img-wrap .round-zero-post ul {
    line-height: 1;
}

.round-zero-img-wrap .round-zero-post ul li {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 15px;
    line-height: 1;
}

.round-zero-img-wrap .round-zero-post ul li:last-child {
    margin-right: 0;
}

.round-zero-img-wrap .round-zero-post ul li:last-child span {
    background: #1565d8;
}

.round-zero-img-wrap .round-zero-post ul li span {
    line-height: 0;
    font-size: 0;
    display: inline-block;
    background: #00b8d9;
    height: 5.35px;
    width: 5.35px;
    border-radius: 50%;
    margin-right: 7px;
}

.like-cart.hero-like-cart {
    padding: 24px;
    border-radius: 8.2142px;
    animation: up-dn-cart-like 2s alternate linear infinite;
    top: 90px;
    right: 0px;
    bottom: unset;
    left: auto;
}

.like-cart.hero-like-cart .like-cart-box .like-cart-icon i {
    height: 49px;
    width: 49px;
    font-size: 15px;
}

.like-cart.hero-like-cart .like-cart-box .like-cart-content {
    padding-left: 15px;
}

.like-cart.hero-like-cart .like-cart-box .like-cart-content h4 {
    font-size: 17.2326px;
}

.like-cart.hero-like-cart .like-cart-box .like-cart-content h6 {
    font-size: 12.9244px;
    margin-top: 6px;
}

.round-zero {
    background: linear-gradient(180deg, #e3fce9 0%, #fff 100%);
    padding: 50px 0 134px;
}

.round-zero-shape {
    right: 0;
    bottom: 0;
}

.round-zero-shape-top {
    top: 0;
    left: 0;
}

.positioning {
    position: relative;
    z-index: 2;
}

.common-btn.btn-hrrd-1 {
    background: #a2d14f;
    border-radius: 4px;
}

.common-btn {
    border-radius: 10px;
    display: inline-block;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    padding: 20px 44px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.round-zero-content h2 {
    font-size: 24px;
    line-height: 36px;
    margin: 10px 0 0;
}

.round-zero-content h1 {
    font-size: 36px;
    line-height: 60px;
}

.round-zero-content h2 {
    font-size: 26px;
}

.round-zero-content {
    text-align: center;
    margin: 30px 0;
}

.featured-box {
    display: flex;
    background: #fff;
    box-shadow: 5px 30px 56.1276px rgba(55, 55, 55, 0.1098);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 24px;
    transition: all 0.4s ease-in-out;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
}

.featured-box:hover {
    transform: translateY(-4px);
}

.featured-box:hover .featured-content h2 {
    color: #1a1a1a;
}

.featured-box .featured-content {
    padding-left: 0px;
    text-align: center;
}

.featured-box .featured-content h2 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    color: #0e1133;
    margin-bottom: 13px;
    transition: color 0.25s ease-in-out;
}

.featured-box .featured-content p {
    font-size: 15px;
}

.featured-box .textBg {
    position: absolute;
    color: #ccc;
    font-size: 150px;
    font-weight: 800;
    right: -5%;
    bottom: 0%;
    opacity: 0.2;
}

.featured-area .featured-shape {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes zm {
    0% {
        transform: scale(0.95) translateX(-50%);
    }

    100% {
        transform: scale(1) translateX(-50%);
    }
}

.round-zero-section-title h1 {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 36px;
    line-height: 45px;
    color: #0e1133;
    display: inline-block;
}

.round-zero-section-title h1 span {
    display: inline-block;
    z-index: 1;
    position: relative;
}

.round-zero-section-title h1 span::before {
    position: absolute;
    left: 0;
    height: 50px;
    width: 76%;
    border: 0.5px solid #a2d14f;
    background: #effdd6;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    z-index: -1;
}

.everything-area .list-2 li {
    font-size: 20px !important;
    margin: 20px 0 20px 30px !important;
    line-height: 26px !important;
    font-size: 15px !important;
}

.mt-50 {
    margin-top: 50px;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1420px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .round-zero-img-wrap {
        margin-right: 0;
    }
}

@media (max-width:768px) {
    .round-zero {
        padding: 40px 0 0;
    }

    .round-zero-content .round-zero-btn-wrap {
        margin: 0;
    }

    .round-zero-shape {
        display: none;
    }

    .round-zero-section-title h1 {
        font-size: 36px;
        text-align: center;
        width: 100%;
    }

    .round-zero-content h2 {
        font-size: 24px;
    }
}

.everything-info {
    margin: 34px 0 49px;
}

.everything-info ul li {
    height: 70px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #0e1133;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.1s ease-in-out;
    border-bottom: 1px solid #f2f2f2;
}

.everything-info ul li img {
    width: 36px;
    margin-right: 20px;
}

.everything-info ul li:hover {
    transform: translateY(-3px);
}

.everything-info ul li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #effdd6;
    top: 50%;
    left: 31px;
    transform: translateY(-50%);
    border-radius: 50%;
    display: none;
}

.everything-info ul li:last-child {
    margin-bottom: 0;
}

.everything-info ul li i {
    color: #230b34;
}

.everything-img-wrap {
    position: relative;
}

.income-cart {
    background: #fff;
    box-shadow: 0px 29.7349px 68.2154px rgba(0, 0, 0, 0.05);
    border-radius: 20.0099px;
    padding: 40px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    animation: up-dn-cart-income 3s linear infinite;
}

.income-cart p {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 15px;
}

.income-cart .income-price-wrap {
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 19px;
}

.income-cart .income-price-wrap .income-main-price h2 {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    color: #333;
    margin-right: 35px;
}

.income-cart .income-price-wrap .income-percent span {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 12px;
    color: #1ecaab;
}

.income-cart .income-price-wrap .income-percent span i {
    font-size: 10px;
    margin-right: 5px;
}

.like-cart {
    background: #fff;
    box-shadow: 0px 26.6471px 61.1317px rgba(0, 0, 0, 0.05);
    border-radius: 17.932px;
    display: inline-block;
    padding: 53px;
    position: absolute;
    bottom: 41%;
    left: 0;
    animation: up-dn-cart-like 2s alternate linear infinite;
}

.like-cart .like-cart-box {
    display: flex;
}

.like-cart .like-cart-box .like-cart-icon i {
    background: rgba(20, 102, 217, .1);
    mix-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1565d8;
    font-size: 31px;
    border-radius: 50%;
    height: 107.59px;
    width: 107.59px;
}

.like-cart .like-cart-box .like-cart-content {
    padding-left: 33px;
}

.like-cart .like-cart-box .like-cart-content h4 {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-weight: bold;
    font-size: 37.6195px;
    letter-spacing: 0.313496px;
    color: #333;
}

.like-cart .like-cart-box .like-cart-content h6 {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 28.2146px;
    color: #5a7184;
    margin-top: 19px;
}

.time-cart {
    background: #fff;
    box-shadow: 0px 21.1129px 50px rgba(0, 0, 0, 0.1);
    border-radius: 14.9032px;
    padding: 30px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    animation: up-dn-cart-time 2.5s alternate linear infinite;
}

.time-cart .time-cart-img-list {
    display: flex;
    justify-content: space-between;
}

.time-cart .time-cart-img-list img {
    margin-right: 15px;
}

.time-cart .time-cart-img-list img:last-child {
    margin-right: 0;
}

.time-cart .time-cart-content h2 {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 24.8387px;
    letter-spacing: 0.248387px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.time-cart .time-cart-content p {
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 17.3871px;
    color: #5a7184;
    margin-bottom: 18px;
}

.time-cart .time-cart-btn-wrap {
    display: flex;
}

.time-cart .time-cart-btn-wrap .time-cart-btn {
    background: #6a99ff;
    border-radius: 9.93548px;
    /* font-family: 'Open Sans'; */
    font-style: normal;
    font-size: 17.3871px;
    color: #fff;
    padding: 15px 24px;
}

.time-cart .time-cart-btn-wrap .time-cart-btn.time-cart-btn-2 {
    background: rgba(106, 153, 255, .1);
    color: #6a99ff;
    margin-left: 19px;
}

.everything-area .everything-left {
    top: 0;
    left: 0;
}

.mt-100 {
    margin-top: 100px;
}

@keyframes up-dn-cart-time {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes up-dn-cart-like {
    0% {
        transform: translateX(40px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes up-dn-cart-income {
    0% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(3deg);
    }

    60% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.pb-76 {
    padding-bottom: 76px;
}

.pt-100 {
    padding-top: 100px;
}

.apps-area {
    background: #f9f9f9;
}

.apps-area .hrrd-app-shape {
    left: 100px;
    top: 20%;
    animation: rot-1 7.5s linear infinite;
}

@keyframes rot-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.apps-box {
    background: #fff;
    box-shadow: 5px 30px 56.1276px rgba(55, 55, 55, 0.1098);
    border-radius: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease 0s;
    margin-bottom: 24px;
}

.apps-box:hover {
    background: #effdd6;
    box-shadow: 10px 20px 50px rgba(81, 75, 75, 0.2);
    transform: translateY(-3px);
}

.apps-box img {
    transition: all 1s ease 0s;
}

.hero-section {
    z-index: 1;
    overflow: hidden;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.hero-section:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 330px;
    height: 330px;
    background: #f7f7f7;
    line-height: 330px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-25%, 50%);
    -ms-transform: translate(-25%, 50%);
    transform: translate(-25%, 50%);
}

.hero-section:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    z-index: -1;
    width: 965px;
    height: 965px;
    background: #f7f7f7;
    line-height: 965px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(15%, -50%);
    -ms-transform: translate(15%, -50%);
    transform: translate(15%, -50%);
}

@media only screen and (max-width: 1199px) {
    .hero-section:after {
        width: 500px;
        height: 500px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-section:after {
        right: 50%;
        -webkit-transform: translate(50%, -60%);
        -ms-transform: translate(50%, -60%);
        transform: translate(50%, -60%);
    }
}

@media only screen and (max-width: 575px) {
    .hero-section:after {
        width: 400px;
        height: 400px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section:after {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 50px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .appie-features-box-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .appie-sponser-box .sponser-item {
        background: #fff;
        height: auto;
        width: auto;
        text-align: center;
        line-height: 30px;
        margin: 5px;
    }
}

@media only screen and (max-width: 375px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

.hero-content p {
    font-size: 18px;
}

@media only screen and (max-width: 480px) {
    .hero-content p {
        font-size: 15px;
    }

    .hero-btn {
        text-align: center;
    }

    .hero-content p {
        font-size: 18px;
        text-align: center;
    }
}

.bg-text {
    text-transform: uppercase;
    position: absolute;
    font-size: 276px;
    font-weight: 800;
    line-height: 0.7;
    opacity: 0.04;
    z-index: -1;
    bottom: 0;
    right: 0;
}

@media only screen and (max-width: 1500px) {
    .bg-text {
        font-size: 200px;
    }
}

@media only screen and (max-width: 1199px) {
    .bg-text {
        font-size: 150px;
    }
}

@media only screen and (max-width: 575px) {
    .bg-text {
        font-size: 100px;
    }
}

@media only screen and (max-width: 480px) {
    .bg-text {
        font-size: 75px;
    }
}

.theme-btn,
a.theme-btn {
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 40px 12px;
    text-transform: uppercase;
}

.theme-btn i,
a.theme-btn i {
    font-size: 12px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-left: 15px;
}

.theme-btn:hover i,
a.theme-btn:hover i {
    margin: 0 -3px 0 18px;
}

.theme-btn:hover,
.theme-btn:focus,
.theme-btn.style-two:not(:hover),
a.theme-btn:hover,
a.theme-btn:focus,
a.theme-btn.style-two:not(:hover) {
    background: #0b6624;
}

.theme-btn:not(:hover),
.theme-btn.style-two:hover,
a.theme-btn:not(:hover),
a.theme-btn.style-two:hover {
    background: #8fc740;
}

.theme-btn.style-three,
a.theme-btn.style-three {
    color: #ffffff;
    background: #00cc83;
    border: 1px solid #e9eaeb;
}

.theme-btn.style-three:hover,
a.theme-btn.style-three:hover {
    color: #0e1133;
    border-color: #00cc83
}

.theme-btn.style-four,
a.theme-btn.style-four {
    color: #262d3d;
    background: #FFB113;
}

.theme-btn.style-four:hover,
a.theme-btn.style-four:hover {
    color: white;
    background: #204ecf;
}

.theme-btn.style-five,
a.theme-btn.style-five {
    color: #262d3d;
    background: #f7f7f7;
}

.theme-btn.style-five:hover,
a.theme-btn.style-five:hover {
    color: white;
    background: #FFB113;
}

@media only screen and (max-width: 480px) {

    .theme-btn,
    a.theme-btn {
        padding: 12px 20px;
    }
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-75,
.py-75 {
    padding-bottom: 75px;
    padding-top: 75px;
}

.bg-blue {
    background-color: #00cc83;
}

.pt-80,
.py-80 {
    padding-top: 80px;
}

.pb-40,
.py-40 {
    padding-bottom: 40px;
}

.z-1 {
    z-index: 1;
}

.rel {
    position: relative;
}

@-webkit-keyframes down-up-two {
    0% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }

    50% {
        -webkit-transform: translate(-25px, -25px);
        transform: translate(-25px, -25px);
    }

    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

@keyframes down-up-two {
    0% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }

    50% {
        -webkit-transform: translate(-25px, -25px);
        transform: translate(-25px, -25px);
    }

    100% {
        -webkit-transform: translate(0px);
        transform: translate(0px);
    }
}

@keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.circle-one,
.circle-two,
.circle-dots,
.rectangle-dots,
.moveLeftRight {
    z-index: -1;
    max-width: 20%;
    position: absolute;
}

.rectangle-dots {
    bottom: 20%;
    left: 5%;
    -webkit-animation: 4s down-up-three infinite;
    animation: 4s down-up-three infinite;
}

.moveLeftRight {
    bottom: 0;
    right: 40%;
    -webkit-animation: 8s moveLeftRight infinite;
    animation: 8s moveLeftRight infinite;
}

.circle-dots {
    top: 25%;
    right: 8%;
    -webkit-animation: 4s down-up-two infinite;
    animation: 4s down-up-two infinite;
}

.circle-one {
    top: 20%;
    left: 25%;
    -webkit-animation: 50s shapeAnimationOne infinite;
    animation: 50s shapeAnimationOne infinite;
}

.circle-two {
    top: 25%;
    right: 25%;
    -webkit-animation: 50s shapeAnimationTwo infinite;
    animation: 50s shapeAnimationTwo infinite;
}

.feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #019862;
    padding: 5px;
    border-radius: 10px;
}

.feature-item .image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100px;
    height: 100px;
    margin-right: 30px;
    text-align: center;
    border-radius: 24px;
    background: #05af72;
    line-height: 100px;
    overflow: hidden;
}

.feature-item h4 {
    line-height: 1.4;
    font-size: 25px;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.pt-130 {
    padding-top: 130px;
}

.py-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.pb-100,
.py-100 {
    padding-bottom: 100px;
}

.feature-item2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 355px;
    margin-bottom: 30px;
}

.about-man {
    z-index: 1;
    text-align: center;
    position: relative;
}

.about-man:before {
    content: '';
    left: 50%;
    top: 0;
    z-index: -1;
    position: absolute;
    width: 540px;
    height: 540px;
    background: #f7f7f7;
    line-height: 540px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-55%, -10%);
    -ms-transform: translate(-55%, -10%);
    transform: translate(-55%, -10%);
}

@media only screen and (max-width: 991px) {
    .about-man:before {
        display: none;
    }
}

.feature-item2 .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 25px;
    color: #fff;
    width: 60px;
    height: 60px;
    background: #a1d244;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
}

.mb-40,
.my-40 {
    margin-bottom: 40px;
}

.section-title h2 {
    font-style: normal;
    font-size: 36px;
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    font-weight: 500;
    margin-bottom: 10px;
}

@media only screen and (min-width: 1501px) {
    .about-content {
        margin-left: 60px;
    }
}

.about-btns .theme-btn {
    margin-right: 30px;
}

.newsletter-video {
    overflow: hidden;
    border-radius: 5px;
    margin-right: -50px;
}

@media only screen and (max-width: 991px) {
    .newsletter-video {
        margin: 0;
    }
}

.newsletter-video:before {
    z-index: 1;
}

.newsletter-video img {
    width: 100%;
}

.bg-lighter {
    background-color: #f7f7f7;
}

.overlay {
    z-index: 1;
    position: relative;
}

.newsletter-content {
    margin-right: -70px;
    padding: 95px 70px 95px 70px;
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .newsletter-content {
        padding-left: 165px;
    }
}

@media only screen and (max-width: 991px) {
    .newsletter-content {
        margin: 0;
        padding: 75px;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-content {
        padding-left: 25px;
        padding-right: 25px;
        text-align: center;
    }
}

@media only screen and (max-width: 375px) {
    .newsletter-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .newsletter-content h2 {
        font-size: 36px;
    }
}

.newsletter-email {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    background: white;
    border-radius: 5px;
    position: relative;
    margin-left: -160px;
}

@media only screen and (max-width: 991px) {
    .newsletter-email {
        margin-left: 0;
    }
}

@media only screen and (max-width: 575px) {
    .newsletter-email {
        display: block;
    }
}

@media only screen and (max-width: 375px) {
    .newsletter-email {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.newsletter-email label {
    top: 44px;
    left: 45px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 0;
    position: absolute;
    color: #204ecf;
}

@media only screen and (max-width: 375px) {
    .newsletter-email label {
        left: 25px;
    }
}

.newsletter-email input {
    padding: 15px 0 15px 50px;
}

@media only screen and (max-width: 375px) {
    .newsletter-email input {
        padding-left: 40px;
    }
}

.newsletter-email input::-webkit-input-placeholder {
    font-weight: 600;
    color: #262d3d;
}

.newsletter-email input:-ms-input-placeholder {
    font-weight: 600;
    color: #262d3d;
}

.newsletter-email input::-ms-input-placeholder {
    font-weight: 600;
    color: #262d3d;
}

.newsletter-email input::placeholder {
    font-weight: 600;
    color: #262d3d;
}

.video-play {
    left: 50%;
    top: 50%;
    z-index: 3;
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: #204ecf;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.newsletter-radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.newsletter-radios .custom-radio {
    padding-left: 35px;
}

.newsletter-radios .custom-radio:not(:last-child) {
    margin-right: 35px;
}

.newsletter-radios .custom-control-label {
    cursor: pointer;
}

.newsletter-radios .custom-control-label:after {
    top: 6px;
    left: -35px;
    width: 25px;
    height: 25px;
    background: rgba(0, 204, 131, 0.15);
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
}

.newsletter-radios .custom-control-label:before {
    top: 9px;
    z-index: 1;
    left: -28px;
    border: none;
    font-size: 12px;
    content: "\f00c";
    font-weight: 600;
    color: #00cc83;
    background: transparent;
    font-family: "Font Awesome 5 Free";
}

.newsletter-radios .custom-control-input:checked~.custom-control-label::before {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.newsletter-radios .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
    background-color: #00cc83;
}

.newsletter-content .bg-text {
    text-transform: uppercase;
    position: absolute;
    font-size: 150px;
    font-weight: 800;
    line-height: 0.7;
    opacity: 0.03;
    z-index: 99;
    bottom: 0;
    right: 0;
    color: #000;
}

.newsletter-content .sub-title {
    font-weight: 600;
    font-size: 22px;
    color: #0e1133;
}

.partner-title span {
    color: #204ecf;
}

.partner-iamges-wrap {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.partner-iamges-wrap img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.partner-iamges-wrap img:not(:first-child) {
    margin-left: -30px;
}

.partner-iamges-wrap .plus {
    top: 0;
    right: 0;
    color: white;
    font-size: 25px;
    font-weight: 500;
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 204, 131, 0.5);
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}

.testimonial-wrap .slick-dots {
    position: absolute;
    top: 50px;
    right: 100px;
    margin-top: 0;
}

@media only screen and (max-width: 575px) {
    .testimonial-wrap .slick-dots {
        top: 55px;
        right: 50%;
        -webkit-transform: translate(50%);
        -ms-transform: translate(50%);
        transform: translate(50%);
    }
}

.testimonial-author {
    position: absolute;
    top: -30%;
    left: 0%;
}

@media only screen and (max-width: 991px) {
    .testimonial-author {
        margin-left: 25px;
    }

    .testimonial-author {
        position: inherit;
        margin: 0 0 20px;
    }

    .testimonial-wrap .slick-slide img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 375px) {
    .testimonial-author {
        margin-left: 15px;
    }
}

.testimonial-content {
    z-index: 1;
    position: relative;
    padding: 35px 60px;
    -webkit-box-shadow: 10px 0 60px rgba(38, 45, 61, 0.07);
    box-shadow: 10px 0 60px rgba(38, 45, 61, 0.07);
    background: #fff;
}

@media only screen and (max-width: 575px) {
    .testimonial-content {
        padding-left: 25px;
        padding-right: 25px;
        margin-top: 0;
    }
}

@media only screen and (max-width: 375px) {
    .testimonial-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.testimonial-content:after {
    content: "\f10e";
    font-weight: 600;
    line-height: 1;
    top: 40px;
    right: 70px;
    z-index: -1;
    opacity: 0.05;
    font-size: 120px;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
}

@media only screen and (max-width: 991px) {
    .testimonial-content:after {
        top: 50%;
    }
}

.testimonial-content .designation {
    margin-left: 100px;
    margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
    .testimonial-content .designation {
        background: white;
        border-radius: 5px;
        margin-bottom: 0;
        padding: 10px 0 10px 20px;
    }

    .testimonial-wrap .slick-slide img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .testimonial-content .designation {
        margin-left: 25px;
    }

    .testimonial-wrap .slick-slider .slick-list,
    .testimonial-wrap .slick-slider .slick-track {
        width: auto !important;
    }
}

@media only screen and (max-width: 375px) {
    .testimonial-content .designation {
        margin-left: 10px;
    }
}

.testimonial-content .designation h4 {
    font-size: 24px;
    margin-bottom: 0;
}

@media only screen and (max-width: 375px) {
    .testimonial-content .designation h4 {
        font-size: 20px;
    }
}

.testimonial-content .designation span {
    font-weight: 600;
    color: #204ecf;
}

.testimonial-content p {
    font-size: 20px;
}

@media only screen and (max-width: 480px) {
    .testimonial-content p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 375px) {
    .testimonial-content p {
        font-size: 15px;
    }
}

.testimonial-content .ratting {
    padding-top: 5px;
}

.testimonial-content .ratting i {
    color: #ff9c00;
    font-size: 15px;
    margin-right: 5px;
}

.testimonial-author img {
    display: block;
    width: 230px;
    height: 200px;
    object-fit: contain;
}

.testimonial-wrap.slick-slider {
    overflow: hidden;
}

.testimonial-wrap .slick-dots li.slick-active:before {
    background: #204ecf;
}

.testimonial-wrap .slick-dots li:before {
    content: '';
    width: 5px;
    height: 5px;
    left: 50%;
    top: 50%;
    background: #232323;
    position: absolute;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.coach-filter {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -10px;
    margin-right: -10px;
}

.coach-filter li {
    margin: 5px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    padding: 4px 20px 2px;
    background: rgba(32, 78, 207, 0.1);
}

@media only screen and (max-width: 767px) {
    .coach-filter li {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.coach-filter li:hover,
.coach-filter li.current {
    color: white;
    background: #00cc83;
}

.coach-item {
    height: 92%;
}

.coach-image {
    position: relative;
}

.coach-image img {
    width: 100%;
}

.coach-image .category {
    top: 20px;
    left: 20px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    border-radius: 5px;
    padding: 3px 15px 1px;
    text-transform: uppercase;
    background: #204ecf;
}

.coach-content {
    background: white;
    position: relative;
    border-radius: 5px;
    padding: 25px 30px;
    height: 100%;
    -webkit-box-shadow: 10px 0 60px rgba(76, 76, 76, 0.1);
    box-shadow: 10px 0 60px rgba(76, 76, 76, 0.1);
}

@media only screen and (max-width: 480px) {
    .coach-content {
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 375px) {
    .coach-content h4 {
        font-size: 18px;
    }
}

.coach-content .label {
    margin-bottom: 5px;
    display: inline-block;
}

.coach-content .ratting-price {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e9eaeb;
}

.coach-content .ratting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.coach-content .ratting i {
    color: #ffa200;
    font-size: 15px;
    margin-right: 4px;
}

@media only screen and (max-width: 375px) {
    .coach-content .ratting i {
        font-size: 12px;
    }
}

.coach-content .ratting span {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 375px) {
    .coach-content .ratting span {
        font-size: 18px;
    }
}

.coach-content .price {
    font-size: 20px;
    font-weight: 800;
    color: #00cc83;
}

@media only screen and (max-width: 375px) {
    .coach-content .price {
        font-size: 15px;
    }
}

.coach-content .price:before {
    content: '$';
}

.coach-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.coach-footer li i {
    margin-right: 5px;
}

.coach-footer li:not(:last-child) {
    margin-right: 15px;
}

.newsletter-section h2 {
    font-size: 60px;
    color: #ffffff;
}

#quick-connect .utf-signin-form-part::before #case-study .utf-signin-form-part::before #online-exam-modal-1.utf-signin-form-part::before #online-exam-modal-2.utf-signin-form-part::before #prex-assess-entrnc-modal-1.utf-signin-form-part::before #prex-assess-entrnc-modal-2.utf-signin-form-part::before #prex-assess-entrnc-modal-3.utf-signin-form-part::before #pro-request-modal-1.utf-signin-form-part::before #gold-request-modal-1.utf-signin-form-part::before #jobility_req_modal-1 .utf-signin-form-part::before #round-zero-modal-1 .utf-signin-form-part::before #mylogin .utf-signin-form-part::before #pro-connect-modal1 .utf-signin-form-part::before #pro-connect-modal2 .utf-signin-form-part::before #pro-connect-modal3 .utf-signin-form-part::before #job-application-modal .utf-signin-form-part::before {
    background: transparent;
}

.request-section {
    overflow: hidden;
}

.request-section h2 {
    font-style: normal;
    font-size: 36px;
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #00cc83;
    line-height: 70px;
    font-weight: 500;
    text-transform: uppercase;
}

.request-section:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 330px;
    height: 330px;
    background: #f7f7f7;
    line-height: 330px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translate(-25%, 50%);
    -ms-transform: translate(-25%, 50%);
    transform: translate(-25%, 50%);
}

.bg-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.bg-gradient {
    background: bottom center #ffffff;
}

.proex-online {
    padding-bottom: 0;
    background-color: #ffffff;
    overflow: visible;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .proex-online {
        padding-top: 130px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .proex-online {
        padding-top: 190px;
    }
}

.proex-online .hero-cotainer {
    margin-bottom: 25px;
}

.proex-online .hero-cotainer .hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.proex-online .hero-cotainer .hero-content .hero-headline {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 65px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .proex-online .hero-cotainer .hero-content .hero-headline {
        font-size: 45px;
    }
}

.proex-online .hero-cotainer .hero-content .hero-bio {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 42px;
}

.proex-online .mockup {
    text-align: center;
}

.proex-online .mockup img {
    max-width: 1000px;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
}

.proex-online.hero-lead {
    padding-top: 333px;
    padding-bottom: 233px;
    background-position: center bottom;
}

.proex-online .section-title h2 {
    font-style: normal;
    font-size: 36px;
    position: relative;
    z-index: 1;
    font-family: "Poppins", sans-serif;
    color: #8fc740;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
}

.proex-online h3 {
    font-size: 22px;
    text-align: center;
    margin: 0 0 20px;
    color: #fff;
}

.proex-online.hero-lead .hero-cotainer .hero-content {
    padding-top: 100px;
}

.proex-online.hero-lead .hero-cotainer .hero-content .hero-headline {
    font-size: 55px;
}

@media screen and (max-width: 767px) {
    .proex-online.hero-lead {
        padding-top: 133px;
        padding-bottom: 133px;
    }
}

@media screen and (max-width: 991px) {
    .proex-online.hero-lead {
        text-align: center;
    }

    .proex-online.hero-lead .popup-contact-form {
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .proex-online.hero-lead .hero-cotainer .hero-content .hero-headline {
        font-size: 35px;
    }
}

.online-exam-features {
    padding-top: 110px;
    background-color: #ffffff;
    padding-bottom: 110px;
}

.online-exam-features .feature-panel {
    position: relative;
    padding: 50px 40px;
    margin-bottom: 25px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 991px) {
    .online-exam-features .feature-panel {
        max-width: 370px;
        margin: 0 auto 50px auto;
    }
}

.online-exam-features .feature-panel.active {
    border: 1px solid #e5f2ec;
}

.online-exam-features .feature-panel:hover {
    -webkit-box-shadow: 0px 30px 50px rgb(80 232 169 / 10%);
    box-shadow: 0px 30px 50px rgb(80 232 169 / 10%);
}

.online-exam-features .feature-panel .feature-icon {
    color: #e8505b;
    line-height: 1;
    margin-bottom: 35px;
    position: relative;
}

.online-exam-features .feature-panel .feature-icon::before {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 91.5px;
    height: 76.6px;
    background-image: url("../images/products/icon-bg.svg");
}

.online-exam-features .feature-panel .feature-icon img {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
    width: 50px;
}

.online-exam-features .feature-panel .feature-icon i::before {
    font-size: 36px;
    margin: 0;
}

.online-exam-features .feature-panel .feature-icon:hover i {
    -webkit-animation: pulse 0.9s infinite;
    animation: pulse 0.9s infinite;
}

.online-exam-features .feature-panel .feature-content h3 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #212529;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.online-exam-features .feature-panel .feature-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    color: #868e96;
}

.online-exam-features .feature-panel {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 18px;
    height: 92%;
}

.heading-second {
    color: #212529 !important;
    font-size: 30px !important;
    font-weight: 500 !important;
}

.pricing p {
    font-size: 20px;
    line-height: 36px;
}

.divider-2 {
    height: 1px;
    width: 100%;
    background-color: #d4f4cc;
}

.bg-gray {
    background-color: #f1ffed !important;
}

.services {
    padding-top: 130px;
    padding-bottom: 120px;
    position: relative;
}

.services .service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.services .service-card .section-title h1 {
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

@media screen and (min-width: 992px) {
    .services .service-card .heading .heading-desc {
        padding-right: 70px;
    }
}

.services .service-card .counters-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 450px) {
    .services .service-card .counters-card {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.services .service-card .counters-card .counters {
    -webkit-box-shadow: 0 0 50px 0 rgba(232, 80, 91, 0.1);
    box-shadow: 0 0 50px 0 rgba(232, 80, 91, 0.1);
    background-color: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 26px;
    margin-bottom: 25px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .services .service-card .counters-card .counters {
        margin-right: 30px;
    }
}

@media screen and (max-width: 991px) {
    .services .service-card .counters-card .counters {
        margin: 15px auto;
    }
}

.services .service-card .counters-card .counters img {
    margin-right: 20px;
}

.services .service-card .counters-card .counters i {
    margin-right: 20px;
    color: #e8505b;
    font-size: 45px;
}

.services .service-card .counters-card .counters .counters-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.services .service-card .counters-card .counters .counters-content .counting {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.5;
    color: #212529;
    width: 80px;
    display: block;
}

.services .service-card .counters-card .counters .counters-content .type {
    font-size: 15px;
    line-height: 1.5;
    color: #868e96;
}

.services .service-card .service-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    line-height: 1.5;
    color: #868e96;
    font-weight: 400;
    margin-bottom: 8px;
}

.services .service-card .service-list li:last-child {
    margin-bottom: 0;
}

.services .service-card .service-list li span {
    margin-top: 4px;
    color: #e8505b;
    margin-right: 15px;
}

.services .service-img {
    margin-top: 30px;
}

.service-card .section-title h2 {
    font-size: 40px !important;
    margin: 0 0 30px;
    line-height: 40px;
}

.service-card .section-title p {
    margin-bottom: 18px;
}

@media screen and (min-width: 768px) {
    .services .service-img {
        margin-top: 0;
    }
}

.subscribe-wrap {
    background: #F3F6FB;
    border-radius: 16.8383px;
    padding:20px 50px;
}

.position-relative {
    position: relative !important;
}

@keyframes bloming {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes bloming2 {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.success-play-btn {
    width: 120px;
    height: 120px;
    -webkit-box-shadow: 5px 30px 50px rgb(43 42 42 / 5%);
    box-shadow: 5px 30px 50px rgb(43 42 42 / 5%);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.success-play-btn {
    position: absolute;
    right: 40%;
    bottom: 35%;
}

.success-play-btn::before {
    position: absolute;
    content: "";
    inset: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: bloming 3s infinite alternate;
    animation: bloming 3s infinite alternate;
    z-index: -1;
}

.success-play-btn i {
    font-size: 32px;
    color: #fff;
}

.success-play-btn::after {
    position: absolute;
    content: "";
    inset: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-animation: bloming2 3s infinite;
    animation: bloming2 3s infinite;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.success-student-image img {
    border-radius: 10px;
}

.online-exam-testimonials {
    padding-top: 0;
    padding-bottom: 20px;
}

.online-exam-testimonials .testimonial-panel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 40px 50px;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}

@media screen and (max-width: 991px) {
    .online-exam-testimonials .testimonial-panel {
        padding: 0 20px;
    }
}

.online-exam-testimonials .testimonial-panel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../images/products/bg-map.svg") center center no-repeat;
    opacity: 0.2;
    background-size: contain;
}

.online-exam-testimonials .testimonial-panel .testimonial-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-icon {
    margin-bottom: 30px;
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-icon span {
    font-size: 22px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 60px;
    height: 60px;
    line-height: 59px;
    border-radius: 50px;
    color: #ffffff;
    background-color: #e8505b;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.online-exam-testimonials .testimonial-panel .testimonial-body p {
    color: #212529;
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 17px;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .online-exam-testimonials .testimonial-panel .testimonial-body p {
        font-size: 20px;
    }
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-author .testimonial-img {
    width: 110px;
    height: 110px;
    background-color: #ffffff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px auto 20px;
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-author .testimonial-img img {
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-author p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #868e96;
}

.online-exam-testimonials .testimonial-panel .testimonial-body .testimonial-author p::before {
    content: '-';
    font-size: 12px;
    margin-right: 5px;
}

.utf-online-exam-carousel .testimonial-author {
    position: inherit;
    top: -20%;
    left: 0%;
}

.cta {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.cta .ch-section-title h1 {
    color: #a1d244;
}

.cta h3 {
    color: #fffefe;
    font-size: 30px;
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

@media screen and (max-width: 991px) {
    .cta h3 {
        font-size: 28px;
        line-height: 35px;
    }
}

.cta p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 38px;
}

.ptb-100 {
    padding: 100px 0;
}

.hero-section-2,
.hero-section-3 {
    position: relative;
    overflow: hidden;
}

.hero-section-2:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #0d351c;
}

.hero-content-left,
.sign-up-form-wrap {
    z-index: 2;
}

.hero-animation-img,
.hero-content-left {
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-weight: 500;
    font-size: 60px;
    line-height: 70px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.hero-content-left h1 span {
    font-weight: 500;
    color: #a1d244;
}

.hero-content-left .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #fff;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.core-feature-list li {
    display: inline-block;
    width: 120px;
    margin: 10px 10px 10px 0;
    font-size: 15px;
}

.icon-box.gray-light-bg {
    background: #a1d244;
}

.hero-content-left .icon-box {
    height: 100px;
    width: 100px;
    text-align: center;
    -webkit-box-shadow: 0 30px 40px 0 rgb(52 27 159 / 10%);
    box-shadow: 0 30px 40px 0 rgb(52 27 159 / 10%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 20px !important;
}

.gray-light-bg {
    background: #a1d244;
}

.icon-box span {
    font-size: 25px;
    line-height: 55px;
    margin-bottom: 15px;
}

.core-feature-list-2 {
    width: 100%;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.core-feature-list-2 li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
    font-weight: 400;
    padding: 10px 10px 10px 0;
    font-size: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.color-secondary {
    color: #ed1c24;
}

.text-white {
    color: #fff !important;
}

.single-promo-card {
    transition: all .2s ease;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.12);
}

.card.single-promo-card {
    border: 1px solid #eff2f7;
    border-radius: 1rem;
    height: 100%;
}

.card.single-promo-card:hover {
    background: #a1d244;
    color: #ffffff;
}

.card.single-promo-card:hover span,
.card.single-promo-card:hover h5,
.card.single-promo-card:hover p.text-muted {
    color: #ffffff !important;
}

.single-promo-card .card-body {
    padding: 1.5rem;
}

.single-promo-card .card-body h5 {
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    margin: 0 0 10px;
}

.single-promo-card .card-body img {
    width: 72px;
    height: 72px
}

.switchable {
    position: relative;
}

.imageblock-section {
    position: relative;
    padding: 0;
}

.imageblock-section .imageblock-section-img {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 2;
    padding: 0;
}

.switchable.switchable-content div[class*='col-']:first-child {
    float: right;
    right: 0;
    left: auto;
}

.switchable>div[class*='col-'] {
    padding: 0;
}

.background-image-holder {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    opacity: 0;
    background: #252525;
}

.overlay-color {
    position: relative;
    display: block;
    width: 100%;
}

.overlay-color:before {
    position: absolute;
    content: '';
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.background-image-holder:not([class*='col-']) {
    width: 100%;
}

.switchable div[class*='col-']:first-child {
    float: left;
    right: auto;
}

@media (max-width: 767px) {
    .switchable .imageblock-section-img[class*='col-'] {
        float: none !important;
    }
}

.switchable>div[class*='col-'] {
    padding: 0;
}

@media (max-width: 767px) {
    .imageblock-section .imageblock-section-img {
        position: relative;
        min-height: 18.57142857em;
    }
}

@media (min-width: 768px) {
    .switchable .container>.row {
        flex-flow: row-reverse;
    }

    .switchable.switchable-content .container>.row {
        flex-flow: row;
    }
}

.single-card {
    width: calc(50% - 25px);
    margin-left: 25px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow .3s ease-in-out 0s;
    box-sizing: border-box;
    box-shadow: 0 8px 20px 0 rgba(16, 66, 97, .07);
    padding: 35px 15px;
    border-radius: 10px;
    float: left;
    text-align: center;
}

.single-card:nth-child(2n) {
    position: relative;
    top: 40px;
}

.single-card h3 {
    font-size: 34px;
    color: inherit !important;
    margin: 0;
    line-height: 34px;
    font-weight: 500;
    position: relative;
}

.single-card span {
    font-size: 2.95714286em;
    line-height: 1.75125468em;
}

.counter-card {
    float: none;
    display: block;
    overflow: hidden;
    width: auto;
    margin: auto;
}

.box-animation-1 {
    animation: animation-1 5s ease-out infinite;
}

.box-animation-2 {
    animation: animation-2 4s ease-out infinite;
}

.box-animation-3 {
    animation: animation-3 5s ease-out infinite;
}

.box-animation-4 {
    animation: animation-4 4s ease-out infinite;
}

@keyframes animation-1 {
    50% {
        transform: translate(0, 20px);
    }
}

@keyframes animation-2 {
    50% {
        transform: translate(0, 35px);
    }
}

@keyframes animation-3 {
    50% {
        transform: translate(0, 25px);
    }
}

@keyframes animation-4 {
    50% {
        transform: translate(0, 40px);
    }
}

@keyframes shrink {
    0% {
        width: 90%;
        margin: 0 5%;
    }

    50% {
        width: 60%;
        margin: 0 18%;
    }

    100% {
        width: 90%;
        margin: 0 5%;
    }
}

.gray-light-bg {
    background: #f4f4f4;
}

.counter-wrap {
    background: #ffffff;
    width: 100%;
    display: block;
    position: relative;
    bottom: -60px;
    padding: 30px 0;
    border-radius: 6px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.12);
}

.counter-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-auto-flow: dense;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}

.counter-wrap li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    border-right: 1px solid #ebebeb;
    margin: 10px 0 !important;
}

.counter-wrap li:last-child {
    border-right: none;
    margin-right: 0 !important;
}

.single-counter span {
    color: #a1d244;
    line-height: 36px;
    font-size: 36px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.counter-new-wrap {
    position: relative;
    z-index: 3;
    width: 630px;
    margin: 0 auto;
    padding: 15px;
}

@media (min-width: 320px) and (max-width: 576px) {
    .counter-new-wrap {
        padding: 3.5rem 15px;
    }
}

.counter-new-wrap ul {
    width: 100%;
}

.counter-new-wrap li {
    width: 45%;
    border-radius: 4px;
    display: inline-block;
    float: left;
    padding-bottom: 50px;
    text-align: center;
}

.counter-new-wrap li:nth-last-child(-n+2) {
    padding-bottom: 0;
}

.single-counter h6 {
    font-size: 12px;
    color: #fff;
}

.utf-logo-hiremeepro .utf-carousel-logo-item {
    display: inline-block;
    text-align: center;
    position: relative
}

.utf-logo-hiremeepro .utf-carousel-logo-item img {
    height: 120px;
    display: block;
    object-fit: contain;
    width: 100%;
    padding: 20px;
}

.utf-logo-hiremeepro .slick-slide {
    display: block;
    background: #fff;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.hiremeepro-testimonials .slick-slide {
    background: transparent !important;
}

.hiremeepro-feature .accordion-header {
    background: #6a6a6a;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hiremeegold.bg_cover {
    background-position: center bottom;
}

.hiremeegold-content {
    padding-top: 100px;
}

.hiremeegold-content .title {
    font-size: 36px;
    line-height: 40px;
    color: #f8fbff;
    font-weight: 600;
    padding-bottom: 20px;
    font-family: "Poppins", sans-serif
}

.hiremeegold-content .title span {
    color: #FFC000;
}

.hiremeegold-content p {
    color: #fff;
}

.hiremeegold-thumb {
    padding-top: 85px;
    text-align: right;
    padding-bottom: 65px;
    padding-right: 50px;
}

.hiremeegold-content ul li {
    margin-right: 10px;
}

.hiremeegold .main-btn {
    display: inline-block;
    position: relative;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 38px 0 15px;
    font-size: 17px;
    height: 60px;
    line-height: 62.5px;
    border-radius: 40px;
    color: #0B6749;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    letter-spacing: -0.02em;
    background-color: #FFC000;
    -webkit-box-shadow: 0px 10px 30px rgb(255 190 0 / 20%);
    box-shadow: 0px 10px 30px rgb(255 190 0 / 20%);
}

.hiremeegold .main-btn i {
    position: absolute;
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

@media (max-width: 992px) {
    .hiremeegold.bg_cover {
        background-position: center bottom;
        padding-bottom: 50px;
    }

    .hiremeegold-content {
        padding-top: 50px;
    }
}

.hiregold-features-area {
    position: relative;
    padding-bottom: 113px;
    margin-top: -75px;
    background: #FFFBEE;
}

/* .hiregold-features-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 330px;
    width: 100%;
    background-image: url(../images/products/hiremee-gold-section-2.png);
    opacity: .5;
    background-size: 100% 100%;
} */

.hiregold-features-box {
    padding: 25px 50px;
    -webkit-box-shadow: 0px 30px 50px rgb(255 190 0 / 10%);
    box-shadow: 0px 30px 50px rgb(255 190 0 / 10%);
    background: #fff;
    background-image: url(../images/products/hiremee-gold-features-bg.jpg);
    background-size: contain;
    position: relative;
    background-position: center right;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
}

.hiregold-features-title {
    color: #2E2E2E;
    padding-top: 26px;
    padding-bottom: 10px;
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.hiregold-features-title .title {
    line-height: 54px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 36px;
}

.hiregold-features-item {
    padding-right: 20px;
}

.hiregold-features-item .title {
    font-size: 20px;
    line-height: 30px;
    color: #2E2E2E;
    padding-bottom: 24px;
    padding-top: 26px;
    font-family: "Poppins", sans-serif;
}

.mt-30 {
    margin-top: 30px;
}

.hiregold-features-item i {
    color: #FFC000;
    font-size: 60px;
}

.hiregold-features-item ol {
    padding: 5px 20px 5px 15px;
    font-size: 15px;
}

.hiregold-features-box .hiregold-features-play {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.hiregold-features-box .hiregold-features-play a {
    height: 110px;
    width: 110px;
    background: #FFC000;
    border-radius: 50%;
    line-height: 110px;
    text-align: center;
    color: #0B6749;
    font-size: 24px;
}

@media only screen and (min-width: 1600px) {
    .custom-container {
        max-width: 1500px !important;
    }
}

.capture-area {
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: #FFFBEE;
}

.capture-area .slick-arrow {
    position: absolute;
    top: -45px;
    color: #0B6749;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    z-index: 99;
    cursor: pointer;
    left: auto;
}

.capture-area .slick-prev {
    right: 70px;
}

.capture-area .slick-next {
    position: absolute;
    top: -45px;
    color: #0B6749;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    z-index: 99;
    cursor: pointer;
    left: auto;
    right: 15px;
}

.capture-area .section-title,
.faq-area .section-title {
    padding-bottom: 9px;
}

.capture-area .section-title .title,
.faq-area .section-title .title {
    font-size: 36px;
    font-family: "Poppins", sans-serif;
    line-height: 70px;
    color: #0B6749;
}

.capture-area .container {
    overflow: visible;
}

.capture-area .container .col-12 {
    overflow: visible;
}

.capture-item {
    margin: 0 15px;
}

.capture-item .capture-thumb {
    box-shadow: 0px 30px 50px rgba(255, 190, 0, 0.2);
}

.capture-item .capture-thumb img {
    width: 100%;
}

.capture-item .capture-content {
    padding: 40px 61px;
}

.capture-item .capture-content i {
    font-size: 60px;
}

.capture-item .capture-content .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 20px;
}

.faq-area {
    padding-bottom: 120px;
    position: relative;
    z-index: 9;
    padding-top: 112px;
}

.faq-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: -250px;
    height: 750px;
    width: 90%;
    background-image: url(../images/products/hiremeegold-capture-bg.jpg);
    background-size: 100% 100%;
    z-index: -1;
}

.faq-area::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    height: 1050px;
    width: 90%;
    background: #0B6749;
    z-index: -2;
}

.faq-area .faq-shape {
    position: absolute;
    left: 0;
    top: 420px;
    height: 600px;
    width: 100%;
    background-image: url(../images/products/hiremee-gold-section-2.png);
    opacity: .5;
    background-size: 100% 100%;
    z-index: -3;
}

.faq-box {
    background: #fff;
    padding: 75px;
    -webkit-box-shadow: 0px 30px 50px rgb(255 190 0 / 10%);
    box-shadow: 0px 30px 50px rgb(255 190 0 / 10%);
    position: relative;
    z-index: 10;
}

.faq-box::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: url(../images/products/hiremee-faq-bg.jpg);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.faq-box p {
    margin-bottom: 30px;
}

.capture-area .utf-blog-compact-item-content p {
    color: #66676b !important;
    margin-bottom: 20px;
}

.intro-area {
    position: relative;
    z-index: 11;
    padding: 50px 0 100px;
    background: #FFFBEE;
    position: relative;
    overflow: hidden;
}

.intro-area::before {
    position: absolute;
    content: '';
    left: -25%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/products/hiremee-gold-shape.jpg);
    width: 850px;
    height: 600px;
}

@media only screen and (min-width: 1600px) {
    .intro-area::before {
        left: 0;
    }
}

.intro-area .section-title {
    padding-bottom: 9px;
}

.intro-area .section-title .title {
    font-size: 36px;
    font-family: "Poppins", sans-serif;
    line-height: 50px;
    color: #0B6749;
    font-weight: 600;
}

.intro-content {
    padding: 80px 0;
    margin-top: 50px;
}

.intro-content .intro-item .title {
    font-size: 20px;
    color: #2E2E2E;
    font-weight: 800;
}

.intro-content .intro-item p {
    font-size: 15px;
    margin: 8px 0 0;
}

.capture-area .utf-blog-compact-item-content {
    padding: 50px;
}

.capture-area .utf-blog-compact-item-content h3 {
    text-align: left;
}

.download-area {
    position: relative;
    padding-top: 363px;
    padding-bottom: 113px;
    z-index: 9;
    margin-top: -280px;
    background: #fffbee;
}

.download-area::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/products/hiremee-gold-banner-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#feedbacks,
.testimonials-hiremeegold {
    background: #FFFBEE;
}

#feedbacks .utf-blog-carousel-block {
    z-index: 99;
}

#feedbacks .section-title,
.download-area .section-title,
.testimonials-hiremeegold .section-title {
    padding-bottom: 9px;
}

#feedbacks .section-title .title,
.download-area .section-title .title,
.testimonials-hiremeegold .section-title .title {
    font-size: 36px;
    font-family: "Poppins", sans-serif;
    line-height: 70px;
    color: #0B6749;
    font-weight: 600;
}

.testimonials-hiremeegold .section-title .title {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

#feedbacks .intro-item .title {
    font-size: 20px;
    color: #2E2E2E;
    font-weight: 800;
}

#feedbacks .utf-blog-compact-item-content {
    padding: 20px;
    width: 100%;
    z-index: 50;
    text-align: left;
    box-sizing: border-box;
    background: #fff;
    -webkit-box-shadow: 0px 30px 50px 0px rgb(255 190 0 / 10%);
    box-shadow: 0px 30px 50px 0px rgb(255 190 0 / 10%);
    z-index: 999;
    height: 100%;
    position: relative;
}

#feedbacks .utf-blog-compact-item-content h3 {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.download-area .section-title .title {
    color: #ffc000;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.download-area .section-title h4 {
    color: #259f75;
}

.download-area .hiregold-features-title {
    color: #fff;
}

.download-area .hiregold-features-item ol li {
    color: #ccc;
}

.testimonials-hiremeegold .utf-testimonial-carousel-block .slick-slide {
    background: transparent;
}

.testimonials-hiremeegold {
    position: relative;
}

.testimonials-hiremeegold::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 330px;
    width: 100%;
    background-image: url(../images/products/hiremee-gold-section-2.png);
    opacity: .5;
    background-size: 100% 100%;
}

.lightGreenGold {
    background: #FFFBEE;
}

.frequently-asked-questions .accordion-body {
    background: #ffffff !important;
    color: #323232 !important;
    border-bottom: 3px solid #eee7cf;
    padding: 20px !important;
    border: 1px solid #eee7cf;
}

.frequently-asked-questions .accordion-header {
    background: #f5ffee !important;
    color: #323232 !important;
    border-bottom: 3px solid #dbedce;
    font-family: 'Barlow Condensed Medium', sans-serif;
    ;
}

.frequently-asked-questions .utf-accordion-item.active .accordion-header {
    background: #115641 !important;
    color: #ffff !important;
}

.frequently-asked-questions .utf-accordion-item.active .accordion-header span {
    background: #a1d244;
    padding: 5px 7px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

.frequently-asked-questions .accordion-header span {
    background: #115641;
    padding: 5px 7px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}

.frequently-asked-questions .accordion-body .log-in-button {
    min-width: auto !important;
}

.hiremeegold-btn {
    display: inline-block;
    position: relative;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 15px;
    font-size: 15px;
    height: 60px;
    line-height: 62.5px;
    border-radius: 40px;
    color: #0B6749;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    letter-spacing: -0.02em;
    background-color: #FFC000;
    text-transform: uppercase;
}

.hiremeegold-btn i {
    position: absolute;
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.platform h2,
.how-does-it-work h2 {
    font-size: 36px;
    line-height: 45px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    margin: 0 0 20px;
}

.how-does-it-work {
    padding: 100px 0;
}

.how-does-it-work h2 {
    margin: 0 0 20px;
}

.highlight-bg {
    background-color: #F4F9EC;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 85%;
    font-weight: 500;
}

.highlight-bg h6 {
    color: #8FC740;
    font-weight: normal !important;
    font-size: 18px
}

.highlight-bg h3 {
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    margin: 0 0 10px;
}

.e-book-display {
    position: relative;
}

.e-book-display .ebookdesign {
    margin-bottom: 30px;
}

.e-book-display .ebookdesign img {
    transition: 300ms;
}

.e-book-display .ebookdesign img:hover {
    transform: scale(1.1);
}

.case-study-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/case-study.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.case-study-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.object-cover {
    object-fit: cover;
}

.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.w-full {
    width: 100%;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.case-study-card img {
    width: 230px;
    margin: 0 auto;
}

.case-study-card h1 {
    font-size: 25px;
    line-height: 26px;
    margin-bottom: 10px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
}

.case-study-banner h1 span {
    font-size: 35px;
    display: inline;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
}

.case-study-banner p {
    color: #fff;
    font-weight: normal;
    margin-top: 10px;
}

.text-red-600 {
    color: #ff4690;
}

.case-study-innerpage p.hightText {
    font-size: 20px;
    color: #53545b;
    font-weight: normal;
    line-height: 30px;
}

.media-relase-box {
   /* display: grid;*/
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 3px 12px rgb(0 0 0 / 10%);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .5s ease-in-out;
    height: 100%;
}

.media-relase-box .utf-blog-post-thumbnail {
    flex: 0 0 auto;
    max-width: none;
    max-height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200px;
}

.media-relase-box a {
    width: auto !important;
    text-align: left;
}

.h-92 {
    height: 92%;
}

.eventsHeading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #091e42 !important;
    max-width: 100%;
    line-height: 26px;
}

.form-container {
    background: #ffffff;
    -webkit-box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
    box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
    border-radius: 20px;
    display: inline-block;
    width: 100%;
    padding: 22px 30px;
}

.form-container input {
    border: 1px solid rgba(26, 15, 9, 0.1);
    padding: 10px 20px 10px 20px;
    display: inline-block;
    width: 100%;
}

.opportunities-list {
    border-right: 1px solid #e7e7e7;
    margin-bottom: 10px;
    margin-right: 50px;
    padding-bottom: 10px;
    padding-right: 50px;
}

.opportunities-list:last-child {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.opportunities-list img {
    width: 60px;
}

.opportunities-list .job-description span {
    display: block;
}

.opportunities-list .events__title {
    font-size: 18px !important;
    font-family: 'Barlow Condensed Medium', sans-serif;
    ;
}

.opportunities-head {
    font-size: 22px !important;
}

.opportunities-head p {
    margin: 0;
}

.opportunities-head:after {
    top: -40px !important;
    line-height: 40px;
}

.opportunities-list .log-in-button {
    min-width: auto !important;
    background: #737373;
    border: 0;
    margin-top: 10px;
    border-radius: 4px;
}

.video-carousel .utf-carousel-logo-item {
    display: inline-block;
    text-align: center;
    position: relative
}

.video-carousel .utf-carousel-logo-item a {
    display: inline-block
}

.video-carousel .utf-carousel-logo-item img {
    max-height: 100%;
    max-width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
}

.video-carousel .slick-next,
.video-carousel .slick-prev {
    top: 50%
}

.video-carousel .slick-slide {
    display: block;
    background: #fff;
    margin: 10px;
    padding: 10px 10px 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.container-gallery {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-gallery {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-gallery {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-gallery {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-gallery {
        max-width: 1140px;
    }
}

.template-btn {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 20px;
    display: inline-block;
    background: transparent;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.template-btn:hover {
    color: white;
    background: #f28500;
}

.gallery-section {
    padding-top: 30px;
    transition: 1.3s;
    box-sizing: border-box;
    height: auto;
}

.portfolio-tab ul {
    text-align: center;
    margin-top: 50px;
}

.portfolio-tab ul li {
    color: #000;
    background: transparent;
    display: inline;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px 16px;
    border: 2px solid #a1d244;
    margin: 0 5px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 575.98px) {
    .portfolio-tab ul li {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

.portfolio-tab ul li:hover {
    background: #a1d244;
    color: #fff
}

.portfolio-tab ul .active {
    background: #a1d244;
    color: #fff
}

.clearfix:after {
    display: table;
    content: " ";
    clear: both;
}

.portfolio-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (min-width: 768.1px) and (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portfolio-grid .portfolio {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    display: none;
    overflow: hidden;
}

.portfolio-wrapper {
    overflow: hidden;
    position: relative !important;
/*    cursor: pointer;*/
}

.portfolio-bg {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: 1s;
    transform: scale(1)
}

.portfolio:hover .portfolio-bg {
    transform: scale(1.2)
}

.portfolio-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portfolio .label {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden
}

.portfolio .label-bg {
/*    background: #232323;*/
    opacity: 0.7;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1px;
}

.portfolio .label-text {
    color: #fff;
    position: relative;
    z-index: 500;
    padding: 50px 20px;
}

.portfolio:hover .label {
    opacity: 1;
    visibility: visible;
}

.portfolio .text-category {
    display: block;
}

.portfolio .template-btn {
    background: #a1d244;
    border: 1px solid #a1d244;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500
}

.block {
    padding: 30px;
    box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
    border-radius: 10px;
    margin-bottom: 30px;
    border: solid 1px #f3f4f7;
    background: white;
}

.block h2 {
    font-size: 36px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.block p {
    margin-bottom: 0;
    margin-top: 0;
}

.policyList ol {
    counter-reset: item
}

.policyList li {
    display: table;
    counter-increment: item;
}

.policyList li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
    font-size: 15px;
    font-weight: 600;
}

.termsofuse-section ol {
    padding: 0 20px 20px;
}

.media-testimonial-box {
    padding: 10px !important;
    margin-bottom: 10px !important;
}
.media-testimonial-box .youtube-player{
    height: auto;
}
.appie-features-area-2 {
    background: #0e1133;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-90 {
    padding-top: 90px;
}

.appie-section-title {
    padding-bottom: 25px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.appie-section-title.appie-section-title-2 .appie-title {
    color: #fff;
}

.appie-section-title .appie-title {
    font-size: 44px;
    line-height: 54px;
}

.appie-section-title.appie-section-title-2 p {
    color: #fff;
}

.appie-section-title p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 11px;
}

.appie-features-box-item {
    border: 1px solid #202234;
    padding: 25px 30px 30px 70px;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
    margin-left: 100px;
    margin-right: 70px;
}

.appie-features-box-item .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.appie-features-box-item .title::before {
    position: absolute;
    content: '';
    left: -40px;
    top: 0;
    height: 30px;
    width: 30px;
    background: #ff3e66;
    border: 6px solid #2a182d;
    border-radius: 50%;
}

.appie-features-box-item p {
    font-size: 15px;
    opacity: 0.6;
    color: #fff;
    margin-top: 3px;
}

.appie-features-box-item.item-2 .title::before {
    background: #2eacfc;
    border-color: #15233d;
}

.appie-features-box-item.item-3 .title::before {
    background: #33c956;
    border-color: #15262c;
}

.appie-features-box-item:hover {
    border-color: #ff3e66;
}

.appie-features-box-item.item-2:hover {
    border-color: #2eacfc;
}

.appie-features-box-item.item-3:hover {
    border-color: #33c956;
}

a.appmain-btn {
    border: 2px solid #a1d244;
    color: #a1d244;
    background: transparent;
    line-height: 55px;
    padding: 0 40px;
    font-size: 15px;
    margin-top: 40px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

a.appmain-btn:hover {
    background: #a1d244;
    color: #fff;
}

.appie-download-3-box {
    border-radius: 20px;
    background: #ebf2fc;
    overflow: hidden;
}

.mr-20 {
    margin-right: 20px;
}

.mt-30 {
    margin-top: 30px
}

.appie-download-3-box .content {
    padding: 50px;
}

.appie-download-3-box .content .title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.appie-download-3-box .content a.mobapp-main-btn {
    background: #fff;
    color: #0e1133;
    border-color: #fff;
    margin-top: 33px;
}

.appie-download-3-box .content a.mobapp-main-btn i {
    padding-right: 6px;
}

.appie-download-3-box.appie-download-5-box a.mobapp-main-btn.main-btn-2 {
    background: #7bc678;
    border-color: #7bc678;
    margin-top: 33px;
    color: #fff;
}

.appie-download-3-box.appie-download-5-box a.mobapp-main-btn.main-btn-2:hover {
    background: #fff;
    color: #0e1133;
    border-color: #fff;
    margin-top: 33px;
}

.appie-download-3-box.appie-download-5-box a.mobapp-main-btn:hover {
    background: #7bc678;
    border-color: #7bc678;
    color: #fff;
}

.mobapp-main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0 30px;
    font-size: 15px;
    line-height: 45px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: #fff;
}

.appie-sponser-area {
    position: relative;
    z-index: 10;
}

.appie-sponser-box .sponser-item {
    background: #fff;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    border-radius: 6px;
    box-shadow: 0px 40px 60px 0px rgb(14 17 51 / 14%);
    margin: 30px 16px 0;
}

.appie-sponser-area .sponser-shape {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.mobileapp-down {
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    transform: perspective(1000px);
    font-size: 12px;
}

.mobileapp-down-menu {
    background-color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    opacity: 0;
    text-align: center;
    top: 0;
    visibility: hidden;
    z-index: -99999;
    width: 320px !important;
}

.mobileapp-down-menu li:first-child {
    cursor: default;
}

.mobileapp-down:hover .mobileapp-down-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    width: 100%;
    -webkit-transition: all .5s, background, 2s .5s linear;
    transition: all .5s, background 2s .5s linear;
    -webkit-box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
    box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
}

.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .swiper-slide {
    position: relative;
    background-color: #1b2a1f;
    height: 550px;
}

.main-slider-two .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.main-slider-two-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
}

.main-slider-two .swiper-slide-active .main-slider-two-img-1 {
    opacity: 1;
    transform: translate(0);
    transition-delay: 2500ms;
    transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease, background 500ms ease;
}

.main-slider-two-shape-1 {
    position: absolute;
    top: -179px;
    right: 118px;
    height: 350px;
    width: 495px;
    background-color: #000;
    mix-blend-mode: soft-light;
    transform: rotate(45deg) translateY(-200px);
    border-radius: 30px;
    opacity: 0;
}

.swiper-slide-active .main-slider-two-shape-1 {
    opacity: 1;
    transform: rotate(45deg) translateY(0px);
    transition: all 1000ms ease;
    transition-delay: 1000ms;
}

.main-slider-two-shape-2 {
    position: absolute;
    top: -70px;
    right: -250px;
    width: 495px;
    height: 350px;
    background-color: #0b6624;
    mix-blend-mode: screen;
    transform: rotate(45deg) translateY(-200px);
    opacity: 0;
    border-radius: 30px;
    z-index: 1;
}

.swiper-slide-active .main-slider-two-shape-2 {
    opacity: 1;
    transform: rotate(45deg) translateY(0px);
    transition: all 1000ms ease;
}

.main-slider-two-shape-3 {
    position: absolute;
    top: 203px;
    right: -427px;
    width: 495px;
    opacity: 0;
    height: 350px;
    background-color: #fff;
    mix-blend-mode: soft-light;
    transform: rotate(45deg) translateY(-200px);
    border-radius: 30px;
    z-index: 1;
}

.swiper-slide-active .main-slider-two-shape-3 {
    opacity: 1;
    transform: rotate(45deg) translateY(0px);
    transition: all 1000ms ease;
    transition-delay: 1500ms;
}

.main-slider-two .container {
    position: relative;
    z-index: 30;
    height: 100%;
}

.main-slider-two__content {
    position: relative;
    display: block;
}

.main-slider-two__content p {
    font-size: 20px;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    ;
    display: inline-block;
    position: relative;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
}

@-webkit-keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.main-slider-two__content h2 {
    font-size: 50px;
    line-height: 55px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    margin-bottom: 26px;
    margin-top: 0;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.main-slider-two__content h2 span {
    color: #a1d244;
}

.main-slider-two__content h5 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
    color: #fff;
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.main-slider-two__content h5 span {
    color: #a1d244;
}

.main-slider-two__content .thm-btn {
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-two__content .thm-btn:hover {
    color: #0b6624;
}

.main-slider-two__content .thm-btn:after {
    background-color: #fff;
}

.main-slider-two .swiper-slide-active .main-slider-two__content h2,
.main-slider-two .swiper-slide-active .main-slider-two__content p,
.main-slider-two .swiper-slide-active .main-slider-two__content .thm-btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider-two-arrow {
    position: absolute;
    bottom: -50%;
    right: -100px;
    transform: translateX(100%);
    opacity: 0;
}

.main-slider-two .swiper-slide-active .main-slider-two-arrow {
    opacity: 1;
    transform: translate(0);
    transition: all 1000ms ease;
    transition-delay: 200ms;
}

.main-slider-two #main-slider-pagination {
    bottom: 10px;
    text-align: center;
}

#main-slider-pagination {
    z-index: 10;
    bottom: 59px;
    left: 45%;
    width: 100%;
    max-width: 1170px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: center;
}

#main-slider-pagination .swiper-pagination-bullet {
    margin: 0;
}

#main-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, .08);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 5px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0);
    ;
}

.height-100 {
    height: 100%;
}

.services-two {
    position: relative;
    display: block;
    padding: 90px 0;
}

.services-two__single {
    position: relative;
    display: block;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0 30px 20px;
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    height: 100%;
    background-color: #82c064;
}

.services-two__single:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    border: 1px solid #e2e0e5;
}

.services-two__single:hover .services-two__title a {
    color: #323232;
}

.services-two__title img {
    width: 100px;
}

.services-two__icon {
    position: relative;
    display: inline-block;
}

.services-two__icon:before {
    position: absolute;
    bottom: 0;
    left: -100px;
    border-radius: 50%;
    background-color: rgb(83 132 96);
    opacity: 0.1;
    width: 150px;
    height: 150px;
    content: "";
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__single:hover .services-two__icon:before {
    transform: scale(1.5);
}

.services-two__icon span {
    font-size: 64px;
    color: #0b6624;
    position: relative;
    display: inline-block;
}

.services-two__title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 29px;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.services-two__title a {
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: 'Barlow Condensed Medium', sans-serif;
    padding: 20px 0
}

.services-two__title a:hover {
    color: #0b6624;
}

.services-two__text {
    font-size: 15px;
    margin: 0;
    line-height: 22px;
}

.services-two__arrow {
    color: #fff;
    font-size: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-top: auto;
    display: flex;
    line-height: 36px;
}

.services-two__arrow span {
    line-height: 36px;
    padding-left: 10px;
}

.services-two__arrow:hover {
    color: #0b6624;
}

.services-two__single:hover .services-two__arrow {
    color: #726d7b;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: #726d7b;
    font-size: 15px;
    font-weight: 500;
}

.we-care {
    position: relative;
    display: block;
    padding: 60px 0;
}

.we-care:nth-child(odd) {
    background: #fff;
}

.we-care:nth-child(even) {
    background: #fbfbfb;
}

.we-care__inner {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 1px 8px rgb(0 0 0 / 15%);
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}

.we-care__img {
    position: relative;
    border-radius: 8px;
    background-color: #f2f2f2;
    z-index: 1;
    padding: 8px;
    text-align: center;
    width: 80px;
}

.we-care__img img {
    width: 100px;
    object-fit: contain;
    border: 0;
    height: 50px;
}

.we-care__content {
    margin-left: 20px;
}

.we-care__content ul li {
    font-size: 15px;
    display: inline-block;
    padding-left: 10px;
}

.we-care__content ul li:first-child {
    padding-left: 0;
}

.we-care__title {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.we-care__text {
    font-size: 15px;
    margin: 0;
}

.we-care__title small {
    color: #a1d244;
    font-size: 15px;
    letter-spacing: 0.6px;
}

.why-choose-two {
    position: relative;
    display: block;
    background-color: #f4f5fa;
}

.why-choose-two__top {
    position: relative;
    display: block;
}

.why-choose-two__top-left {
    position: relative;
    display: block;
    margin-right: -33px;
    margin-left: -375px;
}

.why-choose-two__top-img {
    position: relative;
    display: block;
}

.why-choose-two__top-img img {
    width: 100%;
}

.why-choose-two__video-link {
    position: absolute;
    right: 193px;
    bottom: 180px;
}

.why-choose-two__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 147px;
    height: 147px;
    line-height: 97px;
    text-align: center;
    font-size: 25px;
    color: var(--qutiiz-white);
    background-color: #0e1133;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.why-choose-two__video-icon:hover {
    background-color: #0e1133;
    color: var(--qutiiz-white);
}

.why-choose-two__video-icon:before {
    position: absolute;
    top: -17px;
    left: -17px;
    right: -17px;
    bottom: -17px;
    content: "";
    border-radius: 50%;
    z-index: 1;
    border: 1px solid #0e1133;
    opacity: 0.2;
}

.why-choose-two__video-link .ripple,
.why-choose-two__video-icon .ripple:before,
.why-choose-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 183px;
    height: 183px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--qutiiz-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--qutiiz-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--qutiiz-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.why-choose-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.why-choose-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.why-choose-two__right {
    position: relative;
    display: block;
    margin-left: 15px;
}

.why-choose-two__right .section-title {
    margin-bottom: 30px;
}

.why-choose-two__text {
    margin: 0;
    padding-bottom: 29px;
}

.why-choose-two__points {
    position: relative;
    display: block;
}

.why-choose-two__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.why-choose-two__points li+li {
    margin-top: 10px;
}

.why-choose-two__points li .icon {
    position: relative;
    top: 1px;
}

.why-choose-two__points li .icon span {
    font-size: 15px;
    color: #0e1133;
    transform: scale(1);
    transition: all 500ms ease;
}

.why-choose-two__points li:hover .icon span {
    transform: scale(0.85);
}

.why-choose-two__points li .text {
    margin-left: 20px;
}

.why-choose-two__points li .text p {
    font-size: 20px;
    color: #0e1133;
    margin: 0;
}

.why-choose-two__counter {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, .02);
    margin-top: 44px;
    padding-top: 31px;
}

.why-choose-two__counter-icon {
    position: relative;
    top: 11px;
}

.why-choose-two__counter-icon span {
    font-size: 64px;
    color: #0e1133;
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.why-choose-two__counter:hover .why-choose-two__counter-icon span {
    transform: scale(1.2);
}

.why-choose-two__counter-content {
    margin-left: 30px;
}

.why-choose-two__counter-content h3 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: var(--qutiiz-font-two) !important;
    line-height: 60px !important;
}

.why-choose-two__counter-content p {
    margin: 0;
    color: #0e1133;
    line-height: 23px;
}

.why-choose-two__bottom {
    position: relative;
    display: block;
    margin-top: 60px;
    padding-bottom: 90px;
}

.why-choose-two__single {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 38px 40px 38px;
    margin-bottom: 30px;
}

.why-choose-two__icon {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    background-color: #0e1133;
    font-size: 32px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.why-choose-two__icon .icon-suitcase {
    font-size: 28px;
}

.why-choose-two__single:hover .why-choose-two__icon {
    background-color: #0e1133;
}

.why-choose-two__icon span {
    position: relative;
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.why-choose-two__single:hover .why-choose-two__icon span {
    transform: rotate(360deg);
}

.why-choose-two__content {
    margin-left: 20px;
}

.why-choose-two__content-text {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 30px;
    font-weight: 500;
}

.bg-none {
    background: transparent;
}

.get-to-know-two {
    position: relative;
    display: block;
    padding: 80px 0;
}

.get-to-know-two__left {
    position: relative;
    display: block;
    margin-left: 90px;
}

.get-to-know-two__img-box {
    position: relative;
    display: block;
}

.get-to-know-two__img-box:before {
    position: absolute;
    top: 0;
    left: -47px;
    height: 320px;
    width: 17px;
    content: "";
    background-color: #a1d244;
    border-radius: 8px;
}

.get-to-know-two__img {
    position: relative;
    display: block;
    background-color: #0e1133;
    border-radius: 8px;
    overflow: hidden;
}

.get-to-know-two__img:after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}

.get-to-know-two__img-box:hover .get-to-know-two__img:after {
    -webkit-animation: shine 1.5s;
    animation: shine 1.5s;
}

.get-to-know-two__img>img {
    width: 100%;
    border-radius: 8px;
}

.get-to-know-two__small-img {
    border-radius: 8px;
    background-color: #0e1133;
    position: absolute;
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

.get-to-know-two__small-img>img {
    border-radius: 8px;
}

.get-to-know-two__right {
    position: relative;
    display: block;
}

.get-to-know-two__right .section-title {
    margin-bottom: 30px;
}

.get-to-know-two__text {
    margin: 0;
}

.get-to-know-two__bottom {
    position: relative;
    display: flex;
    border-bottom: 1px solid #e2e0e5;
    margin-top: 35px;
    margin-bottom: 39px;
    padding-bottom: 39px;
}

.get-to-know-two__icon {
    position: relative;
    top: 9px;
}

.get-to-know-two__icon span {
    position: relative;
    display: inline-block;
    color: #a1d244;
    font-size: 64px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.get-to-know-two__bottom:hover .get-to-know-two__icon span {
    transform: rotateY(360deg);
    color: #0e1133;
}

.get-to-know-two__content {
    margin-left: 30px;
}

.get-to-know-two__text-2 {
    margin: 0;
}

.get-to-know-two__points-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 38px;
}

.get-to-know-two__points {
    position: relative;
    float: left;
    margin-right: 47px;
}

.get-to-know-two__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.get-to-know-two__points li+li {
    margin-top: 6px;
}

.get-to-know-two__points li .icon {
    position: relative;
    top: 1px;
}

.get-to-know-two__points li .icon span {
    font-size: 15px;
    color: #a1d244;
    transition: all 500ms ease;
    transform: scale(1);
}

.get-to-know-two__points li:hover .icon span {
    transform: scale(0.85);
}

.get-to-know-two__points li .text {
    margin-left: 10px;
}

.get-to-know-two__points li .text p {
    font-weight: 500;
    color: #0e1133;
    margin: 0;
}

.get-to-know-two__points-two {
    margin-right: 0;
}

.jobOpen__title {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 12px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.jobOpen__title small {
    color: #a1d244;
    font-size: 15px;
}

.jobOpen-tags {
    margin: 5px 0 !important;
    padding: 2px 6px;
    display: inline-block;
    border-right: 1px solid #ccc;
    line-height: 12px;
}

.jobOpen-tags:last-child {
    border-right: 0;
}

.why-choose-three {
    position: relative;
    display: block;
    background: #fbfbfb;
    padding: 40px 0px;
}

.why-choose-three__left {
    position: relative;
    display: block;
    max-width: 505px;
    width: 100%;
}

.why-choose-three__left .section-title {
    margin-bottom: 31px;
}

.why-choose-three__text1 {
    color: #a1d244;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.why-choose-three__text2 {
    margin: 0 0 20px;
}

.why-choose-three__tab {
    position: relative;
    display: block;
}

.why-choose-three__tab .tab-buttons {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.why-choose-three__tab .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.why-choose-three__tab .tab-buttons .tab-btn:last-child {
    margin-right: 0px;
}

.why-choose-three__tab .tab-buttons .tab-btn.thm-btn {
    font-size: 15px;
    font-weight: 500;
    padding: 9px 40px 8px;
    color: #ffffff;
    background: #0e1133;
    cursor: pointer;
}

.why-choose-three__tab .tab-buttons .tab-btn.thm-btn::after,
.why-choose-three__tab .tab-buttons .tab-btn.thm-btn.active-btn {
    background: #a1d244;
}

.why-choose-three__tab .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.why-choose-three__tab .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.why-choose-three__tab-inner {
    position: relative;
    display: block;
}

.why-choose-three__tab-inner-text {
    margin: 0;
    margin-bottom: 29px;
}

.why-choose-three__tab-inner-bottom {
    position: relative;
    display: block;
    border-top: 1px solid #dddbe0;
    padding-top: 40px;
}

.why-choose-three__tab-inner-bottom-img {
    position: relative;
    display: block;
    background: #0e1133;
    border-radius: 8px;
    overflow: hidden;
}

.why-choose-three__tab-inner-bottom-img::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    background: #a1d244;
    content: "";
    z-index: 5;
}

.why-choose-three__tab-inner-bottom-img img {
    width: 100%;
    mix-blend-mode: luminosity;
}

.why-choose-three__tab-inner-bottom-text {
    position: relative;
    display: block;
    margin-top: 1px;
}

.why-choose-three__tab-inner-bottom-text ul {
    position: relative;
    display: block;
}

.why-choose-three__tab-inner-bottom-text ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.why-choose-three__tab-inner-bottom-text ul li:last-child {
    margin-bottom: 0px;
}

.why-choose-three__tab-inner-bottom-text ul li p {
    color: #0e1133;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    margin: 0;
}

.why-choose-three__tab-inner-bottom-text ul li p span {
    position: relative;
    display: inline-block;
    color: #a1d244;
    font-size: 15px;
    line-height: 20px;
    padding-right: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-three__tab-inner-bottom-text ul li:hover p span {
    color: #0e1133;
}

.countDownCard {
    background: #161934;
}

.countDownCard .utf-counter-title {
    color: #8fe33e;
}

.homeCIS {
    margin: 0 0 20px;
    padding: 25px 25px 0;
}

.homeCIS h3 {
    font-size: 26px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    margin: 0 0 15px;
}

.homeCIS ul li {
    line-height: 20px !important;
    padding: 0;
}

.homeCIS .services-two__arrow {
    color: #323232;
}

.homeCIS .button.utf-button-sliding-icon {
    width: auto !important;
    padding: 0px 15px;
    font-size: 15px;
}

.barlow-text {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.cardScroll {
    height: 300px;
    overflow: auto;
}

.section-header.section-header--animated.section-header--center.section-header--medium-margin.padding-bottom-20 {
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.topCompanyLogo {
    max-width: 100%;
    width: 120px;
    object-fit: cover;
    height: 45px;
}

.jobimgHead {
    display: flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1645px) {
    #main-slider-pagination {
        left: 52%;
    }

    .main-slider-two-img-1 {
        right: -300px;
    }

    .main-slider-two .container {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .we-care__title {
        margin: 0;
        font-size: 22px;
    }

    .we-care__content ul li {
        line-height: 20px !important;
        font-size: 13px;
    }

    .why-choose-two__top-left {
        margin-left: -170px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-slider-two-arrow {
        right: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-slider-two-arrow {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .main-slider-two-arrow {
        display: none;
    }

    .main-slider-two__content h2 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .main-slider-two__content h2.text-dark {
        color: #fff !important;
        background: rgba(0, 0, 0, .6);
        padding: 50px;
    }

    .main-slider-two-img-1 {
        display: none;
    }

    .main-slider-two-shape-1,
    .main-slider-two-shape-2,
    .main-slider-two-shape-3 {
        display: none;
    }

    .section-title h2 {
        font-style: normal;
        font-size: 30px;
        position: relative;
        z-index: 1;
        font-family: 'Barlow Condensed Medium', sans-serif;
        color: #0e1133;
        line-height: 36px;
        font-weight: 500;
        text-align: center;
    }

    .we-care__inner {
        display: block;
    }

    .we-care__content {
        margin-left: 0;
        text-align: center;
    }
}

.error-message {
    position: absolute;
    top: 12px;
    margin-right: 25px;
    right: 0;
    border-radius: 12px;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    z-index: 2500;
    background-color: rgb(238, 85, 85);
    width: 24px;
    height: 24px;
}

.error-message1 {
    position: absolute;
    margin-top: -57px;
    margin-right: 30px;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.error-message2 {
    position: absolute;
    margin-top: -57px;
    margin-right: 25%;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.error-message3 {
    position: absolute;
    margin-top: 8px;
    margin-right: 7%;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    z-index: 2500;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.date-error-message {
    position: absolute;
    margin-top: 8px;
    margin-right: 17%;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.error-message4 {
    position: absolute;
    margin-top: -40px;
    margin-right: 17%;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.error-message5 {
    position: absolute;
    margin-top: -58px;
    margin-right: 62px;
    right: 0;
    border-radius: 50%;
    content: '!';
    line-height: 24px;
    text-align: center;
    font-size: 20px;
    color: #fff !important;
    background-color: rgb(238, 85, 85);
    padding: 3px 11px;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: .1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.pagination .active {
    background: #a1d244;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 30px !important;
    color: #fff;
    position: relative;
    top: -10px;
}

.pagination ul li.disabled span {
    background: #f0f0f0;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 25px;
    display: inline-block;
    font-size: 24px;
    position: relative;
    top: -10px;
}

.alert {
    border: 1px solid #1371a9;
    background-color: #3fa8f4;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    padding: 8px;
    border-radius: 4px;
    margin: auto;
}

.alert .icon {
    text-align: center;
    line-height: 32px;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.abtImg {
    right: -90px !important;
}

.utf-blog-post-content ul li {
    list-style-type: disc;
    margin-left: 20px;
}

.hiremeegold-features-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/gold/diagonestic-assessment-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeegold-features-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeegold-features-banner h3 {
    color: #8fc740 !important;
}

.hiremeegold-features-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.hiremeGoldTitle h2 {
    font-size: 36px;
    line-height: 40px;
    color: #0e1133;
    display: inline-block;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}

.hgda-img img {
    width: 64px;
    height: 64px;
}

.assessment-report-sec {
    padding: 20px 20px 30px;
}

.assessment-report-sec .hiremeegold-btn {
    box-shadow: none !important;
}

.featured-box h3 {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    margin: 0 0 10px;
}

.lightYellowBg {
    background: #fffbee;
    box-shadow: none;
}

.hiremeegold-webinar-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/gold/webinar-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeegold-webinar-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeegold-webinar-banner h3 {
    color: #8fc740 !important;
}

.hiremeegold-webinar-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.hgjobir p {
    color: #323232;
}

.hiremeegold-digital-calendar-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/gold/digital-calendar-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeegold-digital-calendar-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeegold-digital-calendar-banner h3 {
    color: #8fc740 !important;
}

.hiremeegold-digital-calendar-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.hiremeegold-recruitment-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/gold/recruitment-calendar-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeegold-recruitment-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeegold-recruitment-banner h3 {
    color: #8fc740 !important;
}

.hiremeegold-recruitment-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.hiremeepro-content {
    padding-top: 100px;
}

.hiremeepro-content .title {
    font-size: 36px;
    line-height: 50px;
    color: #fff;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: "Poppins", sans-serif
}

.hiremeepro-content .title span {
    color: #fff;
}

.hiremeepro-content p {
    color: #fff;
}

.hiremeepro-thumb {
    padding-top: 85px;
    text-align: right;
    padding-bottom: 65px;
    padding-right: 50px;
}

.hiremeepro-content ul li {
    margin-right: 10px;
}

.hiremeepro-online-assessmment-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/gold/recruitment-calendar-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeepro-online-assessmment-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeepro-online-assessmment-banner h3 {
    color: #8fc740 !important;
}

.hiremeepro-online-assessmment-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.map-legend {
    padding: 16px;
    border-radius: 6px;
    min-height: 120px;
    background: #9bcd54;
    color: #094f1c;
}

.map-legend h4 {
    font-size: 18px;
}

.map-legend p {
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.jsmaps-text {
    padding: 16px;
    border-radius: 6px;
    min-height: 120px;
    background: #9bcd54;
    color: #094f1c;
    position: relative;
    color: #ffffff;
    height: auto !important;
}

.jsmaps-text h1 {
    width: 100%;
    font-size: 18px;
    background: #66902a;
    padding: 12px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.jsmaps-text h2 {
    width: 100%;
    font-size: 20px;
    padding: 0 0 12px;
    font-weight: 600;
    text-align: center;
    font-family: "Barlow Condensed", sans-seri;
    margin: 0;
}

.jsmaps-text h3 {
    text-align: center;
}

.jsmaps-text h2 .data {
    display: block;
    margin: 8px;
    font-size: 56px;
    font-weight: 500;
    text-align: center;
}

.parallax-container-counter {
    text-align: center;
    min-height: 300px;
    padding: 48px 0;
    color: #ffffff;
    line-height: 60px;
}

.parallax-container-counter h4 {
    font-size: 32px;
    font-weight: 400;
}

.parallax-container-counter h1 {
    font-size: 72px;
    font-weight: 500;
}

.parallax-container-counter h4 {
    font-size: 32px;
    font-weight: 400;
}

.hiremeepro-solution-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/products/hiremeepro/test-library.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.hiremeepro-solution-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.hiremeepro-solution-banner h3 {
    color: #8fc740 !important;
}

.hiremeepro-solution-banner p {
    color: #fff !important;
    padding-top: 10px;
}

.hiremeepro-intro-area {
    position: relative;
    z-index: 11;
    padding: 50px 0 100px;
    background: #FFFBEE;
    position: relative;
    overflow: hidden;
    background-image: url(../images/products/hiremeepro/hiremepro-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.hiremeepro-intro-area .parallax-container-counter {
    text-align: center;
    margin: 30px 0 0;
    padding: 48px 20px;
    color: #8fc740;
    line-height: 60px;
    background: #0b6624;
    width: 100%;
    margin: 0 0 50px;
}

.hiremeepro-intro-area .parallax-container-counter h4 {
    color: #a1d244;
}

.hiremeepro-intro-area .parallax-container-counter h1 {
    color: #fff;
}

.hiremeeproGreen-bg {
    background: #0b6624;
    padding: 50px 20px;
}

.hiremeeproGreen-bg h2 {
    color: #fff;
}

.hiremeeproGreen-bg h4 {
    color: #8fc740 !important;
}

.video-demo-wrapper {
    width: 680px;
    margin: 8px auto;
    margin-bottom: 24px;
}

.video-demo-wrapper .embed-responsive {
    height: 383px !important;
}

.video-demo-wrapper iframe {
    width: 100%;
    height: 100%;
}

.norecordImg {
    width: 100px;
}

.pricingSec .accordion-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 3px solid #fff !important;
    color: #000;
}

.pricingSec .utf-accordion-content {
    padding: 25px;
    font-size: 15px;
    line-height: 28px;
    border: 1px solid #f7f7f7;
    border-top: 0;
}

.pricingSec .price_contactus_form {
    width: 90%;
}

.pricingSec .accordion-header img {
    width: 24px;
    margin-right: 10px;
}

.price_contactus_form textarea.utf-with-border {
    border: 1px solid rgba(26, 15, 9, 0.1);
    background: #fbfdff !important;
}

.goldBtn {
    color: #D5AD6D;
    background: -webkit-linear-gradient(transparent, transparent), -webkit-linear-gradient(top, rgba(213, 173, 109, 1) 0%, rgba(213, 173, 109, 1) 29%, rgba(226, 186, 120, 1) 35%, #b37615 45%, rgba(145, 112, 59, 1) 80%, rgb(233 191 122) 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 800;
    border: 1px solid;
    padding: 10px;
    border-radius: 8px;
    margin: 0 10px;
}

.goldBtn:hover {
    color: #ecc27f;
}

.Silverbtn {
    color: #f9f2f2;
    background: -webkit-linear-gradient(transparent, transparent), -webkit-linear-gradient(top, rgb(255 255 255) 0%, #8c8c8c 29%, #9f9f9f 35%, #e9e2e2 45%, #9b9790 80%, #8c8c8c 100%);
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 800;
    border: 1px solid;
    padding: 10px;
    border-radius: 8px;
    margin: 0 10px;
}

.Silverbtn:hover {
    color: #fff;
}

.activeGoldPrice h3 {
    font-size: 18px;
    line-height: 22px;
    color: #0e1133;
    display: inline-block;
    font-family: 'Barlow Condensed Medium', sans-serif;
    padding: 10px 0 0;
}

.priceAmount {
    background: #FFC000;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 30px;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    border-radius: 15px;
    margin: 0 0 20px;
}

.activeGoldPrice img.abcImg {
    width: 40px;
    opacity: 0.6;
}

.activeGoldPrice .featured-box {
    padding: 7px 30px;
}

.gold-radio {
    margin: 0.5rem;
}

.gold-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.gold-radio input[type="radio"]+.radio-label:before {
    content: '';
    background: #ebebeb;
    border-radius: 100%;
    border: 1px solid #b3b3b3;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: 4px;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
}

.gold-radio input[type="radio"]:checked+.radio-label:before {
    background-color: #8fc740;
    box-shadow: inset 0 0 0 4px #ebebeb;
}

.gold-radio input[type="radio"]:focus+.radio-label:before {
    outline: none;
    border-color: #986703;
}

.gold-radio input[type="radio"]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #FFCF56;
    border-color: #d69900;
    background: #d69900;
}

.gold-radio input[type="radio"]+.radio-label:empty:before {
    margin-right: 0;
}

.subHeader-product {
    background: #f3fff6;
    padding: 12px;
    text-align: center;
}

.subHeader-product .mainMenu ul li a {
    color: #064b19 !important;
}

.fontFamily-Barlow {
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.comDashboard {
    position: inherit !important;
}

.yellowBtnBg {
    background: #edc24f !important;
    padding: 15px 20px !important;
    text-align: center;
    color: #222 !important;
}

.totalBtnBg {
    background: #0b6624 !important;
    padding: 15px 20px !important;
    text-align: center;
    color: #ffffff !important;
}

.btnSmall {
    padding: 4px 0 5px 10px !important;
}

@media (max-width: 320px) {
    .video-demo-wrapper {
        width: 304px !important;
    }

    .video-demo-wrapper .embed-responsive {
        height: 171px !important;
    }
}

@media(max-width: 425px) {
    .video-demo-wrapper {
        width: 304px !important;
    }

    .video-demo-wrapper .embed-responsive {
        height: 171px !important;
    }

    .get-to-know-two__small-img {
        border-radius: 8px;
        background-color: #0e1133;
        position: absolute;
        bottom: 25px;
        left: -60px;
        z-index: 1;
        width: 100px;
    }

    .get-to-know-two__img-box:before {
        height: 130px;
    }

    .get-to-know-two__left {
        margin-left: 60px;
    }

    .get-to-know-two__right .section-title {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .get-to-know-two {
        padding: 60px 0;
    }

    .services-two {
        padding: 60px 0;
    }

    .we-care__img {
        margin: 0 auto;
    }

    .we-care__title {
        width: 100%;
        font-size: 20px;
        margin: 0;
    }

    .why-choose-two__top-img img {
        display: none;
    }

    .why-choose-two__right {
        margin-left: 0;
    }

    .why-choose-two {
        padding: 50px 20px;
    }

    .why-choose-one::before {
        background: transparent;
    }

    .counter-one {
        padding: 250px 0px 0;
    }

    .jobilty-banner {
        height: 350px;
    }

    .hiremeegold-thumb {
        padding-bottom: 0;
        padding-right: 0;
    }

    .hiremeegold-content .title {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hiremeegold-content p,
    .hiremeegold-content ul li {
        text-align: center;
    }

    .hiregold-features-box {
        padding: 25px;
        text-align: center;
        margin: 20px 0 0;
    }

    .hiregold-features-item ol {
        text-align: left;
        padding: 0 0 0 20px;
    }

    .hiregold-features-box {
        background-image: none;
    }

    .intro-content {
        padding: 20px;
    }

    .intro-area {
        z-index: 11;
        padding: 50px 0;
        background: #FFFBEE;
        position: relative;
        overflow: hidden;
    }

    .intro-area::before {
        height: 100%;
    }

    .hiremeegold-btn {
        background-color: #155b43;
        margin: 0 0 10px;
        padding: 0 15px 0 15px;
        color: #FFC000;
        text-transform: uppercase;
    }

    /* .service-card .section-title p {
        text-align: center;
    } */

    .testimonials-section {
        padding: 50px 0 0;
    }

    .hero-content-left h1 {
        font-size: 30px !important;
        font-weight: inherit !important;
        line-height: 70px;
        padding-top: 30px;
    }

    .bottom-shape-img {
        display: none;
    }

    .bannerBg .utf-left-side {
        padding: 20px 0;
        text-align: center;
    }

    .followUp .followers {
        font-size: 20px;
        line-height: 26px;
    }

    .dynamicHeader {
        height: 12vh;
    }

    .section-title__tagline {
        text-align: center;
    }
}

#job-application-form label {
    font-size: 15px !important;
    font-weight: 400 !important;
}

#job-application-form input,
#job-application-form input[type=email],
#job-application-form input[type=number],
#job-application-form input[type=password],
#job-application-form input[type=text],
#job-application-form select {
    height: 42px;
    line-height: 42px;
    font-size: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: none;
    border-bottom: 2px solid #ede6e6;
    border-radius: 0px;
}

#job-application-form textarea {
    box-shadow: none;
    border: none;
    line-height: 20px;
    border-bottom: 2px solid #ede6e6;
}

#job-application-form .bootstrap-select.btn-group button {
    background-color: #fff;
    box-shadow: none;
    border-bottom: 2px solid #ede6e6;
}

#job-application-form select {
    padding: 10px 16px;
}

.radio-input input {
    margin-top: -4px;
    margin-right: 10px;
    margin-bottom: 0px !important;
    height: auto !important;
}

.check-input input {
    width: 20px !important;
    box-shadow: none;
    margin-top: -8px;
    margin-right: 10px;
}

.custom-modal-color {
    background-color: #edeaea;
}

#job-application-form .utf-no-border {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eae4e4;
    margin-bottom: 13px;
}

.pop-buttons-pos {
    margin-top: 2rem;
}

.pop-buttons-pos .theme-btn {
    text-transform: capitalize !important;
}

@media (max-width: 768px) {
    .custom-modal-color {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

#job-application-form .textarea {
    font-size: 15px;
    background-color: #fff;
    padding: 1px 6px;
}

#job-application-form .input-wrap {
    position: relative;
}

#job-application-form .input-wrap .input {
    position: absolute;
    width: 100%;
    left: 0;
}

#job-application-form .width-machine {
    padding: 0 1rem;
}

#job-application-form .textarea {
    display: block;
    width: 100%;
    overflow: hidden;
    resize: both;
    min-height: 40px;
    line-height: 20px;
}

#job-application-form .textarea[contenteditable]:empty::before {
    content: "Placeholder still possible";
    color: gray;
}

#job-application-modal select {
    z-index: 9002;
}

.homeAppSec h2 {
    font-size: 36px
}

.why-choose-two__top .AppListimg img {
    width: 55px;
    margin-right: 18px;float: left;
}

.why-choose-two__top .AppListimg li {
    font-size: 16px;
    padding: 0 0 15px;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
}
.why-choose-two__top .AppListimg li span{   font-size: 24px;
    color: #8fe33e;}

.institutionPartLogo {
    padding: 10px;
    height: 190px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.institutionPartLogo img {
    width: 100px !important;
    position: inherit !important;
    transform: inherit !important;
    padding: 0 !important;
    top: 0 !important;
    height: 100px !important;
    margin: 0 auto 5px !important;
    object-fit: contain;
}

.institutionPartLogo p {
    display: flex;
    justify-content: center;
    align-items: end;
    line-height: 20px;
    font-size: 13px;
}

.utf-institution-partners-carousel .slick-slide {
    display: block;
    background: #fff;
    margin: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
    text-align: center;
}

.utf-institution-partners-carousel .slick-next,
.utf-institution-partners-carousel .slick-prev {
    top: calc(50% - 0px) !important;
}

.why-choose-two__right {
    padding-top: 80px;
    padding-bottom: 80px;
}

.btnoutlineGold {
    background: transparent !important;
    border: 1px solid #FFC000 !important;
    color: #FFC000 !important;
    padding: 15px 20px !important;
}

.btnoutlineGold:hover {
    background: #FFC000 !important;
    color: #0B6749 !important;
    border: 1px solid #FFC000 !important;
}

.btnFillGold {
    background: #FFC000 !important;
    color: #0B6749 !important;
    border: 1px solid #FFC000 !important;
    padding: 15px 20px !important;
}

.btnFillGold:hover {
    background: transparent !important;
    border: 1px solid #FFC000 !important;
    color: #FFC000 !important;
}

.highlight-text {
    color: #a1d244;
    text-decoration: underline;
}

.hiremeegold .main-btn2 {
    display: inline-block;
    position: relative;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 42px 0 38px;
    font-size: 17px;
    height: 60px;
    line-height: 62.5px;
    border-radius: 40px;
    color: #0B6749;
    z-index: 5;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    letter-spacing: -0.02em;
    background-color: #FFC000;
    -webkit-box-shadow: 0px 10px 30px rgb(255 190 0 / 20%);
    box-shadow: 0px 10px 30px rgb(255 190 0 / 20%);
}

.corporateLogo {
    padding: 10px;
    height: 120px !important;
    display: flex !important;
    align-items: center;
}

.corporateLogo img {
    width: 100px !important;
    position: inherit !important;
    transform: inherit !important;
    padding: 0 !important;
    top: 0 !important;
    height: 100px !important;
    margin: 0 auto 5px !important;
    object-fit: contain;
}

@media (320px <=width <=768px) {
    .why-choose-two__top .AppListimg li {
        font-size: 15px;
        padding: 0 0 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        align-items: center;
    }

    .homeAppSec h2 {
        font-size: 30px;
    }

    .slideBg {
        background: none;
    }
}

.jobListpage .candidateJobs {
    padding: 0;
    height: 100%;
    float: left;
    margin: 0 0 20px;
    background: #fff;
    -webkit-box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    border-radius: 6px;
    text-align: center;
    width: 100%;
}

.jobListpage .candidateJobs p {
    margin: 0;
    font-size: 12px;
    line-height: 20px;
}

.jobListpage .candidateJobs .link-btn {
    border: 0;
    height: 75px;
}

.jobListpage .candidateJobs .events__title {
    background: #eff0f0;
    border-radius: 50px;
    padding: 5px 0;
    font-size: 20px;
}

.job-industry {
    margin: 20px 0;
}

.btnLoginGold {
    background: #fff !important;
    color: #13523f !important;
    padding: 15px 40px !important;
    border-radius: 40px !important;
    min-width: 200px;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    text-align: center;
}

.jobOppList .jobOpp {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    background: #a1d244;
    display: inline-block;
    line-height: 15px !important;
    font-weight: 500 !important;
    margin: 0;
}

.jobOppList li {
    color: #222;
    padding: 2px 2px 2px 5px !important;
    display: inline-block !important;
    margin: 0 auto;
    font-size: 11px !important;
    border-radius: 10px !important;
}

.jobOppListLogo {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
}

.careers-description {
    font-size: 12px;
    line-height: 20px;
    width: 100%;
    padding: 0;
    margin: 10px 0 0;
    background: #fff;
}

.careers-list {
    border-right: 1px solid #e7e7e7;
    margin-bottom: 10px;
    padding: 0 30px;
}

.careers-description ol {
    padding: 0 15px;
}

.careers-description ul li {
    margin-left: 0 !important;
}

.careers-description p {
    font-size: 13px !important;
}

.careers-bottom {
    border-bottom: 3px solid #e8e8e8;
}

.careersFormHead {
    line-height: 40px;
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-align: center;
    font-size: 36px;
}

.companyDefaultBg {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px !important;
    padding-top: 100px !important;
    background-image: url(../images/company/comapny-banner-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.companyDefaultBg .container {
    position: relative;
    z-index: 3
}

.companyDefaultBg h1 {
    margin-bottom: 36px;
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.companyDefaultBg h1 span {
    font-size: 35px;
    display: inline;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
}

.companyDefaultBg p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #fff
}

.companyTestimonial {
    margin: 0;
    text-align: left
}

.companyTestimonial iframe {
    width: 100%;
    height: 100%;
}

.companyTestimonial .slick-dots {
    display: none;
}

.companyTestimonial .designation {
    margin-left: 0;
    margin-bottom: 25px;
}

.companyTestimonial .slick-dots {
    position: inherit !important;
    top: 0 !important;
    right: 0 !important;
}

.companyTestimonial .testimonial-content {
    text-align: left;
}

.companyTestimonial .utf-testimonial-box {
    margin: 0 !important;
}

.collegeDefaultBg {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px !important;
    padding-top: 100px !important;
    background-image: url(../images/colleges/college-campus-placement.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.collegeDefaultBg .container {
    position: relative;
    z-index: 3
}

.collegeDefaultBg h1 {
    margin-bottom: 36px;
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.collegeDefaultBg h1 span {
    font-size: 35px;
    display: inline;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
}

.collegeDefaultBg p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #fff
}

.collegeDefaultBg p a {
    color: #fff;
    text-decoration: underline;
}

.job-captain-college-bg {
    background: url(../images/colleges/web_job_caption_bg-hme-web.jpg) no-repeat, #ffffff;
    width: 100%;
    display: inline-block;
    position: relative;
    min-height: 320px !important;
    z-index: 100;
    background-size: cover;
}

.job-captains-banner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url(../images/jobs/job-caption.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 2
}

.job-captains-banner h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 500;
    color: #fff;
    font-family: 'Barlow Condensed Medium', sans-serif;
    text-transform: uppercase;
}

.jobDetailList {
    max-height: 300px;
    overflow: auto;
}

.modal_processing {
    font-family: 'Barlow Condensed Medium', sans-serif;
}

.fontWeight-500 {
    font-weight: 500 !important;
}

.topfresh-employee h4 {
    font-size: 20px;
}

.btn-secondary-theme {
    background: #0b6624;
    padding: 5px 20px;
    border-radius: 3px;
    color: #fff;
}

li.list-group-item {
    padding: 0 0 10px;
}

.jobListpage .events__item-inner:hover {
    box-shadow: 0 2px 18px rgb(0 0 0 / 14%);
    transform: scale(1.01);
}

a#category-job-view:hover {
    color: #7dc246 !important;
}

.category__item .check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 13px;
}

@media (320px <=width <=768px) {
    .collegesbannerBg .mockup-top {
        display: none;
    }
}

input::placeholder {
    color: #262d3d;
}

textarea::placeholder {
    color: #262d3d;
}

.padding-20 {
    padding: 20px;
}

.testimonialHead {
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    font-size: 20px !important;
}

.platform-content h3 {
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
}

.theme-darkBtn {
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 40px 12px;
    text-transform: uppercase;
    background: #0b6624;
}

.theme-darkBtn:hover {
    background: #8fc740;
}

.cursorDefault {
    cursor: default;
}

.primaryHeadTxt {
    font-size: 36px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    color: #0e1133;
}

.secondaryHeadTxt {
    font-size: 22px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    color: #0e1133;
}

.termsofuse-section p strong,
.termsofuse-section ol li strong {
    font-size: 20px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    color: #24ca52;
    display: block;
}

.utf-footer-item-links ul.assoCertifi li a {
    text-align: center !important;
}

.hiremeegold-content .logCallbtn,
.intro-content .logCallbtn {
    display: flex;
}

.frequently-asked-questions .logCallbtn {
    display: flex;
    justify-content: center;
}

.hiremeegold-content .main-btn2,
.logCallbtn .hiremeegold-btn,
.frequently-asked-questions .logCallbtn .hiremeegold-btn {
    margin-right: 10px;
}

.online-exam-testimonials iframe {
    margin-bottom: 10px;
}

.scaleNone {
    transform: none !important;
}

.main-slider-content-bg {
    background: rgba(0, 0, 0, .6);
    padding: 50px;
}

.main-slider-two__content h2.text-dark {
    color: #323232;
}

@media (991px <=width <=1440px) {
    .main-slider-two .swiper-slide {
        height: 400px;
    }

    .main-slider-content-bg {
        background: rgba(0, 0, 0, .6);
        padding: 25px;
    }

    .main-slider-two__content h2 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .main-slider-two__content p {
        font-size: 16px !important;
        line-height: 20px;
    }
}

@media only screen and (max-width: 350px) {
    .g-recaptcha {
        transform: scale(0.75);
        -webkit-transform: scal(0.75);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 350px) and (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.95);
        -webkit-transform: scal(0.95);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 577px) and (max-width: 767px) {
    .g-recaptcha {
        transform: scale(0.95);
        -webkit-transform: scal(0.95);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .g-recaptcha {
        transform: scale(0.99);
        -webkit-transform: scal(0.99);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1250px) {
    .g-recaptcha {
        transform: scale(0.74);
        -webkit-transform: scal(0.74);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

@media only screen and (min-width: 1250px) {
    .g-recaptcha {
        transform: scale(0.71);
        -webkit-transform: scal(0.71);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

.hiregold-features-item ol li {
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 5px;
}

.no-record-found {
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding: 20px 20px 5px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    text-align: center;
    color: #fc4646;
    width: 100%;
}

.followUp .totalBtnBg {
    margin-right: 10px;
}
.companyJobOpen {
    position: relative;
    display: flex;
    /* align-items: center; */
    background: #fff;
    box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
    padding: 15px;
    border-radius: 8px;
    height: 100%;
    flex-direction: column;
    border: 0;
    justify-content: center;
}
.companyJobOpen .category__title {
    font-weight: 500;
    text-align: left;
    line-height: 26px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-size: 20px;
}
.companyJobOpen p {
    font-size: 13px;
    float: left;
    width: 100%;
    padding: 5px 0 0;
}

.list-2 li {
    margin: 10px 0 0 25px;
    font-size: 14px;
}

.corporate-main {
    background: #fafafa;
}

.corporate-main .primaryHeadTxt {
    line-height: 40px;
}

.subHeader-product #navigation ul ul li {
    width: 300px;
    text-align: left;
}

.proex-Assess h1 {
    font-size: 50px;
}

.entry-icon .btnSmall {
    padding: 0px 0 0 10px !important;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    background: #0b6624;
    color: #fff;
}




/* YOUTUBE VIDEO CSS START */
.youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 5px;
  }
  
  .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
  }
  
  .youtube-player img {
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
  }
  
  .youtube-player img:hover {
    -webkit-filter: brightness(75%);
    -moz-filter: brightness(75%);
    filter: brightness(75%);
  }
  
  .youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    margin-left: -36px;
    margin-top: -36px;
    position: absolute;
    background: url("../images/YT-play-button.png") no-repeat;
    cursor: pointer;
  }
  
/* YOUTUBE VIDEO CSS END */






@media (320px <=width <=768px) {
    .ch-section-title h1, .ch-section-title h3{
        text-align: center;
    }
    .utf-blog-post-thumbnail-inner img {
        height: 150px;
    }

    #navigation ul li ul {
        left: -30px;
    }

    .hiremeegold-content .secondaryHeadTxt {
        text-align: center;
    }

    .hiremeegold-content .logCallbtn,
    .intro-content .logCallbtn,
    .frequently-asked-questions .logCallbtn {
        text-align: center;
    }

    .hiremeegold-content .logCallbtn,
    .intro-content .logCallbtn,
    .frequently-asked-questions .logCallbtn {
        display: inherit;
    }

    .hiremeegold-content .main-btn2 {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .blog-post.single-post .utf-blog-post-thumbnail {
        height: 100%;
        position: inherit !important;
    }

    .entry-icon .btnSmall {
        width: 100% !important;
    }

    .homeCIS {
        padding: 25px;
    }

    .main-slider-two__content {
        text-align: center;
    }

    .we-care__content ul li {
        font-size: 13px;
    }

    .main-slider-content-bg {
        padding: 30px;
    }

    .top-header-full {
        width: 100%;
    }

    .corStudentSec {
        text-align: center;
    }

    .abtImg {
        right: -57px !important;
    }

    .about__review {
        padding: 5px 10px;
    }

    .platform-content h3 {
        padding-bottom: 10px;
    }

    .why-jobility {
        padding: 60px 0;
    }

    .counter-one__right-box {
        display: block;
    }

    .features-one {
        padding: 60px 0px;
        margin: 0;
    }

    .features-one__single {
        padding: 15px 40px;
    }

    .about-one {
        padding: 60px 0;
    }

    .counter-one__right-text {
        font-size: 15px;
    }

    .jobilty-abt-p {
        font-size: 18px;
        line-height: 26px;
        color: rgb(104 142 30);
    }

    .hero-action .theme-btn,
    .hero-action a.theme-btn,
    .hero-action .theme-darkBtn {
        width: 250px;
        margin: 5px 0 !important;
    }

    .hiremeGoldTitle h2 {
        padding-bottom: 20px !important;
    }

    .subHeader-product #navigation {
        position: inherit;
    }
}
.whatsapp-link {
     position: fixed;
     bottom: 1%;
     left: 1%;
     width:55px;
     z-index: 999;
}
.zsiq_theme1 div.zsiq_cnt{
    display:none !important;
}

#job-application-form .bootstrap-select.btn-group .dropdown-menu.inner
{
    overflow: auto !important;
    max-height: 140px !important;
}
.dynamic-single-blog p {display: block !important;}
.utf-blog-post-content p a b {color: #62bb0d;font-weight: normal;}
.awardBannerHome{padding-top:50px !important;padding-bottom:50px !important;}



  /* HEET EXAM CSS START 09Mar2023 */
  .hero-19 {
    background-color: #f2f2f2;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.hero-19 .hero-19-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}
.fw-semibold {
    font-weight: 700;
}
.bg-digital-marketing .digital-hero {
    border-bottom-left-radius: 10% !important;
}
.bg-digital-marketing .watch-video {
    position: absolute;
    bottom: -10px;
    left: 10px;
}

.hero-19 .secondaryHeadTxt {
    font-size: 30px;
    font-family: 'Barlow Condensed Medium', sans-serif;
    font-weight: 500;
    color: #636363;
    line-height: 36px;
    margin-top: 20px;
}
.hero-19 h1 {
    font-size: 60px;
}

.heet-exam-second .section-title-badge {
    background-color: rgba(224 138 33 / 29%);
    padding: 10px 20px;
    color: #e08a21;
    border-radius: 4px;
}
section.heet-exam-second {
    padding: 80px 0;
}
section.heet-exam-second .features-1 img {
    border-bottom-right-radius: 10% !important;
}
section.heet-exam-second .features-border:before {
    background: #f9f9f9;
    width: 100%;
    content: '';
    position: absolute;
    height: 400px;
    left: 0;
}
.secound-image {
    position: relative;
    margin-top: -130px;
    /* left: 0; */
    float: right;
    left: -100px;
}
.heet-date{
    color: #0b6624;
    font-weight: 600;
    font-size: 14px !important;
    margin: 0;
   /* text-transform: uppercase;*/
}
.heet-date span{
    color:#8fc740
}
.heet-copany-logo{ background:#f9f9f9}
  /* HEET EXAM CSS END */
  .heet-date span{
    color: #8fc740;
    text-transform: uppercase;
    font-size: 16px;
}
.heet-copany-logo{ background:#f9f9f9}


.floating-menu{z-index:999;padding-top:0;padding-bottom:0;    
    right: -82px;position:fixed;display:inline-block;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);transform: rotate(90deg);box-shadow: 0 1px 8px rgb(0 0 0 / 15%);    width: 200px;}

.heetBannerBtn{
    background: #0b6624 !important;
    border: 1px solid #0b6624 !important;
}
.heetBannerHead {
    font-size: 8em !important;
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: #3e3f45;
    -webkit-animation: fill 0.5s infinite alternate;
    letter-spacing: 8px;
    margin-bottom:30px !important;
    margin-top: 30px !important;
  }
  
  @-webkit-keyframes fill {
    from { -webkit-text-fill-color: #a1d244; }
    to { -webkit-text-fill-color: #0b6624; }
  }


      .home-heet-sec{
        background:#025660;
        position: relative;
        display: block;
        padding: 0;
      }
      .home-heet-sec h2{
        color: #8fe33e;
    margin-bottom: 0;
    line-height: 60px;
    font-size: 36px;
    font-family: 'Barlow Condensed Medium', sans-serif;
      }
      .home-heet-sec h3 {
        font-size: 22px;
        color: #fff;
        margin-bottom: 10px;
    }
    .home-heet-sec p{ color: #fff;    font-size: 23px;
        font-family: 'Barlow Condensed Medium', sans-serif;}
    .heetDate{
        color: #fff;
        background: #0b3a3f;
        padding: 15px;
        border-radius: 10px;
    }
    .heetDate small{
        color:rgba(255, 255, 255, 0.5); text-transform:uppercase
    }
    .heetDate p{ margin:0;}
    .heetSlider{ display: block;}
    .heetSliderMob{ display: none;}
    @media (320px <=width <=768px) {
        .heetSlider{ display: none;}
        .heetSliderMob{ display: block;}
        .heetBannerHead{
            font-size: 5em !important;
            letter-spacing: 0px !important;
        }
    }
  /* HEET EXAM CSS END */
.termCheck{
    background: transparent !important;
    box-shadow: none !important;
    float: left;
    width: 16px !important;
    margin: 0 6px 0 0 !important;
    height: 20px !important;
}


/* MEGA MENU CSS START 2 */
.menu {
    width: 100%;
    display: flex;
    padding: 15px 0;
}
.menu-container {
  margin: 0 auto;
  background: #e9e9e9;
}
.menu a.logo {
    padding: 0;
    display: flex;
    align-items: center
}
.menu img {
    max-width: 100%;
}
.menu-mobile {
  display: none;
  /* padding: 20px; */
}
/* .menu-mobile:after {
    font-family: Feather-Icons;
    content: '\e98f';
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
.menu-mobile:before {
    font-family: 'Line-Awesome';
    content: '\f191';
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
} */
.menu-dropdown-icon:after {
    
    font-family: Feather-Icons;
    content: '\e92e';
    
    
    display: flex;
  cursor: pointer;
  float: right;
  padding: 0;
  background: #fff;
  color: #333;
  align-items: center;
}
.menu > ul {
    margin: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
      clear: right;
      display: flex;
      justify-content: end;
}
.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}
.menu > ul:after {
  clear: both;
}
.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;    display: flex;
}
.menu > ul > li a {
  text-decoration: none;
  padding: 1em 1em;
  display: block;
 /* text-transform: uppercase;*/
  font-size: 14px;
  /* font-weight: 600;
  letter-spacing: 0.6px; */
}

.menu > ul > li:hover {
  /* background: #f0f0f0; */
  color:#ff0000
}
.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #fcfcfc;
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  top: 65px;
  box-shadow: 5px 10px 15px 0 rgba(0, 0, 0, .09);
}
.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}
.menu > ul > li > ul > li a {
  color: #777;
  padding: .2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
}
.menu > ul > li > ul > li a:hover{
    color:#4caf50;
}
.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 15px;
  list-style: none;
  box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}
.menu > ul > li > ul > li > ul:after {
  clear: both;
}
.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: .8em;
}
.menu > ul > li > ul > li > ul > li a {
  border: 0;    
  font-size: 14px;
    text-transform: inherit;
    letter-spacing: inherit;
    font-weight: normal;
    color: #323232;
}
.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;top: 65px;
}
.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 0 0 0.5rem;font-size: 14px;
  text-transform: inherit;
}
.menu > ul > li > ul > li h3 {
    font-size: 18px;
    color: #4CAF50;
    background: #f6f6f6;
    margin: 0 15px 0 0;
     padding: 0;
    border-bottom: 1px solid #ccc;
}
.menu > ul > li > ul > li h3 a{
    font-size: 13px;
    color: #4CAF50;
    margin: 0;
    padding: 5px 0;
    border: 0;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 959px) {
    .menu{
        display: inline-block;
    
    }
    .menu a.logo{
        display: inline-block;
    }
  .menu-container {
    width: 100%;
  }
  .menu-container .menu{
    display:inline-block;
   }
  .menu-mobile {
    display: block;    
    /* float: right;    
    padding: 20px 20px 0; */
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  /* .menu{display: inherit;} */
  .menu > ul {
    display: none;
    width:100%;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
    position: relative;
  }
  .menu > ul > li a {
    padding: 10px 0;
    width: 100%;
    display: block;
    font-family: 'Roboto', sans-serif;
  }
  .menu > ul > li > ul {
    position: relative;    
    padding: 20px;
    top: 0;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%; top: 0;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
}

/* MEGA MENU CSS END 2*/
.menu-mobile
{
    width: 25px;
    height: 2px;
    background: #5c5c5c;
    position: absolute;
    transition: .5s;
    cursor: pointer;
    top:80px;
    right: 20px;
}

.menu-mobile:before,
.menu-mobile:after
{
    content:'';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #5c5c5c;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
    transition: .5s;
    top:20px;left: 0;
}
.menu-mobile:before
{
    top: -8px;
}
.menu-mobile:after
{
    top: 8px;
}
.menu-mobile.active
{
    background: rgba(0,0,0,0);
}
.menu-mobile.active:before
{
    top:0;
    transform: rotate(45deg);
}
.menu-mobile.active:after
{
    top:0;
    transform: rotate(135deg);
}

.leader-team-name{
    /* background: #e9ffef; */
    padding: 20px;
    width: 100%;
    text-align: center;
    /* height: 90px;
    display: flex;
    align-items: center;
    flex-direction: column; */
    /* justify-content: center; */
}
.leader-team-name h5{
    font-size: 22px;font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
}
.certiﬁcation-name {
    background: #e9ffef;
    padding: 20px;
    width: 100%;
    text-align: center;
    height: 120px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.certiﬁcation-name h5{
    /* font-size: 22px; */
    font-weight: 500;
    font-family: 'Barlow Condensed Medium', sans-serif;
    line-height: 24px;
}
.abt_height h5{
    font-size: 22px;
}
.certiﬁcation-name small {
    font-size: 80%;
    line-height: 20px;
}
.certiﬁcation__thumb img{ padding: 30px;}
.abt-thumb-img img{ padding: 0;}
.abt_height{ height: 100%;}


ul.mouList li {
    border-bottom: 1px solid #f6f6f6;
    list-style: none;
    line-height: 30px !important;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background: #fff;
    margin: 0 0 3px;
}
ul.mouList li a{
    display: block; padding: 5px 15px;
}
ul.mouList li:hover a{
    background: #e9ffef;   
}
@media only screen and (max-width: 959px) {
    /* #header{
        position: fixed;    width: 100%;
    } */
    /* .main-slider-two
    {
        padding-top: 100px;
    } */
    .menu-dropdown-icon:after {
        position: absolute;
        right: 0;
        top: 3px;
        padding: 5px 8px;    background: #f5f5f5;

    }
    
    }



    
.download-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  .download-card {
    display: flex;
    flex-direction: column;
    width: calc(100% - 2em);
    background: #fbfbfb;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2em;
    box-shadow: 0 1px 25px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #d2d2d2;
    border-left: 1px solid #dadada;
    margin: 0 1em 2em 1em;
  }
  @media (min-width: 700px) {
    .download-cards[data-view=grid-view] .download-card {
      float: left;
      width: calc( 50% - 2em );
    }
    .download-cards[data-view=grid-view] .download-card:nth-child(3) {
      clear: both;
    }
    .download-cards[data-view=grid-view] .download-card:nth-child(4) {
      clear: initial;
    }
  }
  @media (min-width: 1000px) {
    .download-cards[data-view=grid-view] .download-card {
      width: calc( (100% / 3) - 2em );
    }
    .download-cards[data-view=grid-view] .download-card:nth-child(3) {
      clear: initial;
    }
    .download-cards[data-view=grid-view] .download-card:nth-child(4) {
      clear: both;
    }
  }
  .download-card__icon-box {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 2em;
    text-align: center;
  }
  @media (min-width: 700px) {
    .download-card__icon-box {
      justify-content: center;
    }
  }
  .download-card__icon-box img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  @media (min-width: 700px) {
    .download-cards[data-view=list-view] .download-card__icon-box {
      width: 200px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-right: 1px solid #e6e6e6;
    }
  }
  .download-card__content-box {
    padding: 2em 2em 3em;
    flex: 1;
  }
  @media (min-width: 700px) {
    .download-cards[data-view=list-view] .download-card__content-box {
      padding-left: calc(200px + 2em);
    }
  }
  .download-card__content-box__catagory {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    margin: 0 0 2em;
  }
  .download-card__content-box__catagory::before {
    content: "| ";
    color: #ff4500;
  }
  .download-card__content-box__title {
    line-height: 1;
    margin: 0 0 0.5em;
    font-size: 18px;
  }
  .download-card__content-box__description {
    line-height: 1.5;
    padding: 0;
    margin: 0 0 1em;
    clear: both;
    color: #929292;
    font-size: 16px;
  }
  .download-card__content-box .button {
    position: absolute;
    bottom: 2em;
    margin: 0;
    color: #ff4500;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 13px;
  }

  .contactEnqu .bootstrap-select.btn-group .dropdown-menu.inner {
    height: 300px;
    overflow: auto !important;
  }

.hrefLink{
    color: #fff;
    margin: 10px 0 0;
    background: #333333;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 12px; 
}
.hrefLink:hover{
    color: #8fe33e;
}

.orderList{
    margin:0;
    padding:0;
}
.orderList li{
    padding: 0 0 5px;
}


.talentAssBanner{
    background: url(../images/solutions/main-slider-v1-img.jpg);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    background-position: center;    padding-top: 20px;
}
.talentAssBanner h1 {
    font-style: normal;
    font-size: 36px;
    position: relative;
    z-index: 1;
    font-family: 'Barlow Condensed Medium', sans-serif;
    color: #0e1133;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}
.talentAssBanner h1 span.subtext {
    font-size: 16px;
    display: block;
    line-height: 22px;
    font-weight: 500;
    margin: 10px 0 0;
}
.talentAssBanner .common-btn{
    padding: 10px 24px;    font-size: 13px;
}
@media (max-width:767px) {
    .talentAssBanner{    background: #f5f5f5;
        height: 100%;
        padding-top: 50px;}
}

.postFree-jobs-form input,
.postFree-jobs-form textarea
{
    background:#F4F5F4 ; border: none; box-shadow: none;
}
.postFree-jobs-form input{ height: 56px;}
.about__thumb-wrapper-main {
    position: relative;
    padding: 10px;
    height: 100%;
    overflow: hidden;
}
.white-bg-one {
    background: #ffffff;
}
.white-bg-one:hover {
    background:#F5F5F5;
    transform: 1s ease-in-out;
}
.what__thumb.w-img {
    background: #f9f9f9;
    display: block;
    width: 100%;
    min-height: 200px;
}