:root {
--color-white: #ffffff;
--color-primary: #b89788;
--color-primary-2: #a97e6b;
--color-text: #657786;
--color-heading: #1a2d5a;
--color-header: #999ca3;
--header-bg: #34323d;
--header-sticky: rgba(0, 0, 0, 0.8);
--color-black: #333333;
--white-border: rgba(255, 255, 255, 0.1);
--color-light-gray: #dddddd;
--color-gray: #332e35;
--color-mid-gray: #5d5b64;
--color-border: #787a80;
--font-awesome: "Font Awesome 5 Free";
--body-font: "Nunito", sans-serif;
--body-font-weight: 400;
--body-font-size: 16px;
--body-line-height: 1.5;
--heading-font: "Poppins", sans-serif;
--heading-font-weight: 700;
}
html,
body {
min-height: 100%;
overflow-x: hidden;
}
html {
scroll-behavior: smooth;
}
img {
max-width: 100%;
}
.d-table {
display: table;
width: 100%;
height: 100%;
}
.d-table-cell {
display: table-cell;
vertical-align: middle;
}
.select-primary {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: right;
-ms-flex-pack: right;
justify-content: right;
}
.select-primary .nice-select {
background: transparent;
border: none;
padding-right: 22px;
cursor: pointer;
float: unset;
height: auto;
font-size: 12px;
line-height: 18px;
padding-left: 10px;
}
.select-primary select:focus {
outline: none;
}
input:focus-visible {
outline: none;
}
.select-primary option {
color: var(--color-black);
}
.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p {
color: var(--color-white);
}
.video-modal-primary .close {
position: absolute;
right: -30px;
top: -34px;
color: var(--color-white);
padding: 5px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
opacity: 0.75;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.video-modal-primary .close:hover {
opacity: 1;
}
.video-modal-primary .close:focus {
outline: 0;
}
.embed-responsive {
position: relative;
display: block;
width: 100%;
height: 450px;
padding: 0;
overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
width: 100%;
height: 100%;
} body {
font-family: var(--body-font);
font-size: var(--body-font-size);
font-weight: var(--body-font-weight);
line-height: var(--body-line-height);
color: var(--color-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--heading-font);
font-weight: var(--heading-font-weight);
color: var(--color-heading);
}
h1 {
font-size: 55px;
}
h2 {
font-size: 40px;
color: var(--color-heading);
margin-bottom: 20px;
}
h3 {
font-size: 22px;
color: var(--color-heading);
margin-bottom: 15px;
}
h4 {
font-size: 20px;
color: var(--color-heading);
margin-bottom: 15px;
}
.small-primary {
font-size: 14px;
color: var(--color-primary);
margin-bottom: 5px;
display: block;
font-weight: 400;
text-decoration: none;
}
.small-secondary {
font-size: 14px;
margin-bottom: 10px;
font-weight: 700;
color: var(--color-primary);
text-transform: uppercase;
display: block;
}
.lead {
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
}
.button-primary,
.button-secondary-white {
font-size: 12px;
color: var(--color-white);
background-color: var(--color-primary);
border: 1px solid var(--color-primary);
border-radius: 25px;
padding: 10px 25px;
text-transform: uppercase;
position: relative;
z-index: 1;
overflow: hidden;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.button-primary:after,
.button-secondary-white::after {
position: absolute;
content: "";
left: 0;
top: 0;
width: 0;
height: 100%;
background-color: var(--color-primary-2);
z-index: -1;
-webkit-transition: width 0.3s ease-in-out 0s;
-o-transition: width 0.3s ease-in-out 0s;
transition: width 0.3s ease-in-out 0s;
}
.button-primary:hover,
.button-primary.active {
background-color: var(--color-primary);
border-color: var(--color-primary-2);
color: var(--color-white);
}
.button-primary:hover:after,
.button-primary.active::after {
width: 100%;
}
.button-secondary-white {
border-color: var(--color-white);
background-color: transparent;
}
.button-secondary-white:after {
background-color: var(--color-white);
}
.button-secondary-white:hover,
.button-secondary-white.active {
color: var(--color-black);
border-color: var(--color-white);
background-color: transparent;
}
.button-secondary-white:hover::after,
.button-secondary-white.active::after {
width: 100%;
}
.button-secondary-brown {
font-size: 12px;
background: transparent;
border: 1px solid var(--color-primary);
background: -o-linear-gradient(
left,
var(--color-primary) 50%,
transparent 50%
);
background: -webkit-gradient(
linear,
left top,
right top,
color-stop(50%, var(--color-primary)),
color-stop(50%, transparent)
);
background: linear-gradient(
to right,
var(--color-primary) 50%,
transparent 50%
);
background-size: 200% 100%;
background-position: right bottom;
color: var(--color-primary);
border-radius: 25px;
padding: 10px 25px;
text-transform: uppercase;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.button-secondary-brown:hover,
.button-secondary-brown.active,
.button-secondary-brown:active {
color: var(--color-white);
background-position: left bottom;
border-color: var(--color-primary);
background-image: inherit;
}
.section-header-primary p {
font-size: 18px;
}
.section-header-secondary {
margin-bottom: 50px;
text-align: left;
}
.section-header.style-3 {
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;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.section-header.style-3 .section_title,
.section-header.style-3 .desc {
max-width: 620px;
width: 100%;
margin-bottom: 15px;
}
.section-header.style-3 .section_title {
font-size: 36px;
font-weight: 600;
letter-spacing: -0.03em;
}
.section-header.style-3 .desc {
font-size: 18px;
}
a:hover {
text-decoration: none;
}
a h1:hover,
a h2:hover,
a h3:hover,
a h4:hover,
a h5:hover,
a h6:hover {
text-decoration: none;
}
.list-primary {
list-style: none;
margin: 25px 0;
padding: 0;
}
.list-primary li {
position: relative;
padding-left: 25px;
}
.list-primary li i {
position: absolute;
left: 0;
top: 11px;
color: var(--color-primary);
font-size: 8px;
}
.form-primary input {
min-height: 50px;
border-radius: 0;
}
.form-primary textarea {
min-height: 150px;
border-radius: 0;
resize: none;
}
.form-primary .form-control:focus {
border: 1px solid var(--color-primary);
-webkit-box-shadow: none;
box-shadow: none;
} .header-one {
color: var(--color-header);
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 10;
}
.header-one.static {
position: relative;
background-color: var(--header-bg);
}
.header-one.sticky {
position: fixed;
}
.header-one.sticky.active {
background: var(--header-sticky);
}
.header-one.sticky.active .header-nav {
padding: 5px 0;
}
.header-one.sticky.active .top-bar {
padding: 5px 0;
}
.header-one .top-bar {
font-size: 12px;
text-transform: uppercase;
padding: 15px 0;
border-bottom: 1px solid var(--white-border);
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.header-one .top-bar .help-text {
margin-right: 5px;
}
.header-one .top-bar .flag-icon {
margin-right: 5px;
font-size: 14px;
}
.header-one .top-bar .or {
margin: 0 5px;
}
.header-one .top-bar a {
color: var(--color-white);
}
.header-one .top-bar span,
.header-one .top-bar a {
height: 18px;
display: inline-block;
vertical-align: top;
text-decoration: none;
}
.header-one .top-bar .select-primary span.current {
color: var(--color-white);
}
.header-one .top-bar .nice-select:after {
border-color: var(--color-white);
}
.header-one .top-bar .top-bar-right {
text-align: right;
}
.header-one .top-bar .top-bar-right .select-primary select {
color: var(--color-header);
text-transform: uppercase;
}
.header-one .header-nav {
padding: 15px 0;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.header-one .header-nav .logo {
float: left;
margin: 5px 40px 0 0;
}
.header-one .header-nav .menu {
float: left;
text-transform: uppercase;
}
.header-one .header-nav .menu.fright {
float: right;
}
.header-one .header-nav .menu ul {
list-style: none;
margin: 0;
padding: 0;
margin-right: -20px;
}
.header-one .header-nav .menu ul li {
position: relative;
}
.header-one .header-nav .menu ul li a {
font-size: 13px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.header-one .header-nav .menu ul li a:hover {
text-decoration: none;
}
.header-one .header-nav .menu > ul > li {
display: inline-block;
}
.header-one .header-nav .menu > ul > li.has-submenu:before {
content: "";
position: absolute;
right: 3px;
top: 50%;
width: 6px;
height: 6px;
border-bottom: 1px solid var(--color-header);
border-right: 1px solid var(--color-header);
transform: translateY(-50%) rotate(45deg);
margin-top: -3px;
}
.header-one .header-nav .menu > ul > li.active:before,
.header-one .header-nav .menu > ul > li:hover:before {
border-color: var(--color-white);
}
.header-one .header-nav .menu > ul > li > a {
color: var(--color-header);
padding: 8px 20px;
display: block;
text-decoration: none;
}
.header-one .header-nav .menu > ul > li > a:hover,
.header-one .header-nav .menu > ul > li.active > a {
color: var(--color-white);
}
.header-one .header-nav .menu > ul > li > ul {
position: absolute;
left: 0;
top: 100%;
min-width: 120px;
background: var(--header-bg);
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: 0.6s;
-o-transition: 0.6s;
transition: 0.6s;
}
.header-one .header-nav .menu > ul > li:hover > ul {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.header-one .header-nav .menu > ul > li > ul > li.has-submenu:before {
content: "";
position: absolute;
right: 10px;
top: 50%;
width: 6px;
height: 6px;
border-bottom: 1px solid var(--color-header);
border-right: 1px solid var(--color-header);
transform: translateY(-50%) rotate(-45deg);
}
.header-one .header-nav .menu > ul > li > ul > li:hover:before {
border-color: var(--color-white);
}
.header-one .header-nav .menu > ul > li > ul li a {
color: var(--color-light-gray);
padding: 8px 30px 8px 20px;
display: block;
white-space: nowrap;
text-decoration: none;
}
.header-one .header-nav .menu > ul > li > ul li a:hover {
color: var(--color-white);
background: var(--color-primary);
}
.header-one .header-nav .menu > ul > li > ul > li > ul {
position: absolute;
left: 100%;
top: 0;
margin-left: 5px;
min-width: 120px;
background: var(--header-bg);
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: 0.6s;
-o-transition: 0.6s;
transition: 0.6s;
}
.header-one .header-nav .menu > ul > li.menu-last > ul > li > ul {
left: auto;
right: 100%;
margin-right: 5px;
margin-left: 0;
}
.header-one .header-nav .menu > ul > li > ul > li:hover > ul {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.header-one .header-nav .search-icon {
float: right;
}
.header-one .header-nav .search-icon img {
cursor: pointer;
padding: 5px 0 5px 5px;
max-width: 18px;
margin-top: 8px;
}
.header-one .mobile-menu {
display: none;
} .search-modal-wrpr {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(24, 25, 38, 0.95);
z-index: 10;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
opacity: 0;
visibility: hidden;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
}
.search-modal-wrpr.active {
opacity: 1;
visibility: visible;
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.search-modal-wrpr .close-icon {
position: absolute;
top: 20px;
right: 25px;
padding: 5px;
cursor: pointer;
opacity: 0.7;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.search-modal-wrpr .close-icon:hover {
opacity: 1;
}
.search-modal-wrpr .inline-form-primary {
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
max-width: 600px;
width: 90%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.search-modal-wrpr .inline-form-primary input {
height: 40px;
border: 2px solid var(--color-primary);
border-right: none;
background: transparent;
width: calc(100% - 150px);
padding: 5px 15px;
color: var(--color-white);
}
.search-modal-wrpr .inline-form-primary button {
width: 150px;
height: 40px;
border-radius: 0;
-webkit-appearance: none;
} #hero-section-one {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
min-height: 100vh;
position: relative;
z-index: 1;
padding: 150px 0 100px;
}
#hero-section-one:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: -1;
}
#hero-section-one small,
.hero-banner-2 small {
font-size: 14px;
font-weight: 300;
display: block;
margin-bottom: 15px;
color: var(--color-white);
}
#hero-section-one h1,
.hero-banner-2 h1 {
margin-bottom: 15px;
color: var(--color-white);
}
#hero-section-one .lead,
.hero-banner-2 .lead {
margin-bottom: 40px;
color: var(--color-white);
}
#hero-section-one .button_1,
.hero-banner-2 .button_1 {
margin-right: 15px;
} .hero-banner-2 {
min-height: 100vh;
position: relative;
z-index: 1;
padding: 150px 0 100px;
}
.hero-banner-2:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: -o-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0) 101.25%);
background: -webkit-gradient(
linear,
left top,
right top,
from(#000000),
color-stop(101.25%, rgba(0, 0, 0, 0))
);
background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 101.25%);
opacity: 0.9;
z-index: -1;
}
.hero-banner-2 .title {
font-size: 50px;
margin-bottom: 30px;
}
.hero-banner-2 .lead {
text-transform: capitalize;
font-weight: 300;
font-family: var(--body-font);
font-size: 20px;
line-height: 30px;
max-width: 500px;
width: 100%;
margin-bottom: 24px;
}
.hero_brands_logos {
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;
}
.hero_brands_logos .brand_logo {
width: auto;
display: inline-block;
-webkit-filter: brightness(2);
filter: brightness(2);
max-width: 100px;
}
.hero_brands_logos .brand_logo > img {
height: 100%;
}
.hero_brands_logos .brand_logo:not(:last-child) {
margin-right: 30px;
}
.hero_brands {
margin-top: 65px;
}
.hero_brands .brands_title {
display: block;
font-size: 16px;
line-height: 24px;
font-weight: 500;
color: var(--color-white);
font-family: var(--body-font);
margin-bottom: 25px;
}
.hero-banner-2.align-center .lead {
margin-left: auto;
margin-right: auto;
}
.align-center .hero_brands_logos {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.hero-banner-2.align-right .lead {
margin-left: auto;
}
.align-right .hero_brands_logos {
-webkit-box-pack: right;
-ms-flex-pack: right;
justify-content: right;
} #hero-section-two {
text-align: center;
}
#hero-section-two .hero-slider-item {
width: 100%;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
z-index: 1;
}
#hero-section-two .hero-slider-item:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: -1;
}
#hero-section-two .owl-nav button:focus {
outline: 0;
}
#hero-section-two .owl-prev {
position: absolute;
left: 30px;
top: 50%;
margin-top: -25px;
}
#hero-section-two .owl-next {
position: absolute;
right: 30px;
top: 50%;
margin-top: -25px;
}
#hero-section-two small {
font-size: 14px;
font-weight: 300;
display: block;
margin-bottom: 15px;
}
#hero-section-two h1 {
margin-bottom: 15px;
}
#hero-section-two .lead {
margin-bottom: 40px;
}
#hero-section-two .button-primary {
margin: 0 5px 10px;
}
#hero-section-two .button-secondary-white {
margin: 0 5px 10px;
}
.hero-slider-item .style-2 {
text-align: left;
}
.slider-style-2 .owl-dots {
position: absolute;
top: 50%;
right: 30px;
z-index: 1;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.slider-style-2 .owl-dots .owl-dot {
width: 20px;
height: 20px;
background-color: var(--color-light-gray);
border-radius: 50%;
display: block;
margin: 15px 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.slider-style-2 .owl-dots .owl-dot.active {
background-color: var(--color-primary);
} .our-partner-area .small-secondary {
margin: 0;
}
.our-partner-area ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
.our-partner-area ul li {
width: 16.6666%;
float: left;
line-height: 48px;
padding-right: 15px;
} #about-section-one .left-side .img-wrpr {
position: relative;
}
#about-section-one .left-side .img-wrpr:before {
content: "";
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 60%;
height: 60%;
background: url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/pattern/1.png) no-repeat;
}
#about-section-one .left-side .img-wrpr img {
width: 70%;
margin: 15% 0 0 20%;
}
#about-section-one .right-side .small-secondary:last-of-type {
margin-bottom: 20px;
}
#about-section-one .right-side p {
padding-right: 80px;
}
#about-section-one .right-side hr {
margin-top: 25px;
margin-bottom: 30px;
border-top: 1px solid #d9e8ed;
}
#about-section-one .right-side .partners-logo-wrpr ul {
list-style: none;
padding: 0;
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;
margin-right: -15px;
margin-bottom: 15px;
}
#about-section-one .right-side .partners-logo-wrpr ul li {
display: inline-block;
margin-right: 15px;
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
margin-bottom: 15px;
}
#about-section-one .right-side .partners-logo-wrpr ul li:last-child {
margin-right: 0;
}
#about-section-one .right-side .partners-logo-wrpr ul li img {
max-width: 100px;
} #about-section-two .left-side .img-wrpr {
position: relative;
}
#about-section-two .left-side .img-wrpr:before {
content: "";
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 60%;
height: 60%;
background: url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/pattern/1.png) no-repeat;
}
#about-section-two .left-side .img-wrpr img {
margin-top: 70px;
width: 90%;
}
.about-content .title {
font-size: 40px;
font-weight: 600;
margin-bottom: 32px;
}
.about-content p {
max-width: 510px;
width: 100%;
font-size: 18px;
margin-bottom: 0;
}
.about-content .about-feature {
margin-top: 44px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.about-content .about-feature .single-feature {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.about-feature .single-feature span {
display: block;
}
.about-feature .single-feature span.feature-count {
font-size: 36px;
line-height: 50px;
font-weight: 700;
font-family: var(--body-font);
color: var(--color-primary);
margin-bottom: 16px;
}
.about-feature .single-feature span.feature-title {
font-size: 24px;
line-height: 26px;
font-weight: 600;
letter-spacing: -0.03em;
font-family: var(--body-font);
color: var(--color-heading);
margin-bottom: 16px;
}
.about-feature .single-feature span.feature-details {
font-size: 16px;
max-width: 270px;
width: 100%;
}
.about-image {
position: relative;
padding-left: 15%;
}
.about-image .image-badge {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 60%;
height: 60%;
}
.about-image .image-badge img {
width: 100%;
height: 100%;
} .services-archive {
padding-top: 100px;
padding-bottom: 60px;
background: var(--color-gray);
background: -o-linear-gradient(
315deg,
var(--color-gray) 0%,
var(--color-mid-gray) 50%
);
background: linear-gradient(
135deg,
var(--color-gray) 0%,
var(--color-mid-gray) 50%
);
}
.services-archive.style-3 {
background: rgba(143, 147, 165, 0.1);
}
#services-section-one .service-item {
margin-bottom: 40px;
padding: 30px 30px 25px;
-webkit-transition: 0.6s;
-o-transition: 0.6s;
transition: 0.6s;
background-position: top left;
}
#services-section-one .service-item:hover {
background-color: var(--color-primary);
background-image: url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/pattern/2.png);
background-repeat: no-repeat;
background-position: top right;
background-size: contain;
}
#services-section-one .service-item img {
max-width: 50px;
margin-bottom: 20px;
min-height: 40px;
}
#services-section-one .service-item p {
margin-bottom: 25px;
}
#services-section-one .service-item a {
font-size: 10px;
text-transform: uppercase;
color: var(--color-white);
opacity: 0;
visibility: hidden;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
margin-left: -5px;
text-decoration: none;
}
#services-section-one .service-item:hover a {
opacity: 1;
visibility: visible;
margin-left: 0;
} #services-section-two .service-item {
margin-bottom: 40px;
padding: 30px 30px 25px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
background-position: top left;
}
#services-section-two .service-item a {
text-decoration: none;
}
#services-section-two .service-item:hover {
background-color: var(--color-primary);
}
#services-section-two .service-item img {
max-width: 50px;
margin-bottom: 20px;
}
#services-section-two .service-item p {
margin-bottom: 0;
}
#services-section-one.style-3 .service-item {
background-color: var(--color-white);
text-align: left;
border-radius: 0.5rem;
-webkit-box-shadow: 0 5px 10px 0 rgb(0 0 0 / 15%);
box-shadow: 0 5px 10px 0 rgb(0 0 0 / 15%);
display: block;
padding: 0;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
text-decoration: none;
}
#services-section-one.style-3 .service-item:hover {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
#services-section-one.style-3 .service-item .service_content {
padding: 25px 30px;
}
#services-section-one.style-3 .service-item p {
color: var(--color-text);
}
#services-section-one.style-3 .service-item .service-btn {
font-size: 12px;
text-transform: uppercase;
color: var(--color-heading);
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
text-decoration: none;
}
#services-section-one.style-3 .service-item:hover .service-btn {
color: var(--color-primary);
}
#services-section-one.style-3 .service-item img {
max-width: 100%;
}
#services-section-one.style-3 .service-item img {
max-width: 100%;
height: 150px;
-o-object-fit: cover;
object-fit: cover;
margin-bottom: 0;
}
#services-section-one.style-4 .service-item img {
max-height: 242px;
height: 100%;
max-width: 100%;
min-height: auto;
-o-object-fit: cover;
object-fit: cover;
border-radius: 5px;
margin-bottom: 33px;
}
#services-section-one.style-4 .service-item {
padding: 0px;
display: inline-block;
margin-bottom: 30px;
background-color: transparent;
background-image: none;
}
#services-section-one.style-4 .service-item .title {
font-size: 24px;
font-weight: 600;
letter-spacing: -0.03em;
margin-bottom: 3px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
#services-section-one.style-4 .service-item:hover .title {
color: var(--color-primary);
}
#services-section-one.style-4 .service-item p {
color: var(--color-text);
margin-bottom: 16px;
}
#services-section-one.style-4 .service-item .service-btn {
font-weight: 500;
text-transform: capitalize;
color: var(--color-primary);
font-size: 16px;
line-height: 1px;
}
#services-section-one.style-4 .service-item:hover {
background-color: transparent;
background-image: none;
}
#services-section-one.style-4 .service-item .service-btn i {
margin-left: 8px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
#services-section-one.style-4 .service-item:hover .service-btn i {
margin-left: 15px;
}
.post-type-archive-services #services-section-one.style-4 {
padding-top: 100px;
padding-bottom: 60px;
}
.post-type-archive-services #services-section-one.style-4 .service-item {
margin-bottom: 40px;
text-decoration: none;
} #single-service-section {
padding: 100px 0;
}
#single-service-section img {
margin-bottom: 40px;
border-bottom: 5px solid var(--color-primary);
width: 100%;
max-height: 450px;
-o-object-fit: cover;
object-fit: cover;
}
#single-service-section .tj-service__sidebar img {
margin-bottom: 0;
} #our-thinking-section-one.without-bg::before {
display: none;
}
#our-thinking-section-one.without-bg .right-side {
padding: 0;
}
#our-thinking-section-one {
position: relative;
}
#our-thinking-section-one:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 30%;
height: 100%;
background: var(--color-primary);
}
#our-thinking-section-one .left-side {
position: absolute;
bottom: 0;
left: 30%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
#our-thinking-section-one .right-side {
padding: 100px 0 100px 25px;
}
#our-thinking-section-one .right-side .our-thinking {
font-size: 25px;
margin-bottom: 30px;
}
#our-thinking-section-one .right-side .signature {
font-family: "Allura", cursive;
font-size: 35px;
display: block;
}
#our-thinking-section-one .right-side .designation {
color: var(--color-primary);
display: block;
} #our-thinking-section-two {
background: none;
}
#our-thinking-section-two {
position: relative;
background: #eeeeee;
}
#our-thinking-section-two .left-side {
position: relative;
margin-left: 30px;
}
#our-thinking-section-two .left-side:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: -25px;
top: -25px;
background: var(--color-white);
}
#our-thinking-section-two .left-side-inner {
margin: 100px 0 100px 0;
background: var(--color-white);
padding: 25px 35px;
-webkit-box-shadow: 5px 5px 5px 5px var(--color-light-gray);
box-shadow: 5px 5px 5px 5px var(--color-light-gray);
position: relative;
z-index: 1;
}
#our-thinking-section-two .left-side .our-thinking {
font-size: 30px;
margin-bottom: 30px;
}
#our-thinking-section-two .left-side .signature {
font-family: "Allura", cursive;
font-size: 35px;
display: block;
}
#our-thinking-section-two .left-side .designation {
color: var(--color-primary);
display: block;
}
#our-thinking-section-two .right-side {
position: absolute;
bottom: 0;
right: 10%;
width: 30%;
} #fun-fact-section-one .number {
font-family: var(--heading-font);
font-weight: 400;
font-size: 48px;
color: var(--color-primary);
display: block;
}
#fun-fact-section-one .label {
margin-bottom: 0;
font-size: 18px;
text-transform: uppercase;
color: var(--color-white);
}
#fun-fact-section-one.style-2 .number {
font-size: 36px;
line-height: 50px;
font-weight: 700;
margin-bottom: 11px;
}
#fun-fact-section-one.style-2 .label {
font-size: 24px;
line-height: 26px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
#fun-fact-section-one.style-2 .desc {
margin-bottom: 0px;
font-size: 16px;
line-height: 28px;
color: var(--color-white);
max-width: 265px;
width: 100%;
}
#fun-fact-section-one.style-2.text-center .desc {
margin: auto;
}
#fun-fact-section-one.style-2.text-right .desc {
margin-left: auto;
} #testimonial-section-one p {
font-size: 30px;
max-width: 650px;
margin: 0 auto 50px;
}
#testimonial-section-one .client-img {
max-width: 50px;
margin: 0 auto 20px;
border-bottom: 3px solid var(--color-primary);
}
#testimonial-section-one .name {
font-size: 18px;
font-weight: 700;
display: block;
}
#testimonial-section-one .designation {
color: var(--color-primary);
display: inline-block;
}
#testimonial-section-one .owl-theme .owl-nav button:hover {
background: none;
}
#testimonial-section-one .owl-theme .owl-nav button:focus {
outline: 0;
}
#testimonial-section-one .owl-prev {
position: absolute;
left: 0;
top: 50%;
margin-top: -25px;
}
#testimonial-section-one .owl-next {
position: absolute;
right: 0;
top: 50%;
margin-top: -25px;
}
#testimonial-section-one.style-3 .client-img {
max-width: 100px;
height: 100px;
border-radius: 50%;
border: 4px solid var(--color-primary);
}
#testimonial-section-one.style-3 .name {
font-size: 25px;
}
#testimonial-section-one.style-3 .designation {
margin-bottom: 30px;
}
#testimonial-section-one.style-3 p {
font-size: 25px;
margin-bottom: 0;
}
#testimonial-section-one.style-3 .owl-dots {
margin-top: 25px;
}
#testimonial-section-one.style-3 .owl-dots .owl-dot {
background-color: #d6d6d6;
display: inline-block;
width: 20px;
height: 5px;
margin: 0 5px;
}
#testimonial-section-one.style-3 .owl-dots .owl-dot span {
display: none;
}
#testimonial-section-one.style-3 .owl-dots .owl-dot.active {
background-color: var(--color-primary);
} #testimonial-section-two .testimonial-item {
position: relative;
margin-left: 50px;
height: 100%;
padding: 25px 25px 50px;
border: 1px solid #c2c2c2;
margin-bottom: 50px;
}
#testimonial-section-two .testimonial-item .client-img {
width: 100px;
height: 100px;
border: 5px solid #f4f5f6;
border-radius: 50%;
position: absolute;
bottom: -50px;
left: -50px;
display: inline-block;
}
#testimonial-section-two .testimonial-item p {
font-size: 18px;
color: var(--color-text);
font-style: italic;
font-weight: 300;
}
#testimonial-section-two .testimonial-item .icon {
display: block;
margin-bottom: 15px;
width: auto;
}
#testimonial-section-two .testimonial-item .name {
font-size: 18px;
font-weight: 700;
display: block;
}
#testimonial-section-two .testimonial-item .designation {
color: var(--color-primary);
}
#testimonial-section-two .owl-dots {
margin-top: 25px;
}
#testimonial-section-two .owl-dots .owl-dot:focus {
outline: 0;
}
.feature_testimonial .testi_title .title {
font-size: 48px;
line-height: 1.2;
font-weight: 600;
letter-spacing: -0.03em;
margin-bottom: 0;
}
.feature_testimonial .testi_title {
margin-bottom: 24px;
}
.feature_testimonial .testimonial_inner {
max-width: 530px;
width: 100%;
}
.feature_testimonial .testi_text p {
font-size: 18px;
margin-bottom: 0;
}
.feature_testimonial .testi_text {
margin-bottom: 40px;
}
.feature_testimonial .testi_author {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.feature_testimonial .testi_author .author_img {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
margin-right: 24px;
}
.feature_testimonial .testi_author .author_content .name {
margin-bottom: 0;
font-size: 24px;
line-height: 40px;
font-weight: 600;
font-family: var(--body-font);
}
.feature_testimonial .testi_author .author_content .designation {
display: block;
font-size: 18px;
line-height: 30px;
font-weight: 400;
color: var(--color-primary);
} #our-approach-section.no-design {
padding: 0;
background: none;
}
#our-approach-section {
padding: 100px 0;
background: var(--color-gray);
background: -o-linear-gradient(
315deg,
var(--color-gray) 0%,
var(--color-mid-gray) 50%
);
background: linear-gradient(
135deg,
var(--color-gray) 0%,
var(--color-mid-gray) 50%
);
}
#our-approach-section .left-side {
padding-right: 50px;
}
#our-approach-section .left-side .button-secondary-brown {
margin-top: 10px;
}
#our-approach-section .right-side .img-wrpr {
position: relative;
}
#our-approach-section .right-side .img-wrpr > img {
width: 100%;
}
#our-approach-section .right-side .video-play-icon {
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#our-approach-section .right-side .video-play-icon:before,
#our-approach-section .right-side .video-play-icon:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
border-radius: 50%;
background: var(--color-white);
-webkit-animation: pulse 3s linear infinite;
animation: pulse 3s linear infinite;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
#our-approach-section .right-side .video-play-icon:after {
-webkit-animation: pulse 3s linear 1.5s infinite;
animation: pulse 3s linear 1.5s infinite;
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
opacity: 1;
}
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0;
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
opacity: 1;
}
100% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
opacity: 0;
}
}
#our-approach-section .right-side .video-play-icon img {
width: 50px;
height: 50px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 1;
position: relative;
cursor: pointer;
}
#our-approach-section.style-2 .right-side .video-play-icon {
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
position: relative;
background-color: var(--color-white);
border-radius: 50%;
top: auto;
left: auto;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
margin-right: 17px;
cursor: pointer;
}
#our-approach-section.style-2 .right-side .video-play-icon::before,
#our-approach-section.style-2 .right-side .video-play-icon::after {
width: 50px;
height: 50px;
}
#our-approach-section.style-2 .right-side .video_play {
position: absolute;
left: 40px;
bottom: 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#our-approach-section.style-2 .right-side .video-play-icon i {
font-size: 17px;
color: var(--color-primary);
position: relative;
z-index: 9;
line-height: 1;
margin-right: -4px;
}
#our-approach-section.style-2 .right-side .video_play_label {
display: inline-block;
font-size: 18px;
line-height: 18px;
text-transform: capitalize;
color: var(--color-white);
} #team-section-one .team-item {
margin-bottom: 50px;
}
#team-section-one.no-design {
background: none;
padding: 0;
}
#team-section-one.no-design .team-item {
margin: 0;
}
#team-section-one .team-item h3 {
margin-top: 15px;
margin-bottom: 5px;
}
#team-section-one .team-item .small-primary {
margin-bottom: 10px;
}
#team-section-one .team-item img {
border-bottom: 5px solid var(--color-primary);
}
#team-section-one .team-item a {
color: var(--color-text);
text-decoration: none;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#team-section-one .team-item ul {
margin: 0;
padding: 0;
list-style: none;
}
#team-section-one .team-item ul li {
display: inline-block;
margin-right: 10px;
}
#team-section-one .team-item ul li:last-child {
margin-right: 0;
}
#team-section-one .team-item ul li a {
font-size: 25px;
display: block;
}
#team-section-one .team-item ul li a:hover {
color: var(--color-primary);
text-decoration: none;
}
#team-section-one.style-2 .team-item img {
position: relative;
overflow: hidden;
width: 80%;
margin-bottom: 20%;
}
#team-section-one.style-2 .team-item .team-inner {
position: relative;
width: 100%;
height: 100%;
}
#team-section-one.style-2 .team-inner .team_content {
position: absolute;
z-index: 1;
bottom: 0;
left: 20%;
width: 80%;
height: auto;
display: block;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
background-color: var(--color-white);
-webkit-box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 15%);
box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 15%);
padding: 1rem 1.5rem;
border-radius: 0.375rem;
}
#team-section-one.style-2 .team-inner .team_content .name {
margin-top: 0;
}
#team-section-one.style-2 .team-inner .team_content ul li a {
display: inline-block;
line-height: 1;
}
#team-section-one.style-2 .team-item:hover .team-inner .team_content {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
#team-section-one.style-3 .team-inner {
height: 520px;
position: relative;
border-radius: 10px;
overflow: hidden;
}
#team-section-one.style-3 .team-inner img {
border-bottom: 0;
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center top;
object-position: center top;
}
#team-section-one.style-3 .team-inner .team_content {
position: absolute;
bottom: 0;
padding: 40px 30px;
border-radius: 10px;
overflow: hidden;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(100%);
-ms-transform: translateY(100%);
transform: translateY(100%);
}
#team-section-one.style-3 .team-inner:hover .team_content {
visibility: visible;
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
#team-section-one.style-3 .team-inner .team_content:after {
position: absolute;
content: "";
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: var(--color-primary); z-index: 1;
}
#team-section-one.style-3 .team-inner .team_content .team_content_inner {
position: relative;
z-index: 2;
}
#team-section-one.style-3 .team-inner .team_content .designation {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
line-height: 16px;
display: inline-block;
font-weight: 600;
font-family: var(--font-heading);
margin-bottom: 6px;
}
#team-section-one.style-3 .team-inner .team_content .name {
font-size: 24px;
line-height: 32px;
font-weight: 600;
margin-top: 0;
color: var(--color-white);
margin-bottom: 6px;
}
#team-section-one.style-3 .team-inner .team_content p {
font-size: 14px;
line-height: 28px;
font-family: var(--heading-font);
color: var(--color-white);
}
#team-section-one.style-3 .team-inner .team_content ul li a {
line-height: 1;
color: var(--color-white);
}
#team-section-one.style-3 .team-inner .team_content ul li a:hover {
color: var(--color-heading);
} #success-section-one {
padding: 100px 0 50px;
position: relative;
}
#success-section-one .success-steps-item {
margin-bottom: 50px;
overflow: hidden;
max-width: 540px;
width: 100%;
}
#success-section-one .success-steps-item .icon {
width: 65px;
height: 65px;
border: 1px solid var(--color-white);
text-align: center;
line-height: 60px;
border-radius: 50%;
float: left;
margin-right: 15px;
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;
}
#success-section-one .success-steps-item .icon img {
max-width: 30px;
}
#success-section-one .success-steps-item .text {
width: calc(100% - 80px);
float: left;
}
#success-section-one .bg-image {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
width: 40%;
height: 100%;
} #success-section-two {
padding: 100px 0;
background: #131f3d;
position: relative;
}
#success-section-two .success-steps-item {
padding: 0 5px;
}
#success-section-two .success-steps-item .icon {
width: 75px;
height: 75px;
border: 1px solid var(--color-white);
text-align: center;
line-height: 72px;
border-radius: 50%;
margin-bottom: 25px;
position: relative;
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;
}
#success-section-two .success-steps-item .icon span {
width: 20px;
height: 20px;
position: absolute;
top: 0;
left: 0;
background: var(--color-primary);
color: var(--color-white);
border-radius: 50%;
line-height: 20px;
text-align: center;
}
#success-section-two .success-steps-item .icon img {
max-width: 30px;
} .tj-posts__area {
padding-top: 100px;
padding-bottom: 50px;
}
#blog-section-one .blog-item {
overflow: hidden;
margin-bottom: 50px;
}
#blog-section-one .blog-item .image {
border-radius: 5px;
overflow: hidden;
}
#blog-section-one .blog-item .image img {
width: 100%;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#blog-section-one .blog-item:hover .image img {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
#blog-section-one .blog-item .contents {
padding-top: 5px;
}
#blog-section-one .blog-item .contents a {
text-decoration: none;
}
#blog-section-one .blog-item .contents span {
font-size: 12px;
text-transform: uppercase;
}
#blog-section-one .blog-item .contents span a {
color: var(--color-text);
}
.blog-section-inner .blog-thumb > a {
display: inline-block;
height: 230px;
border-radius: 5px 5px 0 0;
overflow: hidden;
}
.blog-section-inner .blog-thumb > a img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.blog-section-inner .contents {
background-color: var(--color-white);
padding: 32px;
border-radius: 5px;
margin-top: -8px;
}
.blog-section-inner {
max-width: 430px;
width: 100%;
margin: auto;
}
.blog-section-inner .contents .blog-meta {
font-size: 12px;
text-transform: uppercase;
}
.blog-section-inner .contents .blog-meta a {
color: var(--color-text);
}
.blog-section-inner .contents .blog-title {
font-size: 24px;
font-weight: 600;
font-family: var(--body-font);
margin-bottom: 16px;
letter-spacing: -0.03em;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.blog-section-inner .contents a:hover .blog-title {
color: var(--color-primary);
}
#blog-section-two .blog-item {
margin-bottom: 30px;
} #single-post-section {
padding: 100px 0;
}
#single-post-section .single-post .small-primary {
color: var(--color-heading);
font-size: 18px;
margin-bottom: 15px;
}
#single-post-section .single-post .share-social-icons {
margin: 0 0 30px;
padding: 0;
list-style: none;
}
#single-post-section .single-post .share-social-icons li {
display: inline-block;
margin-right: 5px;
}
#single-post-section .single-post .share-social-icons li:last-child {
margin-right: 0;
}
#single-post-section .single-post .share-social-icons a {
width: 35px;
height: 35px;
text-align: center;
background: #999;
display: block;
border-radius: 50%;
font-size: 18px;
line-height: 36px;
color: var(--color-white);
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#single-post-section .single-post .share-social-icons a.facebook {
background: #3b5998;
}
#single-post-section .single-post.share-social-icons a.facebook:hover {
background: #2d4b8a;
}
#single-post-section .single-post .share-social-icons a.twitter {
background: #55acee;
}
#single-post-section .single-post .share-social-icons a.twitter:hover {
background: #419add;
}
#single-post-section .single-post .share-social-icons a.linkedin {
background: #0077b5;
}
#single-post-section .single-post .share-social-icons a.linkedin:hover {
background: #026396;
}
#single-post-section .single-post .thumbnail {
display: block;
margin-bottom: 35px;
}
#single-post-section .single-post .contents-wrpr:after {
content: "";
display: block;
clear: both;
}
#single-post-section .single-post .author-image {
width: 80px;
margin-right: 30px;
float: left;
}
#single-post-section .single-post .contents {
width: calc(100% - 110px);
float: left;
}
#single-post-section .single-post .post-text.contents,
.tj__post .tj__content .tj-post__tags {
margin-left: 110px;
}
#single-post-section .single-post .contents .author-info > a {
text-decoration: none;
}
#single-post-section .single-post .contents .author-info h4 {
margin-bottom: 10px;
}
#single-post-section .single-post .contents .author-info .title {
display: block;
color: var(--color-text);
font-size: 18px;
line-height: 1em;
margin-bottom: 20px;
}
#single-post-section .single-post .contents .author-info .info {
display: block;
color: var(--color-text);
font-size: 14px;
line-height: 1em;
margin-bottom: 15px;
}
#single-post-section .single-post .contents .author-info .info .date {
margin-right: 30px;
}
#single-post-section .single-post .author-info .author-social-icons {
margin: 0 0 30px;
padding: 0;
list-style: none;
}
#single-post-section .single-post .author-info .author-social-icons li {
display: inline-block;
margin-right: 5px;
}
#single-post-section
.single-post
.author-info
.author-social-icons
li:last-child {
margin-right: 0;
}
#single-post-section .single-post .author-info .author-social-icons a {
width: 35px;
height: 35px;
text-align: center;
border: 1px solid var(--color-border);
display: block;
border-radius: 50%;
font-size: 18px;
line-height: 32px;
color: var(--color-border);
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#single-post-section .single-post .author-info .author-social-icons a:hover {
border: 1px solid var(--color-border);
color: var(--color-white);
background: var(--color-border);
}
#single-post-section .single-post .contents blockquote {
margin: 30px 0 30px 30px;
padding: 8px 0 0 25px;
font-style: italic;
position: relative;
}
#single-post-section .single-post .contents blockquote:before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f10d";
color: var(--color-primary);
font-size: 20px;
position: absolute;
top: 0;
left: 0;
}
#single-post-section .single-post .comments-box {
margin-top: 50px;
margin-left: 110px;
}
#single-post-section .single-post .comments-box .reply {
display: inline-block;
width: 50px;
text-align: right;
float: right;
font-size: 18px;
color: var(--color-primary);
text-decoration: none;
}
#single-post-section .single-post .comments-box .reply:hover {
color: var(--color-primary-2);
}
#single-post-section .single-post .comments-box .media img {
max-width: 70px;
}
#single-post-section .single-post .comments-box .comment {
margin-bottom: 50px;
}
#single-post-section .single-post .comment-form-box {
margin-bottom: 50px;
} .sidebar-widget {
border: 1px solid var(--color-light-gray);
padding: 50px 30px;
margin-bottom: 50px;
}
.sidebar-widget .title {
font-size: 20px;
padding-bottom: 15px;
margin-bottom: 25px;
text-transform: uppercase;
border-bottom: 1px solid var(--color-primary);
}
.sidebar-widget .sidebar-single-post,
.tj-footer__widget .sidebar-single-post {
display: inline-block;
width: 100%;
}
.sidebar-widget .sidebar-single-post:not(:last-child),
.tj-footer__widget .sidebar-single-post:not(:last-child) {
margin-bottom: 30px;
}
.sidebar-widget .sidebar-single-post:last-of-type,
.tj-footer__widget .sidebar-single-post:last-of-type {
margin-bottom: 0;
}
.sidebar-widget .sidebar-single-post .image-box,
.tj-footer__widget .sidebar-single-post .image-box {
width: 100px;
float: left;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-right: 15px;
}
.sidebar-widget .sidebar-single-post .contents,
.tj-footer__widget .sidebar-single-post .contents {
width: calc(100% - 115px);
float: left;
}
.sidebar-widget .sidebar-single-post .contents a,
.tj-footer__widget .sidebar-single-post .contents a {
text-decoration: none;
}
.sidebar-widget .sidebar-single-post h4,
.tj-footer__widget .sidebar-single-post h4 {
font-size: 16px;
margin-bottom: 5px;
}
.sidebar-widget .sidebar-single-post .date,
.tj-footer__widget .sidebar-single-post .date {
font-size: 14px;
margin-bottom: 0;
}
.sidebar-widget .categories {
list-style: none;
margin: 0;
padding: 0;
}
.sidebar-widget.widget_categories ul li,
.sidebar-widget .categories li {
padding: 10px 0 10px;
border-bottom: 1px solid var(--color-light-gray);
margin-bottom: 0px;
}
.sidebar-widget .categories li:not(:last-child),
.sidebar-widget.widget_categories ul li:not(:last-child) {
margin-bottom: 0px;
}
.sidebar-widget .categories li:first-child,
.sidebar-widget.widget_categories ul li:first-child {
padding: 0 0 10px;
margin-bottom: 0px;
}
.sidebar-widget .categories li:last-child,
.sidebar-widget.widget_categories ul li:last-child {
padding: 15px 0 0;
border-bottom: none;
}
.sidebar-widget .categories li a,
.sidebar-widget.widget_categories ul li a {
text-decoration: none;
padding-left: 0px;
width: 100%;
} #get-started-section-one {
padding: 100px 0 0;
}
#get-started-section-one .section-header-primary {
z-index: 1;
position: relative;
}
#get-started-section-one .get-started-image {
margin-top: -50px;
width: 100%;
} #get-started-section-two {
padding: 100px 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
z-index: 1;
}
#get-started-section-two:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(19, 31, 61, 0.7);
z-index: -1;
}
.get-started-three {
background-color: var(--color-primary);
position: relative;
}
.get-started-three .get-started-content {
padding-left: 100px;
padding-top: 128px;
padding-bottom: 128px;
}
.get-started-three .get-started-content .get-started-title {
max-width: 532px;
width: 100%;
margin-bottom: 40px;
}
.get-started-three .get-started-content .get-started-title .cta-title {
font-size: 40px;
color: var(--color-white);
} .get-started-three .get-started-image {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 50%;
}
.get-started-three .get-started-image img {
height: 100% !important;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
}
.blog-section-inner .contents .text {
font-size: 16px;
font-weight: 500;
font-family: var(--heading-font);
margin-bottom: 20px;
}
.blog-section-inner .contents .blog_btn a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 16px;
line-height: 17px;
font-weight: 500;
font-family: var(--heading-font);
text-transform: capitalize;
color: var(--color-primary);
}
.blog-section-inner .contents .blog_btn a i {
margin-left: 8px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.blog-section-inner .contents .blog_btn a:hover i {
margin-left: 15px;
}
.get-started-three.style-4 .get-started-image {
left: auto;
right: 0;
}
.get-started-three.style-4 .get-started-content {
padding-top: 109px;
padding-bottom: 109px;
padding-left: 0;
max-width: 525px;
width: 100%;
}
.get-started-three.style-4 .get-started-content .get-started-title {
max-width: 100%;
margin-bottom: 0;
}
.get-started-three.style-4 .get-started-content .get-started-title .cta-title {
font-size: 36px;
line-height: 46px;
font-weight: 500;
margin-bottom: 6px;
}
.get-started-three.style-4 .get-started-content p {
line-height: 24px;
color: var(--color-white);
margin-bottom: 17px;
}
.single-services .elementor-widget-text-editor ul {
padding: 0;
list-style: none;
}
.single-services .elementor-widget-text-editor ul li {
position: relative;
padding-left: 28px;
}
.single-services .elementor-widget-text-editor ul li:before {
content: "\f058";
font-family: "Font Awesome 5 Pro";
font-weight: 100;
font-size: 16px;
line-height: 1;
color: var(--color-primary);
position: absolute;
left: 0;
top: 3px;
width: 16px;
height: 16px;
}
.single-services .elementor-widget-text-editor ul li:not(:last-child) {
margin-bottom: 15px;
} #pricing-table-section-one .pricing-table-item {
-webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.12);
box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.12);
padding: 35px 35px 75px;
max-width: 390px;
width: 100%;
margin: 0 auto;
height: 100%;
position: relative;
}
#pricing-table-section-one .pricing-table-item h3 {
font-family: var(--heading-font);
color: var(--color-primary);
font-size: 24px;
margin-bottom: 5px;
}
#pricing-table-section-one .pricing-table-item .price {
font-family: var(--heading-font);
font-weight: 700;
color: var(--color-header);
font-size: 30px;
margin-bottom: 15px;
}
#pricing-table-section-one .pricing-table-item .description {
color: var(--color-gray);
font-size: 18px;
margin-bottom: 20px;
}
#pricing-table-section-one .pricing-table-item ul {
list-style: none;
margin: 0 0 30px 0;
padding: 15px 0;
border-top: 1px solid var(--color-primary);
border-bottom: 1px solid var(--color-primary);
}
#pricing-table-section-one .pricing-table-item ul li {
padding-left: 30px;
position: relative;
margin-bottom: 10px;
text-decoration: line-through;
color: var(--color-light-gray);
}
#pricing-table-section-one .pricing-table-item ul li.active {
text-decoration: inherit;
color: inherit;
}
#pricing-table-section-one .pricing-table-item ul li i {
color: var(--color-primary);
position: absolute;
left: 5px;
top: 5px;
}
#pricing-table-section-one .pricing-table-item .btn {
position: absolute;
bottom: 35px;
} #contact-section .contact-item {
text-align: center;
padding: 50px 5px 25px;
height: 100%;
}
#contact-section .contact-item a {
color: var(--color-text);
text-decoration: none;
}
#contact-section .contact-item hr {
width: 80%;
margin-left: auto;
margin-right: auto;
margin-top: 1rem;
margin-bottom: 1rem;
}
#contact-section .contact-item i {
font-size: 35px;
margin-bottom: 15px;
color: var(--color-primary);
}
#contact-section .contact-map-form {
margin-top: 75px;
}
#contact-section #googleMap {
height: 280px;
}
#message_sent .alert-success {
color: var(--color-primary);
background-color: var(--color-light-gray);
border-color: var(--color-light-gray);
} #page-header-section {
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 150px 0 50px;
position: relative;
color: var(--color-white);
text-align: center;
z-index: 1;
}
#page-header-section:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: -1;
}
#page-header-section .breadcrumb_title,
#page-header-section h1 {
font-weight: 600;
font-size: 55px;
line-height: 1.2em;
color: var(--color-white);
}
.breadcrumb_navigation > span[property="itemListElement"] {
display: inline-block;
margin: 0 5px;
}
.breadcrumb_navigation > span[property="itemListElement"] span,
.breadcrumb_navigation > span[property="itemListElement"] a {
color: var(--color-white);
text-decoration: none;
}
#page-header-section.style-2 {
padding: 217px 0 100px 0;
}
.style-2 .breadcrumb_navigation > span[property="itemListElement"] span,
.style-2 .breadcrumb_navigation > span[property="itemListElement"] a {
font-size: 14px;
line-height: 21px;
}
#page-header-section.style-2 .breadcrumb_title {
font-size: 48px;
line-height: 62px;
font-weight: 500;
letter-spacing: -0.04em;
margin-bottom: 8px;
}
#page-header-section.style-2 .breadcrumb_description {
text-transform: none;
max-width: 520px;
width: 100%;
font-size: 20px;
line-height: 30px;
font-weight: 400;
font-family: var(--body-font);
margin-bottom: 0;
}
#page-header-section.style-2 .breadcrumb_description.center {
margin-left: auto;
margin-right: auto;
}
#page-header-section.style-2 .breadcrumb_description.right {
margin-left: auto;
} .footer-one {
background: var(--header-bg) url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/footer/bg.png) no-repeat;
background-position: center 80px;
}
.footer-one .footer-top {
padding: 100px 0 0px;
}
.footer-one .footer-top h3 {
color: var(--color-white);
text-transform: uppercase;
font-size: 16px;
font-weight: 400;
}
.footer-one .footer-top .footer-logo {
max-width: 150px;
}
.footer-one .footer-top .footer-logo,
.footer-one .footer-top h3 {
margin-bottom: 50px;
}
.footer-one .footer-top .social-icons {
margin: 0;
padding: 0;
list-style: none;
}
.footer-one .footer-top .social-icons li {
display: inline-block;
padding-right: 15px;
margin-bottom: 15px;
}
.footer-one .footer-top .social-icons li:last-child {
padding-right: 0;
}
.footer-one .footer-top .social-icons li a img {
max-width: 35px;
}
.footer-one .footer-top .social-icons li a i {
color: var(--color-white);
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.footer-one .footer-top .social-icons li a:hover i.fa-facebook-square {
color: #39549f;
}
.footer-one .footer-top .social-icons li a:hover i.fa-linkedin {
color: #0084b0;
}
.footer-one .footer-top .social-icons li a:hover i.fa-twitter-square {
color: #50abf0;
}
.footer-one .footer-top .social-icons li a:hover i.fa-google-plus-square {
color: #dd4a39;
}
.footer-one .footer-top .social-icons li a:hover i.fa-youtube-square {
color: #ff0000;
}
.footer-one .footer-top .menu {
margin: 0;
padding: 0;
list-style: none;
padding-left: 0px;
}
.footer-one .footer-top .menu li {
margin-bottom: 10px;
}
.footer-one .footer-top .menu li a,
.footer-one .footer-top .address-list li a {
color: var(--color-text);
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.footer-one .footer-top .menu li a:hover,
.footer-one .footer-top .address-list li a:hover {
color: var(--color-white);
}
.footer-one .footer-top .address-list {
margin: 0;
padding: 0;
list-style: none;
}
.footer-one .footer-top .address-list li {
padding-left: 30px;
position: relative;
margin-bottom: 10px;
}
.footer-one .footer-top .address-list li .icon {
position: absolute;
top: 0;
left: 0;
}
.footer-one .footer-bottom {
padding: 25px 0 30px;
font-size: 12px;
}
.footer-one .footer-bottom .right-side {
text-align: right;
}
.footer-one .footer-bottom .right-side ul {
margin: 0;
padding: 0;
list-style: none;
}
.footer-one .footer-bottom .right-side ul li {
margin: 0 15px;
display: inline-block;
}
.footer-one .footer-bottom .right-side ul li:last-child {
margin-right: 0;
}
.footer-one .footer-bottom .right-side ul li a {
color: var(--color-text);
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.footer-one .footer-bottom .right-side ul li:hover a {
color: var(--color-white);
} .spinner-wrpr {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #181926;
z-index: 1000;
}
.spinner-wrpr .spinner {
width: 40px;
height: 40px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.spinner-wrpr .double-bounce1,
.spinner-wrpr .double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: var(--color-primary);
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: spinner-bounce 2s infinite ease-in-out;
animation: spinner-bounce 2s infinite ease-in-out;
}
.spinner-wrpr .double-bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
@-webkit-keyframes spinner-bounce {
0%,
100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@keyframes spinner-bounce {
0%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
.cancel_preloader {
position: fixed;
right: 10px;
bottom: 10px;
z-index: 1001;
} #scroll-to-top {
color: var(--color-primary);
font-size: 40px;
position: fixed;
bottom: 2%;
right: 5%;
opacity: 0;
visibility: hidden;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#scroll-to-top i {
background: rgba(255, 255, 255, 0.8);
padding: 0px 5px;
border-radius: 3px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#scroll-to-top:hover i {
background: var(--color-white);
}
#scroll-to-top.active {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(-40px);
-ms-transform: translateY(-40px);
transform: translateY(-40px);
}
.tj-cta__title-box .cta-title {
margin-bottom: 0;
}
.tj-cta_input_box {
max-width: 450px;
width: 100%;
margin: auto;
}
.tj-cta_input_box input[type="text"],
.tj-cta_input_box input[type="email"] {
width: 100%;
border: 1px solid var(--color-primary);
background: transparent;
height: 60px;
border-radius: 30px;
color: var(--color-white);
padding: 0 135px 0px 30px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tj-cta_input_box .btn {
position: absolute;
right: 8px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
height: 45px;
border-radius: 30px;
}
.tj-cta_input_box input[type="text"]::-webkit-input-placeholder,
.tj-cta_input_box input[type="email"]::-webkit-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::-moz-placeholder,
.tj-cta_input_box input[type="email"]::-moz-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]:-ms-input-placeholder,
.tj-cta_input_box input[type="email"]:-ms-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::-ms-input-placeholder,
.tj-cta_input_box input[type="email"]::-ms-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::-webkit-input-placeholder,
.tj-cta_input_box input[type="email"]::-webkit-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::-moz-placeholder,
.tj-cta_input_box input[type="email"]::-moz-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]:-ms-input-placeholder,
.tj-cta_input_box input[type="email"]:-ms-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::-ms-input-placeholder,
.tj-cta_input_box input[type="email"]::-ms-input-placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]::placeholder,
.tj-cta_input_box input[type="email"]::placeholder {
color: var(--color-light-gray);
}
.tj-cta_input_box input[type="text"]:focus,
.tj-cta_input_box input[type="email"]:focus {
border-color: var(--color-primary-2);
} .feature_item {
background-color: var(--color-white);
padding: 35px;
border-radius: 5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.feature_item:hover {
margin-top: -10px !important;
}
.feature_item .feature_icon {
font-size: 40px;
color: var(--color-primary);
line-height: 1;
margin-bottom: 25px;
}
.feature_item .feature_img {
max-width: 45px;
margin-bottom: 27px;
}
.feature_content .feature_title {
font-size: 24px;
line-height: 26px;
font-weight: 600;
margin-bottom: 16px;
letter-spacing: -0.03em;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.feature_content a:hover .feature_title {
color: var(--color-primary);
}
.feature_content .feature_desc {
margin-bottom: 0px;
} .consultation_form {
max-width: 510px;
width: 100%;
margin-left: auto;
background-color: var(--color-white);
-webkit-box-shadow: 0px 0px 20px 5px rgba(182, 182, 182, 0.25);
box-shadow: 0px 0px 20px 5px rgba(182, 182, 182, 0.25);
border: 1px solid #e8e5e5;
border-radius: 10px;
padding: 40px 35px;
margin: 100px 0 100px auto;
}
.consultation-form {
position: relative;
}
.consultation_form .title {
font-size: 40px;
font-weight: 600;
letter-spacing: -0.04em;
margin-bottom: 26px;
}
.consultation_form .form_fields input[type="text"],
.consultation_form .form_fields input[type="email"],
.consultation_form .form_fields input[type="tel"],
.consultation_form .form_fields textarea {
width: 100%;
border: 1px solid #dddddd;
border-radius: 35px;
padding: 16px 20px;
font-size: 15px;
line-height: 1;
font-family: var(--body-font);
letter-spacing: -0.03em;
}
.consultation_form .form_fields textarea {
height: 170px;
resize: none;
}
.consultation_form .form_fields .form_group {
margin-bottom: 25px;
}
.consultation_form .form_fields .tj-btn {
width: 100%;
padding: 16px 25px;
border-radius: 35px;
}
.consult_image .image_inner {
max-width: 610px;
width: 100%;
}
.consultation_form .form_fields textarea:focus {
outline: none;
} .services-list .list_items {
padding: 0;
margin: 0;
list-style: none;
}
.services-list .list_items .list_item {
display: block;
}
.services-list .list_items .list_item a {
border: 1px solid var(--color-primary);
border-radius: 3px;
width: 100%;
padding: 17px 15px 17px 13px;
border-left: 11px solid var(--color-primary);
font-size: 16px;
line-height: 1;
font-weight: 700;
font-family: var(--body-font);
color: var(--color-heading);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: var(--color-white);
position: relative;
z-index: 1;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.services-list .list_items .list_item a i {
border: 1px solid var(--color-primary);
margin-left: auto;
color: var(--color-primary);
width: 24px;
height: 24px;
line-height: 24px;
text-align: center;
}
.services-list .list_items .list_item.active a,
.services-list .list_items .list_item a:hover {
background-color: var(--color-primary-2);
color: var(--color-white);
border: 1px solid var(--color-primary-2);
border-left: 11px solid var(--color-primary);
}
.services-list .list_items .list_item.active a i,
.services-list .list_items .list_item a:hover i {
color: var(--color-white);
border-color: var(--color-white);
}
.services-list .list_items .list_item:not(:last-child) {
margin-bottom: 18px;
}
.annual-report {
background-color: #f6f6f6;
text-align: center;
border-radius: 5px;
padding: 35px;
}
.annual-report .report_thumb {
margin-bottom: 17px;
}
.annual-report .report_title {
font-size: 24px;
line-height: 26px;
font-weight: 600;
letter-spacing: -0.03em;
font-family: var(--body-font);
margin-bottom: 20px;
}
.faq_item .faq_title {
width: 100%;
text-align: left;
border: none;
background-color: var(--color-white);
border-left: 13px solid var(--color-primary);
font-size: 16px;
line-height: 1;
font-weight: 700;
font-family: var(--body-font);
padding: 17px 33px 17px 13px;
-webkit-transition: color 0.15s ease-in-out,
background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, border-radius 0.15s ease,
-webkit-box-shadow 0.15s ease-in-out;
-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
border-radius 0.15s ease;
-webkit-transition: color 0.15s ease-in-out,
background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, border-radius 0.15s ease,
-webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
border-radius 0.15s ease;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
position: relative;
}
.faq_items .faq_item {
border: 1px solid var(--color-primary);
border-radius: 3px;
}
.faq_items .faq_item:not(:last-child) {
margin-bottom: 30px;
}
.faq_item .faq_description p {
line-height: 24px;
font-size: 16px;
margin-bottom: 0;
font-family: var(--body-font);
padding: 24px 28px;
}
.faq_item .faq_title:not(.collapsed) {
background-color: var(--color-primary);
color: var(--color-white);
}
.faq_item .faq_title::after {
position: absolute;
font-family: "Font Awesome 5 Pro";
width: 14px;
height: 14px;
border: 1px solid var(--color-primary);
font-size: 9px;
content: "\f067";
text-align: center;
line-height: 14px;
right: 13px;
color: var(--color-primary);
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.faq_item .faq_title:not(.collapsed)::after {
content: "\f068";
font-family: "Font Awesome 5 Pro";
color: var(--color-white);
border-color: white;
}:root {
--tj-body-font: var(--body-font);
--tj-body-f-size: 16px;
--tj-body-f-weight: 400;
--tj-body-l-height: 1.2;
--tj-body-color: var(--color-text);
--color-footer-text: #b4b8bb;
}
body {
-ms-word-wrap: break-word;
word-wrap: break-word;
overflow-x: hidden;
}
img {
max-width: 100%;
height: auto;
}
.clearfix,
.tj-clearfix {
clear: both;
} .alignleft {
display: inline;
float: left;
margin-right: 1.5em !important;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em !important;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto !important;
margin-right: auto !important;
text-align: center;
}
.wp-caption {
max-width: 100%;
} .screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important; }
.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
-webkit-clip-path: none;
clip-path: none;
color: var(--tj-body-color);
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
.bypostauthor {
display: block;
}
.gallery-caption {
display: block;
} .tj-post__grid.sticky .tj-post__wrapper {
border: 1px solid var(--color-primary);
padding: 20px 30px;
}
.tj__post .tj__content .post-text p,
.tj__post .tj__content .post-text ul li,
.tj__post .tj__content .post-text ol li,
.comment__text ul li,
.comment__text ol li {
font-family: var(--tj-body-font);
font-size: var(--tj-body-f-size);
line-height: var(--tj-body-l-height);
font-weight: var(--tj-body-f-weight);
color: var(--tj-body-color);
}
.tj__post .tj__content .post-text p:last-child {
margin-bottom: 0px;
}
.tj__post .tj__content .post-text ul,
.tj__post .tj__content .post-text ol,
.tj-latest__comments .comment__text ul,
.tj-latest__comments .comment__text ol {
padding-left: 20px;
margin-bottom: 20px;
}
.tj__post .tj__content .post-text ol ol,
.tj__post .tj__content .post-text ul ul,
.tj__post .tj__content .post-text ul ol,
.tj__post .tj__content .post-text ol ul,
.tj-latest__comments .comment__text ul ul,
.tj-latest__comments .comment__text ol ol {
margin-bottom: 0px;
}
.tj__post .tj__content .post-text ul li:not(:last-child),
.tj__post .tj__content .post-text ol li:not(:last-child),
.tj-latest__comments .comment__text ul li:not(:last-child),
.tj-latest__comments .comment__text ol li:not(:last-child) {
margin-bottom: 5px;
}
.tj__post .tj__content .post-text a:not(.wp-block-button__link),
.tj__comment tr td > a,
.tj-latest__comments .comment__text a {
color: var(--tj-body-color);
text-underline-offset: 3px;
-webkit-text-decoration-skip-ink: all;
text-decoration-skip-ink: all;
text-decoration: underline;
}
.tj__post .tj__content .post-text a:not(.wp-block-button__link):hover,
.tj__comment tr td > a:hover,
.tj-latest__comments .comment__text a:hover {
color: var(--color-primary);
}
.tj__post
.wp-block-social-links:not(.is-style-logos-only)
.wp-social-link-wordpress
> a,
.tj__post
.wp-block-social-links:not(.is-style-logos-only)
.wp-social-link-fivehundredpx
> a,
.tj__post
.wp-block-social-links:not(.is-style-logos-only)
.wp-social-link-wordpress
> a:hover,
.tj__post
.wp-block-social-links:not(.is-style-logos-only)
.wp-social-link-fivehundredpx
> a:hover {
color: var(--color-white);
}
.tj__post .tj__content .post-text a:hover,
.tj__comment tr td > a:hover,
.tj-latest__comments .comment__text a:hover {
-webkit-text-decoration-style: dotted;
text-decoration-style: dotted;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
.tj__post .tj__content .tj-post__tags {
margin-top: 20px;
padding-top: 30px;
overflow: hidden;
clear: both;
}
.tj__post .tj__content .tj-post__tags span {
font-size: 16px;
color: var(--color-heading);
font-weight: 500;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
}
.tj__post .tj__content .tj-post__tags a {
display: inline-block;
height: 36px;
line-height: 38px;
padding: 0 15px;
font-size: 15px;
font-weight: 500;
color: var(--color-heading);
background: #f0f0f5;
border-radius: 4px;
margin-right: 8px;
margin-bottom: 10px;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
text-decoration: none;
}
.tj__post .tj__content .tj-post__tags a:hover {
color: var(--color-white);
background: var(--color-primary);
}
.tj__post .tj__content .post-text .wp-block-button {
margin-bottom: 15px;
}
.tj__post
.tj__content
.post-text
.wp-block-button.is-style-squared
.wp-block-button__link {
border-radius: 0;
}
.tj__post .tj__content .post-text .wp-block-cover {
margin-bottom: 25px;
}
.tj__post .tj__content .post-text .wp-block-cover .wp-block-cover-text {
font-size: 2em;
line-height: 1.25;
color: var(--color-white);
}
.tj__post .tj__content .post-text .wp-block-cover .wp-block-cover-text > a {
color: var(--color-white);
}
.tj__post .tj__content .post-text ul.blocks-gallery-grid {
padding-left: 0;
margin-bottom: 0;
}
.tj__post
.tj__content
.post-text
.wp-block-gallery:not(.has-nested-images)
.blocks-gallery-item
figcaption {
line-height: 20px;
}
blockquote,
.tj__post .tj__content .post-text .wp-block-quote {
margin: 30px 0 30px 30px;
padding: 8px 0 0 25px;
font-style: italic;
position: relative;
border: none;
}
blockquote::before,
.tj__post .tj__content .post-text .wp-block-quote::before {
font-family: "Font Awesome 5 Pro";
font-weight: 900;
content: "\f10d";
color: #a37966;
font-size: 20px;
position: absolute;
top: 0;
left: 0;
}
blockquote p,
.tj__post .tj__content .post-text .wp-block-quote p {
font-size: 20px;
line-height: 1.2;
color: var(--tj-body-color);
font-weight: var(--tj-body-f-weight);
margin-bottom: 10px;
}
blockquote cite,
.tj__post .tj__content .post-text .wp-block-quote cite {
position: relative;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
font-weight: 600;
color: var(--color-heading);
padding-left: 40px;
margin-top: 20px;
}
blockquote cite::before,
.tj__post .tj__content .post-text .wp-block-quote cite::before {
content: "";
position: absolute;
left: 0;
height: 2px;
width: 30px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
background-color: var(--color-primary);
}
.tj__post .tj__content .post-text .wp-block-quote.is-style-large {
text-align: right;
}
.tj__post .tj__content .post-text .wp-block-quote.is-style-large p {
text-align: left;
}
#single-post-section
.single-post
.contents
.wp-block-quote.has-text-align-right:before {
content: "\f10e";
left: auto;
right: 0px;
}
#single-post-section
.single-post
.contents
.wp-block-quote.has-text-align-right {
padding: 8px 25px 0 0px;
border-right: none;
}
.tj__post .tj__content .post-text blockquote a,
.tj__post .tj__content .post-text .wp-block-quote a {
color: var(--tj-body-color);
}
.tj__post
.tj__content
.post-text
.wp-block-pullquote.has-background.is-style-solid-color
blockquote {
margin: auto;
}
.tj__post
.tj__content
.post-text
.wp-block-pullquote.has-background.is-style-solid-color
blockquote
p {
font-size: 2em;
}
.tj__post .tj__content .post-text p.has-large-font-size {
line-height: 1;
}
.tj__post .tj__content .post-text p.has-very-light-gray-color {
color: #eee;
}
.tj__post
.tj__content
.post-text
.wp-block-cover__inner-container
p.has-large-font-size {
color: inherit;
}
.tj__post .tj__content .post-text .gallery-item {
display: inline-block;
text-align: center;
width: 100%;
vertical-align: top;
}
.tj__post .tj__content .post-text .gallery-columns-2 .gallery-item {
max-width: 50%;
}
.tj__post .tj__content .post-text .wp-block-archives-list li > a {
color: inherit;
}
.tj__post .tj__content .post-text .wp-block-archives-list li > a:hover {
color: var(--color-primary);
}
.tj__post .tj__content .post-text .nice-select {
float: unset;
margin-bottom: 20px;
}
.tj__post .tj__content .post-text .nice-select ul.list {
padding-left: 0px;
padding-top: 15px;
width: 100%;
}
.tj__post .tj__content .post-text .nice-select .option.selected {
font-weight: bold;
}
#wp-calendar {
width: 100%;
}
#wp-calendar caption {
text-align: right;
font-size: var(--tj-body-f-size);
margin-top: 5px;
margin-bottom: 0;
padding-bottom: 0;
padding-top: 0;
}
#wp-calendar thead {
font-size: 14px;
}
.wp-block-calendar #wp-calendar thead th,
#wp-calendar thead th {
padding-bottom: 10px;
text-align: center;
}
#wp-calendar tbody {
color: var(--tj-body-color);
}
#wp-calendar tbody td {
background: var(--color-white);
border: 1px solid var(--color-border);
text-align: center;
padding: 8px 0;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
#wp-calendar tbody td > a {
font-weight: bold;
color: var(--color-primary);
}
#wp-calendar tbody td#today {
background: var(--color-primary);
color: var(--color-white);
}
#wp-calendar tbody td#today > a {
color: var(--color-white);
font-weight: bold;
text-decoration: none;
}
.wp-calendar-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 20px;
}
.wp-calendar-nav a {
text-decoration: none;
color: var(--color-primary);
font-weight: bold;
}
.wp-calendar-nav a:hover {
color: var(--color-primary);
}
.tj__post .tj__content .post-text ol.wp-block-latest-comments,
.tj__post
.tj__content
.post-text
ul.wp-block-latest-posts.wp-block-latest-posts__list,
.tj__post .tj__content .post-text ul.wp-block-rss {
padding-left: 0px;
}
.tj__post
.tj__content
.post-text
ol.wp-block-latest-comments
.wp-block-latest-comments__comment {
margin-bottom: 1em;
}
.tj__post .tj__content .post-text a.wp-block-latest-comments__comment-author {
color: inherit;
text-decoration: none;
font-weight: bold;
}
.tj__post .tj__content .post-text a.wp-block-latest-comments__comment-link {
color: inherit;
text-decoration: none;
}
.tj__post
.tj__content
.post-text
a.wp-block-latest-comments__comment-link:hover {
color: var(--color-primary);
}
.tj__post
.tj__content
.post-text
ul.wp-block-latest-posts.wp-block-latest-posts__list
.wp-block-latest-posts__post-title,
.tj__post .tj__content .post-text ul.wp-block-rss li a {
color: inherit;
}
.tj__post
.tj__content
.post-text
ul.wp-block-latest-posts.wp-block-latest-posts__list
.wp-block-latest-posts__post-title:hover,
.tj__post .tj__content .post-text ul.wp-block-rss li a:hover {
color: var(--color-primary);
}
.tj__post .tj__content .post-text .wp-block-search {
margin-bottom: 20px;
}
.wp-block-search__input {
background: var(--color-light-gray);
border: 0;
height: 50px;
width: 100%;
padding: 0 15px;
}
.wp-block-search__button {
width: 120px;
height: 50px;
background-color: var(--color-primary);
color: var(--color-white);
border: 0;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.wp-block-search__button:hover {
background-color: var(--color-heading);
}
.tj__post .tj__content .post-text .wp-block-tag-cloud a {
background-color: var(--color-white);
padding: 5px 15px;
font-size: 14px !important;
display: inline-block;
margin-bottom: 5px;
margin-right: 5px;
text-transform: capitalize;
border: 1px solid var(--color-border);
color: var(--tj-body-color);
text-decoration: none;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
border-radius: 6px;
}
.tj__post .tj__content .post-text .wp-block-tag-cloud a:hover {
background-color: var(--color-primary);
color: var(--color-white);
border-color: var(--color-primary);
}
.tj__post .tj__content .post-text .wp-block-group.has-background {
margin-bottom: 20px;
padding: 20px;
}
.tj__post .tj__content .post-text .wp-block-media-text.has-media-on-the-right {
margin-bottom: 20px;
}
.tj__post .tj__content .post-text .tj-page__links,
.tj-page__post .tj-page__links {
clear: both;
margin-top: 30px;
padding-top: 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.tj__post .tj__content .post-text .tj-page__links .post-page-numbers,
.tj-page__post .tj-page__links .post-page-numbers {
position: relative;
overflow: hidden;
background: transparent;
display: inline-block;
width: 40px;
height: 40px;
line-height: 36px;
text-align: center;
border-radius: 4px;
font-weight: 500;
font-size: 16px;
border: 2px solid var(--color-border);
color: var(--color-heading);
text-decoration: none;
margin: 0px 5px;
}
.tj__post .tj__content .post-text .tj-page__links .post-page-numbers.current,
.tj__post .tj__content .post-text .tj-page__links .post-page-numbers:hover,
.tj-page__post .tj-page__links .post-page-numbers.current,
.tj-page__post .tj-page__links .post-page-numbers:hover {
background: var(--color-primary);
color: var(--color-white);
border-color: var(--color-primary);
}
pre {
display: block;
font-size: 87.5%;
color: var(--tj-body-color);
border: 1px solid var(--color-border);
padding: var(--tj-body-f-size);
border-radius: 4px;
}
.tj__post .tj__content .post-text .wp-block-preformatted {
margin: 20px 0;
}
.tj__post .tj__content .post-text table,
.tj__post .tj__content .post-text th,
.tj__post .tj__content .post-text td,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar th,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar td,
table,
th,
td {
border: 1px solid var(--color-border);
}
.tj__post .tj__content .post-text table,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar,
table {
margin-bottom: 20px;
width: 100%;
}
.tj__post .tj__content .post-text table th,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar th,
.tj-footer__widget .wp-block-calendar #wp-calendar th,
table th {
font-weight: bold;
background-color: transparent;
}
.tj__post .tj__content .post-text table td,
.tj__post .tj__content .post-text table th,
.tj-sidebar__widget.widget_block .wp-block-calendar #wp-calendar th,
.tj-footer__widget .wp-block-calendar #wp-calendar th,
table td,
table th {
border-color: var(--color-border);
padding: 12px 12px;
text-align: center;
}
.tj__post .tj__content .post-text .wp-block-table.is-style-stripes td,
.tj__post .tj__content .post-text .wp-block-table.is-style-stripes th {
border-color: transparent;
}
.tj__post .tj__content .post-text .post-password-form label {
width: 100%;
}
.tj__post .tj__content .post-text .post-password-form input[type="password"] {
background-color: var(--color-light-gray);
border: 0;
height: 50px;
width: 100%;
padding: 0 15px;
}
.tj__post .tj__content .post-text .post-password-form input[type="submit"] {
width: 120px;
height: 50px;
background-color: var(--color-primary);
color: var(--color-white);
border: 0;
margin-top: 10px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.tj__post
.tj__content
.post-text
.post-password-form
input[type="submit"]:hover {
background-color: var(--color-heading);
}
.tj__post .tj__content .post-text .gallery-columns-3 .gallery-item {
display: inline-block;
max-width: 33.33%;
text-align: center;
vertical-align: top;
width: 100%;
padding-right: 5px !important;
}
.tj__post .tj__content .post-text .gallery-columns-4 .gallery-item {
max-width: 25%;
}
.tj__post .tj__content .post-text .gallery-columns-5 .gallery-item,
.tj__post .tj__content .post-text .gallery-columns-6 .gallery-item,
.tj__post .tj__content .post-text .gallery-columns-7 .gallery-item,
.tj__post .tj__content .post-text .gallery-columns-8 .gallery-item,
.tj__post .tj__content .post-text .gallery-columns-9 .gallery-item {
max-width: 20%;
} .tj-sidebar-widget__title,
.tj-sidebar__widget.widget_block .wp-block-group__inner-container h2,
.tj-sidebar__widget.widget_block.widget_search .wp-block-search__label {
font-size: 20px;
padding-bottom: 20px;
border-bottom: 1px solid var(--color-primary);
position: relative;
margin-bottom: 0px;
color: var(--color-heading);
text-transform: uppercase;
font-family: var(--tj-body-font);
}
.tj-sidebar__widget.widget_block .wp-block-archives__label {
text-transform: uppercase;
font-size: 20px;
padding-bottom: 20px;
margin-bottom: 25px;
border-bottom: 1px solid var(--color-primary);
position: relative;
color: var(--color-heading);
}
.tj-sidebar-widget__title > a {
color: var(--color-heading);
text-decoration: none;
}
.tj-sidebar-widget__title::before,
.tj-sidebar__widget.widget_block .wp-block-group__inner-container h2::before,
.tj-sidebar__widget.widget_block.widget_search .wp-block-search__label::before {
position: absolute;
content: "";
background: var(--color-primary);
height: 1px;
width: 30px;
bottom: -1px;
left: 0;
right: 0;
}
.tj-sidebar__widget ul {
padding-left: 0px;
margin-bottom: 0px;
}
.tj-sidebar__widget ul li {
list-style: none;
}
.tj-sidebar__widget ul li:not(:last-child) {
margin-bottom: 15px;
}
.tj-sidebar__widget ul ul > li:not(:last-child) {
margin-bottom: 0px;
}
.tj-sidebar__widget ul li a,
.tj-sidebar__widget.widget_block ul li a,
.tj-sidebar__widget.widget_block ol li a {
font-size: 16px;
font-weight: 600;
padding-left: 0px;
position: relative;
color: var(--tj-body-color);
text-decoration: none;
}
.tj-sidebar__widget ul li a:hover,
.tj-sidebar__widget.widget_block ul li a:hover,
.tj-sidebar__widget.widget_block ol li a:hover {
color: var(--color-primary);
}
.tj-sidebar__widget ul li a:hover::after {
left: 7px;
color: var(--color-primary);
}
.tj-sidebar__widget.widget_categories ul ul,
.tj-sidebar__widget ul ul {
padding-left: 15px;
margin-top: 0;
margin-bottom: 0px;
}
.sidebar-widget.widget_categories ul ul > li:last-child,
.sidebar-widget.widget_categories ul ul > li:first-child {
padding-top: 10px;
padding-bottom: 0px;
}
.tj-sidebar__widget.widget_categories ul ul > li,
.tj-sidebar__widget ul ul > li {
border-top: 1px solid #dddddd;
border-bottom: none;
padding-top: 10px;
margin-top: 10px;
padding-bottom: 0px;
}
.tj-sidebar__widget ul ul > li {
border: none;
margin-top: 5px;
}
.sidebar-widget.widget_categories .nice-select ul li {
padding: 0 15px;
font-size: 16px;
font-weight: 500;
color: var(--tj-body-color);
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.sidebar-widget.widget_categories .nice-select ul li:hover {
color: var(--color-primary);
}
.tj-sidebar__widget .nice-select {
float: none;
}
.tj-sidebar__widget .nice-select .list {
width: 100%;
}
.tj-sidebar__widget .wp-calendar-table,
.tj-sidebar__widget .wp-calendar-nav {
margin-bottom: 0px;
}
.tj-sidebar__widget .wp-calendar-table a,
.tj-sidebar__widget .wp-calendar-nav a {
color: var(--color-primary);
}
.tj-sidebar__widget.widget_recent_comments ul li a,
.tj-sidebar__widget.widget_recent_entries ul li a,
.tj-sidebar__widget.widget_rss ul li a {
padding-left: 0px;
}
.tj-sidebar__widget.widget_recent_comments ul li a::after,
.tj-sidebar__widget.widget_recent_entries ul li a::after,
.tj-sidebar__widget.widget_rss ul li a::after {
display: none;
}
.tj-sidebar__widget.widget_recent_comments ul li .comment-author-link a {
color: var(--color-primary);
}
.tj-sidebar__widget.widget_tag_cloud .tagcloud a,
.tj-sidebar__widget.widget_tag_cloud .wp-block-tag-cloud a,
.tj-footer__widget.widget_tag_cloud .wp-block-tag-cloud a,
.tagcloud a {
display: inline-block;
height: 36px;
line-height: 38px;
padding: 0 15px;
font-size: 14px !important;
font-weight: 500;
color: var(--tj-body-color);
background: var(--color-light-gray);
border-radius: 2px;
margin-right: 8px;
margin-bottom: 10px;
text-decoration: none;
}
.tj-sidebar__widget.widget_tag_cloud .tagcloud a:hover,
.tj-sidebar__widget.widget_tag_cloud .wp-block-tag-cloud a:hover,
.tj-footer__widget.widget_tag_cloud .wp-block-tag-cloud a:hover,
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
color: var(--color-white);
background: var(--color-primary);
} .tj-footer__widget {
margin-bottom: 40px;
}
.tj-footer__widget ul {
padding-left: 0px;
}
.tj-footer__widget .tj-footer-widget_title {
color: var(--color-white);
text-transform: uppercase;
font-size: 16px;
font-weight: 400;
margin-bottom: 50px;
}
.tj-footer__widget .tj-footer-widget_title a {
color: var(--color-white);
text-decoration: none;
}
.tj-footer__widget ul li {
margin: 0;
padding: 0;
list-style: none;
}
.tj-footer__widget ul li:not(:last-child) {
margin-bottom: 10px;
}
.tj-footer__widget ul ul {
padding-left: 15px;
margin-bottom: 0px;
margin-top: 10px;
}
.tj-footer__widget ul li a,
.tj-footer__widget.widget_block ol li a,
.tj-footer__widget.widget_block ul li a {
color: var(--color-text);
font-weight: 600;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tj-footer__widget ul li > a:hover {
color: var(--color-white);
}
.tj-footer__widget .nice-select {
float: none;
}
.tj-footer__widget .nice-select ul.list {
width: 100%;
}
.tj-footer__widget #wp-calendar thead th,
.tj-footer__widget .wp-block-calendar #wp-calendar thead th,
.tj-footer__widget #wp-calendar caption,
.tj-footer__widget .wp-block-calendar #wp-calendar caption,
.tj-footer__widget .wp-block-calendar .wp-calendar-nav a {
color: var(--color-white);
}
.tj-footer__widget #wp-calendar,
.tj-footer__widget .wp-block-calendar #wp-calendar,
.tj-footer__widget .wp-calendar-nav,
.tj-footer__widget .wp-block-calendar .wp-calendar-nav {
margin-bottom: 0px;
}
.tj-footer__widget .wp-block-calendar .wp-calendar-nav a:hover,
.tj-footer__widget .wp-calendar-nav a:hover {
color: var(--color-primary);
}
.tj-footer__widget.widget_recent_comments ul li a::before,
.tj-footer__widget.widget_recent_entries ul li a:before,
.tj-footer__widget.widget_rss ul li a:before {
display: none;
}
.tj-footer__widget.widget_recent_entries ul li a:hover,
.tj-footer__widget.widget_rss ul li a:hover {
margin-left: 0px;
color: var(--color-white);
}
.tj-footer__widget.widget_recent_comments .comment-author-link a,
.tj-footer__widget.widget_block
ol.wp-block-latest-comments
a.wp-block-latest-comments__comment-author {
color: var(--color-white);
}
.tj-footer__widget.widget_recent_comments ul li > a:hover,
.tj-footer__widget.widget_block
ol.wp-block-latest-comments
a.wp-block-latest-comments__comment-link:hover {
margin-left: 0px;
color: var(--color-primary);
}
.tj-footer__widget.widget_rss ul li .rssSummary,
.tj-footer__widget p {
font-size: var(--tj-body-f-size);
line-height: var(--tj-body-l-height);
} .tj-page__post table {
width: auto;
}
.tj-page__post a {
color: var(--tj-body-color);
text-underline-offset: 3px;
-webkit-text-decoration-skip-ink: all;
text-decoration-skip-ink: all;
text-decoration: underline;
}
.tj-page__post a:hover {
color: var(--color-primary);
-webkit-text-decoration-style: dotted;
text-decoration-style: dotted;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
.tj-page__post ul {
padding-left: 20px;
margin-bottom: 20px;
}
.tj-page__post ul li:not(:last-child) {
margin-bottom: 5px;
}
.tj-page__post ul li ul {
margin-bottom: 0px;
}
.tj-page__post .size-full.alignright {
margin-top: 20px;
margin-bottom: 30px;
clear: both;
}
.tj-page__post .size-thumbnail.alignleft {
clear: both;
margin-top: 20px;
margin-bottom: 30px;
clear: both;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
font-style: italic;
} .tj-sidebar__widget.widget_block ol,
.tj-footer__widget.widget_block ol {
padding-left: 0;
margin-bottom: 0px;
}
.tj-sidebar__widget.widget_block .wp-block-group__inner-container h2,
.tj-sidebar__widget.widget_block.widget_search .wp-block-search__label {
margin-bottom: 25px;
}
.tj-sidebar__widget.widget_block ol.wp-block-latest-comments li a,
.tj-footer__widget.widget_block ol.wp-block-latest-comments li a,
.tj-sidebar__widget.widget_block ul.wp-block-latest-posts li a,
.tj-footer__widget.widget_block ul.wp-block-latest-posts li a {
padding-left: 0px;
}
.tj-sidebar__widget.widget_block ol.wp-block-latest-comments li a::after,
.tj-footer__widget.widget_block ol.wp-block-latest-comments li a::after,
.tj-sidebar__widget.widget_block ul.wp-block-latest-posts li a::after,
.tj-footer__widget.widget_block ul.wp-block-latest-posts li a::after {
display: none;
}
.tj-sidebar__widget.widget_block
ol.wp-block-latest-comments
li
a.wp-block-latest-comments__comment-author {
color: var(--color-primary);
}
.tj-footer__widget.widget_block label {
color: var(--color-white);
text-transform: uppercase;
font-size: 16px;
font-weight: 400;
margin-bottom: 50px;
}
.tj-footer__widget.widget_block .wp-block-group__inner-container h2,
.tj-footer__widget.widget_block .wp-block-search__label {
color: var(--color-white);
text-transform: uppercase;
font-size: 16px;
font-weight: 400;
margin-bottom: 50px;
}
.tj-widget__search form {
position: relative;
}
.tj-widget__search input {
width: 100%;
height: 60px;
line-height: 56px; border: 2px solid var(--color-border);
border-radius: 4px;
padding-left: 30px;
padding-right: 45px;
}
.tj-widget__search input:focus {
border-color: var(--color-primary);
}
.tj-widget__search button {
position: absolute;
top: 50%;
right: 20px;
left: auto;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
border: none;
background: transparent;
}
.tj-sidebar__widget.widget_block.widget_recent_entries li:not(:last-child),
.tj-footer__widget.widget_block.widget_recent_entries li:not(:last-child) {
margin-bottom: 20px;
}
.tj-sidebar__widget.widget_block.widget_recent_entries
li
.wp-block-latest-posts__featured-image,
.tj-footer__widget.widget_block.widget_recent_entries
li
.wp-block-latest-posts__featured-image {
float: left;
overflow: hidden;
clear: both;
max-width: 100px;
margin-right: 15px;
}
.tj-footer__widget.widget_block.widget_recent_entries
li
.wp-block-latest-posts__post-excerpt,
.tj-sidebar__widget.widget_block.widget_recent_entries
li
.wp-block-latest-posts__featured-image {
overflow: hidden;
}
.tj-footer__widget .sidebar-single-post h4 {
color: var(--color-text);
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tj-footer__widget .sidebar-single-post h4:hover {
color: var(--color-white);
} .widget-button {
width: 100%;
text-align: center;
padding: 9px 0;
border: 1px dashed #c3c4c7;
cursor: pointer;
color: #2c3338;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.widget-button:hover {
background-color: transparent;
}
.admin-bar .header-one.sticky {
margin-top: 32px;
}
@media only screen and (min-width: 601px) and (max-width: 782px) {
.admin-bar .header-one.sticky {
margin-top: 46px;
}
}
@media only screen and (max-width: 600px) {
.admin-bar .header-one.sticky {
margin-top: 0px;
}
} .tj-latest__comments .tj__comment {
list-style: none;
margin-bottom: 50px;
}
.tj-latest__comments ul {
padding: 0;
margin: 0;
}
.tj-latest__comments .children {
margin-left: 86px;
}
.tj__comment .tj-comment__wrap {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: self-start;
-ms-flex-align: self-start;
align-items: self-start;
}
.tj__comment .tj-comment__wrap .comment__avatar {
max-width: 70px;
-webkit-box-flex: 0;
-ms-flex: 0 0 70px;
flex: 0 0 70px;
border-radius: 50%;
overflow: hidden;
margin-right: 16px;
}
.tj__comment .tj-comment__wrap .comment__text {
width: calc(100% - 86px);
}
.comment__text .avatar__name {
position: relative;
}
.comment__text .avatar__name h5 > a {
color: var(--color-text);
text-decoration: none;
}
.comment__text .avatar__name .date {
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
display: block;
color: var(--color-text);
}
.comment__text .avatar__name .comment__reply {
position: absolute;
bottom: 0;
right: 0;
}
.comment__text .avatar__name .comment__reply a {
display: inline-block;
font-size: 18px;
color: var(--color-primary);
text-decoration: none;
}
.tj__comment .tj-comment__wrap .comment__text p {
margin-bottom: 0;
}
.post-input input[type="text"],
.post-input input[type="email"],
.post-input input[type="url"],
.post-input textarea {
width: 100%;
border: 1px solid #ced4da;
padding: 13px 15px;
font-size: 1rem;
font-weight: 400;
color: var(--color-heading);
margin-bottom: 20px;
border-radius: 3px;
}
.post-input input[type="text"]:focus,
.post-input input[type="email"]:focus,
.post-input input[type="url"]:focus,
.post-input textarea:focus {
border-color: var(--color-primary);
-webkit-box-shadow: none;
box-shadow: none;
}
.post-input textarea:focus-visible {
outline: none;
}
.left_sidebar {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
.tj__pagination ul {
list-style: none;
padding: 0;
margin: 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;
}
.tj__pagination ul li > .page-numbers {
width: 40px;
height: 40px;
display: inline-block;
border: 1px solid #ddd;
text-align: center;
line-height: 40px;
text-decoration: none;
font-size: 16px;
color: var(--color-heading);
background-color: transparent;
-webkit-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tj__pagination ul li > .page-numbers.current {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: var(--color-white);
}
.tj__pagination ul li > .page-numbers:hover {
background-color: var(--color-primary);
border-color: var(--color-primary);
color: var(--color-white);
}
.tj__pagination ul li {
margin: 0 5px;
}
.tj__pagination {
margin-bottom: 50px;
}
.tj-error__area,
.tj-page__area {
padding: 80px 0;
}
.comment-respond a {
text-decoration: none;
color: var(--color-primary);
font-weight: 600;
}
.comment-respond a:hover {
color: var(--color-primary-2);
}
.tj-page__area .tj-page__content .post-text {
overflow: hidden;
clear: both;
}
.wp-block-button .wp-block-button__link,
.tj__post .tj__content .post-text .wp-block-file .wp-block-file__button {
background: var(--color-primary);
background: -o-linear-gradient(
left,
var(--color-primary-2) 50%,
var(--color-primary) 50%
);
background: -webkit-gradient(
linear,
left top,
right top,
color-stop(50%, var(--color-primary-2)),
color-stop(50%, var(--color-primary))
);
background: linear-gradient(
to right,
var(--color-primary-2) 50%,
var(--color-primary) 50%
);
background-size: 200% 100%;
background-position: right bottom;
color: var(--color-white);
padding: 10px 25px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
text-decoration: none;
}
.wp-block-button .wp-block-button__link:hover,
.tj__post .tj__content .post-text .wp-block-file .wp-block-file__button:hover {
color: var(--color-white);
background-position: left bottom;
}
.wp-block-button.is-style-outline .wp-block-button__link {
background: transparent;
border: 1px solid var(--color-primary);
background: -o-linear-gradient(
left,
var(--color-primary) 50%,
transparent 50%
);
background: -webkit-gradient(
linear,
left top,
right top,
color-stop(50%, var(--color-primary)),
color-stop(50%, transparent)
);
background: linear-gradient(
to right,
var(--color-primary) 50%,
transparent 50%
);
background-size: 200% 100%;
background-position: right bottom;
color: var(--color-primary);
padding: 10px 25px;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.wp-block-cover.is-light.has-parallax .wp-block-cover__inner-container,
.wp-block-cover.is-light.is-repeated .wp-block-cover__inner-container {
color: var(--color-white);
}
.search .tj-widget__search {
margin-bottom: 50px;
}@media only screen and (min-width: 992px) and (max-width: 1199px) { .about-content .title {
font-size: 30px;
line-height: 1.2;
}
.get-started-content {
padding-left: 20px;
}
} @media only screen and (min-width: 768px) and (max-width: 991px) {
h2 {
font-size: 35px;
} .header-one .header-nav .logo {
margin: 5px 20px 0 0;
}
.header-one .header-nav .menu > ul > li > a {
padding: 8px 15px;
} #about-section-one .right-side p {
padding-right: 20px;
}
#about-section-one .right-side .partners-logo-wrpr ul li {
width: 80px;
}
.about-image {
margin-bottom: 50px;
} #our-thinking-section-one .right-side .our-thinking {
font-size: 25px;
margin-bottom: 20px;
}
#our-thinking-section-one .right-side {
padding: 60px 0 60px 25px;
}
#our-thinking-section-one:before {
width: 25%;
}
#our-thinking-section-one .left-side {
left: 25%;
width: 350px;
} #our-thinking-section-two .left-side-inner {
margin: 80px 0 60px 0;
padding: 20px 30px;
}
#our-thinking-section-two .left-side .our-thinking {
font-size: 25px;
margin-bottom: 20px;
}
#our-thinking-section-two .right-side {
right: 5%;
width: 35%;
} #fun-fact-section-one .number {
font-size: 40px;
} #pricing-table-section-one .pricing-table-item {
padding: 15px 15px 55px;
}
#pricing-table-section-one .pricing-table-item h3 {
font-size: 20px;
}
#pricing-table-section-one .pricing-table-item .price {
font-size: 25px;
} .sidebar-widget {
padding: 25px 15px;
}
.sidebar-widget .sidebar-single-post .image-box {
width: 50px;
}
.sidebar-widget .sidebar-single-post .contents {
width: calc(100% - 50px);
padding-left: 10px;
}
.tj-cta__title-box .cta-title {
margin-bottom: 20px;
} .hero-banner-2 .title {
font-size: 40px;
}
.hero_brands {
margin-top: 30px;
} .get-started-image {
width: 42%;
}
.get-started-content {
padding-left: 20px;
padding-top: 60px;
padding-bottom: 60px;
}
.get-started-content .get-started-title .cta-title {
font-size: 35px;
}
.feature_testimonial .testi_title .title {
font-size: 35px;
}
.consultation_form {
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
}
.consult_image .image_inner {
margin: auto;
}
#page-header-section .breadcrumb_title,
#page-header-section h1 {
font-size: 45px;
}
} @media only screen and (max-width: 767px) { .video-modal-primary .close {
right: 0;
top: -40px;
} h1 {
font-size: 35px;
}
h2 {
font-size: 30px;
}
.section-header.style-3 p {
font-size: 16px;
line-height: 1.5;
}
.section-header.style-3 .section_title {
font-size: 25px;
line-height: 1.2;
margin-bottom: 20px;
} .header-one .top-bar {
font-size: 10px;
padding: 10px 0;
}
.header-one .top-bar .help-text > span {
display: none;
}
.header-one .mobile-menu {
display: block;
}
.header-one .header-nav {
padding: 10px 0;
}
.header-one .header-nav .menu {
display: none;
}
.header-one .header-nav .logo {
margin: 3px 15px 0 0;
max-width: 120px;
}
.header-one .slicknav_menu {
background: transparent;
padding: 0;
}
.header-one .slicknav_btn {
background-color: var(--color-primary);
}
.header-one .slicknav_nav {
background: var(--color-black);
}
.header-one .slicknav_nav a:hover {
background: var(--color-primary);
color: var(--color-white);
}
.header-one .header-nav .search-icon {
margin-left: 5px;
} #hero-section-one {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
} .hero-banner-2 .title {
font-size: 30px;
margin-bottom: 15px;
}
.hero_brands {
margin-top: 40px;
}
.hero_brands .brands_title {
margin-bottom: 0px;
}
.hero_brands_logos .brand_logo {
margin-top: 15px;
max-width: 80px;
}
.hero_brands_logos .brand_logo:not(:last-child) {
margin-right: 25px;
}
.hero-banner-2 .lead {
font-size: 18px;
line-height: 26px;
margin-bottom: 20px;
} #hero-section-two .hero-slider-item.bg-two {
background-image: url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/hero/1-mob.jpg);
}
#hero-section-two .owl-prev {
left: 15px;
}
#hero-section-two .owl-next {
right: 15px;
} .our-partner-area {
padding: 10px 0 0 0;
}
.our-partner-area .small-secondary {
margin: 0 0 5px;
}
.our-partner-area ul li {
width: 32%;
float: left;
line-height: 30px;
padding-right: 10px;
margin-bottom: 10px;
} #about-section-one .left-side {
max-width: 400px;
margin: 0 auto 50px;
}
#about-section-one .left-side .img-wrpr img {
width: 80%;
}
#about-section-one .right-side p {
padding-right: 0;
} #about-section-two .left-side {
max-width: 400px;
margin: 0 auto 50px;
} .about-image {
margin-bottom: 50px;
}
.about-content .title {
font-size: 25px;
line-height: 1.2;
margin-bottom: 20px;
}
.about-content .about-feature {
margin-top: 20px;
}
.about-content .about-feature .single-feature {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.about-content .about-feature .single-feature.awards {
margin-bottom: 20px;
} #services-section-one .service-item {
background-color: var(--color-primary);
background-image: url(//rentencenter-hn.de/wp-content/themes/nasiha/assets/img/pattern/2.png);
background-repeat: no-repeat;
background-position: top right;
background-size: contain;
}
#services-section-one .service-item a {
opacity: 1;
visibility: visible;
margin-left: 0;
} #services-section-two .service-item {
margin: 0 auto 50px;
background-color: var(--color-primary);
} #single-service-section {
padding: 60px 0 50px;
}
#single-service-section img {
margin-bottom: 30px;
} #our-thinking-section-one .right-side {
padding: 60px 0;
}
#our-thinking-section-one:before,
#our-thinking-section-one .left-side {
display: none;
} #our-thinking-section-two .left-side {
width: 80%;
margin: 0 10%;
}
#our-thinking-section-two .left-side-inner {
margin: 80px 0 60px 0;
padding: 15px 25px;
}
#our-thinking-section-two .left-side .our-thinking {
font-size: 22px;
margin-bottom: 20px;
}
#our-thinking-section-two .right-side {
position: inherit;
bottom: inherit;
right: inherit;
width: 70%;
margin: 0 auto;
} #fun-fact-section-one .col-3 {
padding-right: 5px;
padding-left: 5px;
} #testimonial-section-one p {
font-size: 20px;
margin: 0 auto 35px;
}
.feature_testimonial .testi_title .title {
font-size: 25px;
} #our-approach-section .left-side {
padding-right: 0;
} #team-section-one .team-item {
max-width: 250px;
margin: 0 auto 50px;
}
#team-section-one .team-item p {
margin-bottom: 10px;
}
#team-section-one.style-2 .team-item {
max-width: 350px;
width: 100%;
margin-bottom: 50px;
margin-left: auto;
margin-right: auto;
} #success-section-one {
padding: 60px 0 20px;
}
#success-section-one .success-steps-item {
margin-bottom: 20px;
}
#success-section-one .bg-image {
display: none;
} #blog-section-one .blog-item {
max-width: 350px;
margin: 0 auto 50px;
}
.blog-section-inner .contents {
padding: 25px 15px;
} #single-post-section {
padding: 60px 0 10px;
}
#single-post-section .single-post .author-image {
width: 60px;
margin: 0 0 10px 0;
}
#single-post-section .single-post .contents,
#single-post-section .single-post .post-text.contents,
.tj__post .tj__content .tj-post__tags {
width: 100%;
}
#single-post-section .single-post .post-text.contents,
.tj__post .tj__content .tj-post__tags {
margin-left: 0px;
}
#single-post-section .single-post .contents .author-info h4 {
margin-bottom: 5px;
}
#single-post-section .single-post .comments-box .media img {
max-width: 60px;
}
#single-post-section .single-post .comments-box .comment {
margin-bottom: 25px;
}
#single-post-section .single-post .comments-box {
margin-left: 0;
}
.tj__comment .tj-comment__wrap .comment__avatar {
max-width: 60px;
-webkit-box-flex: 0;
-ms-flex: 0 0 60px;
flex: 0 0 60px;
}
.tj-latest__comments .children {
margin-left: 76px;
} #get-started-section-one {
padding: 60px 0 0;
} #get-started-section-two {
padding: 60px 0;
} #success-section-two {
padding: 60px 0 10px;
}
#success-section-two .success-steps-item {
max-width: 300px;
margin: 0 auto 50px;
}
#success-section-two .success-steps-item .icon {
margin-bottom: 15px;
}
.get-started-image {
width: 100%;
height: 300px;
position: relative;
}
.get-started-content {
padding-left: 0px;
padding-top: 60px;
padding-bottom: 60px;
}
.get-started-content .get-started-title .cta-title {
font-size: 25px;
}
.get-started-content .get-started-title {
margin-bottom: 25px;
} #pricing-table-section-one .pricing-table-item {
height: inherit;
} #contact-section .contact-item {
padding: 35px 5px 25px;
height: inherit;
}
#contact-section .contact-map-form {
margin-top: 25px;
}
#contact-section #googleMap {
margin-top: 50px;
} #page-header-section {
padding: 110px 0 40px;
} .footer-one .footer-top {
padding: 60px 0 0;
}
.footer-one .footer-top .footer-logo,
.footer-one .footer-top h3 {
margin-bottom: 15px;
}
.footer-one .footer-item {
margin-bottom: 25px;
}
.footer-one .footer-top .links li {
margin-bottom: 5px;
}
.footer-one .footer-bottom .left-side,
.footer-one .footer-bottom .right-side {
text-align: center;
}
.footer-one .footer-bottom .right-side {
margin-top: 10px;
}
.footer-one .footer-bottom .right-side ul li {
margin: 0 8px;
}
.footer-one .footer-bottom {
padding: 15px 0 20px;
} #scroll-to-top {
bottom: 5px;
font-size: 30px;
}
#scroll-to-top.active {
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
.tj-cta__title-box .cta-title {
margin-bottom: 20px;
}
.tj-cta_input_box input[type="text"],
.tj-cta_input_box input[type="email"] {
height: 45px;
padding: 0 20px;
}
.tj-cta_input_box .btn {
position: relative;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
right: auto;
left: auto;
margin-top: 20px;
}
#team-section-one.style-3 .team-item {
max-width: 350px;
margin-left: auto;
margin-right: auto;
}
.consultation_form {
padding: 30px 15px;
margin-top: 60px;
margin-bottom: 0;
}
.consultation_form .title {
font-size: 25px;
line-height: 30px;
}
.consultation_form .form_fields input[type="text"],
.consultation_form .form_fields input[type="email"],
.consultation_form .form_fields input[type="tel"],
.consultation_form .form_fields textarea {
border-radius: 15px;
}
#page-header-section.style-2 .breadcrumb_title {
font-size: 30px;
line-height: 35px;
font-weight: 600;
}
#page-header-section.style-2 {
padding: 150px 0 60px 0;
}
.get-started-three .get-started-image {
width: 100%;
height: 300px;
}
.get-started-three .get-started-content {
padding-left: 0;
padding-top: 330px;
padding-bottom: 60px;
}
.get-started-three .get-started-content .get-started-title .cta-title {
font-size: 25px;
line-height: 1.2;
}
.get-started-three.style-4 .get-started-content {
padding-top: 330px;
padding-bottom: 60px;
}
.progress-wrap {
right: 15px;
bottom: 15px;
}
#page-header-section .breadcrumb_title,
#page-header-section h1 {
font-size: 35px;
}
} @media only screen and (min-width: 576px) and (max-width: 767px) { .video-modal-primary .close {
right: -30px;
top: -34px;
} h1 {
font-size: 35px;
} .header-one .top-bar {
font-size: 12px;
} #fun-fact-section-one .number {
font-size: 30px;
} #testimonial-section-one p {
font-size: 25px;
}
.tj-posts__area {
padding-top: 60px;
padding-bottom: 10px;
}
.tj-cta_input_box input[type="text"],
.tj-cta_input_box input[type="email"] {
height: 60px;
padding: 0 135px 0px 30px;
}
.tj-cta_input_box .btn {
position: absolute;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
right: 8px;
left: auto;
margin-top: 0px;
}
}@font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 100;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-100.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 200;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-200.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 300;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-300.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 400;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-regular.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 500;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-500.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 600;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-600.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 700;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-700.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 800;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-800.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 900;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-900.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 100;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-100.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-300.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-regular.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-500.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-700.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 900;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-900.woff2) format('woff2'); } .header-one.static {background-color: transparent; position: absolute;}
.header-one.static .col-8.top-bar-left {margin-left: 16%;}
.header-one .header-nav .menu.fright {float: left; margin-top: 1em;}
.header-one .header-nav .menu ul li a {text-transform: capitalize; font-weight: 500;}
.header-one .header-nav .menu > ul > li > a {color: white;}
.header-one .header-nav .logo {margin: 0px 40px 0 0;}
.kan-start .button_2 {background-color: white;}
.kan-start .button_2:hover {background-color: #00253E;} .kan-werwirsind div.img-wrpr::before {
background: url(http://rentencenter-hn.de/wp-content/uploads/_media/heilbronn-form.png)!important;
z-index: 10!important;
background-repeat: no-repeat!important;
width: 100% !important;
margin-left: -20%;}
#about-section-one .left-side .img-wrpr img {margin: 20% 0 0 20%;}
.kan-werwirsind .subtitle {margin-bottom: 5px!important; margin-top: 15%;} #services-section-one .service-item:hover {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/leistungen-hover.png);
border-radius: 10px;}
.kan-leistungen .col-lg-4 a {display: none;}
.kan-leistungen .col-lg-4:nth-child(2) a {display: block;}
.kan-leistungen #text {display: none!important;}
.kan-leistungen .col-lg-4:nth-child(2) #text {display: block!important;}
#services-section-one .service-item a {visibility: inherit!important; opacity: 1!important;} .kan-kundenzitat .our-thinking {display: none;}
.kan-kundenzitat p {
font-family: 'outfit';
font-weight: 200;
font-size: 46px;
line-height: 54px;
display: inline;
color: #00253E;}
.kan-kundenzitat .right-side { color: transparent;}
.kan-kundenzitat .designation {margin-top:1em;} .kan-zahlen-text p, .section-header-primary p {font-size: 1rem;} .footer-one .footer-top .footer-logo {max-width: 75%;}
.footer-one .footer-top h3 {
color: #00253E;
text-transform: none;
font-size: 13px;
font-weight: 600;
font-family: 'roboto';}
.footer-one .footer-top .menu li a, .footer-one .footer-top .address-list li a {
color: white;
font-family: 'roboto';
font-size: 13px;
font-weight: 400;}
.footer-column__2 .textwidget p {font-size: 12px; margin-top: 9rem;}
.footer-column__3 nav.menu-quick-links-2-container {margin-top: 4rem;}
.footer-column__4 ul.address-list li {
font-size: 13px;
font-family: 'roboto';
color: white;}
.footer-column__4 ul.address-list img {visibility: hidden;}
.footer-column__4 ul.address-list span.icon {
background-repeat: no-repeat;
width: 100%;
height: 100%;}
.footer-column__4 ul.address-list li:first-child span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/adresse-icon.png);
}
.footer-column__4 ul.address-list li:nth-child(2) span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/telefon-icon.png);
}
.footer-column__4 ul.address-list li:last-child span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/e-mail-icon.png);
}
.footer-column__4 ul#menu-footer-bottom.menu {display: flex; flex-flow: row;}
.footer-column__4 ul#menu-footer-bottom.menu li {padding-right: 2rem; margin-top: 6rem;}
.footer-column__4 ul#menu-footer-bottom.menu li a {color: #00253E; font-size: 12px;}
.tj-footer__widget {margin-bottom: 0px;}
.kan-footer-bottom-k74 {float: left; margin-left: -15%!important;} .footer-one .footer-bottom .right-side ul li:last-child {margin-right: 12.25em;} .page-template section#page-header-section h1, .page-template section#page-header-section .breadcrumb_navigation {display:none;}
section#page-header-section {background-color: transparent!important;}
section#page-header-section::before {background: transparent!important;} .kan-kontaktformular span {color: white; font-size: 14px;}
.kan-kontaktformular .datenschutz {color: white;}
.kan-kontaktformular a {color: #C9BD81;}
.kan-kontaktformular .form-primary input {min-height: 0px;}
.kan-kontaktformular label {margin: 5% 0% 5% 0%;}
.kan-kontaktformular .wpcf7-response-output {color: white;}
.kan-kontaktformular .row.kan-send-button {color: white;} .kan-unterseite a {color: #C9BD81;}
.kan-unterseite a:hover {color: #AD9546;} @media (min-width: 2000px) {}
@media screen 
and (min-device-width: 1920px) 
and (max-device-width: 1999px) {
#our-thinking-section-one .right-side {padding: 100px 0 100px 150px;}
.kan-kundenzitat .right-side p {font-size: 2rem!important; line-height: 2rem!important;}
}
@media (max-width: 1920px) {}
@media (max-width: 1700px) {}
@media screen 
and (min-device-width: 800px) 
and (max-device-width: 1280px) {}
@media (max-width: 1530px) {}
@media (max-width: 1450px) {}
@media (max-width: 1370px) {}
@media (max-width: 1290px) {}
@media (max-width: 1199px) {}
@media (max-width: 1024px) {}
@media (min-width: 960px) {}
@media (max-width: 960px) {}
@media screen 
and (min-device-width: 960px) 
and (max-device-width: 1441px) {
.kan-kundenzitat .left-side img {max-width: 75%;}
.kan-kundenzitat .right-side p {font-size: 2rem!important; line-height: 2rem!important;}
}
@media (max-width: 820px){}
@media screen 
and (max-width: 768px)  
and (min-width: 760px)  
and (orientation: portrait) {}
@media (max-width: 760px)  
and (orientation: portrait) {} @media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px) 
and (-webkit-min-device-pixel-ratio: 1) {} @media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px) 
and (-webkit-min-device-pixel-ratio: 2)
and (min-resolution: 192dpi) {}  @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 1024px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 1024px) 
and (orientation: portrait) {
.kan-fun-fact-3 {margin-left: 20em;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px){
.kan-praefooter-button-termin {padding: 5%;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: portrait) {
.kan-kundenzitat .left-side img {max-width: 60%; margin-left: 10%;}
.kan-kundenzitat .right-side p {font-size: 1.5rem!important; line-height: 1.5rem!important;}
.kan-kundenzitat section#our-thinking-section-one::before {width: 40%!important;}
.kan-fun-fact-3 {margin-left: 22em;}
.kan-unterseite-titel {padding-top: 15%;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 960px) 
and (max-device-width: 1366px) 
and (orientation: portrait) {
#our-thinking-section-one .right-side {padding: 100px 0 100px 50px;}
.kan-fun-fact-3 {margin-left: 28em;}
.kan-unterseite-titel {padding-top: 15%;}
} @media only screen 
and (min-device-width: 960px) 
and (max-device-width: 1366px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 1024px) 
and (max-device-width: 1366px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 810px) 
and (max-device-width: 1080px) 
and (orientation: portrait) {}
@media only screen 
and (min-device-width: 810px) 
and (max-device-width: 1080px) 
and (orientation: landscape) {}
@media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1112px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1112px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 960px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 960px) 
and (orientation: landscape) {}  @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px){} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px)
and (orientation: portrait) {
h1 {font-size: 2.5rem!important; line-height: 2.5rem!important;}
h2 {font-size: 2rem!important; line-height: 2rem!important;}
.kan-start p.lead.wow.fadeInUp {font-size: 1.25rem;}
.header-one .slicknav_nav {background: #00253E}
.kan-praefooter-termin-spalte .elementor-widget-wrap.elementor-element-populated {justify-content: left!important;}
.kan-praefooter-button-termin {padding-bottom: 3%;}
.elementor-hidden-mobile.kan-start-kacheln {display: block!important;}
.kan-werwirsind .subtitle {margin-top: 0%;}
#werwirsind {padding: 0px 12px 60px 12px;}
.kan-werwirsind .img-wrpr {display:block!important;}
.kan-leistungen .service-item {border-radius: 10px;}
.kan-unterseite-titel {padding-top: 25%;}
.menu-quick-links-2-container {margin-top: 0rem!important;}
.footer-bottom .col-md-5 {padding-left: 0;}
.kan-footer-bottom-k74 {
float: none;
margin-left: 0%!important;
display: inline-block;
width: 100%;
margin-bottom: 1em!important;}
.kan-unterseite-headline .elementor-2500 .elementor-element.elementor-element-7398a71 {padding: 60px 30px 0px 15px;}
} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px)
and (orientation: landscape) {} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 850px)
and (orientation: landscape) {}@font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 100;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-100.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 200;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-200.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 300;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-300.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 400;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-regular.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 500;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-500.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 600;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-600.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 700;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-700.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 800;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-800.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Outfit';
font-style: normal;
font-weight: 900;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/outfit-v11-latin-900.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 100;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-100.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-300.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-regular.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-500.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-700.woff2) format('woff2'); } @font-face {
font-display: swap; font-family: 'Roboto';
font-style: normal;
font-weight: 900;
src: url(//rentencenter-hn.de/wp-content/themes/nasiha-child/fonts/roboto-v32-latin-900.woff2) format('woff2'); } .header-one.static {background-color: transparent; position: absolute;}
.header-one.static .col-8.top-bar-left {margin-left: 16%;}
.header-one .header-nav .menu.fright {float: left; margin-top: 1em;}
.header-one .header-nav .menu ul li a {text-transform: capitalize; font-weight: 500;}
.header-one .header-nav .menu > ul > li > a {color: white;}
.header-one .header-nav .logo {margin: 0px 40px 0 0;}
.kan-start .button_2 {background-color: white;}
.kan-start .button_2:hover {background-color: #00253E;} .kan-werwirsind div.img-wrpr::before {
background: url(http://rentencenter-hn.de/wp-content/uploads/_media/heilbronn-form.png)!important;
z-index: 10!important;
background-repeat: no-repeat!important;
width: 100% !important;
margin-left: -20%;}
#about-section-one .left-side .img-wrpr img {margin: 20% 0 0 20%;}
.kan-werwirsind .subtitle {margin-bottom: 5px!important; margin-top: 15%;} #services-section-one .service-item:hover {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/leistungen-hover.png);
border-radius: 10px;}
.kan-leistungen .col-lg-4 a {display: none;}
.kan-leistungen .col-lg-4:nth-child(2) a {display: block;}
.kan-leistungen #text {display: none!important;}
.kan-leistungen .col-lg-4:nth-child(2) #text {display: block!important;}
#services-section-one .service-item a {visibility: inherit!important; opacity: 1!important;} .kan-kundenzitat .our-thinking {display: none;}
.kan-kundenzitat p {
font-family: 'outfit';
font-weight: 200;
font-size: 46px;
line-height: 54px;
display: inline;
color: #00253E;}
.kan-kundenzitat .right-side { color: transparent;}
.kan-kundenzitat .designation {margin-top:1em;} .kan-zahlen-text p, .section-header-primary p {font-size: 1rem;} .footer-one .footer-top .footer-logo {max-width: 75%;}
.footer-one .footer-top h3 {
color: #00253E;
text-transform: none;
font-size: 13px;
font-weight: 600;
font-family: 'roboto';}
.footer-one .footer-top .menu li a, .footer-one .footer-top .address-list li a {
color: white;
font-family: 'roboto';
font-size: 13px;
font-weight: 400;}
.footer-column__2 .textwidget p {font-size: 12px; margin-top: 9rem;}
.footer-column__3 nav.menu-quick-links-2-container {margin-top: 4rem;}
.footer-column__4 ul.address-list li {
font-size: 13px;
font-family: 'roboto';
color: white;}
.footer-column__4 ul.address-list img {visibility: hidden;}
.footer-column__4 ul.address-list span.icon {
background-repeat: no-repeat;
width: 100%;
height: 100%;}
.footer-column__4 ul.address-list li:first-child span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/adresse-icon.png);
}
.footer-column__4 ul.address-list li:nth-child(2) span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/telefon-icon.png);
}
.footer-column__4 ul.address-list li:last-child span.icon {
background-image: url(http://rentencenter-hn.de/wp-content/uploads/_media/_allgemein/e-mail-icon.png);
}
.footer-column__4 ul#menu-footer-bottom.menu {display: flex; flex-flow: row;}
.footer-column__4 ul#menu-footer-bottom.menu li {padding-right: 2rem; margin-top: 6rem;}
.footer-column__4 ul#menu-footer-bottom.menu li a {color: #00253E; font-size: 12px;}
.tj-footer__widget {margin-bottom: 0px;}
.kan-footer-bottom-k74 {float: left; margin-left: -15%!important;} .footer-one .footer-bottom .right-side ul li:last-child {margin-right: 12.25em;} .page-template section#page-header-section h1, .page-template section#page-header-section .breadcrumb_navigation {display:none;}
section#page-header-section {background-color: transparent!important;}
section#page-header-section::before {background: transparent!important;} .kan-kontaktformular span {color: white; font-size: 14px;}
.kan-kontaktformular .datenschutz {color: white;}
.kan-kontaktformular a {color: #C9BD81;}
.kan-kontaktformular .form-primary input {min-height: 0px;}
.kan-kontaktformular label {margin: 5% 0% 5% 0%;}
.kan-kontaktformular .wpcf7-response-output {color: white;}
.kan-kontaktformular .row.kan-send-button {color: white;} .kan-unterseite a {color: #C9BD81;}
.kan-unterseite a:hover {color: #AD9546;} @media (min-width: 2000px) {}
@media screen 
and (min-device-width: 1920px) 
and (max-device-width: 1999px) {
#our-thinking-section-one .right-side {padding: 100px 0 100px 150px;}
.kan-kundenzitat .right-side p {font-size: 2rem!important; line-height: 2rem!important;}
}
@media (max-width: 1920px) {}
@media (max-width: 1700px) {}
@media screen 
and (min-device-width: 800px) 
and (max-device-width: 1280px) {}
@media (max-width: 1530px) {}
@media (max-width: 1450px) {}
@media (max-width: 1370px) {}
@media (max-width: 1290px) {}
@media (max-width: 1199px) {}
@media (max-width: 1024px) {}
@media (min-width: 960px) {}
@media (max-width: 960px) {}
@media screen 
and (min-device-width: 960px) 
and (max-device-width: 1441px) {
.kan-kundenzitat .left-side img {max-width: 75%;}
.kan-kundenzitat .right-side p {font-size: 2rem!important; line-height: 2rem!important;}
}
@media (max-width: 820px){}
@media screen 
and (max-width: 768px)  
and (min-width: 760px)  
and (orientation: portrait) {}
@media (max-width: 760px)  
and (orientation: portrait) {} @media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px) 
and (-webkit-min-device-pixel-ratio: 1) {} @media screen 
and (min-device-width: 1200px) 
and (max-device-width: 1600px) 
and (-webkit-min-device-pixel-ratio: 2)
and (min-resolution: 192dpi) {}  @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 1024px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 1024px) 
and (orientation: portrait) {
.kan-fun-fact-3 {margin-left: 20em;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px){
.kan-praefooter-button-termin {padding: 5%;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: portrait) {
.kan-kundenzitat .left-side img {max-width: 60%; margin-left: 10%;}
.kan-kundenzitat .right-side p {font-size: 1.5rem!important; line-height: 1.5rem!important;}
.kan-kundenzitat section#our-thinking-section-one::before {width: 40%!important;}
.kan-fun-fact-3 {margin-left: 22em;}
.kan-unterseite-titel {padding-top: 15%;}
} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 960px) 
and (max-device-width: 1366px) 
and (orientation: portrait) {
#our-thinking-section-one .right-side {padding: 100px 0 100px 50px;}
.kan-fun-fact-3 {margin-left: 28em;}
.kan-unterseite-titel {padding-top: 15%;}
} @media only screen 
and (min-device-width: 960px) 
and (max-device-width: 1366px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 1024px) 
and (max-device-width: 1366px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 810px) 
and (max-device-width: 1080px) 
and (orientation: portrait) {}
@media only screen 
and (min-device-width: 810px) 
and (max-device-width: 1080px) 
and (orientation: landscape) {}
@media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1112px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 834px) 
and (max-device-width: 1112px) 
and (orientation: landscape) {} @media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1023px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 960px) 
and (orientation: portrait) {} @media only screen 
and (min-device-width: 600px) 
and (max-device-width: 960px) 
and (orientation: landscape) {}  @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px){} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px)
and (orientation: portrait) {
h1 {font-size: 2.5rem!important; line-height: 2.5rem!important;}
h2 {font-size: 2rem!important; line-height: 2rem!important;}
.kan-start p.lead.wow.fadeInUp {font-size: 1.25rem;}
.header-one .slicknav_nav {background: #00253E}
.kan-praefooter-termin-spalte .elementor-widget-wrap.elementor-element-populated {justify-content: left!important;}
.kan-praefooter-button-termin {padding-bottom: 3%;}
.elementor-hidden-mobile.kan-start-kacheln {display: block!important;}
.kan-werwirsind .subtitle {margin-top: 0%;}
#werwirsind {padding: 0px 12px 60px 12px;}
.kan-werwirsind .img-wrpr {display:block!important;}
.kan-leistungen .service-item {border-radius: 10px;}
.kan-unterseite-titel {padding-top: 25%;}
.menu-quick-links-2-container {margin-top: 0rem!important;}
.footer-bottom .col-md-5 {padding-left: 0;}
.kan-footer-bottom-k74 {
float: none;
margin-left: 0%!important;
display: inline-block;
width: 100%;
margin-bottom: 1em!important;}
.kan-unterseite-headline .elementor-2500 .elementor-element.elementor-element-7398a71 {padding: 60px 30px 0px 15px;}
} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 760px)
and (orientation: landscape) {} @media only screen 
and (min-device-width: 320px) 
and (max-device-width: 850px)
and (orientation: landscape) {}