html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: middle;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background: var(--site_bg);
    width: 100%;
    outline: 0 !important;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

:focus {
    outline: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.left--title {
    text-align: left;
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
}

.left--title .content__title-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--main_text);
}

.left--title .content__title-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--text_1);
}

.left--title::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    opacity: 0.2;
    background: var(--bg_2);
    border-radius: 13px;
}

section#page__text .page__text-container h5 {
    font-weight: 700;
    font-size: 19px;
    line-height: 26px;
    color: var(--main_text);
    border-bottom: 1px solid #F4F8FB;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.ctn-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 900;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.ctn-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    height: 9em;
    margin: 0 auto 0 auto;
    width: 9em;
}

.ctn-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
    left: 0;
}

.ctn-preloader .loader-section.section-right {
    right: 0;
}

.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.loaded .loader-section.section-left {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
    -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

.pd50 {
    padding: 50px 0;
}

.pd30 {
    padding-top: 0;
    padding-bottom: 30px !important;
}

.bgsoft {
    background: var(--section_bg);
}

:root {
    --site_bg: #fafbfd;
    --bg_1: #2e3647;
    --bg_2: #f5476a;
    --bg_3: #fafbfd;
    --site_header: #fff;
    --alpha: 0.8;
    --kutu_1: #F9F2F5;
    --kutu_1_buton: #E34565;
    --kutu_2: #F2F4F7;
    --kutu_2_buton: #5D6C85;
    --main_text: #2e3647;
    --text_1: #677894;
    --text_white: #ffffff;
    --section_bg: #f4f8fb;
    --breadcumb_background: #f4f8fb;
    --size: calc(calc(100vw / var(--Nhexa)) - var(--gap));
}

.content__title {
    margin-bottom: 50px;
    text-align: center;
}

.content__title .content__title-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: var(--main_text);
    margin-bottom: 4px;
}

.content__title .content__title-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--subtext);
    color: var(--text_1);
}

.dropdown dd {
    margin: 0px;
    padding: 0px;
    position: relative;
}

.dropdown dd ul {
    background: var(--site_bg);
    display: block !important;
    left: 0px;
    list-style: none;
    border-radius: 5px;
}

.dropdown dd ul li a {
    padding: 0 15px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text_1);
    cursor: pointer;
    padding: 5px;
    padding-left: 15px;
    display: block;
}

.dropdown dd ul li:not(:last-child) {
    border-bottom: 1px solid var(--section_bg);
}

.dropdown dt {
    margin: 0px;
    padding: 0px;
}

.dropdown dt a {
    background: #fff;
    padding-left: 15px;
    display: block;
    padding-right: 20px;
}

.dropdown dt a span {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: var(--text_1);
}

.dropdown ul {
    margin: 0px;
    padding: 0px;
}

.dropdown a {
    color: #816c5b;
    text-decoration: none;
    outline: none;
}

.dropdown a:visited {
    color: #816c5b;
    text-decoration: none;
    outline: none;
}

.dropdown span.value {
    display: none;
}

.dropdown img.flag {
    border: none;
    vertical-align: middle;
    margin-left: 10px;
}

#sample {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

#sample li {
    margin-right: 0 !important;
}

.page-wrapper {
    z-index: 2;
}

.page-wrapper .sidebar-wrapper {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper .page-content {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper .theme {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 4px;
    margin: 2px;
}

.page-wrapper .theme.chiller-theme {
    background: #1e2229;
}

.sidebar-wrapper {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 2;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
}

.sidebar-wrapper .sidebar-brand {
    padding: 10px 15px 10px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    min-width: 151px;
}

.sidebar-wrapper .sidebar-brand>a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 20px;
    margin-left: auto;
}

.sidebar-wrapper .sidebar-brand #close-sidebar svg {
    vertical-align: middle;
}

.sidebar-wrapper .sidebar-brand #close-sidebar svg .sidebar-wrapper .sidebar-dropdown>a:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 25px;
    font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge {
    float: right;
    margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown>a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 14px;
}

.sidebar-wrapper .sidebar-menu ul li a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 10px 20px 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text_1);
}

.sidebar-wrapper .sidebar-menu ul li a:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover>i::before {
    display: inline-block;
    -webkit-animation: swing ease-in-out 0.5s 1 alternate;
    animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: 10px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 17px;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper ul li a i {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar-wrapper a {
    text-decoration: none;
}

#show-sidebar {
    left: 0;
    margin-bottom: 1px;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 55px;
    color: var(--text_1);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #ECF9FF;
    border-radius: 0;
    position: relative;
}

#show-sidebar::after {
    content: "";
    position: absolute;
    left: 0;
    background: var(--text_1);
    opacity: 0.2;
    width: 1px;
    height: 100%;
}

#show-sidebar img {
    margin-right: 10px;
}

#show-sidebar i {
    margin-left: 8px;
    font-size: 15px;
}

#show-sidebar i.bi-globe {
    margin-left: 0;
    font-size: 20px;
    margin-right: 8px;
}

#show-sidebar i.ri-global-line {
    margin-left: 0;
    font-size: 18px;
    margin-right: 8px;
}

#show-sidebar svg {
    -webkit-animation: rotate 4s infinite;
    animation: rotate 4s infinite;
    vertical-align: middle;
}

#show-sidebar svg path {
    fill: #fff;
}

#close-sidebar {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper.toggled .sidebar-wrapper {
    opacity: 1;
    visibility: visible;
}

#header__top {
    z-index: 34;
    position: relative;
    background: var(--bg_1);
}

#header__top .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

#header__top .header__container .header__left ul {
    display: flex;
    align-items: center;
}

#header__top .header__container .header__left ul li {
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: var(--text_1);
    display: flex;
    align-items: center;
}

#header__top .header__container .header__left ul li i {
    font-size: 18px;
    line-height: 18px;
    margin-right: 7px;
    vertical-align: middle;
    color: var(--passive);
}

#header__top .header__container .header__left ul li:not(:last-child) {
    margin-right: 15px;
}

#header__top .header__container .header__right {
    display: flex;
    align-items: center;
}

#header__top .header__container .header__right ul {
    display: flex;
    align-items: center;
}

#header__top .header__container .header__right ul li:not(:last-child) {
    margin-right: 13px;
}

#header__top .header__container .header__right ul li a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--text_1);
}

#header__top .header__container .header__right ul li a i {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}

.site-navbar {
    margin-bottom: 0px;
    z-index: 9999;
    position: relative;
    width: 100%;
    background: var(--site_header);
}

.site-navbar .toggle-button {
    right: 0px;
}

.site-navbar .toggle-button a {
    color: var(--main__text);
}

.site-navbar .toggle-button a span i {
    color: var(--main__text);
    font-size: 25px;
}

.site-navbar .site-navigation.border-bottom {
    border-bottom: 1px solid gray !important;
}

.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
    display: inline-block;
}

.site-navbar .site-navigation .site-menu>li:not(:last-child) {
    padding-right: 26px;
}

.site-navbar .site-navigation .site-menu>li>a {
    font-weight: 500;
    font-size: 15px;
    line-height: 100px;
    mix-blend-mode: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--main_text);
    padding: 0;
}

.site-navbar .site-navigation .site-menu>li>a i {
    margin-left: 2px;
}

.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    border-radius: 0 0 3px 3px;
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: white;
    transition: 0.3s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 13px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    display: none;
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: white;
    border-width: 10px;
    margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    text-transform: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    min-width: 175px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child {
    margin-bottom: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    padding: 9px 10px;
    display: block;
    position: relative;
    z-index: 0;
    transition: 0.3s ease-in-out;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover::after {
    background: var(--bg_2);
    opacity: 0.04;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
    color: var(--text_1);
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-navbar .site__menu-contact {
    margin-left: 32px;
}

.site-navbar .site__menu-contact a {
    font-weight: 500;
    font-size: 15px;
    background: var(--bg_2);
    padding: 15px 30px;
    border-radius: 8px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text_white);
}

.site-navbar .site__menu-contact a i {
    margin-right: 8px;
    font-size: 20px;
}

.site-mobile-menu {
    width: 300px;
    position: fixed;
    left: 0;
    z-index: 2000;
    padding-top: 20px;
    background: white;
    height: calc(100vh);
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-right: 20px;
    padding-bottom: 15px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    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;
    width: 100%;
    margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close .mobilelogo img {
    max-width: 170px;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 45px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span i {
    color: var(--main_text);
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: gray;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}

.site-mobile-menu .site-mobile-menu-body::-webkit-scrollbar-track {
    opacity: 0;
    display: none;
}

.site-mobile-menu .site-mobile-menu-body::-webkit-scrollbar-thumb {
    opacity: 0;
    display: none;
}

.site-mobile-menu .site-mobile-menu-body::-webkit-scrollbar-thumb:hover {
    opacity: 0;
    display: none;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.site-mobile-menu .site-nav-wrap a {
    padding: 0;
    display: block;
    position: relative;
    color: var(--main_text);
}

.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
    margin: 20px 0;
    margin-bottom: 5px;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    content: "";
    position: absolute;
    background-image: url(/assets/img/arrowdown.svg);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.site-mobile-menu .site-nav-wrap>li>a {
    font-size: 14px;
    font-weight: 500;
}

.site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 20px;
    font-size: 14px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 15px;
    padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
    width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
    padding-left: 15px !important;
}

.sticky-wrapper {
    position: relative;
    z-index: 9;
    width: 100%;
}

.sticky-wrapper .site-navbar {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    width: 100% !important;
}

.sticky-wrapper .site-navbar .site-logo img {
    max-height: 50px;
    max-width: 100%;
    width: 218px;
}

.sticky-wrapper .site-navbar ul li a {
    color: var(--main_text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
}

.sticky-wrapper .site-navbar ul li a.active {
    color: white !important;
}

.sticky-wrapper.is-sticky .site-navbar {
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
}

.sticky-wrapper.is-sticky .site-navbar ul li a {
    color: var(--main_text);
}

.sticky-wrapper.is-sticky .site-navbar ul li a.active {
    color: blue !important;
}

.sticky-wrapper .shrink {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.page-wrapper {
    z-index: 2;
    position: relative;
}

.page-wrapper .sidebar-wrapper {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper .page-content {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page-wrapper .theme {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 4px;
    margin: 2px;
}

.page-wrapper .theme.chiller-theme {
    background: #1e2229;
}

.hero--item {
    overflow: hidden;
    position: relative;
}

.hero--content {
    z-index: 0;
    position: relative;
    background: var(--bg_3);
}

.iteck-animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.iteck-animated-lines span {
    position: absolute;
    height: 100%;
    width: 1px;
    z-index: -1;
}

.iteck-animated-lines span::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    left: 0;
    opacity: 0.04;
    background: var(--text_1);
}

.iteck-animated-lines span:nth-of-type(1) {
    right: 18%;
}

.iteck-animated-lines span:nth-of-type(2) {
    right: 34%;
}

.iteck-animated-lines span:nth-of-type(3) {
    right: 50%;
}

.iteck-animated-lines span::before {
    position: absolute;
    content: "";
    left: 0;
    top: -20px;
    height: 25px;
    width: 1px;
    background-color: var(--bg_2);
    animation: afterline 5s ease-in-out infinite;
}

.iteck-animated-lines span:nth-of-type(1)::before {
    animation-delay: -2s;
}

.iteck-animated-lines span:nth-of-type(2)::before {
    animation-delay: -1s;
}

.iteck-animated-lines span:nth-of-type(3)::before {
    animation-delay: 0;
}

@keyframes afterline {
    0% {
        top: -20px;
    }
    100% {
        top: 100%;
    }
}

section#hero {
    position: relative;
    height: 700px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
}

section#hero .slider--img {
    position: relative;
    z-index: 0;
}

section#hero .slider--img img {
    animation-delay: 1.5s;
    animation-fill-mode: both;
    animation-duration: 1.5s;
}

.owl-item.active .slider--img img {
    animation-name: fadeInUp;
}

.owl-item.active .hero__container .hero__links a {
    animation-name: fadeInUp;
}

#pxl_image-5eab401-7044 {
    position: absolute;
    right: 0;
    box-sizing: border-box;
    display: inline-block;
    line-height: 28.0001px;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

#pxl_image-95b3efc-4726 {
    position: absolute;
    left: 0;
    bottom: 0;
}

div#pxl_image-95b3efc-4726.pxl-image-single.pxl-image-move2.style-default {
    animation: animationFramesTwo 14s linear 0s infinite alternate none running;
    border-radius: inherit;
    box-sizing: border-box;
    color: #5d666f;
    font-size: 18px;
    line-height: 28.0001px;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px);
    }
    10% {
        transform: translate(40px, -20px);
    }
    25% {
        transform: translate(30px, 30px);
    }
    50% {
        transform: translate(80px, 80px);
    }
    70% {
        transform: translate(-60px, 50px);
    }
    85% {
        transform: translate(50px, -70px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(0px, 0px);
    }
    20% {
        transform: translate(40px, -5px);
    }
    40% {
        transform: translate(60px, 40px);
    }
    60% {
        transform: translate(40px, 60px);
    }
    80% {
        transform: translate(-40px, 60px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes animationFramesFive {
    0% {
        transform: translate(0px, 0px);
    }
    20% {
        transform: translate(-20px, 40px);
    }
    40% {
        transform: translate(40px, 40px);
    }
    60% {
        transform: translate(60px, -60px);
    }
    80% {
        transform: translate(-40px, 40px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes pxl_top_bottom {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateY(-40px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translate(0px, 0px);
    }
    20% {
        transform: translate(-5px, 40px);
    }
    40% {
        transform: translate(40px, 60px);
    }
    60% {
        transform: translate(60px, 40px);
    }
    80% {
        transform: translate(60px, -40px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes pxl_float_two {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

@keyframes pxl_right_left {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(40px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(-40px);
    }
    100% {
        transform: translateX(0px);
    }
}

div#pxl_image-5eab401-7044.pxl-image-single.slide-up-down.style-default {
    animation: pxl_float_two 1.2s ease 0s infinite alternate none running;
    border-radius: inherit;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 28.0001px;
}

div.pxl-item--inner {
    border-radius: inherit;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 28.0001px;
}

div.pxl-item--image {
    border-radius: inherit;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 28.0001px;
}

img.no-lazyload.attachment-full {
    border-radius: inherit;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 18px;
    height: auto;
    line-height: 28.0001px;
    max-width: 100%;
    vertical-align: middle;
    width: auto;
}

@keyframes pxl_float_two {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

section#hero .absolute--item {
    position: absolute;
    z-index: -1;
}

section#hero .hero__container {
    max-width: 660px;
    z-index: 1;
}

section#hero .hero__container .hero__top {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    color: var(--text_1);
    margin-bottom: 5px;
    animation-delay: 1.0s;
    animation-fill-mode: both;
    animation-duration: 1.0s;
}

.owl-item.active .hero__container .hero__top {
    animation-name: fadeInUp;
}

section#hero .hero__container .hero__title {
    font-weight: 600;
    font-size: 60px;
    line-height: 73px;
    color: var(--main_text);
    margin-bottom: 30px;
    animation-delay: 1.5s;
    animation-fill-mode: both;
    animation-duration: 1.5s;
}

.owl-item.active .hero__container .hero__title {
    animation-name: fadeInUp;
}

section#hero .hero__container .hero__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    color: var(--text_1);
    margin-bottom: 35px;
    animation-delay: 2s;
    animation-fill-mode: both;
    animation-duration: 2s;
}

.owl-item.active .hero__container .hero__text {
    animation-name: fadeInUp;
}

section#hero .hero__container .hero__links a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    font-weight: 500;
    font-size: 15px;
    line-height: 48px;
    color: var(--text_white);
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.owl-item.active .hero__container .hero__links {
    animation-name: fadeInUp;
    animation-delay: 2.5s;
    animation-fill-mode: both;
    animation-duration: 2.5s;
}

section#hero .hero__container .hero__links a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text_1);
    opacity: 0.04;
    border-radius: 8px;
}

section#hero .hero__container .hero__links a.hero__about-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
    font-weight: 500;
    font-size: 15px;
    line-height: 48px;
    color: var(--main_text);
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

section#hero .hero__container .hero__links a.hero__about-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--text_1);
    opacity: 0.04;
}

section#hero .hero__container .hero__links a.hero__about-link:hover {
    color: var(--text_white);
}

section#hero .hero__container .hero__links a:not(:last-child) {
    margin-right: 30px;
}

section#hero .hero__container .hero__links a.hero__contact-link {
    background: var(--bg_2);
}

section#hero .hero__container .hero__links a.hero__about-link {
    line-height: 48px;
}

section#hero .hero__container .hero__links a:hover.hero__contact-link {
    color: var(--main_text);
    background: transparent;
}

section#hero .hero__container .hero__links a:hover.hero__contact-link::after {
    background: transparent;
}

section#hero .hero__container .hero__links a:hover.hero__about-link::after {
    border-color: var(--bg_2);
}

section#hero .hero__container .hero__links a:hover.hero__about-link {
    background: var(--bg_2);
    color: var(--text_white);
}

section#product {
    padding: 60px 0 30px 0;
}

section#product .product__container .product__item {
    margin-bottom: 30px;
}

section#product .product__container .product__item .product__content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

section#product .product__container .product__item .product__content-box:hover .product__item-details .product--bottom .action {
    background: var(--bg_2);
    color: var(--text_white);
}

section#product .product__container .product__item .product__content-box .product__item-image {
    border-radius: 3px 0 0 0;
    overflow: hidden;
    flex: 0 0 auto;
}

section#product .product__container .product__item .product__content-box .product__item-image img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

section#product .product__container .product__item .product__content-box:hover .product__item-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

section#product .product__container .product__item .product__content-box .product__item-details {
    padding: 30px;
    border-radius: 0 0 3px 3px;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-title a {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: var(--main_text);
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--text_1);
    padding: 30px 0 37px 0;
    margin-bottom: 38px;
    position: relative;
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-text::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--text_1);
    opacity: 0.04;
    bottom: 0;
    left: 0;
}

section#product .product__container .product__item .product__content-box .product__item-details .product--bottom .bottom--info small {
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    color: var(--text_1);
    margin-bottom: 8px;
}

section#product .product__container .product__item .product__content-box .product__item-details .product--bottom .bottom--info strong {
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    color: var(--main_text);
}

section#product .product__container .product__item .product__content-box .product__item-details .product--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section#product .product__container .product__item .product__content-box .product__item-details .product--bottom .action {
    font-size: 22px;
    background: var(--bg_2);
    height: 44px;
    width: 44px;
    line-height: 41px;
    border-radius: 50%;
    background: var(--section_bg);
    display: inline-block;
    text-align: center;
    transition: 0.4s;
}

section#product .product__container .product__item .product__content-box .product__item-details .product--bottom .bottom--info {
    display: flex;
    flex-direction: column;
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-price a {
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    max-width: 155px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 50px;
    background: var(--bg_2);
    color: var(--text_white);
    border-radius: 3px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section#product .product__container .product__item .product__content-box .product__item-details .product__item-price a.price {
    background: transparent;
    border: 1px solid var(--section_bg);
    color: var(--main_text);
    margin-left: 20px;
}

section#product .pagicontainer {
    padding-top: 30px;
}


/* Projeler */

section.employer-section-two {
    padding: 60px 0;
    display: block;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    background: var(--section_bg);
}

div.tf-container {
    background: transparent;
    bottom: 0px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    left: 0px;
    line-height: 25px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    right: 0px;
    top: 0px;
    vertical-align: baseline;
    width: 1440px;
}

div.wd-employer {
    background: transparent;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

div.tf-title {
    align-items: center;
    background: transparent;
    box-sizing: border-box;
    display: flex;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    justify-content: space-between;
    line-height: 25px;
    margin: 0px;
    margin-bottom: 40px;
    padding: 0px;
    vertical-align: baseline;
}

div.group-title {
    background: transparent;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

p.info {
    background: transparent;
    box-sizing: border-box;
    color: var(--text_1);
    font-family: inherit;
    font-size: 18px;
    font-style: inherit;
    font-weight: inherit;
    line-height: 28px;
    margin: 0px;
    margin-bottom: 1rem;
    margin-top: 0px;
    padding: 0px;
    vertical-align: baseline;
}

a.tf-button {
    align-items: center;
    background: transparent;
    box-sizing: border-box;
    color: var(--main_text);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: 700;
    line-height: 26px;
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out 0s;
    vertical-align: baseline;
}

a.tf-button:hover {
    color: #14a077;
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

a.tf-button:focus {
    color: #14a077;
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

span.icon-arrow-right2 {
    background: transparent;
    box-sizing: border-box;
    color: #14a077;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 16px;
    margin: 0px;
    margin-left: 4px;
    padding: 0px;
    vertical-align: baseline;
}

div.row.wow.fadeInUp.animated {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    animation: fadeInUp 1s ease 0s 1 normal both running;
    background: transparent;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 0px;
    padding: 0px;
    vertical-align: baseline;
    visibility: visible;
}

div.employer-block {
    background: transparent;
    border: 0px;
    border-radius: 8px;
    bottom: 0px;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    left: 0px;
    line-height: 25px;
    margin: 0px;
    margin-bottom: 32px;
    position: relative;
    right: 0px;
    top: 0px;
    transition: all 0.3s ease-in-out 0s;
    vertical-align: baseline;
}

div.employer-block a {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px;
}

div.employer-block::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    border: 1px solid var(--text_1);
    transition: all 0.3s ease-in-out 0s;
    opacity: 0.03;
}

a.action--btn {
    background: transparent;
    bottom: 0px;
    box-sizing: border-box;
    color: var(--main_text);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    left: 0px;
    line-height: 23px;
    margin: 0px;
    padding: 0px;
    right: 0px;
    text-decoration: none;
    top: 0px;
    transition: all 0.3s ease-in-out 0s;
    vertical-align: baseline;
}

a.action--btn:hover {
    color: var(--bg_2);
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

a.action--btn:not(.jobtex-link-item) {
    position: relative;
    z-index: 2;
}

a.action--btn:focus {
    color: #14a077;
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

div.employer-block:hover::after {
    border-color: var(--bg_2);
    opacity: 0.5;
}

div.inner-box {
    align-items: center;
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    vertical-align: baseline;
}

div.logo-company {
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    height: 60px;
    line-height: 25px;
    margin: 0px;
    margin-right: 15px;
    max-width: 60px;
    min-width: 60px;
    padding: 0px;
    vertical-align: baseline;
}

img.p--img {
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    height: 100%;
    line-height: 25px;
    margin: 0px;
    max-width: 100%;
    padding: 0px;
    vertical-align: middle;
    width: 100%;
}

div.box-content {
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

div.box-content strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    color: var(--main_text);
}

div.star {
    background: transparent;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

span.icon-star-full {
    background: transparent;
    box-sizing: border-box;
    color: #ffb321;
    cursor: pointer;
    font-family: inherit;
    font-size: 12.8px;
    font-style: inherit;
    font-weight: inherit;
    line-height: 12.8px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

a.jobtex-link-item {
    background: transparent;
    bottom: 0px;
    box-sizing: border-box;
    color: var(--main_text);
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: 700;
    left: 0px;
    line-height: 28px;
    margin: 0px;
    padding: 0px;
    right: 0px;
    text-decoration: none;
    top: 0px;
    transition: all 0.3s ease-in-out 0s;
    vertical-align: baseline;
}

a.jobtex-link-item:hover {
    color: var(--text_1);
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

span.icon-bolt {
    background: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-style: inherit;
    font-weight: inherit;
    line-height: 14px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

p.info {
    background: transparent;
    box-sizing: border-box;
    color: var(--text_1);
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 15px;
    font-style: inherit;
    font-weight: inherit;
    line-height: 22px;
    margin: 0px;
    margin-top: 0px;
    padding: 0px;
    vertical-align: baseline;
}

span.icon-map-pin {
    background: transparent;
    box-sizing: border-box;
    color: var(--text_1);
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 14px;
    margin: 0px;
    padding: 0px;
    vertical-align: baseline;
}

a.jobtex-link-item {
    background: transparent;
    bottom: 0px;
    box-sizing: border-box;
    color: var(--main_text);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    height: 100%;
    left: 0px;
    line-height: 25px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    right: 0px;
    text-decoration: none;
    top: 0px;
    transition: all 0.3s ease-in-out 0s;
    vertical-align: baseline;
    width: 100%;
}

a.jobtex-link-item:focus {
    color: #14a077;
    outline: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 550px) {
    div.tf-title {
        display: block;
        padding: 0px;
    }
    p.info {
        margin-bottom: 10px;
    }
}


/* Yorumlar */

.comments {
    padding: 60px 0;
}

.comments .comments--area .swiper--item .swiper--content {
    padding: 50px;
    background: #ffffff;
    border-radius: 8px;
}

.comments .comments--area .swiper--item p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text_1);
    padding-bottom: 30px;
}

.comments .comments--area .swiper--item .swiper--content .bottom {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.comments .comments--area .swiper--item .swiper--content .bottom .name {
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    color: var(--main_text);
}

.comments .comments--area .swiper--item .swiper--content .bottom .image {
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.comments .comments--area .swiper--item .swiper--content .bottom--info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments .comments--area .swiper--item .swiper--content .bottom--info .subname {
    font-size: 15px;
    font-weight: 500;
    color: var(--text_1);
}

.comments .comments--area .swiper--item .swiper--content .bottom--info .star {
    font-size: 17px;
    color: var(--bg_2);
}

.ref {
    padding: 0 0 60px 0;
}


/* Yorumlar son */


/* These were inline style tags. Uses id+class to override almost everything */

#style-M2QyF.style-M2QyF {
    transform: translate3d(0px, 0px, 0px);
    transition-duration: 0ms;
}

#style-sTVSC.style-sTVSC {
    transform: translate3d(-1500px, 0px, 0px);
    transition-duration: 500ms;
}

*/
/* istatistik */

.wd-banner-counter {
    padding-top: 20px;
}

.tf-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 1440px;
    max-width: 100%;
}

.tf-container.st3 {
    width: 1201px;
}

.group-title-counter {
    padding-bottom: 40px;
    text-align: center;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.group-counter {
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
    padding: 40px 0px;
}

.group-title-counter h3 {
    line-height: 44px;
    font-size: 36px;
    color: #23262f;
    margin-bottom: 8px;
}

.group-title-counter.stc p {
    font-size: 18px;
    line-height: 28px;
}

.align-item-center {
    align-items: center;
}

.ani4 {
    -webkit-animation: ani4 7s infinite ease-in-out alternate;
    animation: ani4 7s infinite ease-in-out alternate;
}

.group-counter .widget-counter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-counter .widget-counter::after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    opacity: 0.04;
    border-right: 1px solid var(--text_1);
}

.br-none.widget-counter::after {
    border-right: none !important;
}

.group-counter .widget-counter .icon {
    margin-right: 25px;
}

.group-counter .widget-counter.br-none {
    border-right: hidden;
}

.wd-counter p {
    font-size: 16px;
    line-height: 23px;
    color: var(--text_1);
    margin-bottom: 0;
}

.wd-counter h2 {
    font-size: 20px;
    color: var(--main_text);
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
}

span {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: none;
        opacity: 1;
        transform: none;
    }
}

@keyframes ani4 {
    0%,
    100% {
        transform: translateX(0);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transform: translateX(0px);
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transition-delay: 0s;
        transition-property: all;
    }
    50% {
        transform: translateX(-20px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        transform: translateX(-20px);
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transition-delay: 0s;
        transition-property: all;
    }
}


/* 
Footer üstü
*/

.bg-map .container {
    position: relative;
    z-index: 2;
}

.d-block {
    display: block!important;
}

.section {
    display: inline-block;
    width: 100%;
}

.bg-map {
    position: relative;
}

.box-map {
    position: relative;
}

p:first-of-type span {
    display: none;
}

p:first-of-type i {
    display: none !important;
}

p.footer--info--item:first-of-type {
    margin-bottom: 25px !important;
}

.style-RV1XZ:not(:last-child) {
    margin-bottom: 30px;
}

.box-map .img--box article img {
    object-fit: cover;
}

:selection {
    background: #069;
    color: #fff;
}

iframe {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    width: 100%!important;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.map-info {
    position: absolute;
    top: 48px;
    bottom: 48px;
    right: 38px;
    max-width: 340px;
    z-index: 1;
    background-color: #fff;
    padding: 35px 31px;
    margin-left: 38px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.map-info .bottom {
    margin-top: 20px;
    padding-top: 20px;
    font-weight: 600;
    line-height: 28px;
    font-size: 15px;
    position: relative;
    width: 100%;
    color: var(--text_1);
}

.map-info .bottom::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.04;
    border-top: 1px solid var(--text_1);
}

.footer--info--item {
    display: flex;
    align-items: center;
    color: var(--text_1);
}

.footer--info--item strong {
    font-size: 15px;
    font-weight: 500;
}

.footer--info--item:first-child {
    margin-bottom: 25px !important;
}

.footer--info--item:not(:last-child) {
    margin-bottom: 10px;
}

.footer--info--item strong span {
    margin-right: 5px;
}

.footer--info--item i {
    font-size: 16px;
    margin-right: 10px;
    color: var(--bg_2);
}

.mb-25 {
    margin-bottom: 25px!important;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

.color-grey-700 {
    color: #5b647c;
}

.mb-10 {
    margin-bottom: 10px!important;
}

.mb-30 {
    margin-bottom: 30px!important;
}

.line-border {
    border-bottom: 1px solid #e8e9ed;
    margin: 20px 0;
}

.font-md-bold {
    font-weight: 600;
    font-family: epilogue, sans-serif;
    line-height: 28px;
    font-size: 16px;
}

svg {
    vertical-align: middle;
}

.color-brand-1 {
    color: #fec201!important;
}

.icon-16 {
    height: 16px;
    color: #041c2f;
}

.mr-10 {
    margin-right: 10px!important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        opacity: 0;
    }
    100% {
        opacity: 1;
        opacity: 1;
    }
}


/* These were inline style tags. Uses id+class to override almost everything */

#style-219aY.style-219aY {
    border: 0px;
    visibility: visible;
}

#style-t8VsQ.style-t8VsQ {
    visibility: visible;
}

#style-3gcnR.style-3gcnR {
    visibility: visible;
}

#style-kEYUv.style-kEYUv {
    visibility: visible;
}

#style-RV1XZ.style-RV1XZ {
    visibility: visible;
}

#style-j6J9j.style-j6J9j {
    visibility: visible;
}

#style-a3BCL.style-a3BCL {
    visibility: visible;
}


/* Kategoriler */

.job-category-section-two {
    padding: 60px 0;
}

.tf-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 1440px;
    max-width: 100%;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.tf-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.group-category-job {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
}

a.btn-category-job {
    color: var(--main_text);
    text-decoration: none;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tf-button {
    padding: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    text-transform: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

a.btn-category-job:hover {
    color: #14a077;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.job-category-box {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.group-category-job .job-category-box {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #f4f8fb;
}

.job-category-box:hover {
    background: var(--bg_2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.job-category-box:hover .job-category-box p {
    color: var(--text_white);
}

.job-category-box.active {
    background: var(--bg_2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.job-category-box:hover,
.job-category-box.active {
    background: var(--bg_2);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

h1.btn-category-h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1.btn-category-h1 {
        font-size: 2.5rem;
    }
}

h1.btn-category-h1 {
    font-family: inherit;
    font-size: 80px;
    font-weight: 700;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    line-height: 1.1em;
}

.tf-title h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: var(--main_text);
    margin-bottom: 16px;
}

p.btn-category-p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.tf-title p {
    color: var(--text_1);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.tf-button span {
    color: #14a077;
    margin-left: 4px;
}

.icon-arrow-right2:before {
    content: "\ea3c";
}

.job-category-box .job-category-header {
    margin-bottom: 8px;
}

.job-category-box strong {
    color: var(--bg_2);
    text-transform: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.job-category-box .btn-category-job {
    color: var(--bg_2);
    text-transform: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
}

.job-category-box:hover p {
    color: var(--text_white);
}

.job-category-box:hover h1,
.job-category-box:hover strong {
    color: var(--text_white);
}

.job-category-box:hover a,
.job-category-box:hover .btn-category-job {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box.active a,
.job-category-box.active .btn-category-job {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box.active a,
.job-category-box.active .btn-category-job,
.job-category-box:hover a,
.job-category-box:hover .btn-category-job {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box h1 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--main_text);
    transition: all 0.3s ease-in-out;
}

.job-category-box p {
    color: var(--text_1);
    font-size: 15px;
    line-height: 22px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.job-category-box .btn-category-job span {
    margin-left: 4px;
    font-size: 20px;
}

.icon-keyboard_arrow_right:before {
    content: "\e9a0";
}

.job-category-box.active p {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box h1 a {
    color: var(--main_text);
}

.job-category-box:hover a {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box.active a {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

.job-category-box.active a,
.job-category-box:hover a {
    color: var(--text_white);
    transition: all 0.3s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: none;
        opacity: 1;
        transform: none;
    }
}


/* Blog */

.blog--section {
    padding: 60px 0 30px 0;
    background: var(--section_bg);
}

@media all {
    .elementor-section {
        position: relative;
    }
    .elementor-86 .elementor-element.elementor-element-14950634 {
        padding: 120px 0px 120px 0px;
    }
    .jkit-nav-menu-loaded {
        overflow-x: hidden;
        overflow-y: visible;
    }
    html {
        line-height: 1.15;
        -webkit-text-size-adjust: 100%;
    }
    .elementor .elementor-background-overlay {
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        position: absolute;
    }
    .elementor-86 .elementor-element.elementor-element-14950634>.elementor-background-overlay {
        opacity: 0.02;
    }
    *,
     :after,
     :before {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    *,
     :after,
     :before {
        box-sizing: border-box;
    }
    .elementor-widget-wrap {
        position: relative;
        width: 100%;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
        display: flex;
    }
    .elementor-column-gap-default>.elementor-column>.elementor-element-populated {
        padding: 10px;
    }
    .elementor-column {
        position: relative;
        min-height: 1px;
        display: flex;
    }
}

@media (min-width: 768px) {
    .elementor-column.elementor-col-100 {
        width: 100%;
    }
}

@media all {
    .elementor-section .elementor-container {
        display: flex;
        margin-right: auto;
        margin-left: auto;
        position: relative;
    }
    .elementor-section.elementor-section-boxed>.elementor-container {
        max-width: 1140px;
    }
    .elementor-86 .elementor-element.elementor-element-14950634>.elementor-container {
        max-width: 1200px;
    }
    .elementor-widget {
        position: relative;
    }
    .elementor-widget-wrap>.elementor-element {
        width: 100%;
    }
    .elementor-element.elementor-element-b61939f {
        text-align: center;
    }
    .elementor-element.elementor-element-4b3c36ae {
        text-align: center;
        margin-bottom: 50px;
    }
    .elementor-element .elementor-widget-container {
        transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
    }
    .elementor-86 .elementor-element.elementor-element-4b3c36ae>.elementor-widget-container {
        margin: 0px 0px 0px 0px;
    }
    .elementor-86 .elementor-element.elementor-element-791b5f4d>.elementor-widget-container {
        margin: 20px 0px -30px 0px;
    }
    h5 {
        margin-top: .5rem;
        margin-bottom: 1rem;
        font-family: inherit;
        font-weight: 500;
        line-height: 1.2;
        color: inherit;
        font-size: 1.25rem;
    }
}

.elementor-heading-title {
    padding: 0;
    margin: 0;
    line-height: 1;
}

@media all {
    h5 {
        color: var( --e-global-color-primary);
    }
    .elementor-widget-heading .elementor-heading-title {
        color: var( --e-global-color-primary);
    }
    .elementor-element.elementor-element-b61939f .elementor-heading-title {
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
        color: var(--main_text);
        margin-bottom: 4px;
    }
    h2 {
        margin-top: .5rem;
        margin-bottom: 1rem;
        font-family: inherit;
        font-weight: 500;
        line-height: 1.2;
        color: inherit;
        font-size: 2rem;
    }
    h2 {
        color: var( --e-global-color-primary);
    }
    .elementor-element.elementor-element-4b3c36ae .elementor-heading-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        color: var(--text_1);
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock {
        margin: 0px 0px 0px 0px;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post {
        margin-bottom: 30px;
    }
    .jeg-elementor-kit.jkit-postblock.postblock-type-1 .jkit-post {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-thumb {
        position: relative;
        overflow: hidden;
    }
    .jeg-elementor-kit.jkit-postblock.postblock-type-1 .jkit-thumb {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 285px;
    }
    .jeg-elementor-kit.jkit-postblock.postblock-type-1 .jkit-postblock-content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding-left: 20px;
        padding-top: 5px;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-postblock-content {
        text-align: left;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post-category {
        font-size: 13px;
        font-weight: 500;
        margin-top: .5rem;
        margin-bottom: .5rem;
        display: inline-block;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-category {
        background-color: var( --bg_2);
        padding: 4px 8px 4px 8px;
        margin: 0px 0px 5px 0px;
        border-radius: 5px;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post-title {
        font-size: 16px;
        line-height: 1.3;
        color: var(--main_text);
        margin-top: .5rem;
        margin-bottom: .5rem;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-title {
        margin: 10px 0px 10px 0px;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post-excerpt {
        font-size: 15px;
        margin-top: .5rem;
        margin-bottom: .5rem;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-excerpt {
        margin: 0px 0px 0px 0px;
        line-height: 26px;
        color: var(--text_1);
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-meta-bottom {
        justify-content: space-between;
    }
    .jeg-elementor-kit .thumbnail-container {
        line-height: 0;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-thumb .thumbnail-container {
        max-width: 285px;
        height: 240px;
        border-radius: 8px;
        overflow: hidden;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-title a {
        font-size: 20px;
        color: var(--main_text);
        line-height: 31px;
        font-weight: 600;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    p {
        margin-top: 0;
        margin-bottom: .9rem;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post-excerpt p:last-child {
        margin-bottom: 0;
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-excerpt p {
        color: var( --text_1);
    }
    .post .wp-post-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .jeg-elementor-kit.jkit-postblock .jkit-post-category a {
        color: var(--jkit-txt-a-color);
    }
    .elementor-element.elementor-element-791b5f4d .jeg-elementor-kit.jkit-postblock .jkit-post-category span a {
        color: var( --text_white);
    }
}


/* Yeni hizmetler */

div.elementor-widget-wrap {
    box-sizing: border-box;
    line-height: 26.4px;
}

div.elementor-widget-wrap.hizmet {
    padding: 60px 0 30px 0;
    background: var(--section_bg);
}

div.elementor-element.elementor-element-6d81a00.ui-split-animate.ui-splitby-chars.elementor-widget.elementor-widget-heading {
    ---ui-delay: 0ms;
    ---ui-speed: 1000ms;
    ---ui-stagger: 15ms;
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    opacity: 1;
    order: 0;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-6d81a00.ui-split-animate.ui-splitby-chars.elementor-widget.elementor-widget-heading:where(.e-con-full, .elementor-widget) {
    align-content: normal;
    align-items: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: normal;
    justify-content: normal;
}

div.elementor-element.elementor-element-6d81a00.ui-split-animate.ui-splitby-chars.elementor-widget.elementor-widget-heading:not(:last-child) {
    margin-bottom: 20px;
}

div.elementor-element.elementor-element-6d81a00.ui-split-animate.ui-splitby-chars.elementor-widget.elementor-widget-heading:not(.elementor-element-edit-mode) {
    opacity: 0;
}

div.elementor-widget-container {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

h2.elementor-heading-title.elementor-size-default.words.chars.splitting {
    ---ui-char-total: 22;
    ---ui-word-total: 4;
    box-sizing: border-box;
    color: #00122e;
    display: inline-block;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 54px;
    margin: 0px;
    padding: 0px;
    text-align: center;
    text-transform: none;
    transform-origin: left top;
    transition: transform 0.4s ease-out 0s;
    transition-delay: 0s;
}

span.word {
    ---ui-word-index: 0;
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

span.word:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

span.char.ui-e-animated.fadeInUp {
    ---ui-char-index: 0;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0s 1 normal both running uicoreFadeIn;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

span.char.ui-e-animated.fadeInUp:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

span.whitespace {
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='than'] {
    ---ui-word-index: 1;
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='than']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-word='than'] [data-char='t'] {
    ---ui-char-index: 4;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.06s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.06s 1 normal both running uicoreFadeIn;
    animation-delay: 0.06s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='than'] [data-char='t']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='h'][style='---ui-char-index\:5\;'] {
    ---ui-char-index: 5;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.075s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.075s 1 normal both running uicoreFadeIn;
    animation-delay: 0.075s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='h'][style='---ui-char-index\:5\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='a'][style='---ui-char-index\:6\;'] {
    ---ui-char-index: 6;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.09s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.09s 1 normal both running uicoreFadeIn;
    animation-delay: 0.09s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='a'][style='---ui-char-index\:6\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='n'][style='---ui-char-index\:7\;'] {
    ---ui-char-index: 7;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.105s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.105s 1 normal both running uicoreFadeIn;
    animation-delay: 0.105s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='n'][style='---ui-char-index\:7\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(4) {
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='just'] {
    ---ui-word-index: 2;
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='just']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='j'] {
    ---ui-char-index: 8;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.12s 1 normal both running uicoreFadeIn;
    animation-delay: 0.12s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='j']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='u'][style='---ui-char-index\:9\;'] {
    ---ui-char-index: 9;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.135s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.135s 1 normal both running uicoreFadeIn;
    animation-delay: 0.135s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='u'][style='---ui-char-index\:9\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='s'][style='---ui-char-index\:10\;'] {
    ---ui-char-index: 10;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.15s 1 normal both running uicoreFadeIn;
    animation-delay: 0.15s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='s'][style='---ui-char-index\:10\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

.fadeInUp[data-char='t'][style='---ui-char-index\:11\;'] {
    ---ui-char-index: 11;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.165s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.165s 1 normal both running uicoreFadeIn;
    animation-delay: 0.165s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.fadeInUp[data-char='t'][style='---ui-char-index\:11\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(6) {
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='scheduling'] {
    ---ui-word-index: 3;
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='scheduling']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

.ui-e-animated[data-char='s'][style='---ui-char-index\:12\;'] {
    ---ui-char-index: 12;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.18s 1 normal both running uicoreFadeIn;
    animation-delay: 0.18s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.ui-e-animated[data-char='s'][style='---ui-char-index\:12\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

.ui-e-animated[data-char='c'][style='---ui-char-index\:13\;'] {
    ---ui-char-index: 13;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.195s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.195s 1 normal both running uicoreFadeIn;
    animation-delay: 0.195s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.ui-e-animated[data-char='c'][style='---ui-char-index\:13\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='h'][style='---ui-char-index\:14\;'] {
    ---ui-char-index: 14;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.21s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.21s 1 normal both running uicoreFadeIn;
    animation-delay: 0.21s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='h'][style='---ui-char-index\:14\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='e'][style='---ui-char-index\:15\;'] {
    ---ui-char-index: 15;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.225s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.225s 1 normal both running uicoreFadeIn;
    animation-delay: 0.225s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='e'][style='---ui-char-index\:15\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

.ui-e-animated[data-char='d'][style='---ui-char-index\:16\;'] {
    ---ui-char-index: 16;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.24s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.24s 1 normal both running uicoreFadeIn;
    animation-delay: 0.24s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.ui-e-animated[data-char='d'][style='---ui-char-index\:16\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='u'][style='---ui-char-index\:17\;'] {
    ---ui-char-index: 17;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.255s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.255s 1 normal both running uicoreFadeIn;
    animation-delay: 0.255s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='u'][style='---ui-char-index\:17\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

.ui-e-animated[data-char='l'][style='---ui-char-index\:18\;'] {
    ---ui-char-index: 18;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.27s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.27s 1 normal both running uicoreFadeIn;
    animation-delay: 0.27s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

.ui-e-animated[data-char='l'][style='---ui-char-index\:18\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-word='scheduling'] [data-char='i'] {
    ---ui-char-index: 19;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.285s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.285s 1 normal both running uicoreFadeIn;
    animation-delay: 0.285s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-word='scheduling'] [data-char='i']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='n'][style='---ui-char-index\:20\;'] {
    ---ui-char-index: 20;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.3s 1 normal both running uicoreFadeIn;
    animation-delay: 0.3s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='n'][style='---ui-char-index\:20\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

[data-char='g'][style='---ui-char-index\:21\;'] {
    ---ui-char-index: 21;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.315s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.315s 1 normal both running uicoreFadeIn;
    animation-delay: 0.315s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    color: #00122e;
    font-size: 40px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;
}

[data-char='g'][style='---ui-char-index\:21\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

div.elementor-element.elementor-element-38c2bc9.elementor-widget__width-initial.elementor-widget-mobile__width-inherit.ui-split-animate.ui-splitby-lines.elementor-widget.elementor-widget-text-editor {
    ---ui-delay: 400ms;
    ---ui-speed: 1000ms;
    ---ui-stagger: 100ms;
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    margin-bottom: 0px;
    max-width: 500px;
    opacity: 1;
    order: 0;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    width: 500px;
}

div.elementor-element.elementor-element-38c2bc9.elementor-widget__width-initial.elementor-widget-mobile__width-inherit.ui-split-animate.ui-splitby-lines.elementor-widget.elementor-widget-text-editor:where(.e-con-full, .elementor-widget) {
    align-content: normal;
    align-items: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: normal;
    justify-content: normal;
}

div.elementor-element.elementor-element-38c2bc9.elementor-widget__width-initial.elementor-widget-mobile__width-inherit.ui-split-animate.ui-splitby-lines.elementor-widget.elementor-widget-text-editor:not(:last-child) {
    margin-bottom: 20px;
}

div.elementor-element.elementor-element-38c2bc9.elementor-widget__width-initial.elementor-widget-mobile__width-inherit.ui-split-animate.ui-splitby-lines.elementor-widget.elementor-widget-text-editor:not(.elementor-element-edit-mode) {
    opacity: 0;
}

.elementor-element-38c2bc9 .elementor-widget-container {
    box-sizing: border-box;
    line-height: 26.4px;
    padding: 0px 0px 48px;
    text-align: center;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

div.elementor-text-editor.elementor-clearfix.words.lines.splitting {
    ---ui-line-total: 2;
    ---ui-word-total: 21;
    box-sizing: border-box;
    display: inline-block;
    line-height: 26.4px;
    text-align: center;
    transform-origin: left top;
    transition: transform 0.666667s cubic-bezier(0.22, 1, 0.36, 1) 0s;
    transition-delay: 0s;
}

div.elementor-text-editor.elementor-clearfix.words.lines.splitting::after {
    clear: both;
    content: "";
    display: block;
    height: 0px;
    width: 0px;
}

span.word.ui-e-animated.fadeInUp {
    ---ui-line-index: 0;
    ---ui-word-index: 0;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

span.word.ui-e-animated.fadeInUp:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(2) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:1\;\ ---ui-line-index\:0\;'] {
    ---ui-line-index: 0;
    ---ui-word-index: 1;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:1\;\ ---ui-line-index\:0\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(4) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='maecenas'] {
    ---ui-line-index: 0;
    ---ui-word-index: 2;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='maecenas']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(6) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:3\;\ ---ui-line-index\:0\;'] {
    ---ui-line-index: 0;
    ---ui-word-index: 3;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:3\;\ ---ui-line-index\:0\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(8) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='lorem\.'] {
    ---ui-line-index: 0;
    ---ui-word-index: 4;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='lorem\.']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(10) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='Sed'][style='---ui-word-index\:5\;\ ---ui-line-index\:0\;'] {
    ---ui-line-index: 0;
    ---ui-word-index: 5;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='Sed'][style='---ui-word-index\:5\;\ ---ui-line-index\:0\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(12) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='duis'] {
    ---ui-line-index: 0;
    ---ui-word-index: 6;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='duis']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(14) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='consequat\,'] {
    ---ui-line-index: 0;
    ---ui-word-index: 7;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='consequat\,']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(16) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='sed'][style='---ui-word-index\:8\;\ ---ui-line-index\:0\;'] {
    ---ui-line-index: 0;
    ---ui-word-index: 8;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='sed'][style='---ui-word-index\:8\;\ ---ui-line-index\:0\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(18) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='condimentum'] {
    ---ui-line-index: 0;
    ---ui-word-index: 9;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.4s 1 normal both running uicoreFadeIn;
    animation-delay: 0.4s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='condimentum']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(20) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='in'][style='---ui-word-index\:10\;\ ---ui-line-index\:1\;'] {
    ---ui-line-index: 1;
    ---ui-word-index: 10;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='in'][style='---ui-word-index\:10\;\ ---ui-line-index\:1\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(22) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='molestie'] {
    ---ui-line-index: 1;
    ---ui-word-index: 11;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='molestie']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(24) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='tellus'] {
    ---ui-line-index: 1;
    ---ui-word-index: 12;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='tellus']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(26) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='vitae\,'] {
    ---ui-line-index: 1;
    ---ui-word-index: 13;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='vitae\,']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(28) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='a\.'] {
    ---ui-line-index: 1;
    ---ui-word-index: 14;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='a\.']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(30) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='Massa'] {
    ---ui-line-index: 1;
    ---ui-word-index: 15;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='Massa']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(32) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='eget'][style='---ui-word-index\:16\;\ ---ui-line-index\:1\;'] {
    ---ui-line-index: 1;
    ---ui-word-index: 16;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='eget'][style='---ui-word-index\:16\;\ ---ui-line-index\:1\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(34) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:17\;\ ---ui-line-index\:1\;'] {
    ---ui-line-index: 1;
    ---ui-word-index: 17;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='ac'][style='---ui-word-index\:17\;\ ---ui-line-index\:1\;']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(36) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='aenean'] {
    ---ui-line-index: 1;
    ---ui-word-index: 18;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='aenean']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(38) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='purus'] {
    ---ui-line-index: 1;
    ---ui-word-index: 19;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='purus']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

:root> :nth-child(2)> :nth-child(9)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(3)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(1)> :nth-child(2)> :nth-child(1)> :nth-child(1)> :nth-child(40) {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='faucibus\.'] {
    ---ui-line-index: 1;
    ---ui-word-index: 20;
    animation: 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s 1 normal both running uicoreFadeInUp, 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 normal both running uicoreFadeIn;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: uicoreFadeInUp, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: center;
}

[data-word='faucibus\.']:not(.whitespace):not(.ui-e-headline-text) {
    display: inline-block;
}

section.elementor-section.elementor-inner-section.elementor-element.elementor-element-979f593.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-container.elementor-column-gap-default {
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    left: 0px;
    line-height: 26.4px;
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    position: relative;
    right: 0px;
    top: 0px;
}

div.elementor-row {
    box-sizing: border-box;
    display: flex;
    line-height: 26.4px;
    width: 100%;
}

div.elementor-column-wrap.elementor-element-populated {
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    left: 0px;
    line-height: 26.4px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
    margin-bottom: 30px;
}

.elementor-element-77b928d .elementor-widget-wrap {
    align-content: flex-start;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    left: 0px;
    line-height: 26.4px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

.elementor-element-d8e0e31 .elementor-widget-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    line-height: 26.4px;
    padding: 32px 0px 0px;
}

div.bdt-ep-advanced-icon-box {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: left;
    transition: all 0.3s ease-in-out;
}

.elementor-widget-container:hover {
    transform: translateY(-4px);
    background: var(--bg_2);
}

.elementor-widget-container:hover span.span--title {
    color: var(--text_white);
}

.elementor-widget-container:hover h4.bdt-ep-advanced-icon-box-title small {
    color: var(--text_white);
}

.elementor-widget-container:hover div.bdt-ep-advanced-icon-box-description {
    color: var(--text_white);
}

.elementor-widget-container:hover span.bdt-ep-advanced-icon-box-icon-wrap {
    color: var(--bg_2);
}

div.bdt-ep-advanced-icon-box:hover .bdt-ep-advanced-icon-box-icon {
    /* test 1 */
}

div.bdt-ep-advanced-icon-box-icon {
    box-sizing: border-box;
    display: inline-block;
    line-height: 26.4px;
    margin-bottom: 16px;
    margin-left: 28px;
    text-align: left;
}

span.bdt-ep-advanced-icon-box-icon-wrap {
    background: var(--section_bg);
    border-radius: 8px;
    bottom: 0px;
    box-sizing: content-box;
    color: var(--main_text);
    display: inline-block;
    font-size: 25px;
    height: auto;
    left: 0px;
    line-height: 1;
    overflow: hidden;
    padding: 16px;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    width: 48px;
}

i.fas.fa-eye {
    -webkit-font-smoothing: antialiased;
    bottom: 0px;
    box-sizing: border-box;
    color: #20a2f5;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 25px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 1em;
    left: 0px;
    line-height: 25px;
    margin: auto;
    position: relative;
    right: 0px;
    text-align: center;
    text-rendering: auto;
    top: 0px;
    transform: rotate(0deg);
    transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 1em;
    z-index: 1;
}

i.fas.fa-eye::before {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

div.bdt-ep-advanced-icon-box-content {
    box-sizing: border-box;
    line-height: 26.4px;
    margin-top: 0px;
    padding: 0px 32px 32px;
    text-align: left;
}

h4.bdt-ep-advanced-icon-box-title {
    box-sizing: border-box;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.1px;
    margin-bottom: 28px;
    text-align: left;
    text-transform: none;
    display: flex;
    flex-direction: column;
}

h4.bdt-ep-advanced-icon-box-title small {
    font-size: 15px;
    font-weight: 500;
    color: var(--text_1);
}

h4.bdt-ep-advanced-icon-box-title:first-child {
    margin-top: 0px;
}

span.span--title {
    box-sizing: border-box;
    color: var(--main_text);
    font-size: 18px;
    font-weight: 600;
    line-height: 26.1px;
    text-align: left;
}

div.bdt-ep-advanced-icon-box-description {
    box-sizing: border-box;
    color: var(--text_1);
    font-size: 15px;
    line-height: 23.1px;
    margin-bottom: 20px;
    text-align: left;
}

div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-2e07251 {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    min-height: 1px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
}

.elementor-element-2e07251 .elementor-column-wrap {
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    left: 0px;
    line-height: 26.4px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

.elementor-element-2e07251 .elementor-widget-wrap {
    align-content: flex-start;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    left: 0px;
    line-height: 26.4px;
    padding: 10px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-4489057.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --ep-advanced-icon-box-icon-top-h-offset: 32px;
    --ep-advanced-icon-box-icon-top-v-offset: 0px;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    animation: 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running uicoreFadeInDown, 1.9s cubic-bezier(0, 0, 0.2, 1) 0s 1 normal none running uicoreFadeIn;
    animation-duration: 1.9s;
    animation-name: uicoreFadeInDown, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-4489057.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown:where(.e-con-full, .elementor-widget) {
    align-content: normal;
    align-items: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: normal;
    justify-content: normal;
}

.elementor-element-4489057 .elementor-widget-container {
    background-color: #f9f9fa;
    border-radius: 8px;
    box-sizing: border-box;
    line-height: 26.4px;
    padding: 32px 0px 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -1, 0, 0, 0, 1);
    transform-origin: 145px 145.43px;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

.elementor-element-4489057 .elementor-widget-container:hover {
    --e-transform-translatey: -4px;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: left;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-icon {
    box-sizing: border-box;
    display: inline-block;
    line-height: 26.4px;
    margin-bottom: 16px;
    text-align: left;
    transform: matrix(1, 0, 0, 1, 32, 0);
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-icon-wrap {
    background-color: #ffffff;
    border-radius: 100px;
    bottom: 0px;
    box-sizing: content-box;
    color: #818a91;
    display: inline-block;
    font-size: 25px;
    height: auto;
    left: 0px;
    line-height: 1;
    overflow: hidden;
    padding: 16px;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    transform: rotate(0deg);
    transition: all 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 48px;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-icon-wrap:hover {
    color: #818a91;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-icon-wrap::after {
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    z-index: -1;
}

i.fas.fa-mouse-pointer {
    -webkit-font-smoothing: antialiased;
    bottom: 0px;
    box-sizing: border-box;
    color: #20a2f5;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 25px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 1em;
    left: 0px;
    line-height: 25px;
    margin: auto;
    position: relative;
    right: 0px;
    text-align: center;
    text-rendering: auto;
    top: 0px;
    transform: rotate(0deg);
    transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 1em;
    z-index: 1;
}

i.fas.fa-mouse-pointer::before {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-content {
    box-sizing: border-box;
    line-height: 26.4px;
    margin-top: 0px;
    padding: 0px 32px 32px;
    text-align: left;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-title {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.1px;
    margin-bottom: 28px;
    text-align: left;
    text-transform: none;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-title:first-child {
    margin-top: 0px;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-title span {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-weight: 600;
    line-height: 26.1px;
    text-align: left;
}

.elementor-element-4489057 .bdt-ep-advanced-icon-box-description {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 23.1px;
    margin-bottom: 20px;
    text-align: left;
}

div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-d5c81f7 {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    min-height: 1px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
}

.elementor-element-d5c81f7 .elementor-column-wrap {
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    left: 0px;
    line-height: 26.4px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

.elementor-element-d5c81f7 .elementor-widget-wrap {
    align-content: flex-start;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    left: 0px;
    line-height: 26.4px;
    padding: 10px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-63a3383.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --ep-advanced-icon-box-icon-top-h-offset: 32px;
    --ep-advanced-icon-box-icon-top-v-offset: 0px;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    animation: 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running uicoreFadeInDown, 1.9s cubic-bezier(0, 0, 0.2, 1) 0s 1 normal none running uicoreFadeIn;
    animation-duration: 1.9s;
    animation-name: uicoreFadeInDown, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-63a3383.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown:where(.e-con-full, .elementor-widget) {
    align-content: normal;
    align-items: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: normal;
    justify-content: normal;
}

.elementor-element-63a3383 .elementor-widget-container {
    background-color: #f9f9fa;
    border-radius: 8px;
    box-sizing: border-box;
    line-height: 26.4px;
    padding: 32px 0px 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -1, 0, 0, 0, 1);
    transform-origin: 145px 145.43px;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

.elementor-element-63a3383 .elementor-widget-container:hover {
    --e-transform-translatey: -4px;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: left;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon {
    box-sizing: border-box;
    display: inline-block;
    line-height: 26.4px;
    margin-bottom: 16px;
    text-align: left;
    transform: matrix(1, 0, 0, 1, 32, 0);
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon-wrap {
    background-color: #ffffff;
    border-radius: 100px;
    bottom: 0px;
    box-sizing: content-box;
    color: #818a91;
    display: inline-block;
    font-size: 25px;
    height: auto;
    left: 0px;
    line-height: 1;
    overflow: hidden;
    padding: 16px;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    transform: rotate(0deg);
    transition: all 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 48px;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon-wrap:hover {
    color: #818a91;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon-wrap::after {
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    z-index: -1;
}

i.ti.ti-control-shuffle {
    -webkit-font-smoothing: antialiased;
    bottom: 0px;
    box-sizing: border-box;
    color: #20a2f5;
    display: block;
    font-family: themify;
    font-size: 25px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: 1em;
    left: 0px;
    line-height: 25px;
    margin: auto;
    position: relative;
    right: 0px;
    speak: none;
    text-align: center;
    text-transform: none;
    top: 0px;
    transform: rotate(0deg);
    transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 1em;
    z-index: 1;
}

i.ti.ti-control-shuffle::before {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-content {
    box-sizing: border-box;
    line-height: 26.4px;
    margin-top: 0px;
    padding: 0px 32px 32px;
    text-align: left;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-title {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.1px;
    margin-bottom: 28px;
    text-align: left;
    text-transform: none;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-title:first-child {
    margin-top: 0px;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-title span {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-weight: 600;
    line-height: 26.1px;
    text-align: left;
}

.elementor-element-63a3383 .bdt-ep-advanced-icon-box-description {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 23.1px;
    margin-bottom: 20px;
    text-align: left;
}

div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-f4b5402 {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    min-height: 1px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
}

.elementor-element-f4b5402 .elementor-column-wrap {
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    left: 0px;
    line-height: 26.4px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

.elementor-element-f4b5402 .elementor-widget-wrap {
    align-content: flex-start;
    bottom: 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    left: 0px;
    line-height: 26.4px;
    padding: 10px;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-57f93b2.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
    --align-content: initial;
    --align-items: initial;
    --align-self: initial;
    --ep-advanced-icon-box-icon-top-h-offset: 32px;
    --ep-advanced-icon-box-icon-top-v-offset: 0px;
    --flex-basis: initial;
    --flex-direction: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --flex-wrap: initial;
    --gap: initial;
    --justify-content: initial;
    --order: initial;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-theme-color: #000;
    --widgets-spacing: 20px;
    align-self: auto;
    animation: 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0s 1 normal none running uicoreFadeInDown, 1.9s cubic-bezier(0, 0, 0.2, 1) 0s 1 normal none running uicoreFadeIn;
    animation-duration: 1.9s;
    animation-name: uicoreFadeInDown, uicoreFadeIn;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), cubic-bezier(0, 0, 0.2, 1);
    bottom: 0px;
    box-sizing: border-box;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    left: 0px;
    line-height: 26.4px;
    order: 0;
    position: relative;
    right: 0px;
    top: 0px;
    width: 100%;
}

div.elementor-element.elementor-element-57f93b2.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown:where(.e-con-full, .elementor-widget) {
    align-content: normal;
    align-items: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: normal;
    justify-content: normal;
}

.elementor-element-57f93b2 .elementor-widget-container {
    background-color: #f9f9fa;
    border-radius: 8px;
    box-sizing: border-box;
    line-height: 26.4px;
    padding: 32px 0px 0px;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -1, 0, 0, 0, 1);
    transform-origin: 145px 145.43px;
    transition: background 0.3s ease 0s, border 0.3s ease 0s, border-radius 0.3s ease 0s, box-shadow 0.3s ease 0s, transform 0.4s ease 0s;
}

.elementor-element-57f93b2 .elementor-widget-container:hover {
    --e-transform-translatey: -4px;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box {
    box-sizing: border-box;
    line-height: 26.4px;
    text-align: left;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon {
    box-sizing: border-box;
    display: inline-block;
    line-height: 26.4px;
    margin-bottom: 16px;
    text-align: left;
    transform: matrix(1, 0, 0, 1, 32, 0);
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon-wrap {
    background-color: #ffffff;
    border-radius: 100px;
    bottom: 0px;
    box-sizing: content-box;
    color: #818a91;
    display: inline-block;
    font-size: 25px;
    height: auto;
    left: 0px;
    line-height: 1;
    overflow: hidden;
    padding: 16px;
    position: relative;
    right: 0px;
    text-align: center;
    top: 0px;
    transform: rotate(0deg);
    transition: all 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 48px;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon-wrap:hover {
    color: #818a91;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon-wrap::after {
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    z-index: -1;
}

i.fas.fa-phone-volume {
    -webkit-font-smoothing: antialiased;
    bottom: 0px;
    box-sizing: border-box;
    color: #20a2f5;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 25px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 1em;
    left: 0px;
    line-height: 25px;
    margin: auto;
    position: relative;
    right: 0px;
    text-align: center;
    text-rendering: auto;
    top: 0px;
    transform: rotate(0deg);
    transition: transform 350ms cubic-bezier(0.24, 0.85, 0.58, 1) 0s;
    width: 1em;
    z-index: 1;
}

i.fas.fa-phone-volume::before {
    content: "";
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-content {
    box-sizing: border-box;
    line-height: 26.4px;
    margin-top: 0px;
    padding: 0px 32px 32px;
    text-align: left;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-title {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.1px;
    margin-bottom: 28px;
    text-align: left;
    text-transform: none;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-title:first-child {
    margin-top: 0px;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-title span {
    box-sizing: border-box;
    color: #00122e;
    font-size: 18px;
    font-weight: 600;
    line-height: 26.1px;
    text-align: left;
}

.elementor-element-57f93b2 .bdt-ep-advanced-icon-box-description {
    box-sizing: border-box;
    font-size: 14px;
    line-height: 23.1px;
    margin-bottom: 20px;
    text-align: left;
}

@keyframes uicoreFadeInUp {
    0% {
        transform: translate3d(0px, 40px, 0px);
    }
    100% {
        transform: translateZ(0px);
    }
}

@keyframes uicoreFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes uicoreFadeInDown {
    0% {
        transform: translate3d(0px, -40px, 0px);
    }
    100% {
        transform: translateZ(0px);
    }
}

@media (max-width: 767px) {
    div.elementor-widget-container {
        padding: 0px 10px;
    }
    div.elementor-element.elementor-element-38c2bc9.elementor-widget__width-initial.elementor-widget-mobile__width-inherit.ui-split-animate.ui-splitby-lines.elementor-widget.elementor-widget-text-editor {
        max-width: 100%;
        width: 100%;
    }
    .elementor-element-38c2bc9 .elementor-widget-container {
        padding: 0px 10px 24px;
    }
    div.elementor-container.elementor-column-gap-default {
        max-width: 767px;
    }
    div.elementor-element.elementor-element-d8e0e31.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 30px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-d8e0e31 .elementor-widget-container {
        border-radius: 6px;
        padding: 30px 0px 0px;
    }
    div.bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    span.bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    div.bdt-ep-advanced-icon-box-content {
        padding: 0px 30px 30px;
    }
    h4.bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-2e07251 {
        width: 100%;
    }
    div.elementor-element.elementor-element-4489057.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 30px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-4489057 .elementor-widget-container {
        border-radius: 6px;
        padding: 30px 0px 0px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-content {
        padding: 0px 30px 30px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-d5c81f7 {
        width: 100%;
    }
    div.elementor-element.elementor-element-63a3383.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 30px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-63a3383 .elementor-widget-container {
        border-radius: 6px;
        padding: 30px 0px 0px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-content {
        padding: 0px 30px 30px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-f4b5402 {
        width: 100%;
    }
    div.elementor-element.elementor-element-57f93b2.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 30px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-57f93b2 .elementor-widget-container {
        border-radius: 6px;
        padding: 30px 0px 0px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-content {
        padding: 0px 30px 30px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 1024px) {
    div.elementor-widget-container {
        padding: 0px 0px 32px;
    }
    div.elementor-container.elementor-column-gap-default {
        flex-wrap: wrap;
        max-width: 1024px;
    }
    div.elementor-row {
        flex-wrap: wrap;
    }
    div.elementor-element.elementor-element-d8e0e31.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 32px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-d8e0e31 .elementor-widget-container {
        border-radius: 7px;
        padding: 32px 0px 0px;
    }
    div.bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    span.bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    div.bdt-ep-advanced-icon-box-content {
        padding: 0px 32px 32px;
    }
    h4.bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-element.elementor-element-4489057.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 32px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-4489057 .elementor-widget-container {
        border-radius: 7px;
        padding: 32px 0px 0px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-content {
        padding: 0px 32px 32px;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-element.elementor-element-63a3383.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 32px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-63a3383 .elementor-widget-container {
        border-radius: 7px;
        padding: 32px 0px 0px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-content {
        padding: 0px 32px 32px;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
    div.elementor-element.elementor-element-57f93b2.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        --ep-advanced-icon-box-icon-top-h-offset: 32px;
        --ep-advanced-icon-box-icon-top-v-offset: 0px;
    }
    .elementor-element-57f93b2 .elementor-widget-container {
        border-radius: 7px;
        padding: 32px 0px 0px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon {
        margin-bottom: 14px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon-wrap {
        border-radius: 100px;
        font-size: 22px;
        overflow: hidden;
        padding: 14px;
        width: 22px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-content {
        padding: 0px 32px 32px;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-title {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    div.bdt-ep-advanced-icon-box-icon {
        display: inline-block;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-2e07251 {
        width: 25%;
    }
    .elementor-element-4489057 .bdt-ep-advanced-icon-box-icon {
        display: inline-block;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-d5c81f7 {
        width: 25%;
    }
    .elementor-element-63a3383 .bdt-ep-advanced-icon-box-icon {
        display: inline-block;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-f4b5402 {
        width: 25%;
    }
    .elementor-element-57f93b2 .bdt-ep-advanced-icon-box-icon {
        display: inline-block;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-2e07251 {
        width: 50%;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-d5c81f7 {
        width: 50%;
    }
    div.elementor-column.elementor-col-25.elementor-inner-column.elementor-element.elementor-element-f4b5402 {
        width: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    div.elementor-element.elementor-element-d8e0e31.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        animation: 0s ease 0s 1 normal none running none;
    }
    div.elementor-element.elementor-element-4489057.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        animation: 0s ease 0s 1 normal none running none;
    }
    div.elementor-element.elementor-element-63a3383.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        animation: 0s ease 0s 1 normal none running none;
    }
    div.elementor-element.elementor-element-57f93b2.e-transform.bdt-icon-type-icon.elementor-position-top.bdt-icon-effect-none.elementor-widget.elementor-widget-bdt-advanced-icon-box.animated.fadeInDown {
        animation: 0s ease 0s 1 normal none running none;
    }
}


/* Yeni hizmetler */

section#portfolio .content__title {
    margin-bottom: 24px;
}

section#portfolio .portfolio__container .portfolio__item {
    background: #fff;
    border-radius: 3px;
    padding: 30px;
    border: 15px solid var(--site_bg);
    border-radius: 10px;
    overflow: hidden;
    border-bottom: 10px;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--section_bg);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-top .portfolio__item-icon {
    overflow: hidden;
    margin-right: 25px;
    width: 60px;
    height: 60px;
    background: var(--bg_3);
    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;
    border-radius: 50%;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    position: relative;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 0;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-top .portfolio__item-icon:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: var(--bg_2);
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-top .portfolio__item-icon i {
    font-size: 23px;
    margin-top: 2px;
    color: var(--main_text);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-info .portfolio__item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--text_1);
    margin-bottom: 1px;
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-info .portfolio__item-title {
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    color: var(--main_text);
}

section#portfolio .portfolio__container .portfolio__item .portfolio__item-detail {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: var(--text_1);
}

section#portfolio .portfolio__container .portfolio__item:hover .portfolio__item-top .portfolio__item-icon:after {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

section#portfolio .portfolio__container .portfolio__item:hover .portfolio__item-top .portfolio__item-icon i {
    color: var(--text_white);
}

section#portfolio.aboutusportfolio .portfolio__container .portfolio__item {
    border: 15px solid var(--section_bg) !important;
}


/* These were inline style tags. Uses id+class to override almost everything */

#style-rBTog.style-rBTog {
    visibility: visible;
}

#style-GvyhP.style-GvyhP {
    visibility: visible;
}

section#blog {
    padding: 50px 0;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-image {
    border-radius: 8px 8px 0 0;
    line-height: 0;
    overflow: hidden;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-image img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: .7s;
    transform: scale(1);
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body {
    padding: 30px;
    background: #fff;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-cat span a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_1);
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog-text {
    padding: 20px 0 25px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #f3f5f7;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--text_1);
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-title a {
    font-weight: 600;
    font-size: 17px;
    line-height: 21px;
    color: var(--main_text);
    background-image: linear-gradient(var(--bg_2), var(--bg_2));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    transition: background-size 0.8s;
    display: initial !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-title a:hover {
    background-size: 100% 3px;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-btn a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--text_1);
    position: relative;
    padding-bottom: 5px;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

section#blog .blog__container .blog__item .blog__item-detail .blog__item-body .blog__item-btn a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--text_1);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0.7;
}

section#blog .blog__container .blog__item .blog__item-detail:hover .blog__item-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

section#blog .blog__container .blog__item .blog__item-detail:hover .blog__item-body .blog__item-btn a {
    color: var(--bg_2);
}

section#blog .blog__container .blog__item .blog__item-detail:hover .blog__item-body .blog__item-btn a:after {
    width: 100%;
    background: var(--bg_2);
}

section#blog .blog__container .blog__container-pagi {
    margin: 30px 0 0 0;
}

section#blog.blog__main .blog__container .blog__item .blog__item-detail {
    margin-bottom: 40px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .sidebar__ads {
    margin-bottom: 30px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .sidebar__ads .ad {
    height: 285px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .sidebar__ads .ad img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .box-title {
    padding: 18px 20px;
    color: var(--text_white);
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    background: var(--bg_2);
    border-radius: 3px 3px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .box-title svg {
    margin-right: 7px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .box-title svg path {
    fill: var(--text_white);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 0 3px 3px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container {
    position: relative;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--main_text);
    width: 100%;
    padding-left: 15px;
    line-height: 47px;
    border: 1px solid #F4F8FB;
    border-radius: 3px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input:-ms-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input::-ms-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container input::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-search .search .form-container button {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: 5px;
    border: none;
    background-color: transparent;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat {
    margin-bottom: 30px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .box-title {
    padding: 18px 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_white);
    background: var(--bg_2);
    border-radius: 3px 3px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .box-title svg {
    margin-right: 7px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .box-title svg path {
    fill: var(--text_white);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features {
    background-color: #fff;
    padding: 25px;
    border-radius: 0 0 3px 3px;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul {
    overflow: hidden;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F4F8FB;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item a {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item a i {
    margin-right: 10px;
    font-size: 17px;
    color: var(--text_1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:hover a {
    color: var(--main_text);
}

section#blog.blog__main .blog__main-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:hover a i {
    color: var(--bg_2);
}

.pagination {
    text-align: center;
    width: 100%;
}

.pagination .page-item {
    width: 100%;
    max-width: 90px;
}

.pagination .page-item .page-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text_1);
    background: var(--section_bg);
    padding: 0;
    line-height: 48px;
    border: none !important;
    outline: none;
    -webkit-transition: 400ms;
    transition: 400ms;
}

.pagination .page-item .page-link:hover {
    background: var(--bg_2);
    color: var(--text_white);
}

.pagination .page-item .page-link.active {
    background-color: var(--bg_2);
    color: var(--text_white);
}

.pagination .page-item .page-link:focus {
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#blog-comments {
    padding-bottom: 50px;
}

.blog__sidebar-search .box-title {
    padding: 18px 20px;
    color: var(--text_white);
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    background: var(--bg_2);
    border-radius: 3px 3px 0 0;
}

.blog__sidebar-search .box-title svg {
    margin-right: 12px;
}

.blog__sidebar-search .box-title svg path {
    fill: var(--text_white);
}

.blog__sidebar-search .search {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 0 3px 3px;
}

.blog__sidebar-search .search .form-container {
    position: relative;
}

.blog__sidebar-search .search .form-container input {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--main_text);
    width: 100%;
    padding-left: 15px;
    line-height: 47px;
    border: 1px solid #F4F8FB;
    border-radius: 3px;
}

.blog__sidebar-search .search .form-container input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.blog__sidebar-search .search .form-container input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

.blog__sidebar-search .search .form-container input:-ms-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

.blog__sidebar-search .search .form-container input::-ms-input-placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

.blog__sidebar-search .search .form-container input::placeholder {
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: var(--text_1);
}

.blog__sidebar-search .search .form-container button {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: 5px;
    border: none;
    background-color: transparent;
}

.footer--top__block {
    padding-bottom: 105px;
    padding-top: 60px;
}

.footer--top__block .block--wrapper {
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -50px;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}

.footer--top__block .block--wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.07;
    border-radius: 8px;
    background: var(--bg_2);
    z-index: -1;
}

.footer--top__block .block--wrapper .block--content--left {
    border-radius: 3px;
}

.footer--top__block .block--wrapper .block--content--left h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: var(--main_text);
    margin-bottom: 7px;
}

.footer--top__block .block--wrapper .block--content--left p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--main_text);
    margin-bottom: 0;
}

.footer--top__block .block--wrapper .block--content--right {
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.footer--top__block .block--wrapper .block--content--right a {
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: var(--text_white);
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kutu_1_buton);
    height: 60px;
}

.footer--top__block .block--wrapper .block--content--right a:not(:last-child) {
    margin-right: 30px;
}

.footer--top__block .block--wrapper .block--content--right a.whatsapp {
    background: var(--kutu_2_buton);
}

.text--area.padding {
    margin: 50px 0;
}

.text--area .image--area {
    border-radius: 14px;
    overflow: hidden;
}

.text--area .image--area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.text--area .text--content {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.text--area .text--content .text--title {
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: var(--main_text);
    margin-bottom: 30px;
    padding-bottom: 30px;
    position: relative;
}

.text--area .text--content .text--title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--text_1);
    opacity: 0.04;
}

.text--area .text--content .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--text_1);
}

.text--area .text--content {
    padding: 30px;
    background: #fff;
    border-radius: 5px;
}

.text--area .text--content .text--title {
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: var(--main_text);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.text--area .text--content .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--text_1);
}

.breadcrumb {
    margin: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb.blog .breadcrumb__container .breadcrumb__title {
    font-size: 20px;
    line-height: 29px;
}

.breadcrumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--section_bg);
}

.breadcrumb .breadcrumb__container {
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
    padding: 10px 0;
}

.breadcrumb .breadcrumb__container .breadcrumb__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: var(--text_white);
}

.breadcrumb .breadcrumb__container ul span {
    margin: 0 5px;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.breadcrumb .breadcrumb__container ul span i {
    line-height: 4px;
    color: var(--main_text);
}

.breadcrumb .breadcrumb__container ul li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: var(--main_text);
}

.breadcrumb .breadcrumb__container ul li:first-child i {
    display: none;
}

.breadcrumb .breadcrumb__container ul li i {
    line-height: 21px;
    color: var(--text_1);
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}

.breadcrumb .breadcrumb__container ul li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: var(--text_1);
}

.custom--layout {
    padding: 60px 0;
}

.custom--layout.page--bayi {
    padding: 50px 0 98px 0;
    margin-bottom: -50px;
}

.custom--layout .custom--layout__wrapper .layout--content {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 25px;
    transition: all 0.3s ease-in;
    border-radius: 8px;
}

.custom--layout .custom--layout__wrapper .layout--content:hover .icon::after {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.custom--layout .custom--layout__wrapper .layout--content:hover .icon i {
    color: var(--text_white);
}

.custom--layout .custom--layout__wrapper .layout--content .icon {
    min-width: 80px;
    height: 80px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--section_bg);
    margin-right: 25px;
    position: relative;
    transition: all 0.3s ease-in;
    z-index: 0;
    overflow: hidden;
    transition: 0.4s;
}

.custom--layout .custom--layout__wrapper .layout--content .icon i {
    font-size: 30px;
    color: var(--text_1);
    transition: all 0.3s ease-in;
}

.custom--layout .custom--layout__wrapper .layout--content .icon::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: var(--bg_2);
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.custom--layout .custom--layout__wrapper .layout--content .text {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.custom--layout .custom--layout__wrapper .layout--content .text span {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 2px;
    color: var(--text_1);
    transition: all 0.3s ease-in;
}

.custom--layout .custom--layout__wrapper .layout--content .text strong {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: var(--main_text);
    transition: all 0.3s ease-in;
}

section#customContent {
    padding-bottom: 20px;
}

section#customContent .customContent__container .customContent__item {
    margin-bottom: 30px;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 25px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail .customContent__item-icon {
    margin-right: 30px;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail .customContent__item-icon i {
    font-size: 40px;
    color: var(--main__text);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail .customContent__item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail .customContent__item-text span.smile {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--text_1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail .customContent__item-text span {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--main_text);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail svg {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-left: auto;
}

section#customContent .customContent__container .customContent__item .customContent__item-detail svg path {
    fill: var(--text_1);
}

section#customContent .customContent__container .customContent__item .customContent__item-detail:hover {
    background: var(--bg_2);
}

section#customContent .customContent__container .customContent__item .customContent__item-detail:hover .customContent__item-icon i {
    color: var(--text_white);
}

section#customContent .customContent__container .customContent__item .customContent__item-detail:hover .customContent__item-text span {
    color: var(--text_white);
}

section#customContent .customContent__container .customContent__item .customContent__item-detail:hover svg {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

section#customContent .customContent__container .customContent__item .customContent__item-detail:hover svg path {
    fill: var(--text_white);
}

section#page__text {
    padding: 50px 0;
}

section#page__text .page__text-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 3px;
}

section#page__text .page__text-container p {
    color: var(--text_1);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

section#page__text .page__text-container p b {
    font-weight: 700;
}

section#bank {
    position: relative;
    padding: 60px 0;
    z-index: 0;
}

section#bank .bank-item {
    margin-bottom: 30px;
}

section#bank .bank-item .bank-container {
    padding: 40px;
    background-color: #fff;
    border-radius: 3px;
}

section#bank .bank-item .bank-container .bank-top {
    border-bottom: 1px solid #ECF9FF;
    padding-bottom: 23px;
    margin-bottom: 25px;
    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;
    z-index: 1;
    position: relative;
}

section#bank .bank-item .bank-container .bank-top .bank-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-top: 15px;
    color: var(--main_text);
}

section#bank .bank-item .bank-container .bank-top svg {
    -webkit-transition: 400ms;
    transition: 400ms;
}

section#bank .bank-item .bank-container .bank-bottom p {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--main_text);
}

section#bank .bank-item .bank-container .bank-bottom p b {
    font-weight: 700;
}

section#bank .bank-item .bank-container .bank-bottom p button {
    border: none;
    background-color: var(--theme_color_btn2);
    text-align: center;
    vertical-align: middle;
    padding: 1px 6px;
    color: #fff;
}

section#bank .bank-item .bank-container .bank-bottom p button i {
    color: #fff;
    font-size: 14px;
}

section#bank .bank-item .bank-container .bank-bottom p button svg {
    vertical-align: inherit;
}

section#bank .bank-item .bank-container .bank-bottom p:not(:last-child) {
    margin-bottom: 20px;
}

section#bank .bank-item:hover span.arr svg {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

section#bank .bank-item:hover span.arr svg path {
    fill: var(--bg_2);
}

section#counter {
    padding-bottom: 50px;
}

section#counter .main-counter-list .counter-box {
    background: #fff;
    border-radius: 3px;
    padding: 15px 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

section#counter .main-counter-list .counter-box:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: "";
    background-color: var(--bg_2);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    border-radius: 3px;
    -webkit-transition: .3s;
    transition: .3s;
}

section#counter .main-counter-list .counter-box .box-img {
    margin-right: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

section#counter .main-counter-list .counter-box .box-img i {
    font-size: 30px;
    color: var(--main_text);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#counter .main-counter-list .counter-box .box-detail {
    z-index: 1;
}

section#counter .main-counter-list .counter-box .box-detail .counter-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--main_text);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#counter .main-counter-list .counter-box .box-detail p {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    color: var(--text_1);
    margin-bottom: 2px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#counter .main-counter-list .counter-box:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

section#counter .main-counter-list .counter-box:hover .box-img i {
    color: var(--text_white);
}

section#counter .main-counter-list .counter-box:hover .box-detail .counter-title,
section#counter .main-counter-list .counter-box:hover .box-detail p {
    color: var(--text_white);
}

section#blog__content {
    padding: 50px 0;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-image {
    height: 350px;
    overflow: hidden;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info {
    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;
    padding: 20px 30px;
    background: var(--section_bg);
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li img.admin {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li:not(:last-child) {
    margin-right: 20px;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li i,
section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li img {
    font-size: 16px;
    margin-right: 10px;
    color: var(--text_1);
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li span {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: var(--text_1);
    vertical-align: bottom;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li a {
    font-weight: 500;
    font-size: 13px;
    color: var(--text_1);
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info .share li:not(:last-child) {
    margin-right: 10px;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info .share li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #fff;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-info .share li a img {
    width: 100%;
    height: auto;
    padding: 8px;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-text {
    padding: 30px;
    background: #fff;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-text h1,
section#blog__content .blog__content-container .blog__content-left .blog__content-text h2,
section#blog__content .blog__content-container .blog__content-left .blog__content-text h3 {
    font-weight: 700;
    font-size: 19px;
    line-height: 28px;
    color: var(--main_text);
    margin-bottom: 30px;
}

section#blog__content .blog__content-container .blog__content-left .blog__content-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: var(--text_1);
}

section#blog__content .blog__content-container .blog__sidebar .sidebar__ads {
    margin-bottom: 30px;
}

section#blog__content .blog__content-container .blog__sidebar .sidebar__ads .ad {
    height: 285px;
}

section#blog__content .blog__content-container .blog__sidebar .sidebar__ads .ad img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat {
    margin-bottom: 30px;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .box-title {
    padding: 18px 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_white);
    background: var(--bg_2);
    border-radius: 3px 3px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .box-title svg {
    margin-right: 7px;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .box-title svg path {
    fill: var(--text_white);
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features {
    background-color: #fff;
    padding: 25px;
    border-radius: 0 0 3px 3px;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul {
    overflow: hidden;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F4F8FB;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item a {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item a i {
    margin-right: 10px;
    font-size: 17px;
    color: var(--text_1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:hover a {
    color: var(--main_text);
}

section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat .blog__sidebar-features ul li.category-item:hover a i {
    color: var(--bg_2);
}

section#blog__content .blog__content-container .ad_hori {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 30px 0 0 0;
}

section#blog__content .blog__content-container .ad_hori a {
    outline: none;
}

section#blog__content .blog__content-container .ad_hori a img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section.order-inquiry {
    padding: 50px 0;
}

section.order-inquiry .order-inquiry-wrapper {
    background: #fff;
    border-radius: 3px;
    padding: 25px;
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_top {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #F4F8FB;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    color: var(--main_text);
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 25px;
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .o_label {
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
    color: var(--main_text);
    margin-bottom: 15px;
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .order_control {
    border: 1px solid #F1F1F1;
    width: 100%;
    border-radius: 3px;
    font-size: 15px;
    height: 50px;
    padding: 15px;
    line-height: 19px;
    color: var(--main_text);
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .order_control::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 16px;
    color: var(--text_1);
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .order_control:-ms-input-placeholder {
    font-size: 15px;
    line-height: 16px;
    color: var(--text_1);
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .order_control::-ms-input-placeholder {
    font-size: 15px;
    line-height: 16px;
    color: var(--text_1);
}

section.order-inquiry .order-inquiry-wrapper .order-inquiry_body .order_control::placeholder {
    font-size: 15px;
    line-height: 16px;
    color: var(--text_1);
}

section.order-inquiry .order-inquiry-wrapper .order-action-btn button {
    display: block;
    height: 50px;
    width: 100%;
    border: none;
    color: #fff;
    background: var(--bg_2);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    border-radius: 3px;
}

.orderBox .orarea {
    margin-top: 50px;
    border-radius: 3px;
    padding: 15px;
    font-size: 15px;
    line-height: 25px;
    color: var(--text_1);
    position: relative;
    z-index: 0;
}

.orderBox .orarea::after {
    content: "";
    position: absolute;
    background: var(--bg_2);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0.07;
    top: 0;
    left: 0;
    z-index: -1;
}

section#productBox {
    padding: 50px 0;
}

section#productBox.portfolioPage .product__box-container .product__box-title {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F4F8FB;
}

section#productBox.portfolioPage .product__box-container .product__box-action {
    padding: 30px 0;
    padding-bottom: 0;
}

section#productBox.portfolioPage .product__box-container .product__box-action a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 130px;
    height: 65px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_white);
    background: var(--bg_2);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

section#productBox.portfolioPage .product__box-container .product__box-action a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
}

section#productBox.portfolioPage .product__box-container .product__box-action a:hover {
    background: transparent;
    color: var(--text_1);
}

section#productBox.portfolioPage .product__box-container .product__box-action a:hover::after {
    background: transparent;
    border: 1px solid var(--text_1);
    opacity: 0.04;
    color: var(--text_1);
}

section#productBox .product__box-container .product__box-view {
    background: #fff;
    border-radius: 3px;
}

section#productBox .product__box-container .product__box-view .product__box-title {
    padding-top: 30px;
    padding-left: 30px;
}

section#productBox .product__box-container .product__box-view .product__box-title h1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--main_text);
}

section#productBox .product__box-container .product__box-view .product__box-amount {
    padding: 25px 30px 20px 30px;
    background: var(--section_bg);
    margin: 30px 0;
    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;
}

section#productBox .product__box-container .product__box-view .product__box-amount ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

section#productBox .product__box-container .product__box-view .product__box-amount ul li {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_1);
}

section#productBox .product__box-container .product__box-view .product__box-amount ul li i {
    font-size: 16px;
    margin-right: 8px;
}

section#productBox .product__box-container .product__box-view .product__box-amount ul li strong {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}

section#productBox .product__box-container .product__box-view .product__box-amount ul li:not(:last-child) {
    margin-right: 30px;
}

section#productBox .product__box-container .product__box-view .product__box-amount .product__box-action a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 130px;
    height: 43px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_white);
    background: var(--bg_2);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

section#productBox .product__box-container .product__box-view .product__box-amount .product__box-action a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text_1);
    opacity: 0.04;
}

section#productBox .product__box-container .product__box-view .product__box-amount .product__box-action a:hover {
    background: transparent;
    color: var(--text_1);
}

section#productBox .product__box-container .product__box-view .product__box-amount .product__box-action a:hover::after {
    border: 1px solid var(--text_1);
    opacity: 0.04;
}

section#productBox .product__box-container .product__box-view .product__box-text {
    padding: 0 30px 30px 30px;
}

section#productBox .product__box-container .product__box-view .product__box-text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: var(--text_1);
}

section#productBox .product__box-container .product__box-ads {
    padding-top: 30px;
}

section#productBox .product__box-container .product__box-ads img {
    display: block;
    overflow: hidden;
    width: 100%;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent {
    background: #fff;
    border-radius: 3px;
    padding: 30px;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide {
    overflow: hidden !important;
    position: relative;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide>.product__box-item:not(:first-child) {
    display: none;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide .slick-track {
    display: block;
    overflow: hidden !important;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide .product__box-item a {
    overflow: hidden;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide .product__box-item.slick-slide {
    overflow: hidden;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide .product__box-item img {
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    border-radius: 3px;
    width: 100%;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide i {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 24px;
    width: 35px;
    background: var(--bg_2);
    color: var(--text_white);
    border-radius: 50%;
    height: 35px;
    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;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide:hover i {
    opacity: 1;
    visibility: visible;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide i.nextarrow {
    position: absolute;
    right: 4px;
}

section#productBox .product__box-container .product__box-sidebar .product__box-sidecontent .product__box-sideslide i.prevarrow {
    position: absolute;
    left: 40px;
    z-index: 1;
}

section#productBox .product__box-container .product__box-sidebar .sidebar__ads {
    margin-top: 30px;
}

section#productBox .product__box-container .product__box-sidebar .sidebar__ads .ad {
    text-align: center;
}

section#productBox .product__box-container .product__box-sidebar .sidebar__ads .ad img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

section#productBox .product__box-container hr {
    margin: 0;
    border-top: 1px solid var(--text_1);
    opacity: 0.04;
    margin-top: 30px;
}

section#productBox .product__box-container .product__box-features {
    padding: 30px 0 0 0;
}

section#productBox .product__box-container .product__box-features ul li {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    cursor: default;
    color: var(--text_1);
    padding: 15px;
    background: var(--bg_3);
    border: 1px solid var(--bg_3);
    border-radius: 3px;
}

section#productBox .product__box-container .product__box-features ul li i {
    font-size: 17px;
    margin-right: 10px;
}

section#productBox .product__box-container .product__box-features ul li:not(:last-child) {
    margin-bottom: 30px;
}

section#productBox .product__box-container .product__box-features.second {
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 3px;
}

section#productBox .product__box-container .product__box-features.second h4 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: var(--main_text);
    border-bottom: 1px solid #F4F8FB;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

section#productBox .product__box-container .product__box-features.second ul li {
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

section#productBox .product__box-container .product__box-features.second ul li::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: "";
    background-color: var(--bg_2);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    border-radius: 3px;
    transition: 0.3s;
}

section#productBox .product__box-container .product__box-features.second ul li:hover::after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

section#productBox .product__box-container .product__box-features.second ul li:hover a {
    color: var(--text_white);
    padding-left: 5px;
}

section#productBox .product__box-container .product__box-features.second ul li a {
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text_1);
    width: 100%;
    height: 100%;
}

section#productBox .product__box-container .product__box-features.second ul li a i {
    transition: all 0.3s ease-in-out;
}

.slick-lightbox-slick .slick-arrow {
    display: none !important;
}

section#contact-boxes {
    position: relative;
    padding: 50px 0 20px 0;
    z-index: 0;
}

section#contact-boxes .row .box-detail {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

section#contact-boxes .row .col-xl-4 {
    margin-bottom: 30px;
}

section#contact-boxes .row .box-detail .bn-2 {
    overflow: hidden;
    width: 60px;
    height: 60px;
    background: var(--bg_3);
    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;
    border-radius: 50%;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    position: relative;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 0;
}

section#contact-boxes .row .box-detail .bn-2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 0;
    background-color: var(--bg_2);
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

section#contact-boxes .row .box-detail .bn-2 i {
    font-size: 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

section#contact-boxes .row .box-detail p {
    padding: 30px 0 6px 0;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: var(--text_1);
}

section#contact-boxes .row .box-detail a,
section#contact-boxes .row .box-detail span {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--main_text);
}

section#contact-boxes .row .box-detail svg {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

section#contact-boxes .row .box-detail:hover .bn-2:after {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

section#contact-boxes .row .box-detail:hover .bn-2 i {
    color: var(--text_white);
}

section#contact-boxes .row .box-detail:hover span.arr svg {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

section#contact-boxes .row .box-detail:hover span.arr svg path {
    fill: var(--bg_2);
}

.goog-text-highlight {
    vertical-align: unset !important;
}

section#contact-form {
    margin-bottom: 50px;
}

section#contact-form .contact-img {
    height: 585px;
    overflow: hidden;
    margin: 0 auto;
}

section#contact-form .contact-img iframe,
section#contact-form .contact-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px;
}

section#contact-form .form {
    border-radius: 3px;
}

section#contact-form .form .form-bottom .form-box {
    position: relative;
    margin-bottom: 30px;
}

section#contact-form .form .form-bottom .form-box input {
    font-size: 15px;
    line-height: 15px;
    color: var(--main_text);
    width: 100%;
    font-size: 14px;
    line-height: 70px;
    padding: 0 0 0 50px;
    border: none;
    border-radius: 3px;
}

section#contact-form .form .form-bottom .form-box input:focus {
    outline: none;
}

section#contact-form .form .form-bottom .form-box input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box input:-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box input::-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box input::placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box.message {
    margin-bottom: 22px;
}

section#contact-form .form .form-bottom .form-box textarea {
    font-size: 15px;
    line-height: 15px;
    width: 100%;
    color: var(--main_text);
    min-height: 185px;
    border: none;
    padding: 26px 0 0 19px;
    border-radius: 3px;
}

section#contact-form .form .form-bottom .form-box textarea:focus {
    outline: none;
}

section#contact-form .form .form-bottom .form-box textarea::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box textarea:-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box textarea::-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box textarea::placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

section#contact-form .form .form-bottom .form-box button {
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    border: none;
    background-color: var(--bg_2);
    line-height: 68px;
    border-radius: 3px;
}

section#contact-form .form .form-bottom .form-box i {
    position: absolute;
    font-size: 20px;
    color: var(--text_1);
    left: 25px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section#contact-bottom {
    padding-bottom: 20px;
}

section#contact-bottom .bottom-boxes .boxes-item {
    margin-bottom: 30px;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
    border-radius: 3px;
    padding: 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
    position: relative;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: "";
    background-color: var(--bg_2);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    border-radius: 3px;
    -webkit-transition: .3s;
    transition: .3s;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--text_1);
    width: 100%;
    height: 72px;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail a i {
    font-weight: 400;
    font-size: 22px;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail svg {
    color: var(--main_text);
    font-size: 25px;
    margin-right: 15px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: var(--theme_color_2_hover);
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail:hover a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail:hover svg {
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

section#contact-bottom .bottom-boxes .boxes-item .boxes-detail:hover:after {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.siparis {
    padding: 60px 0;
}

.siparis .section-title {
    margin-bottom: 40px;
}

.siparis .section-title h2 {
    color: var(--main_text);
    border-bottom: 1px solid #F4F8FB;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.siparis .section-title h2 b {
    padding: 0 5px;
}

.siparis .lightbox-container {
    background: #fff;
    padding: 30px;
}

.siparis #product-lightbox .box-title {
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--main_text);
    padding: 0 30px 30px 0;
    margin-bottom: 20px;
}

.siparis #product-lightbox .price {
    background: #fff;
    padding: 30px;
}

.siparis #product-lightbox .price strong {
    font-size: 14px;
    line-height: 17px;
    color: var(--main_text);
    font-weight: 400;
    margin-bottom: 5px;
}

.siparis #product-lightbox .price span {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: var(--main_text);
}

.siparis #product-lightbox .price span:not(:last-child) {
    border-bottom: 1px solid #F4F8FB;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.siparis #product-lightbox .price span.toplam strong {
    color: var(--bg_2);
    font-weight: 600;
}

.siparis #product-lightbox .price span.toplam b {
    color: var(--bg_2);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.siparis #product-lightbox .price span.toplam b b {
    margin-right: 3px;
}

.siparis #selector {
    position: relative;
    margin: 0;
}

.siparis #selector .bootstrap-select {
    width: 100%;
}

.siparis #selector .form-control {
    border-radius: 16px;
    background: transparent;
}

.siparis #selector .form-control:hover {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.siparis #selector .dropdown-toggle {
    padding: 18px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ECF9FF;
}

.siparis #selector .dropdown-toggle:hover {
    background: #fff;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.siparis #selector .dropdown-toggle:focus {
    outline: none;
    outline: none !important;
    outline-offset: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.siparis #selector .dropdown-toggle:after {
    display: none;
}

.siparis #selector .dropdown-toggle .filter-option-inner-inner {
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    color: var(--text_1);
}

.siparis #selector .dropdown-menu {
    border: none;
    border-radius: 16px;
    min-width: 96.5%;
}

.siparis #selector .dropdown-menu .dropdown-item {
    color: var(--main_text);
}

.siparis #selector .dropdown-menu .dropdown-item.active {
    background: transparent;
    color: var(--main_text);
}

.siparis #selector .dropdown-menu .dropdown-item:active {
    background: transparent;
}

.siparis #selector .dropdown-menu .dropdown-item:focus {
    background: transparent;
}

.siparis #selector i {
    position: absolute;
    right: 20px;
    top: 50%;
    color: var(--text_1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.siparis .form {
    border-radius: 3px;
}

.siparis .form .form-bottom .form-box {
    position: relative;
    margin-bottom: 30px;
}

.siparis .form .form-bottom .form-box input {
    font-size: 15px;
    line-height: 15px;
    color: var(--main_text);
    width: 100%;
    font-size: 14px;
    line-height: 50px;
    padding: 0 0 0 20px;
    border: 1px solid #ECF9FF;
    margin-bottom: 30px;
    border-radius: 3px;
}

.siparis .form .form-bottom .form-box input:focus {
    outline: none;
}

.siparis .form .form-bottom .form-box input::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 17px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box input:-ms-input-placeholder {
    font-size: 14px;
    line-height: 17px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box input::-ms-input-placeholder {
    font-size: 14px;
    line-height: 17px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box input::placeholder {
    font-size: 14px;
    line-height: 17px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box button {
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    border: none;
    background-color: var(--bg_2);
    line-height: 68px;
}

.siparis .form .form-bottom .form-box textarea {
    width: 100%;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    min-height: 80px;
    padding: 16px 0 0 20px;
    color: var(--main_text);
    border: 1px solid #ECF9FF;
}

.siparis .form .form-bottom .form-box textarea:focus {
    outline: none;
}

.siparis .form .form-bottom .form-box textarea::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box textarea:-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box textarea::-ms-input-placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

.siparis .form .form-bottom .form-box textarea::placeholder {
    font-size: 15px;
    line-height: 15px;
    color: var(--text_1);
}

.siparis .form #subbmit {
    background: var(--bg_2);
    color: var(--text_white);
    border-radius: 3px;
    font-weight: 600;
    font-size: 17px;
    line-height: 55px;
    padding: 0;
    border: none;
}

.siparis .form #subbmit:hover {
    background: var(--bg_2);
}

.siparis .form #subbmit:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#top_alert {
    padding-top: 50px;
}

#top_alert .alertt {
    padding: 17px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    position: relative;
    z-index: 0;
}

#top_alert .alertt::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bg_2);
    opacity: 0.07;
    border-radius: 8px;
    z-index: -1;
}

#top_alert .alertt strong {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--main_text);
}

#top_alert .alertt span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: var(--text_1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#top_alert .alertt span strong {
    margin-right: 10px;
}

#top_alert .alertt a {
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    color: var(--text_white);
    padding: 17.5px 30px;
    background: var(--kutu_1_buton);
    border-radius: 3px;
}

.order_follow {
    padding: 30px 0 50px 0;
}

.order_follow .lightbox-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 3px;
}

.order_follow .lightbox-container .sip_item:not(:last-child) {
    border-bottom: 1px solid #ECF9FF;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.order_follow .lightbox-container .sip_item strong {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--passive_color);
}

.order_follow .lightbox-container .sip_item p {
    font-size: 14px;
    line-height: 20px;
    color: var(--main_text);
    font-weight: 400;
}

.order_follow .lightbox-container .sip_item p a {
    color: var(--main_color);
}

.order_follow .lightbox-container .sip_item p a:hover {
    color: var(--main_color);
}

.order_follow .lightbox-container .sip_item.product_area .product_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .product_img {
    max-width: 100px;
    height: 70px;
    border-radius: 3px;
    overflow: hidden;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .product_img img {
    height: 75px;
    width: 75px;
    object-fit: cover;
}

.nice-select:active {
    border: 1px solid #ECF9FF;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .prd_im {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .prd_im span {
    font-size: 14px;
    line-height: 17px;
    color: var(--main_text);
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .prd_im span.pr_text {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: var(--main_text);
    margin-top: 2px;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .prd_im:not(:last-child) {
    margin-right: 35px;
}

.order_follow .lightbox-container .sip_item.product_area .product_container .p_info span {
    padding: 14px 15px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    cursor: pointer;
}

.order_follow .price {
    padding: 30px !important;
    background-color: #fff;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.order_follow .price strong {
    font-size: 14px;
    line-height: 17px;
    color: var(--passive_color);
    font-weight: 400;
    margin-bottom: 5px;
}

.order_follow .price span {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    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-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    color: var(--main_text);
}

.order_follow .price span:not(:last-child) {
    border-bottom: 1px solid #ECF9FF;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.order_follow .price span.toplam strong {
    color: var(--bg_2);
    font-weight: 600;
}

.order_follow .price span.toplam b {
    color: var(--bg_2);
}

.order_follow .price .payment a {
    color: var(--bg_2);
}

.odeme_bildir {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 60px;
    border: none;
    background: var(--bg_2);
    color: var(--text_white);
    border-radius: 3px;
    font-weight: 500;
    font-size: 18px;
}

.odeme_bildirbtn {
    background: var(--main_color) !important;
}

.badge-basarilibg {
    background: rgba(40, 167, 69, 0.15);
    color: #28A745;
}

.badge-hazirlaniyorbg {
    background: rgba(23, 162, 184, 0.15);
    color: #17A2B8;
}

.badge-odemebekbg {
    background: rgba(52, 152, 177, 0.15);
    color: #3498B1;
}

.badge-iptalbg {
    background: rgba(255, 70, 92, 0.15);
    color: #FF465C;
}

.badge-teslimbg {
    background: rgba(4, 53, 156, 0.15);
    color: #04359C;
}

.badge-kargobg {
    background: rgba(131, 182, 143, 0.15);
    color: #83B68F;
}

.badge-kontrolbg {
    background: rgba(26, 119, 134, 0.15);
    color: #1A7786;
}

.badge-stokyokbg {
    background: rgba(0, 2, 25, 0.15);
    color: #000219;
}

#odeme-bildirimi h3,
#odeme-bildirimi i,
#odeme-bildirimi label {
    color: var(--text_1);
}

#odeme-bildirimi h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#odeme-bildirimi h3 i {
    margin-right: 5px;
}

#odeme-bildirimi input:focus,
#odeme-bildirimi input:active,
#odeme-bildirimi textarea:focus,
#odeme-bildirimi textarea:active,
#odeme-bildirimi select:focus,
#odeme-bildirimi select:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#odeme-bildirimi .modal-content {
    border: none;
}

#odeme-bildirimi .modal-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#odeme-bildirimi input[type="submit"] {
    background: var(--bg_2);
    border-color: var(--bg_2);
    width: 100%;
}

#odeme-bildirimi input[type="submit"]:hover {
    background: var(--bg_2);
}

.modal-header .close {
    padding: 0;
    margin: 0;
}

.modal-header .close span {
    vertical-align: inherit;
}

section#gallerybox {
    padding: 50px 0;
}

section#gallerybox .gallerybox-container .gallerybox__item {
    background: #fff;
    border: 10px solid var(--site_bg);
    padding: 5px;
}

section#gallerybox .gallerybox-container .gallerybox__item .modal-dialog .modal-content {
    background: transparent;
    border: none;
    border-radius: 0 0 3px 3px;
}

section#gallerybox .gallerybox-container .gallerybox__item .modal-dialog .modal-content .modal-header {
    padding: 0;
    border: none;
    border-radius: 0;
}

section#gallerybox .gallerybox-container .gallerybox__item .modal-dialog .modal-content .modal-header .close {
    text-shadow: none;
    padding: 0;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
    margin-left: auto;
}

section#gallerybox .gallerybox-container .gallerybox__item .modal-dialog .modal-content .modal-header .close i {
    font-size: 24px;
    color: #fff;
}

section#gallerybox .gallerybox-container .gallerybox__item .modal-dialog .modal-content .modal-body {
    padding: 0;
}

section#gallerybox .gallerybox-container .gallerybox__item .card {
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: 3px;
    height: 100%;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-body {
    padding: 0;
    height: 200px;
    min-height: unset;
    position: relative;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-body span.hov {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    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;
    color: var(--text_white);
    font-size: 50px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 0;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-body span.hov:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg_1);
    opacity: 0.8;
    z-index: -1;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-body img {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer {
    background: transparent;
    border: none;
    border-radius: 0 0 3px 3px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer h2 {
    margin-bottom: 30px;
    margin-top: 0;
    padding-bottom: 30px;
    height: 100%;
    position: relative;
    font-size: 16px;
    line-height: 18px;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-bottom: 1px solid var(--text_1);
    opacity: 0.04;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer h2 a {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: var(--main_text);
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer .actionbtn a {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: var(--main_text);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 50px;
    position: relative;
}

section#gallerybox .gallerybox-container .gallerybox__item .card .card-footer .actionbtn a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid var(--text_1);
    opacity: 0.04;
    border-radius: 8px;
}

section#gallerybox .gallerybox-container .gallerybox__item .card:hover .card-footer .actionbtn a {
    color: var(--text_white);
    background: var(--bg_2);
}

section#gallerybox .gallerybox-container .gallerybox__item .card:hover .card-body span.hov {
    opacity: 1;
    visibility: visible;
}

.notice {
    padding: 50px 0;
}

.notice .notice--content {
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 0;
    position: relative;
}

.notice .notice--content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    background: var(--bg_2);
    opacity: 0.07;
    z-index: -1;
}

.notice .notice--content .notice--info {
    font-weight: 500;
    font-size: 17px;
    line-height: 23px;
    color: var(--main_text);
    display: flex;
    align-items: center;
}

.notice .notice--content .notice--info span {
    min-width: 50px;
    height: 50px;
    background: var(--kutu_1_buton);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.notice .notice--content .notice--info span i {
    font-size: 24px;
    color: var(--text_white);
}

.notice .notice--content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--text_white);
    background: var(--kutu_1_buton);
    border-radius: 3px;
    padding: 13px 33px;
}

.notice .notice--content a i {
    font-size: 24px;
    margin-right: 10px;
}

.footer--top {
    margin-bottom: -210px;
}

.footer {
    padding: 250px 0 50px 0;
    background: var(--breadcumb_background);
}

.footer .footer__wrapper .footer--info .info--top {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: var(--text_1);
    margin-bottom: 25px;
    padding-bottom: 25px;
    max-height: 65px;
    position: relative;
}

.footer .footer__wrapper .footer--info .info--top::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid var(--text_1);
    opacity: 0.04;
}

.footer .footer__wrapper .footer--info .footer--info--text {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text_1);
}

.footer .footer__wrapper .footer--info .info--top img {
    width: auto;
    height: auto;
}

.footer .footer__wrapper .footer--info a {
    display: flex;
    padding: 11px;
    width: 100%;
    align-items: center;
    background: var(--bg_3);
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: var(--text_1);
}

.footer .footer__wrapper .footer--info a span {
    min-width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--introbg);
    border-radius: 3px;
    margin-right: 11px;
}

.footer .footer__wrapper .footer--info a span i {
    font-size: 12px;
}

.footer .footer__wrapper .footer--info a:not(:last-child) {
    margin-bottom: 15px;
}

.footer .footer__wrapper .links {
    margin-left: 15px;
}

.footer .footer__wrapper .links .footer--links h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    color: var(--main_text);
    margin-bottom: 39px;
    display: block;
}

.footer .footer__wrapper .links .footer--links ul li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--text_1);
}

.footer .footer__wrapper .links .footer--links ul li:not(:last-child) {
    margin-bottom: 19px;
}

.footer--bottom {
    background: var(--sectionbg);
    padding: 20px 0;
}

.footer--bottom .footer--bottom__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer--bottom .footer--bottom__content .left {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--text_1);
}

.footer--bottom .footer--bottom__content .right ul {
    display: flex;
    align-items: center;
}

.footer--bottom .footer--bottom__content .right ul li:not(:last-child) {
    margin-right: 10px;
}

.footer--bottom .footer--bottom__content .right ul li a i {
    font-size: 18px;
    color: var(--text_1);
}

.form--area {
    padding-bottom: 50px;
}

.form--area .form--wrapper {
    padding: 30px;
    background: #fff;
    border-radius: 3px;
}

.form--area .form--wrapper h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--main_text);
    border-bottom: 1px solid var(--section_bg);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.form--area .form--wrapper .form--content .form-group:not(:last-child) {
    margin-bottom: 30px;
}

.form--area .form--wrapper .form--content .form-group label {
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    color: var(--main_text);
    margin-bottom: 15px;
}

.form--area .form--wrapper .form--content .form-group input {
    background: var(--section_bg);
    border: none;
    border-radius: 3px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--text_1);
    padding: 17.5px;
    height: unset;
    position: relative;
}

.form--area .form--wrapper .form--content .form-group input::-moz-placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group input:-ms-input-placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group input::placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group textarea {
    width: 100%;
    background: var(--section_bg);
    border: none;
    min-height: 150px;
    padding: 17.5px;
}

.form--area .form--wrapper .form--content .form-group textarea::-moz-placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group textarea:-ms-input-placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group textarea::placeholder {
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group textarea:focus {
    outline: none;
    border: none;
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background: var(--section_bg);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--main_text);
    border-radius: 3px;
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select span.current {
    color: var(--text_1);
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select ul.list {
    width: 100%;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.04);
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select ul.list .option:hover {
    background: var(--section_bg);
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select ul.list .option.selected {
    background: var(--section_bg);
    color: var(--text_1);
}

.form--area .form--wrapper .form--content .form-group .area__dropdown .nice-select::after {
    border-bottom: 2px solid var(--text_1);
    border-right: 2px solid var(--text_1);
    height: 7px;
    margin-top: -4px;
    right: 15px;
    top: 50%;
    width: 7px;
}

.form--area .form--wrapper .form--content .form-action button {
    width: 100%;
    border: none;
    text-align: center;
    padding: 17.5px;
    background: var(--bg_2);
    border-radius: 3px;
    color: var(--text_white);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.cookieConsentContainer {
    z-index: 999;
    width: 90%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 5px;
    text-align: center;
    min-height: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 4px 10px rgba(215, 222, 230, 0.3);
    box-shadow: 0px 4px 10px rgba(215, 222, 230, 0.3);
    border-radius: 16px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    right: 50%;
    -webkit-transform: translate(50%);
    transform: translate(50%);
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cookieConsentContainer .cookieCont {
    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;
    width: 100%;
}

.cookieConsentContainer .cookieTitle a {
    vertical-align: text-top;
}

.cookieConsentContainer .cookieDesc p {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    padding: 0 20px;
    color: var(--main_text);
}

.cookieConsentContainer .cookieDesc a {
    font-weight: 700;
    color: var(--main_text);
    text-decoration: none;
}

.cookieConsentContainer .cookieButton button {
    display: inline-block;
    cursor: pointer;
    background: var(--site_background_secondary);
    min-width: 30px;
    min-height: 30px;
    width: 100%;
    color: #a9b5b7;
    border-radius: 5px;
    border: none;
}

.cookieConsentContainer.hidden {
    opacity: 0;
    display: none;
    z-index: -99;
}

section#fixed-whatsapp {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 3;
}

section#fixed-whatsapp .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e89f04;
    cursor: pointer;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

section#fixed-whatsapp .item .item-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#fixed-whatsapp .item .item-detail .icon {
    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;
    width: 50px;
    height: 50px;
}

section#fixed-whatsapp .item .item-detail span {
    padding: 0 20px 0 0;
    font-size: 14px;
    color: var(--text_white);
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-left: -30px;
    font-weight: 500;
}

.back-to-top {
    visibility: hidden;
    background-color: var(--bg_2);
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 38px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    cursor: pointer;
    opacity: 0;
    border-radius: 3px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.back-to-top svg {
    fill: var(--text_white);
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    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;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

@media (min-width: 1366px) {
    .container {
        max-width: 1230px;
    }
    .header-container .navbar .navbar-collapse .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 1200px) {
    .footer .footer__wrapper .links .footer--links {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }
    section#product .product__container .product__item .product__content-box .product__item-image {
        width: 100%;
    }
    section#product .product__container .product__item .product__content-box .product__item-image img {
        width: 100%;
        height: 200px;
    }
    section#product .product__container .product__item .product__content-box {
        flex-direction: column;
    }
    .group-counter .widget-counter.nth--2::after {
        display: none !important;
    }
    .group-counter {
        padding-bottom: 25px;
    }
    .group-counter .widget-counter {
        min-width: 300px;
        justify-content: left;
        margin-bottom: 15px;
    }
    #header__top .header__container .header__right ul.icons {
        display: none;
    }
    .container {
        max-width: 95%;
    }
    .site-navbar .site__menu-contact a {
        padding: 10px 10px;
    }
    .site-navbar .site__menu-contact a i {
        margin-right: 0;
    }
    .site-navbar .site__menu-contact a span {
        display: none;
    }
    section#blog.blog__main {
        padding-top: 0;
    }
    section#blog .blog__container .blog__container-pagi {
        margin-bottom: 30px;
    }
    .site-navbar {
        padding: 25px 0;
    }
    .site-navbar .site__menu-contact {
        margin-left: 0;
    }
    .site-navbar .site__navbar-container {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .site-navbar .site__navbar-container .site-navigation {
        display: none;
    }
    section#hero .hero__container .hero__title {
        font-size: 6.51vw;
        line-height: 6vw;
    }
}

@media (min-width: 1200px) {
    .blog__sidebar-search {
        display: none;
    }
    .container {
        max-width: 1260px;
    }
}

@media (min-width: 998px) and (max-width: 1200px) {
    section#about .about__container .about__container-right .about__container-right_hexa .hex {
        width: 500px;
        height: 500px;
    }
}

@media (min-width: 768px) and (max-width: 998px) {
    .footer .footer__wrapper .col-md-3 {
        flex: 0 0 35%;
        max-width: 35%;
    }
    .footer .footer__wrapper .col-md-9 {
        flex: 0 0 65%;
        max-width: 65%;
    }
}

@media (max-width: 998px) {
    section#productBox .product__box-container .product__box-features.second {
        display: none;
    }
    section#productBox .product__box-container .product__box-features.third {
        display: block !important;
    }
    section#productBox .product__box-container .row .product__box-sidebar {
        order: 1;
    }
    .footer .footer__wrapper .footer--info {
        margin-bottom: 30px;
    }
    .custom--layout {
        padding-bottom: 30px;
    }
    .custom--layout .custom--layout__wrapper .layout--content,
    .text--area .image--area {
        margin-bottom: 30px;
    }
    .footer--top__block .block--wrapper {
        flex-direction: column;
    }
    .footer--top__block .block--wrapper .block--content--left {
        margin-bottom: 20px;
        text-align: center;
    }
    #header__top .header__container .header__left ul li:not(:last-child) {
        margin-right: 15px;
    }
    #header__top .header__container .header__left ul li span {
        display: none;
    }
    .elementor-element.elementor-element-bb66fe3 .pxl-heading .pxl-heading--inner {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .comment--left {
        margin-bottom: 30px;
    }
    section#productBox .product__box-container .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    section#productBox .product__box-container .row .product__box-body {
        margin-top: 30px;
    }
    section#productBox .product__box-container .row .product__box-sidebar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    section#productBox .product__box-container .row .product__box-sidebar .product__box-sidecontent .product__box-sideslide .product__box-item img {
        width: 100%;
        max-height: 350px;
    }
    section#productBox .product__box-container .row .product__box-sidebar .sidebar__ads .ad {
        text-align: left;
        margin-bottom: 30px;
    }
    section#about .about__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    section#about .about__container .about__container-right {
        margin-bottom: 30px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    section#about .about__container .about__container-right .about__container-right_hexa {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    section#about .about__container .about__container-left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    section#blog__content .blog__content-container .blog__sidebar .blog__sidebar-cat {
        margin-top: 30px;
    }
    section#blog__content .blog__content-container .blog__sidebar .sticky {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    section#blog__content .blog__content-container .blog__sidebar .sidebar__ads {
        margin-bottom: 0;
    }
}

@media (min-width: 998px) {
    section#fixed-whatsapp .item .item-detail span {
        padding: 0 20px 0 0;
        font-size: 14px;
        color: var(--text_white);
        position: absolute;
        visibility: hidden;
        opacity: 0;
        margin-left: -30px;
        font-weight: 500;
    }
    section#fixed-whatsapp .item .item-detail:hover span {
        position: relative;
        opacity: 1;
        visibility: visible;
        margin-left: 0;
        -webkit-transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
        transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    }
    .sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 130px;
    }
}

@media (max-width: 870px) {
    section#blog__content .blog__content-container .blog__content-left .blog__content-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    section#blog__content .blog__content-container .blog__content-left .blog__content-info .share {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer .footer__wrapper .links {
        margin-left: 0;
    }
    section#product .product__container .product__item .product__content-box .product__item-details .product__item-title a {
        font-size: 2.86vw;
    }
    .group-counter {
        padding-bottom: 10px;
    }
    .group-counter .widget-counter {
        min-width: 250px;
        margin-bottom: 30px;
    }
    .group-counter .widget-counter::after {
        display: none;
    }
    .iteck-animated-lines span:nth-of-type(1) {
        right: 5%;
    }
    .iteck-animated-lines span:nth-of-type(2) {
        right: 19%;
    }
    .iteck-animated-lines span:nth-of-type(3) {
        right: 34%;
    }
    #header__top .header__container {
        justify-content: center;
    }
    #header__top .header__container .header__right ul li:not(:last-child) {
        margin-right: 15px;
    }
    #header__top .header__container .header__right ul li a span {
        display: none;
    }
    section#hero .hero__container {
        max-width: 100%;
        margin-bottom: 30px;
    }
    section#hero {
        height: unset;
        padding: 30px 0;
    }
    .site-navbar .site__menu-contact a {
        padding: 10px 10px;
    }
    .site-navbar .site__menu-contact a i {
        margin-right: 0;
    }
    .site-navbar .site__menu-contact a span {
        display: none;
    }
    section#contact-form .mobile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    section#contact-form .contact-img {
        padding-top: 30px;
    }
    .order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper .prd_im:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media (max-width:740px) {
    .group-counter .col-xl-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    section#about .about__container .about__container-right .about__container-right_hexa .hex {
        width: 440px;
        height: 440px;
    }
    section#product .product__container .product__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .site-navbar .site__menu-contact .page-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    #show-sidebar {
        border-left: 0;
        margin-left: 0;
        padding-left: 0;
    }
    .breadcrumb .breadcrumb__container ul {
        flex-direction: column;
    }
    .breadcrumb .breadcrumb__container ul li:first-child i {
        display: block;
    }
    .breadcrumb .breadcrumb__container ul li i {
        margin-left: 0;
    }
    .left--title .content__title-text {
        font-size: 3.47vw;
        line-height: 5.20vw;
    }
    .left--title .content__title-title {
        font-size: 2.77vw;
        line-height: 5.819vw;
    }
    .footer--top__block .block--wrapper .block--content--right {
        flex-direction: column;
    }
    .footer--top__block .block--wrapper .block--content--right a:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0;
    }
    #header__top .header__container {
        justify-content: center;
    }
    #header__top .header__container .header__right .header__links li {
        margin-right: 10px;
    }
    #header__top .header__container .header__right .header__links li:not(:last-child) {
        margin-right: 10px;
    }
    .jeg-elementor-kit.jkit-postblock.postblock-type-1 .jkit-post {
        flex-direction: column;
        align-items: flex-start;
    }
    .jeg-elementor-kit.jkit-postblock.postblock-type-1 .jkit-postblock-content {
        padding-left: 0;
        margin-top: 20px;
    }
    .sticky-wrapper .site-navbar .site-logo img {
        max-height: 27px;
    }
    #header__top {
        display: none;
    }
    .site-navbar .site__menu-contact .contactbtn {
        display: none;
    }
    .site-navbar .site__menu-contact a {
        background: transparent !important;
    }
    #header__top .header__container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #header__top .header__container .header__left {
        display: none;
    }
    section#hero .hero__container .hero__top {
        font-size: 16px;
    }
    section#hero .hero__container .hero__title {
        font-size: 40px;
        line-height: 44px;
    }
    section#hero .hero__container .hero__text {
        font-size: 16px;
        line-height: 25px;
    }
    section#hero .hero__container .hero__links {
        flex-direction: column;
    }
    section#hero .hero__container .hero__links a,
    section#hero .hero__container .hero__links a.hero__about-link {
        max-width: 100%;
    }
    section#hero .hero__container .hero__links a:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    section#homeContent .content__container .content__item .content__item-content .content__item-btn {
        width: 100%;
    }
    section#homeContent .content__container .content__item .content__item-content .content__item-btn a {
        width: 100%;
    }
    section#about .about__container .about__container-left .about__container-left_top {
        font-size: 16px;
    }
    section#about .about__container .about__container-left .about__container-left_title {
        font-size: 40px;
        line-height: 44px;
    }
    section#about .about__container .about__container-left .about__container-left_text {
        font-size: 16px;
        line-height: 25px;
    }
    section#about .about__container .about__container-left .about__container-left_buttons a {
        max-width: 100%;
    }
    section#about .about__container .about__container-left .about__container-left_buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    section#about .about__container .about__container-left .about__container-left_buttons a.btn__one {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .footer .footer_bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    section#productBox .product__box-container .product__box-view .product__box-amount {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    section#productBox .product__box-container .product__box-view .product__box-amount .product__box-action {
        width: 100%;
    }
    section#productBox .product__box-container .product__box-view .product__box-amount ul {
        margin-bottom: 15px;
    }
    section#productBox .product__box-container .product__box-view .product__box-amount ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    section#projects .projects__container .projects__item .projects__details {
        padding: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    section#projects .projects__container .projects__item .projects__details .projects__image {
        margin-right: 0;
        margin-bottom: 30px;
        border-radius: 3px;
        overflow: hidden;
    }
    .order_follow .lightbox-container .sip_item.product_area .product_container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .order_follow .lightbox-container .sip_item.product_area .product_container .p_wrapper {
        margin-bottom: 20px;
    }
    section#blog .blog__container .blog__container-pagi .pagination .page-item {
        max-width: 100%;
    }
    section#blog .blog__container .blog__item .blog__item-detail .blog__item-image img {
        width: 100%;
    }
    section#blog__content .blog__content-container .blog__content-left .blog__content-info ul li {
        margin-bottom: 15px;
    }
}

@media (max-width: 470px) {
    .left--title .content__title-text {
        font-size: 17px;
        line-height: 22px;
    }
    .left--title .content__title-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .footer .footer__wrapper .links .footer--links {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .map-info {
        right: 15px;
        margin-left: 15px;
        padding: 35px 20px;
    }
    .footer--info--item {
        font-size: 12px;
    }
    .map-info .bottom {
        font-size: 13px;
    }
    .job-category-box h1 {
        font-size: 17px;
    }
    section#product .product__container .product__item .product__content-box .product__item-details .product__item-title a {
        font-size: 16px;
    }
    section#product .product__container .product__item .product__content-box .product__item-details .product__item-text {
        font-size: 14px;
        line-height: 24px;
    }
    section#about .about__container .about__container-right .about__container-right_hexa .about__hexa-item {
        bottom: 50px;
    }
    section#about .about__container .about__container-right .about__container-right_hexa .hex {
        width: 330px;
        height: 330px;
    }
    .comments .comments--area .swiper--item .swiper--content {
        padding: 30px;
    }
}

@media (max-width: 350px) {
    section#about .about__container .about__container-right .about__container-right_hexa .about__hexa-item {
        bottom: -7px;
    }
    section#about .about__container .about__container-right .about__container-right_hexa .hex {
        width: 300px;
        height: 300px;
    }
    section#portfolio .portfolio__container .portfolio__item .portfolio__item-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    section#portfolio .portfolio__container .portfolio__item .portfolio__item-top .portfolio__item-icon {
        margin-bottom: 15px;
    }
}


/*# sourceMappingURL=style.css.map */