@-webkit-keyframes slideBgTop {
0% {
-webkit-animation-timing-function: ease-in-out;
-webkit-transform: translateY(0) translateX(-50%);
transform: translateY(0) translateX(-50%);
}
50% {
-webkit-transform: translateY(-50%) translateX(-50%) skewY(7deg);
transform: translateY(-50%) translateX(-50%) skewY(7deg);
}
to {
-webkit-transform: translateY(-100%) translateX(-50%) skewY(0);
transform: translateY(-100%) translateX(-50%) skewY(0);
-webkit-animation-timing-function: ease-in-out;
}
}
@keyframes slideBgTop {
0% {
-webkit-animation-timing-function: ease-in-out;
-webkit-transform: translateY(0) translateX(-50%);
transform: translateY(0) translateX(-50%);
}
50% {
-webkit-transform: translateY(-50%) translateX(-50%) skewY(7deg);
transform: translateY(-50%) translateX(-50%) skewY(7deg);
}
to {
-webkit-transform: translateY(-100%) translateX(-50%) skewY(0);
transform: translateY(-100%) translateX(-50%) skewY(0);
-webkit-animation-timing-function: ease-in-out;
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.main-top {
background: none;
padding-top: 0;
}
.modal,
.modal-open {
overflow: hidden;
}
.modal-open .modal {
overflow-x: hidden !important;
overflow-y: hidden !important;
}
.modal {
position: fixed;
top: 15px;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 95%;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
-webkit-transition: -webkit-transform 0.3s ease-out;
-o-transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
-ms-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media screen and (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
-webkit-transition: none;
-o-transition: none;
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
.modal-content,
.modal-dialog-centered {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
}
.modal-dialog-centered {
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center;
min-height: calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
display: block;
height: calc(100vh - (0.5rem * 2));
content: "";
}
.modal-content {
position: relative;
-ms-flex-direction: column;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-border-radius: 0.3rem;
border-radius: 0.3rem;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-align: start;
-webkit-box-align: start;
align-items: flex-start;
-ms-flex-pack: justify;
-webkit-box-pack: justify;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid #e9ecef;
-webkit-border-top-left-radius: 0.3rem;
border-top-left-radius: 0.3rem;
-webkit-border-top-right-radius: 0.3rem;
border-top-right-radius: 0.3rem;
}
.modal-header .close {
padding: 1rem;
margin: -1rem -1rem -1rem auto;
}
.modal-title {
margin-bottom: 0;
line-height: 1.5;
}
.modal-body {
position: relative;
-ms-flex: 1 1 auto;
-webkit-box-flex: 1;
flex: 1 1 auto;
padding: 0;
}
.modal-footer {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-align: center;
-webkit-box-align: center;
align-items: center;
-ms-flex-pack: end;
-webkit-box-pack: end;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #e9ecef;
-webkit-border-bottom-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
-webkit-border-bottom-left-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
margin-right: 0.25rem;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: 500px;
margin: 1.75rem auto;
}
.modal-dialog-centered {
min-height: calc(100% - (1.75rem * 2));
}
.modal-dialog-centered::before {
height: calc(100vh - (1.75rem * 2));
}
.modal-sm {
max-width: 300px;
}
}
@media (min-width: 768px) {
.modal-lg,
.modal-xl {
max-width: 680px;
}
}
@media (min-width: 992px) {
.modal-lg,
.modal-xl {
max-width: 900px;
}
}
@media (min-width: 1200px) {
.modal-xl {
max-width: 1190px;
}
}
main {
margin: 80px 0 0;
}
@media (max-width: 767px) {
main.o-main {
overflow-x: hidden;
}
}
body {
font-size: 16px;
background-color: #f6f8ff;
overflow-x: hidden;
}
@media (max-width: 767px) {
body {
overflow-x: hidden;
}
}
.footer {
margin: 0;
}
@media (min-width: 768px) {
.footer {
padding: 40px;
}
}
@media (min-width: 992px) {
.footer {
padding: 60px;
}
}
@media (min-width: 1200px) {
.footer {
padding: 80px;
}
}
.tk-bg-secondary {
background: #f6f8ff;
}
.nav-menu .nav-menu__link::before {
background-color: #dc33a9;
}
#droppablev .nav-menu__link:after,
#droppablev-menu .nav-menu__link:after,
#droppablev-menu1 .nav-menu__link:after {
background-position: center;
width: 13px !important;
height: 13px !important;
font-size: 13px !important;
margin: 4px !important;
}
.parsley-custom-error-message {
font-size: 0.875em;
color: #dc33a9;
opacity: 0.8;
margin-top: 5px;
}
.footer-link--black {
color: #1d2037 !important;
}
.home-banner-gradient {
background: -webkit-linear-gradient(269deg, #fff 0%, #f6f8ff 100%);
background: -o-linear-gradient(269deg, #fff 0%, #f6f8ff 100%);
background: linear-gradient(181deg, #fff 0%, #f6f8ff 100%);
}
.terralogic-loader-container:before {
bottom: 0;
opacity: 1;
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
background-color: #f6f8ff;
z-index: 9;
animation: slideBgTop 1.1s forwards;
-webkit-animation: slideBgTop 1.1s forwards;
-webkit-animation-delay: 0.7s;
animation-delay: 0.7s;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.terralogic-loader-container.active {
height: 0;
z-index: 1;
}
#loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
}
#loader,
#loader:after,
#loader:before {
border: 3px solid transparent;
border-top-color: transparent;
-webkit-border-radius: 100%;
border-radius: 100%;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
#loader {
display: block;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
z-index: 1001;
position: relative;
top: 50%;
left: 50%;
}
#loader:after,
#loader:before {
content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
}
#loader:after {
top: 12px;
left: 12px;
right: 12px;
bottom: 12px;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite;
}
#loader-wrapper .loader-section {
position: fixed;
top: 0;
background: #fff;
width: 51%;
height: 100%;
z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
left: 0;
}
#loader-wrapper .loader-section.section-right {
right: 0;
}
.loaded #loader-wrapper .loader-section.section-left,
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(-100%);
-ms-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition: all 0.7s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.7s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.7s 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
}
.loaded #loader {
opacity: 0;
-webkit-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
.loaded #loader-wrapper {
visibility: hidden;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: all 0.2s 1s ease-out;
-o-transition: all 0.2s 1s ease-out;
transition: all 0.2s 1s ease-out;
}
@media (min-width: 1024px) {
.w-md-50 {
width: 40%;
}
}
.partner-icon {
width: 130px;
height: 80px;
min-width: 130px;
min-height: 80px;
-o-object-fit: contain;
object-fit: contain;
}
@media (max-width: 767px) {
.partner-icon {
width: 100px;
height: 60px;
min-width: 100px;
min-height: 60px;
-o-object-fit: contain;
object-fit: contain;
}
}
.partner-icon.large {
height: 100px;
min-height: 100px;
}
.our-partner-icon {
width: 100%;
height: auto;
-o-object-fit: contain;
object-fit: contain;
margin: 10px 0 20px;
}
@media (max-width: 767px) {
.our-partner-icon {
margin: 10px 0;
}
}
.tooltip > .tooltip-inner {
background-color: #000;
padding: 10px 20px;
color: #fff;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 0.875em;
line-height: 20px;
}
.tooltip > .tooltip-inner:before {
position: absolute;
content: "";
top: 0;
left: 50%;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
border: 0;
width: 12px;
height: 12px;
background: #000;
border-left: 1px solid #000;
border-top: 1px solid #000;
-webkit-transition: border linear cubic-bezier(0.075, 0.82, 0.165, 1);
-o-transition: border linear cubic-bezier(0.075, 0.82, 0.165, 1);
transition: border linear cubic-bezier(0.075, 0.82, 0.165, 1);
}
.main-all-pages a {
text-decoration: underline !important;
color: #00f;
font-size: 18px;
line-height: 28px;
font-family: auto;
letter-spacing: 1px;
text-transform: capitalize;
font-weight: 400;
}
.abt-text-light {
opacity: 0.87 !important;
color: #9b9b9b !important;
font-size: 40px;
font-weight: 700;
line-height: 52px;
}
.modal-scroll::-webkit-scrollbar,
.tl-clients-card::-webkit-scrollbar {
width: 4px;
height: 4px;
}
.modal-scroll::-webkit-scrollbar-track,
.tl-clients-card::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 10px;
border-radius: 10px;
}
.modal-scroll::-webkit-scrollbar-thumb,
.tl-clients-card::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #6e4cf0;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.modal-scroll::-webkit-scrollbar-thumb:window-inactive,
.tl-clients-card::-webkit-scrollbar-thumb:window-inactive {
background: #6e4cf0;
}
.bg-why-us {
position: relative;
}
.bg-why-us:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//terralogic.com/wp-content/themes/terralogic/img/system-software/why-bg.png) no-repeat;
z-index: 2;
bottom: 0;
right: 0;
}
@media (max-width: 1023px) {
.bg-why-us:before {
-webkit-background-size: cover;
background-size: cover;
}
}
@media (min-width: 1600px) {
.bg-why-us:before {
-webkit-background-size: cover;
background-size: cover;
}
}
.bg-why-us:after {
content: "";
position: absolute;
top: 0;
left: 0;
z-index: 1;
bottom: 0;
right: 0;
background: rgba(0, 0, 0, 0.36);
}
@media (min-width: 1024px) {
.bg-why-us:after {
background: rgba(0, 0, 0, 0.36);
}
}
.bg-why-us img,
.bg-why-us:after {
width: 100%;
height: 100%;
}
.z-index-2 {
z-index: 2;
}
.section--approach {
overflow: hidden;
}
.modal-close-icon {
width: 32px;
height: 32px;
-o-object-fit: contain;
object-fit: contain;
cursor: pointer;
}
.modal-scroll {
overflow-y: scroll;
height: 100vh;
}
#myModal.modal-open .modal {
overflow-y: hidden !important;
}
.our-clients-info .slider-space5.new-ser {
padding: 1rem !important;
}
@media (min-width: 1024px) {
.our-clients-info .slider-space5.new-ser {
padding: 2rem !important;
}
}
.our-clients-info .slider-space5.new-ser .slider-view-center {
padding-top: 0;
}
@media (max-width: 1023px) {
.img-part {
width: 80px;
height: 60px;
-o-object-fit: contain;
object-fit: contain;
margin: 0 auto;
padding: 10px;
display: block;
text-align: center;
}
}
.section-padding {
padding: 30px 0;
}
.nav-up {
top: -140px;
}
@media (min-width: 768px) {
.section-padding {
padding: 90px 0 30px;
}
}
@media (min-width: 992px) {
.section-padding {
padding: 90px 0 10px;
}
}
.banner-heading {
color: #000;
font-size: 1.5em;
margin-left: 15px;
line-height: 38px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
@media (min-width: 768px) {
.banner-heading {
font-size: 2.125em;
line-height: 44px;
padding-right: 2rem;
}
}
@media (min-width: 992px) {
.banner-heading {
font-size: 2.125em;
line-height: 44px;
padding-right: 0;
}
}
@media (min-width: 1200px) {
.banner-heading {
font-size: 3.375em;
line-height: 64px;
overflow: hidden;
}
}
.banner-desc {
font-weight: 400;
}
.banner-desc,
.work-list.new-service-work .work__new-desc {
color: #000;
margin-left: 15px;
font-size: 0.875em;
line-height: 26px;
font-family: "Montserrat", sans-serif;
}
@media (min-width: 992px) {
.banner-desc,
.work-list.new-service-work .work__new-desc {
font-size: 1em;
line-height: 26px;
padding-right: 3rem;
}
}
@media (min-width: 1200px) {
.banner-desc,
.work-list.new-service-work .work__new-desc {
font-size: 1.125em;
line-height: 28px;
}
}
@media (max-width: 1199px) {
.js-banner-slider__view img {
height: 450px;
}
}
@media (max-width: 767px) {
.js-banner-slider__view img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
}
.slide-nav--end.latest-slide-arrow {
position: absolute;
bottom: 1px;
right: 0;
margin-top: -3.3rem;
margin-bottom: 0;
}
.slide-nav--end.latest-slide-arrow .slide-nav__prev {
padding: 0;
margin: 0;
}
.slide-nav--end.latest-slide-arrow .slide-nav__next {
background-color: #fff;
padding: 0;
}
.slide-nav--end.latest-slide-arrow .slide-nav__prev {
background-color: #fff;
}
.slide-nav--end.latest-slide-arrow .slide-nav__next {
margin: 0 0 0 15px;
}
@media (max-width: 767px) {
.slide-nav--end.latest-slide-arrow .slide-nav__next {
margin-right: 4px;
}
}
.slide-nav--end.latest-slide-arrow .icon-left-arrow,
.slide-nav--end.latest-slide-arrow .icon-right-arrow {
padding: 12px 14px 6px;
}
.slider-block {
position: relative;
bottom: 0;
left: 0;
}
@media (max-width: 767px) {
.slider-block {
right: 0;
left: auto;
display: none;
}
}
.slider-outline-primary {
color: #dc33a9 !important; }
.slider-outline-primary:hover {
color: #33f !important;
}
.slider-count-block {
padding-top: 20px;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.slider-count-block .bannerSlider-total-length,
.slider-count-block .slide-number {
position: relative;
padding-right: 2rem;
padding-left: 1rem;
color: #333;
font-size: 1em;
font-weight: 600;
}
.slider-count-block .bannerSlider-total-length {
padding-left: 9.3rem;
}
@media (max-width: 767px) {
.slider-count-block .bannerSlider-total-length {
padding-left: 5.3rem;
}
}
.slider-progress {
width: 160px;
height: 3px;
background: #b0b0b1;
position: absolute;
bottom: 8px;
left: 46px;
}
@media (max-width: 767px) {
.slider-progress {
width: 100px;
}
}
.slider-progress .progress {
width: 0%;
height: 3px;
background: #dc33a9;
}
@media (min-width: 768px) {
.content-box--new {
margin-left: -120px;
}
}
.content-box--small {
-webkit-box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
background-color: #fff;
-webkit-transform: translate(5px, -40px);
-ms-transform: translate(5px, -40px);
transform: translate(5px, -40px);
}
@media (min-width: 768px) {
.content-box--small {
margin-left: 0;
-webkit-transform: translate(50px, -180px);
-ms-transform: translate(50px, -180px);
transform: translate(50px, -180px);
-webkit-border-radius: 6px;
border-radius: 6px;
}
}
@media (min-width: 992px) {
.content-box--small {
-webkit-transform: translate(50px, -10px);
-ms-transform: translate(50px, -10px);
transform: translate(50px, -10px);
margin-top: -180px;
}
}
.js-new-testi-slider__view .slick-track {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.testi-new-content {
background: #fff;
-webkit-box-shadow: transparent -2px 4px 45px 1px;
box-shadow: transparent -2px 4px 45px 1px;
color: #515470;
padding: 48px 48px 48px 24px;
position: relative;
z-index: 1;
-webkit-border-radius: 6px;
border-radius: 16px;
}
@media (max-width: 767px) {
.testi-new-content {
padding: 40px 26px;
}
}
.testi-new-content p {
color: #464646;
font-size: 15px;
font-weight: 500;
line-height: 28px;
}
.testi-new-content .author-name {
color: #292929;
font-size: 1.5em;
font-weight: 600;
line-height: 28px;
padding-bottom: 5px;
}
.testi-new-content .author-designation {
text-transform: capitalize;
color: #292929;
font-size: 14px;
font-weight: 500;
line-height: 21px;
text-align: center;
}
.content-box--small.no-slider .testi-new-content p,
.testi-new-content.light p {
color: #666;
}
.testi-new-content.light .author-name {
color: #333;
font-weight: 700;
}
.testi-new-content.light .author-designation {
text-transform: capitalize;
color: #333;
font-size: 0.875em;
line-height: 28px;
font-weight: 700;
}
.testi-depart {
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.testi-depart span {
-webkit-border-radius: 15px;
border-radius: 15px;
background-color: #eff5fd;
color: #5e98e8;
font-size: 12px;
letter-spacing: 1.56px;
line-height: 18px;
text-transform: uppercase;
font-weight: 600;
padding: 6px 10px;
}
.blockquote {
position: relative;
}
.blockquote:after,
.blockquote:before {
opacity: 0.1;
color: #707070;
font-size: 140px;
line-height: 28px;
font-family: "Lucida Grande";
font-weight: 400;
}
@media (max-width: 767px) {
.blockquote:after,
.blockquote:before {
font-size: 70px;
}
}
@media (min-width: 1366px) {
.blockquote:after,
.blockquote:before {
font-size: 140px;
line-height: 28px;
}
}
.blockquote:before {
content: "â€œ";
position: absolute;
left: -28px;
top: 0;
}
@media (max-width: 767px) {
.blockquote:before {
left: -20px;
}
}
.blockquote:after {
content: "â€ž";
position: absolute;
right: 0;
bottom: 0;
}
@media (max-width: 767px) {
.blockquote:after {
right: 0;
}
}
.section-sub-desc {
color: #000;
font-size: 1.125em;
line-height: 29px;
font-weight: 400;
margin: 10px auto 50px;
}
@media (min-width: 768px) {
.section-sub-desc {
width: 400px;
}
}
.banner-overlay-gray:after,
.bg-shadow::after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-image: -webkit-linear-gradient(
bottom left,
rgba(35, 35, 39, 0.6) 0%,
rgba(243, 243, 243, 0.8) 100%
);
display: inline-block;
}
.bg-shadow {
position: relative;
}
.js-update-slider__update .banner-fluid {
padding: 0;
margin: 0;
}
.update-ban {
background: #fff;
}
.js-update-slider__update .slick-slide img {
width: 380px;
}
@media (min-width: 1200px) {
.bg-shadow img {
min-width: -webkit-fit-content;
min-width: -moz-fit-content;
min-width: fit-content;
}
}
.bg-shadow::after {
background-image: -webkit-linear-gradient(
bottom left,
rgba(138, 138, 138, 0.101961) 0%,
rgba(76, 76, 76, 0.2) 100%
);
}
@media (max-width: 767px) {
.p-xs {
padding: 0;
}
}
.mt-mins20 {
margin-top: 30px;
}
@media (min-width: 1200px) {
.mt-mins20 {
margin-top: -20px;
}
}
.mt-mins20per {
margin-top: 0;
}
@media (min-width: 768px) {
.mt-mins20per {
margin-left: 62px;
}
}
@media (min-width: 992px) {
.mt-mins20per {
margin-left: 502px;
}
}
.content-box--small.no-slider .blockquote:after {
display: none;
}
.service-card,
.service-card:hover {
-webkit-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
transition: 0.3s all ease;
}
.service-card {
padding: 20px;
-webkit-border-radius: 4px;
border-radius: 10px;
background-color: #fff;
}
.service-card:hover {
-webkit-box-shadow: 1px 8px 27px 0 #d8d8d8;
box-shadow: 1px 8px 27px 0 #d8d8d8;
}
@media (min-width: 992px) {
.service-card {
padding: 30px;
height: 100%;
}
}
.service-card__icon {
margin: 0 0 22px;
width: 50px;
height: 50px;
-o-object-fit: contain;
object-fit: contain;
}
.home-services .service-card__icon {
width: 100px;
height: 80px;
}
.o-main .service-card__icon {
width: 50px;
height: 50px;
}
.service-card__title {
color: #000;
font-size: 1.125em;
letter-spacing: 0.61px;
line-height: 29px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
margin: 0 0 16px;
}
@media (min-width: 992px) {
.service-card__title {
width: 70%;
font-size: 1.25em;
}
}
@media (min-width: 1200px) {
.service-card__title {
font-size: 1.375em;
width: 60%;
}
.home-services .service-card__title {
width: 100%;
}
}
.service-card__desc {
color: rgba(0, 0, 0, 0.69);
font-size: 0.875em;
line-height: 26px;
font-weight: 500;
margin: 0 0 24px 0;
font-family: "Montserrat", sans-serif;
}
.service-card__desc-new {
color: rgba(0, 0, 0, 0.69);
font-size: 0.875em;
line-height: 26px;
font-weight: 500;
margin: 0 0 24px 0;
font-family: "Montserrat", sans-serif;
margin-bottom: 64px !important;
}
.first-des {
margin-bottom: 64px !important;
}
@media (min-width: 992px) {
.service-card__desc {
font-size: 1em;
}
}
.service-card--bg-transparent:focus,
.service-card--bg-transparent:hover {
background-color: rgba(230, 236, 255, 0.29);
}
.service-card__w90 {
width: 90% !important;
}
.service-subheading {
color: #000;
font-size: 1em;
line-height: 26px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
}
@media (min-width: 992px) {
.service-subheading {
font-size: 1.125em;
line-height: 34px;
}
}
@media (min-width: 1200px) {
.service-subheading {
font-size: 1.25em;
}
}
.service-tech-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
list-style: none;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.service-tech-list li {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
}
@media (min-width: 768px) {
.service-tech-list li {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.333%;
flex: 0 0 33.333%;
}
}
@media (min-width: 1200px) {
.service-tech-list li {
-webkit-box-flex: 1;
-ms-flex: 1 0 19.999%;
flex: 1 0 19.999%;
}
}
.service-tech-list li:last-child:after,
.work-list--approach li:last-child:after {
display: none;
}
.service-tech-block {
width: 100%;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.service-tech,
.service-tech:after {
-webkit-border-radius: 6px;
border-radius: 6px;
}
.service-tech {
padding: 15px;
cursor: pointer;
-webkit-transition: background-color 0.4s ease;
-o-transition: background-color 0.4s ease;
transition: background-color 0.4s ease;
position: relative;
z-index: 1;
}
.service-tech:after {
position: absolute;
content: "";
width: 0.1px;
right: 0;
opacity: 0.6;
height: 99%;
z-index: 2;
top: 2px;
bottom: 2px;
-webkit-transition: opacity 0.4s ease;
-o-transition: opacity 0.4s ease;
transition: opacity 0.4s ease;
}
@media (min-width: 1200px) {
.service-tech:after {
background-color: #d1d2d1;
}
}
@media (min-width: 992px) {
.service-tech {
padding: 20px;
}
}
@media (min-width: 1200px) {
.service-tech {
padding: 25px 30px;
}
}
.service-tech:hover {
z-index: 1;
background-color: #fff;
}
.service-tech:hover:after {
opacity: 0;
width: 0 !important;
background-color: transparent !important;
}
.service-tech__icon {
width: 45px;
height: 45px;
margin: 0 0 15px;
}
.service-tech__title {
color: #1d2037;
font-family: "Montserrat", sans-serif;
font-size: 1em;
line-height: 36px;
font-weight: 700;
margin: 0 0 10px;
}
@media (min-width: 992px) {
.service-tech__title {
font-size: 1.125em;
}
}
@media (min-width: 1200px) {
.service-tech__title {
font-size: 1.25em;
}
}
.service-tech__desc {
opacity: 0.8;
color: #515470;
font-family: "Montserrat", sans-serif;
font-size: 0.75em;
font-weight: 500;
line-height: 22px;
}
@media (min-width: 992px) {
.service-tech__desc {
font-size: 0.875em;
}
}
.work {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: start;
}
.work__icon {
height: 45px;
width: 45px;
margin: 0 20px 15px 0;
}
@media (min-width: 768px) {
.work__icon {
height: 55px;
width: 55px;
margin: 0 40px 24px 0;
}
}
@media (min-width: 992px) {
.work__icon {
height: 65px;
width: 65px;
min-height: 65px;
min-width: 65px;
}
}
.work__title {
color: #000;
font-size: 1em;
line-height: 28px;
font-family: "Montserrat", sans-serif;
font-weight: 600;
padding-bottom: 10px;
}
@media (min-width: 768px) {
.work__title {
font-size: 1.25em;
line-height: 30px;
}
}
@media (min-width: 992px) {
.work__title {
font-size: 1.5em;
line-height: 34px;
}
}
.work__desc {
color: #000;
font-size: 0.875em;
line-height: 26px;
font-family: "Montserrat", sans-serif;
font-weight: 400;
}
@media (min-width: 768px) {
.work__desc {
font-size: 1em;
line-height: 26px;
}
}
@media (min-width: 992px) {
.work__desc {
font-size: 1em;
line-height: 26px;
}
}
.work-list {
width: 100%;
}
@media (min-width: 768px) {
.work-list {
width: 90%;
}
}
.work-list__item {
margin: 0 0 25px;
}
.work__content {
padding: 0 0 25px;
border-bottom: 1px solid #d1d2d7;
}
@media (min-width: 992px) {
.work-list__item {
margin: 0;
padding: 0 0 20px;
}
}
.work-list__item:last-child,
.work-list__item:last-child .work__content {
border: 0;
}
.work-list--approach .work {
width: 100%;
}
.work-list--approach .work__title {
margin: 0 !important;
}
.work-list--approach .work__desc {
color: #515470;
font-size: 1em;
font-weight: 400;
line-height: 26px;
}
.work-list--approach .work__icon {
width: 45px;
height: 45px;
min-height: 45px;
min-width: 45px;
}
@media (min-width: 1024px) {
.work-list--approach .work__icon {
width: 55px;
height: 55px;
min-height: 55px;
min-width: 55px;
}
}
.work-list--approach li {
position: relative;
border-bottom: none;
margin: 0 0 20px;
}
@media (min-width: 1024px) {
.work-list--approach li {
margin: 0 0 10px;
}
}
.work-list--approach li:after {
content: "";
position: absolute;
width: 100%;
height: calc(100% - 37px);
left: 6.3%;
top: 51px;
border-left: 1px dashed #4b4b4b;
}
@media (min-width: 425px) {
.work-list--approach li:after {
left: 5.3%;
}
}
@media (min-width: 700px) {
.work-list--approach li:after {
left: 3.3%;
}
}
@media (min-width: 1024px) {
.work-list--approach li:after {
height: calc(100% - 69px);
left: 4.3%;
top: 69px;
border-left: 2px dashed #4b4b4b;
}
}
.work-list--approach.white .work__desc,
.work-list--approach.white .work__title {
color: #fff !important;
}
.work-list--approach.white li:after {
display: none;
}
.work-list.new-service-work,
.work-list.service-work {
width: 100%;
}
.work-list.new-service-work li,
.work-list.service-work li {
border: 0;
margin: 0;
}
.work-list.service-work .work {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.work-list.service-work .work__icon {
width: 45px;
height: 45px;
min-height: 45px;
min-width: 45px;
}
@media (min-width: 1024px) {
.work-list.service-work .work__icon {
width: 55px;
height: 55px;
min-height: 55px;
min-width: 55px;
}
}
.work-list.new-service-work .work {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.work-icon-block,
.work-list.new-service-work .work__icon-block {
margin: 0 auto;
-webkit-border-radius: 50%;
border-radius: 50%;
padding: 1.5rem;
border: 1px solid #fff;
background-color: #fff;
}
.work-icon-block img.work__icon,
.work-list.new-service-work .work__icon {
width: 30px;
height: 30px;
min-width: 30px;
min-height: 30px;
-o-object-fit: contain;
object-fit: contain;
}
@media (min-width: 1024px) {
.work-list.new-service-work .work__icon {
width: 50px;
height: 50px;
min-width: 50px;
min-height: 50px;
}
}
.work-list.new-service-work .work__new-desc {
font-weight: 600;
width: 100%;
margin: 20px auto;
padding: 0;
text-align: center;
}
.work-icon-block img.work__icon {
margin: 0;
}
@media (min-width: 1024px) {
.work-icon-block img.work__icon {
width: 50px;
height: 50px;
min-width: 50px;
min-height: 50px;
}
}
.approach-list {
margin: 60px -15px 0;
}
@media (min-width: 992px) {
.approach-list {
margin: 80px -15px 0;
}
}
@media (min-width: 1200px) {
.approach-list {
margin: 100px -15px 0;
}
}
.approach-list li {
position: relative;
margin: 0 0 40px;
}
.approach-list li:after {
position: absolute;
top: 40px;
right: 30px;
width: 100%;
overflow: hidden;
}
@media (min-width: 1200px) {
.approach-list li:after {
top: -40px;
right: -42%;
}
}
.approach-list li:last-child:after {
display: none;
}
@media (min-width: 992px) {
.approach-list li:nth-child(even) {
margin: -20px 0 0;
}
}
@media (min-width: 1200px) {
.approach-list li:nth-child(even) {
margin: 10px 0 0;
}
}
@media (min-width: 992px) {
.approach-list li:nth-child(even):after {
top: 30px;
right: 8px;
width: 50%;
content: url(//terralogic.com/wp-content/themes/terralogic/img/home/dashed-line-top.svg);
}
}
@media (min-width: 1200px) {
.approach-list li:nth-child(even):after {
top: 10px;
right: 15px;
}
}
@media (min-width: 992px) {
.approach-list li:nth-child(odd):after {
top: 30px;
right: 8px;
width: 50%;
content: url(//terralogic.com/wp-content/themes/terralogic/img/home/dashed-line-bottom.svg);
}
}
@media (min-width: 1200px) {
.approach-list li:nth-child(odd):after {
top: 40px;
right: 15px;
}
}
.approach__icon {
width: 60px;
height: 60px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: #fff;
-webkit-border-radius: 50%;
border-radius: 50%;
margin: 0 0 20px;
-webkit-box-shadow: 10px 11px 20px 0 #f1f2f3;
box-shadow: 10px 11px 20px 0 #f1f2f3;
-o-object-fit: none;
object-fit: none;
}
@media (min-width: 1200px) {
.approach__icon {
width: 76px;
height: 76px;
}
}
.approach__icon img {
margin: 0 auto;
width: 65px;
height: 65px;
}
.approach__title {
margin: 15px 0;
}
.approach__title,
.work-list--approach .work__title {
color: #363844;
width: 70%;
font-family: "Montserrat", sans-serif;
font-size: 1em;
line-height: 23px;
font-weight: 700;
letter-spacing: 0.9px;
margin: 15px 0;
}
@media (min-width: 992px) {
.approach__title,
.work-list--approach .work__title {
font-size: 1.125em;
width: 60%;
}
}
.approach__desc {
color: #363844;
font-family: "Montserrat", sans-serif;
font-size: 0.6875em;
font-weight: 400;
letter-spacing: 0.65px;
line-height: 20px;
margin: 0 40px 0 0;
}
@media (min-width: 992px) {
.approach__desc {
font-size: 0.8125em;
}
}
.getwork-done {
padding: 30px;
margin: 60px 0 0;
background-color: #7c62e0;
position: relative;
}
.getwork-done__person {
position: absolute;
bottom: 10px;
right: 30px;
width: auto;
height: auto;
}
@media (min-width: 768px) {
.getwork-done__person {
top: 24px;
height: auto;
right: 20px;
}
}
@media (min-width: 992px) {
.getwork-done__person {
top: 35px;
height: auto;
}
}
@media (min-width: 1200px) {
.getwork-done__person {
top: 35px;
height: auto;
}
}
@media (min-width: 992px) {
.getwork-done {
margin: 80px 0 0;
padding: 40px;
}
}
@media (min-width: 1200px) {
.getwork-done {
margin: 100px 0 0;
padding: 30px;
}
}
.getwork-done__bgimg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.blogs-list {
margin: 30px -15px 0;
}
@media (min-width: 992px) {
.blogs-list {
margin: 0 -15px;
}
}
.blogs-list li {
margin: 0 0 30px;
}
.blogs-list li:last-child,
.stats-list__item:last-child {
margin: 0;
}
.about-home-content {
margin: 27px 0 0;
}
.about-home-content p {
color: #000;
font-family: "Montserrat", sans-serif;
font-size: 0.875em;
line-height: 30px;
font-weight: 400;
margin: 0 0 20px;
}
@media (min-width: 768px) {
.about-home-content p {
font-size: 1em;
line-height: 34px;
margin: 0 0 30px;
}
}
.about-home-content p strong {
font-size: 1em;
line-height: 32px;
font-weight: 600;
}
@media (min-width: 768px) {
.about-home-content p strong {
font-size: 1.125em;
line-height: 34px;
}
}
.about-home-bgimg,
.bg-gradient:after {
position: absolute;
top: -40px;
right: 40px;
height: 240px;
width: 240px;
opacity: 1;
z-index: -1;
}
.about-home-bgimg {
left: 40%;
top: 50%;
width: auto;
height: 100%;
transform: translate(-50%, -50%);
}
.stats-list {
margin: 30px 0 0;
}
@media (min-width: 992px) {
.stats-list {
margin: 40px 0 0;
}
}
@media (min-width: 1200px) {
.stats-list {
margin: 50px 0 0;
}
}
.stats-list__item {
margin: 0 0 30px;
}
.stats {
font-family: "Montserrat", sans-serif;
}
.stats__data {
color: #fff;
font-size: 1.125em;
font-weight: 700;
}
@media (min-width: 992px) {
.stats__data {
font-size: 1.375em;
}
}
@media (min-width: 1200px) {
.stats__data {
font-size: 1.5625em;
margin-top: 6px;
}
}
.stats__desc {
color: #fff;
font-size: 0.875em;
font-weight: 500;
line-height: 25px;
opacity: 0.8;
}
@media (min-width: 992px) {
.stats__desc {
font-size: 1em;
}
}
@media (min-width: 1200px) {
.stats__desc {
font-size: 1.125em;
}
}
.bg-gradient {
position: relative;
z-index: 0;
}
.bg-gradient:after {
content: "";
top: 0;
right: 0;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
background-image: -webkit-linear-gradient(27deg, #33f 0%, #ff3397 100%);
background-image: -o-linear-gradient(27deg, #33f 0%, #ff3397 100%);
background-image: linear-gradient(63deg, #33f 0%, #ff3397 100%);
opacity: 0.88;
}
.tr-input {
font-family: "Montserrat", sans-serif;
padding: 10px;
-webkit-border-radius: 2px;
border-radius: 2px;
border: 1px solid #e6e9f2;
background-color: #f6f8ff;
}
@media (min-width: 992px) {
.tr-input {
padding: 15px;
}
}
.tr-input::-webkit-input-placeholder {
opacity: 0.61;
color: #333330;
font-size: 0.875em;
font-family: "Montserrat", sans-serif;
font-weight: 500;
}
.tr-input::-moz-placeholder {
opacity: 0.61;
color: #333330;
font-size: 0.875em;
font-family: "Montserrat", sans-serif;
font-weight: 500;
}
.tr-input::-ms-input-placeholder {
opacity: 0.61;
color: #333330;
font-size: 0.875em;
font-family: "Montserrat", sans-serif;
font-weight: 500;
}
.tr-input::placeholder {
opacity: 0.61;
color: #333330;
font-size: 0.875em;
font-family: "Montserrat", sans-serif;
font-weight: 500;
}
.contact-form-w {
padding: 20px;
-webkit-border-radius: 6px;
border-radius: 6px;
margin: 60px 0 0;
border: 1px solid #eee;
background-color: #fff;
}
@media (min-width: 768px) {
.contact-form-w {
margin: -60px 0 0;
padding: 30px;
}
}
@media (min-width: 992px) {
.contact-form-w {
margin: -100px 0 0;
padding: 40px;
}
}
@media (min-width: 1200px) {
.contact-form-w { box-shadow: 0 0 9px 1px #8c8c8c;
margin-bottom: -80px;
}
}
.contact-form-w button[type="submit"] {
cursor: pointer;
border: 0;
}
.custom-file-input {
position: relative;
display: inline-block;
}
.custom-file-input input {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
margin: 0;
right: 0;
bottom: 0;
opacity: 0;
cursor: pointer;
z-index: 2;
}
.custom-file-input img {
margin: 0 5px 0 0;
width: 20px;
height: 26px;
border: 1px solid #fff;
}
.custom-file-input span {
color: #6c5ae2;
cursor: pointer;
font-size: 0.875em;
font-weight: 600;
font-family: "Montserrat", sans-serif;
}
.custom-file-input:hover span {
text-decoration: underline;
}
.custom-file-input input[type="file"] {
cursor: pointer;
font-size: 0;
position: absolute;
}
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: transparent;
outline: 0;
-webkit-box-shadow: 0 0 0 1px #dc33a9;
box-shadow: 0 0 0 1px #dc33a9;
}
.custom-control.custom-checkbox {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.custom-control-label {
color: rgba(51, 51, 51, 0.6);
font-size: 14px;
font-weight: 500;
margin-left: 10px;
}
.custom-control-label a {
color: rgba(51, 51, 51, 0.6);
text-decoration: underline;
}
.custom-control-input {
width: 18px;
height: 18px;
-webkit-border-radius: 1px;
border-radius: 1px;
border: 1px solid #6c5ae2;
}
.custom-control-input#customCheck1 {
cursor: pointer;
}
.section-title {
font-family: "Montserrat", sans-serif;
color: #fff;
font-weight: 700;
font-size: 1.75em;
line-height: 38px;
}
@media (min-width: 768px) {
.section-title {
font-size: 1.875em;
line-height: 40px;
}
}
@media (min-width: 992px) {
.section-title {
font-size: 2.375em;
line-height: 48px;
}
}
@media (min-width: 1200px) {
.section-title {
font-size: 2.5em;
line-height: 56px;
}
}
.bg-gradient-pink-s.new-bg {
background-image: -webkit-linear-gradient(19deg, #33f 0%, #ff3397 100%);
background-image: -o-linear-gradient(19deg, #33f 0%, #ff3397 100%);
background-image: linear-gradient(71deg, #33f 0%, #ff3397 100%);
opacity: 0.87;
position: relative;
}
.bg-gradient-pink-s.new-bg:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//terralogic.com/wp-content/themes/terralogic/img/home/pattern-right.svg) no-repeat right top;
}
.bg-gradient-pink-s.new-bg.bg-bottom::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//terralogic.com/wp-content/themes/terralogic/img/home/pattern-bottom-left.svg) no-repeat left bottom;
}
.bg-gradient-pink-s.new-bg .our-clients-info .hpage-ourclient {
-webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
-webkit-border-radius: 4px;
border-radius: 4px;
}
.js-update-slider__content {
padding: 20px 0;
}
.js-update-slider__content .slick-list,
.js-update-slider__content .slick-track,
.js-update-slider__update img {
height: 100%;
}
@media (min-width: 768px) {
.js-update-slider__content {
padding: 30px;
}
}
@media (min-width: 992px) {
.js-update-slider__content {
padding: 50px;
}
}
@media (min-width: 1200px) {
.js-update-slider__content {
margin-right: 5rem;
padding: 60px 50px;
}
}
@media (max-width: 1199px) {
.js-update-slider__update img {
}
}
@media (max-width: 767px) {
.js-update-slider__update img {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
}
.update-desc {
color: #000;
line-height: 30px;
}
.join-heading {
color: #000;
font-size: 1.5em;
line-height: 38px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
@media (min-width: 768px) {
.join-heading {
font-size: 1.75em;
line-height: 44px;
padding-right: 2rem;
}
}
@media (min-width: 992px) {
.join-heading {
font-size: 2.125em;
line-height: 44px;
padding-right: 0;
}
}
@media (min-width: 1200px) {
.join-heading {
font-size: 2.75em;
line-height: 54px;
}
}
.join-desc {
color: rgba(29, 32, 55, 0.6);
font-size: 0.875em;
font-weight: 500;
line-height: 30px;
}
@media (min-width: 992px) {
.join-desc {
font-size: 1em;
}
}
@media (min-width: 1200px) {
.join-desc {
font-size: 1em;
}
}
.tl-banner-wrapper {
padding-top: 3rem;
padding-bottom: 3rem;
}
@media (min-width: 992px) {
.tl-banner-wrapper {
padding-bottom: 0rem;
}
}
.main-wrapper {
position: relative;
margin: 0 0 0 auto;
}
@media (min-width: 992px) {
.main-wrapper {
width: 84%;
}
}
@media (min-width: 1200px) {
.main-wrapper {
width: 87%;
height: 680px;
}
}
.tl-banner-image {
position: absolute;
width: 100%;
height: 100%;
-webkit-background-size: contain;
background-size: contain;
bottom: 0;
}
.tk-banner-panel {
background: #fff;
-webkit-box-shadow: 0 2px 30px rgba(93, 45, 215, 0.18);
box-shadow: 0 2px 30px rgba(93, 45, 215, 0.18);
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 2.5rem 2rem;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
max-height: 100%;
margin-top: 12rem;
}
@media (min-width: 992px) {
.tk-banner-panel {
padding: 4rem 3rem;
min-height: 650px;
-webkit-transform: translate(-150px, 80px);
-ms-transform: translate(-150px, 80px);
transform: translate(-150px, 80px);
margin-top: 0;
}
}
.tk-banner-panel__des {
font-size: 1.125em;
line-height: 28px;
font-weight: 400;
color: #666;
}
@media (min-width: 992px) {
.tk-banner-panel__des {
font-size: 1.25em;
line-height: 30px;
}
}
.tk-banner-panel__body {
width: 100%;
}
.tl-banner-heading {
font-size: 2.125em;
line-height: 44px;
}
@media (min-width: 992px) {
.tl-banner-heading {
font-size: 3.375em;
line-height: 64px;
font-weight: 700;
}
}
.tk-banner-tag {
font-size: 1.125em;
line-height: 28px;
color: #e8499c;
text-transform: uppercase;
font-weight: 700;
display: inline-block;
}
@media (min-width: 992px) {
.tk-banner-tag {
font-size: 1.5em;
line-height: 34px;
}
}
.tk-rect {
position: absolute;
top: 3rem;
left: -5.8rem;
}
@media (min-width: 992px) {
.tl-numbers-block {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
.tl-numbers-block__item {
font-weight: 700;
margin-top: 1.5rem;
}
@media (min-width: 992px) {
.tl-numbers-block__item {
border-right: 1px solid #dadada;
padding-left: 3rem;
width: 33.33%;
margin-top: 0;
}
}
.tl-numbers-block__item:first-child {
padding-left: 0;
}
.tl-numbers-block__item:last-child {
border-right: none;
}
.tl-numbers-block__number {
font-size: 1.875em;
line-height: 40px;
text-transform: uppercase;
display: block;
color: rgba(216, 216, 216, 0.87);
}
@media (min-width: 992px) {
.tl-numbers-block__number {
font-size: 2.5em;
line-height: 50px;
}
}
.tl-numbers-block__text {
color: #999;
font-size: 0.875em;
line-height: 24px;
margin-top: 0.5rem;
display: inline-block;
}
@media (min-width: 992px) {
.tl-numbers-block__text {
margin-top: 1rem;
font-size: 1em;
line-height: 26px;
}
}
.tl-bg-pink {
background: #a64dd2;
}
.bg-wht-panel,
.tl-bg-sudo {
position: relative;
}
.tl-bg-sudo::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//terralogic.com/wp-content/themes/terralogic/img/home/pattern-right.svg) no-repeat right top;
opacity: 0.5;
}
@media (min-width: 992px) {
.tl-bg-sudo::after {
opacity: 1;
}
}
.bg-wht-panel {
background: #fff;
-webkit-box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
padding: 2rem;
-webkit-border-radius: 4px;
border-radius: 4px;
z-index: 1;
}
@media (min-width: 992px) {
.bg-wht-panel {
padding: 3rem;
}
}
.tl-partners-title {
font-size: 1.25em;
line-height: 30px;
font-weight: 700;
}
@media (min-width: 992px) {
.tl-partners-title {
margin-right: 4rem;
font-size: 1.5em;
line-height: 34px;
}
}
.tl-sudeo {
position: absolute;
height: 125px;
width: 100%;
background: #fff;
left: 0;
right: 0;
bottom: 0;
}
.tl-sudeo--sm {
height: 100px;
}
.tl-card-thumbnail {
margin-bottom: 2.5rem;
text-align: center;
}
.tl-card-thumbnail img {
width: 60px;
}
@media (min-width: 992px) {
.tl-card-thumbnail {
margin-bottom: 0;
text-align: left;
}
}
.tl-card-thumbnail__heading {
font-size: 1.125em;
line-height: 28px;
font-weight: 600;
}
@media (min-width: 992px) {
.tl-card-thumbnail__heading {
font-size: 1.5em;
line-height: 34px;
}
}
.tl-card-thumbnail__des {
font-size: 0.75em;
line-height: 22px;
}
@media (min-width: 992px) {
.tl-card-thumbnail__des {
padding-right: 3rem;
font-size: 0.875em;
line-height: 24px;
}
}
.tl-clients-card {
background: #fff;
overflow-x: scroll;
width: 100%;
margin-bottom: 2rem;
padding-top: 1rem;
padding-bottom: 1rem;
padding-left: 1rem;
}
@media (min-width: 768px) {
.tl-clients-card {
padding-top: 2rem;
padding-bottom: 2rem;
padding-left: 2rem;
}
}
.tl-clients-card__title {
font-size: 1.125em;
line-height: 28px;
}
@media (min-width: 768px) {
.tl-clients-card__title {
font-size: 1.375em;
line-height: 32px;
}
.tl-clients-card {
height: calc(100% - 31px);
}
}
.tl-clients {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.tl-clients__item {
margin-right: 1rem;
padding-right: 1rem;
}
.tl-clients__item img {
width: 140px;
height: 60px;
-o-object-fit: contain;
object-fit: contain;
}
.tl-view-all-tech {
font-size: 1.25em;
line-height: 30px;
font-weight: 700;
color: #dc33a9;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.tl-view-all-tech__text {
display: inline-block;
padding-left: 2rem;
padding-right: 1.5rem;
}
.tl-pb7 {
padding-bottom: 7rem;
}
@media (max-width: 991px) {
.tl-pb7 {
padding-bottom: 2rem;
}
}
.tl-blog-des {
font-size: 12px;
line-height: 22px;
}
@media (min-width: 992px) {
.tl-blog-des {
font-size: 14px;
line-height: 24px;
}
}
.tl-blog-content {
padding-left: 2rem;
padding-right: 2rem;
}
@media (max-width: 991px) {
.tl-blog-content {
padding: 15px;
}
}
.ops-block {
position: relative;
}
.ops-block:after {
position: absolute;
content: "";
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
background-color: #000;
opacity: 0.33;
}
.ops-block__img {
width: 550px;
height: 459px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
@media (max-width: 767px) {
.ops-block__img {
width: 100%;
height: auto;
}
}
@media (max-width: 768px) {
.ops-block__img {
height: 326px;
}
}
@media (max-width: 1200px) {
.ops-block__img {
height: auto;
}
}
.ops-block__icon {
width: 80px;
height: 85px;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color: #dc33a9;
opacity: 0.87;
}
@media (max-width: 1199px) {
.ops-block__icon {
width: 40px;
height: 45px;
}
}
#footer-subscribe-form .form-group,
.pos-rel,
.z-index-2 {
position: relative;
}
.pos-abs {
position: absolute;
right: 40px;
bottom: 40px;
z-index: 2;
}
@media (max-width: 767px) {
.pos-abs {
right: 20px;
bottom: 20px;
}
}
.download-icon {
width: 16px;
height: 16px;
}
.why-work-bgimg {
width: 100%;
-o-object-fit: contain;
object-fit: contain;
}
@media (min-width: 768px) {
.why-work-bgimg {
width: 100%;
}
}
@media (min-width: 992px) {
.why-work-bgimg {
width: 100%;
}
}
@media (min-width: 1024px) {
.why-work-bgimg {
width: 100%;
}
}
.t-s-update {
border: 2px solid #8f4ede;
padding: 40px 50px;
background-color: #f6f8ff;
}
@media (max-width: 991px) {
.t-s-update {
padding: 20px;
text-align: center;
margin: 0 auto;
}
}
.t-s-update__content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
@media (max-width: 991px) {
.t-s-update__content {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
}
.t-s-update__img {
-o-object-fit: contain;
object-fit: contain;
}
@media (max-width: 991px) {
.t-s-update__img {
width: 50%;
height: 72px;
margin: 10px auto;
}
}
@media (min-width: 768px) {
.t-s-update__img {
width: 230px;
margin-top: auto;
}
}
@media (min-width: 1024px) {
.t-s-update__img {
height: 100px;
width: 230px;
}
}
@media (min-width: 1366px) {
.t-s-update__img {
height: 160px;
width: 290px;
}
}
.t-s-update .section-heading {
opacity: 0.87;
}
@media (min-width: 1024px) {
.t-s-update .btn {
float: right;
}
}
.new-cloud-testi {
width: 100%;
height: auto;
-o-object-fit: contain;
object-fit: contain;
}
@media (min-width: 768px) {
.new-cloud-testi {
height: 439px;
}
}
.service-work-bgimg {
width: 100%;
height: 160px;
margin-top: 10px;
margin-bottom: 20px;
}
@media (min-width: 768px) {
.service-work-bgimg {
height: 230px;
}
}
@media (min-width: 1366px) {
.service-work-bgimg {
margin-top: 10px;
margin-bottom: 50px;
height: 300px;
}
}
.tl-bredcrumbs {
position: absolute;
z-index: 1;
left: 0;
right: 0;
top: 1rem;
}
@media (min-width: 768px) {
.tl-bredcrumbs {
top: 5rem;
}
}
.tl-breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 1rem 0;
}
.tl-breadcrumb-item {
position: relative;
margin-left: 1.5rem;
}
.tl-breadcrumb-item a {
color: #b7b7b7;
}
.tl-breadcrumb-item::before {
content: ">";
position: absolute;
display: inline-block;
left: -1rem;
}
.tl-breadcrumb-item:first-child::before {
display: none;
}
.tl-breadcrumb-item.active {
color: #fff;
}
.tl-banner-container {
position: relative;
}
.banner-slider-image {
height: calc(100vh - 8vh);
-webkit-background-size: cover;
background-size: cover;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 767px) {
.banner-slider-image {
background-position: 50%;
}
}
.tl-s-banner-content {
margin-bottom: 2rem;
}
.tl-s-bannner-heading {
font-size: 28px;
line-height: 40px;
color: #fff;
font-weight: 700;
}
@media (min-width: 768px) {
.tl-s-bannner-heading {
font-size: 40px;
line-height: 58px;
}
}
.tl-s-hightlight {
font-weight: 700;
color: #dc33a9;
text-transform: uppercase;
}
.btn--primary {
background: #dc33a9; border: 1px solid #dc33a9;
color: #fff;
letter-spacing: 0.7px;
padding-top: 0.65rem;
padding-bottom: 0.65rem;
}
.btn--primary:hover {
background: #33f;
border: 1px solid #33f;
}
.tl-slider-pagination {
position: absolute;
width: 100%;
bottom: 6rem;
}
@media (max-width: 991px) {
.tl-slider-pagination {
display: none;
}
}
.tl-slider-progress {
max-width: 300px;
height: 1px;
background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
.tl-slider-progress {
max-width: 540px;
}
}
.tl-slider-progress .progress {
width: 0%;
height: 5px;
background: #dc33a9;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
#slider .slick-dots {
position: absolute;
left: 0;
bottom: -40px;
width: 100%;
list-style: none;
padding: 0;
margin: 0;
text-align: center;
}
#slider .slick-dots li,
#slider .slick-dots li button {
height: 40px;
border: 0;
background-color: transparent;
position: relative;
}
#slider .slick-dots li {
cursor: pointer;
text-indent: -9999px;
white-space: nowrap;
margin-left: 5px;
margin-right: 5px;
-webkit-box-shadow: 0 0 0 0 transparent;
box-shadow: 0 0 0 0 transparent;
display: inline-block;
width: 144px;
}
#slider .slick-dots li button {
display: block;
width: 100%;
font-size: 16px;
color: #d3ddf0;
font-weight: 600;
text-align: center;
outline: 0;
}
#slider .slick-dots li.slick-active button {
color: #34a8ff;
}
#slider .slick-dots li button .fa {
position: absolute;
bottom: -20px;
left: 50%;
margin-left: -5px;
opacity: 0;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#slider .slick-dots li.slick-active button .fa {
bottom: -8px;
opacity: 1;
}
.footer-subheading {
color: #1d2037;
font-size: 18px;
font-weight: 700;
line-height: 38px;
}
.new-social-img {
width: 28px;
height: 28px;
padding: 2px;
-webkit-transition: 0.5s ease all;
-o-transition: 0.5s ease all;
transition: 0.5s ease all;
}
.new-social-img .facebook:focus,
.new-social-img .facebook:hover,
.new-social-img .linkedin:focus,
.new-social-img .linkedin:hover,
.new-social-img .twitter:focus,
.new-social-img .twitter:hover,
.new-social-img .youtube:focus,
.new-social-img .youtube:hover {
-webkit-transition: 0.5s ease all;
-o-transition: 0.5s ease all;
transition: 0.5s ease all;
}
#footer-subscribe-form .parsley-custom-error-message {
position: absolute;
bottom: -27px;
left: 0;
}
#footer-subscribe-form button {
border: 0;
cursor: pointer;
}
a.nav-menu__link.hover-cta.nav-align {
color: #313558 !important;
}
.btn.btn-outline,
.section-desc {
text-transform: uppercase;
color: #dc33a9;
font-weight: 500;
}
.btn.btn-outline,
.btn.btn-outline:hover {
border: 1px solid #dc33a9;
-webkit-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
transition: 0.5s all ease;
}
.btn.btn-outline {
background: 0 0;
font-size: 12px !important;
line-height: 22px;
margin-top: 0;
}
.btn.btn-outline:hover {
background: #dc33a9;
color: #fff;
}
.section-desc.eut {
margin-top: 3rem;
margin-bottom: 15px;
padding-bottom: 0;
}
.section-desc {
font-size: 0.75em;
letter-spacing: 2.8px;
font-family: "Montserrat", sans-serif;
padding-bottom: 10px;
margin-top: 28px;
}
@media (min-width: 768px) {
.section-desc {
font-size: 0.875em;
}
}
.section-heading {
color: #363844;
font-size: 1.375em;
line-height: 32px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
@media (min-width: 768px) {
.section-heading {
font-size: 1.75em;
line-height: 42px;
}
.nav-menu.new-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
}
@media (min-width: 992px) {
.section-heading {
font-size: 2em;
line-height: 46px;
}
}
@media (min-width: 1200px) {
.section-heading {
font-size: 2.5em;
line-height: 54px;
}
}
.section-heading--medium {
font-size: 1.25em;
line-height: 28px;
}
@media (min-width: 768px) {
.section-heading--medium {
font-size: 1.375em;
line-height: 30px;
}
}
@media (min-width: 992px) {
.section-heading--medium {
font-size: 1.5em;
line-height: 32px;
}
}
@media (min-width: 1200px) {
.section-heading--medium {
font-size: 1.75em;
line-height: 36px;
}
}
.section-sub-description {
color: #272935;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 1em;
line-height: 26px;
padding: 12px 0 40px;
}
@media (min-width: 768px) {
.section-sub-description {
font-size: 1.25em;
line-height: 30px;
padding: 12px 0 50px;
}
}
.section {
margin: 30px 0;
}
@media (min-width: 768px) {
.section {
margin: 40px 0;
}
}
@media (min-width: 992px) {
.section {
margin: 60px 0;
}
}
@media (min-width: 1200px) {
.section {
margin: 0px 0;
}
}
@media (min-width: 992px) {
.section--services .section-heading {
width: 80%;
}
}
@media (min-width: 1200px) {
.section--services .section-heading {
width: 60%;
}
}
@media (min-width: 992px) {
.section--approach .section-heading {
width: 90%;
}
}
@media (min-width: 1200px) {
.section--approach .section-heading {
width: 75%;
}
}
@media (min-width: 768px) {
.section--about {
padding: 40px 0 80px;
}
}
@media (min-width: 992px) {
.section--about {
padding: 60px 0 120px;
}
}
@media (min-width: 1200px) {
.section--about {
padding: 80px 0 100px;
}
}
.section--updates {
padding: 30px 15px;
}
@media (min-width: 768px) {
.section--updates {
padding: 40px 15px;
}
}
@media (min-width: 992px) {
.section--updates {
padding: 60px 15px;
}
}
@media (min-width: 1200px) {
.section--updates {
padding: 80px 15px;
}
}
.blog {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: relative;
}
.blog__img-w {
width: 100px;
min-width: 100px;
height: 100%;
margin: 0 20px 0 0;
}
@media (min-width: 768px) {
.blog__img-w {
width: 120px;
min-width: 120px;
}
}
@media (min-width: 1200px) {
.blog__img-w {
width: 140px;
min-width: 140px;
}
}
.blog__img {
height: 100%;
width: 100%;
-o-object-fit: cover;
object-fit: cover;
object-position: top left;
}
.blog__timestamp,
.blog__title {
color: #1d2037;
font-family: "Montserrat", sans-serif;
}
.blog__title {
line-height: 30px;
font-size: 1.125em;
font-weight: 700;
}
.blog__timestamp {
opacity: 0.8;
font-size: 0.75em;
font-weight: 500;
margin: 0 0 10px;
}
.blog__content {
position: relative;
z-index: 0;
}
.blog--featured {
display: block;
margin: 0;
}
.blog--featured .blog__img-w {
width: 100%;
height: 240px;
margin: 0;
}
@media (min-width: 768px) {
.blog--featured .blog__img-w {
height: 300px;
}
.case-study-blog {
margin-bottom: 5rem;
}
}
@media (min-width: 992px) {
.blog--featured .blog__img-w {
height: 360px;
}
}
@media (min-width: 1200px) {
.blog--featured .blog__img-w {
height: 420px;
}
}
.blog--featured .blog__content {
position: absolute;
content: "";
bottom: 0;
height: auto;
left: 0;
right: 0;
padding: 15px;
}
@media (min-width: 1200px) {
.blog--featured .blog__content {
padding: 20px;
}
}
@media (max-width: 991px) {
.about-home-bgimg {
left: 40%;
top: 30%;
height: 240px;
}
}
@media (max-width: 767px) {
.about-home-bgimg {
left: 30%;
top: 30%;
width: auto;
height: 150px;
transform: translate(-50%, -50%);
}
main {
margin: 60px 0 0;
}
.btn.btn-outline {
border: none;
margin-top: 7px !important;
font-weight: 800;
}
.btn.btn-outline:hover {
background: none;
color: #dc33a9;
}
}
@media (max-width: 480px) {
.about-home-bgimg {
left: 50%;
}
}
.blog--featured .blog__content:after {
position: absolute;
content: "";
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background: -webkit-gradient(
linear,
left top,
left bottom,
from(rgba(28, 28, 28, 0)),
to(#1c1c1c)
);
background: -webkit-linear-gradient(
top,
rgba(28, 28, 28, 0) 0%,
#1c1c1c 100%
);
background: -o-linear-gradient(top, rgba(28, 28, 28, 0) 0%, #1c1c1c 100%);
background: linear-gradient(180deg, rgba(28, 28, 28, 0) 0%, #1c1c1c 100%);
}
.blog--featured .blog__timestamp,
.blog--featured .blog__title {
color: #fff;
}
.custom-dropdown {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 12px !important;
position: relative;
margin: 0 40px 0 0;
}
.custom-dropdown:last-child {
margin: 0;
}
.custom-dropdown:after {
position: absolute;
content: "";
right: -20px;
top: 50%;
bottom: 0;
-webkit-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
transform: translate(0, -50%);
background: url(//terralogic.com/wp-content/themes/terralogic/img/home/down-arrow.svg) no-repeat !important;
background-position: center;
width: 13px !important;
height: 13px !important;
font-size: 13px !important;
}
.custom-dropdown .ui.dropdown span {
font-size: 12px !important;
}
.custom-dropdown .item,
.custom-dropdown p {
color: #525570;
font-size: 12px !important;
line-height: initial !important;
letter-spacing: 0.7px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.terralogic-loader-container,
.terralogic-loader-container.active {
display: none;
opacity: 0;
}
}
@media screen and (-ms-high-contrast: active) and (min-width: 1200px),
(-ms-high-contrast: none) and (min-width: 1200px) {
.service-tech-list li {
-webkit-box-flex: 1;
-ms-flex: 1 0 14%;
flex: 1 0 14%;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.work-list--approach li::after {
height: 72px;
}
.why-work-bgimg {
width: 530px;
min-width: 530px;
max-width: 530px;
height: 314px;
-o-object-fit: contain;
object-fit: contain;
}
.section--work .why-work-bgimg {
width: 100%;
min-height: 100%;
max-width: 100%;
height: 60%;
}
}
@media screen and (-ms-high-contrast: active) and (min-width: 1024px),
(-ms-high-contrast: none) and (min-width: 1024px) {
.work-icon-block img.work__icon {
width: 56px;
height: 56px;
min-width: 56px;
min-height: 56px;
}
.work-list.new-service-work .work__icon {
width: 55px;
height: 55px;
min-width: 55px;
min-height: 55px;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.service-card__icon {
width: 100px;
height: 62px;
-o-object-fit: contain;
object-fit: contain;
}
.t-s-update__img {
width: 310px;
height: 148px;
}
.mt-auto,
.my-auto {
margin-top: 52px !important;
}
.partner-icon {
width: 110px;
height: 50px;
min-width: 110px;
min-height: 50px;
-o-object-fit: contain;
object-fit: contain;
}
.partner-icon.large {
height: 60px;
min-height: 60px;
}
.our-clients-info .slider-space5.new-ser .slider-view-center {
padding: 8px;
}
}
.js-new-client-slider__content .h2 {
white-space: nowrap;
}
.award-cont h3:hover {
color: #dc33a9;
}
.expert-our .work-list li .brd-btm:after {
background: none;
}
.pos-abs .fa-play-circle {
color: #dc33a9;
}
.pos-abs .fa-play-circle:hover {
color: #33f;
}
.banner.our-business-numbers {
background: none;
}
.case-studies,
.banner-services {
background: none;
}
.blog-card__body .catge-tag {
background: #e3e9fa;
}
.technology-tool {
padding-bottom: 4rem;
}
.pad-t-50px {
padding-top: 50px !important;
}.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.show {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.show {
display: block;
}
tr.collapse.show {
display: table-row;
}
tbody.collapse.show {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height 0.35s ease;
-o-transition: height 0.35s ease;
transition: height 0.35s ease;
}
button:focus {
outline: 0 !important;
}
.t-d-design-page .btn,
.t-d-design-page .btn:hover img {
-webkit-transition: all 0.6s cubic-bezier(0.2, 0.59, 0.21, 0.6);
-o-transition: all 0.6s cubic-bezier(0.2, 0.59, 0.21, 0.6);
transition: all 0.6s cubic-bezier(0.2, 0.59, 0.21, 0.6);
}
.t-d-design-page .btn {
display: inline-block;
}
.t-d-design-page .btn:hover img {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-transform: translateX(6px);
-ms-transform: translateX(6px);
transform: translateX(6px);
}
.t-d-design-page.solutions-page {
background: #f6f8ff;
}
@media (max-width: 991px) {
.over-x-hidden {
overflow-x: hidden;
}
}
.bg-gray-lg {
background: #fafafa;
}
.fnt-30,
.tl-design-banner__sub-title {
font-size: 24px;
line-height: 44px;
font-weight: 500;
}
@media (min-width: 1024px) {
.fnt-30,
.tl-design-banner__sub-title {
font-size: 30px;
line-height: 40px;
}
}
.d-fnt-xs {
font-size: 12px;
line-height: 22px;
}
.design-banner-wrap {
padding: 7rem 0;
}
@media (min-width: 1024px) {
.design-banner-wrap {
padding: 4rem 0 8rem;
}
}
.tl-design-banner__heading {
font-size: 60px;
line-height: 80px;
font-weight: 700;
color: rgba(51, 51, 51, 0.13);
}
@media (min-width: 1024px) {
.tl-design-banner__heading {
font-size: 170px;
line-height: 207px;
}
}
.tl-design-banner__des {
max-width: 550px;
margin: 0 auto;
}
.tl-design-banner p {
font-size: 16px;
line-height: 26px;
color: #333;
font-weight: 300;
}
@media (min-width: 1024px) {
.tl-design-banner p {
font-size: 18px;
line-height: 28px;
}
}
.d-section6 {
padding: 4rem 0;
}
@media (min-width: 1024px) {
.d-section6 {
padding: 0rem 0;
}
}
.tl-d-gradient {
height: 100%;
overflow: hidden;
position: relative;
z-index: 0;
}
.tl-d-gradient::after,
.tl-d-pattern-right {
position: absolute;
bottom: 0;
width: 100%;
right: 0;
}
.tl-d-gradient::after {
background-image: -webkit-linear-gradient(19deg, #33f 0%, #ff3397 100%);
background-image: -o-linear-gradient(19deg, #33f 0%, #ff3397 100%);
background-image: linear-gradient(71deg, #33f 0%, #ff3397 100%);
content: "";
z-index: -1;
left: 0;
opacity: 0.9;
height: 100%;
}
.tl-d-pattern-right {
height: auto;
}
@media (min-width: 1024px) {
.tl-d-pattern-right {
-webkit-transform: translateX(59%);
-ms-transform: translateX(59%);
transform: translateX(59%);
}
}
@media (min-width: 1200px) {
.tl-d-pattern-right {
-webkit-transform: translateX(64%);
-ms-transform: translateX(64%);
transform: translateX(64%);
}
}
@media (min-width: 1280px) {
.tl-d-pattern-right {
-webkit-transform: translateX(66%);
-ms-transform: translateX(66%);
transform: translateX(66%);
}
}
@media (min-width: 1366px) {
.tl-d-pattern-right {
-webkit-transform: translateX(70%);
-ms-transform: translateX(70%);
transform: translateX(70%);
}
}
@media (min-width: 1440px) {
.tl-d-pattern-right {
-webkit-transform: translateX(72%);
-ms-transform: translateX(72%);
transform: translateX(72%);
}
}
@media (min-width: 1536px) {
.tl-d-pattern-right {
-webkit-transform: translateX(72%);
-ms-transform: translateX(72%);
transform: translateX(72%);
}
}
@media (min-width: 1600px) {
.tl-d-pattern-right {
-webkit-transform: translateX(74%);
-ms-transform: translateX(74%);
transform: translateX(74%);
}
}
@media (min-width: 1920px) {
.tl-d-pattern-right {
-webkit-transform: translateX(78%);
-ms-transform: translateX(78%);
transform: translateX(78%);
}
}
.tl-d-pattern-right img {
width: 600px;
height: 100%; }
@media (max-width: 1023px) {
.tl-d-pattern-right img {
display: none;
}
}
.tl-d-section {
color: #33f;
}
.tl-d-section--blu {
color: #fff;
}
.tl-d-section__heading {
font-size: 30px;
line-height: 40px;
font-weight: 700;
}
@media (min-width: 1024px) {
.tl-d-section__heading {
font-size: 46px;
line-height: 56px;
}
}
.tl-d-section__title {
text-transform: uppercase;
color: #ff5bcd;
letter-spacing: 1px;
font-weight: 700;
display: block;
}
.accordion--design {
color: #fff;
padding-top: 1.5rem;
}
@media (min-width: 1024px) {
.accordion--design {
padding-top: 3.5rem;
}
}
.accordion--design h2 {
font-size: 40px;
line-height: 80px;
font-weight: 300;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
display: inline-block;
}
@media (min-width: 1024px) {
.accordion--design h2 {
margin-left: -0.6rem;
font-size: 80px;
line-height: 100px;
padding-right: 13px;
}
}
.accordion--design .card-header {
cursor: pointer;
}
.accordion--design h2[aria-expanded="false"],
.accordion--design h2[aria-expanded="true"] {
position: relative;
}
.accordion--design h2[aria-expanded="false"]:before,
.accordion--design h2[aria-expanded="true"]:before {
position: absolute;
width: 15px;
height: 24px;
background: url(//terralogic.com/wp-content/themes/terralogic/img/new-services/right-pink-icon.svg) no-repeat;
z-index: 1;
bottom: 33%;
right: -20%;
}
.accordion--design h2[aria-expanded="false"]:before {
content: "";
}
@media (min-width: 1024px) {
.accordion--design h2[aria-expanded="false"]:before,
.accordion--design h2[aria-expanded="true"]:before {
bottom: 36%;
right: -9%;
}
}
.accordion--design h2[aria-expanded="true"]:before {
content: "";
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.tl-areas-list {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 30px;
-moz-column-gap: 30px;
column-gap: 30px;
}
.tl-areas-list__item {
font-size: 14px;
line-height: 24px;
font-weight: 600;
letter-spacing: 0.23px;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 0.6rem;
}
.tl-d-client-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.tl-d-client-list__item img {
border: 1px solid #d1caca;
margin: 10px 20px 10px 0;
width: 200px;
height: 120px;
padding: 25px;
-o-object-fit: contain;
object-fit: contain;
background: 0 0;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
opacity: 0.3;
}
@media (max-width: 1023px) {
.tl-d-client-list__item img {
margin: 10px;
width: 120px;
height: 80px;
padding: 15px;
}
}
.bg-dark-blue {
background: #33f;
}
.t-d-update__desc {
color: #fff;
font-weight: 500;
font-size: 18px;
line-height: 28px;
max-width: 390px;
}
@media (min-width: 1024px) {
.t-d-update__desc {
font-size: 20px;
line-height: 35px;
}
}
.t-d-update__img {
width: 150px;
display: inline;
}
@media (min-width: 1024px) {
.t-d-update__img {
width: 300px;
height: auto;
}
}
.hr-top {
position: relative;
}
.hr-top:before {
content: "";
position: absolute;
width: 59%;
height: 1px;
background: #fff;
z-index: 1;
top: 14px;
left: 15px;
}
@media (min-width: 1024px) {
.hr-top:before {
top: 30px;
height: 3px;
}
}
.tl-d-studio-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.tl-d-studio-list li:last-child::before {
display: none;
}
.tl-d-studio-list__item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 30px;
padding-right: 9px;
position: relative;
}
.tl-d-studio-list__item::before {
content: "";
position: absolute;
height: calc(100% - 32px);
width: 1px;
right: 40px;
top: 0;
bottom: 0;
background: rgba(151, 151, 151, 0.2);
}
@media (max-width: 1365px) {
.tl-d-studio-list__item::before {
display: none;
}
}
.tl-d-studio-list .h3 {
color: #333;
font-size: 40px;
font-weight: 700;
}
@media (min-width: 1024px) {
.tl-d-studio-list .h3 {
font-size: 50px;
}
}
.tl-d-project-list__item span,
.tl-d-studio-list span {
color: #ff5bcd;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
}
.tl-d-studio-list span {
display: block;
line-height: 24px;
}
.tl-d-studio-list-img .slick-track {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.t-d-s-slide-nav .t-d-s-icon {
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
padding: 15px !important;
line-height: 0 !important;
}
.slider-primary:hover {
color: #33f !important;
}
.t-d-s-slide-nav .t-d-s-icon.slider-outline-primary {
border: 0 !important;
}
.t-d-s-slide-nav .slide-nav__prev {
background: 0 0 !important;
}
.t-d-s-slide-nav .slide-nav__arrow {
-webkit-border-radius: 4px !important;
border-radius: 4px !important;
border: 1px solid #dc33a9 !important;
}
.t-d-s-slide-nav .slide-nav__prev:after {
opacity: 0;
}
.h-500 {
height: 250px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
@media (max-width: 767px) {
.h-500 {
-o-object-fit: contain;
object-fit: contain;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
}
@media (min-width: 351px) {
.h-500 {
height: 300px;
}
}
@media (min-width: 768px) {
.h-500 {
height: 300px;
padding-left: 1rem;
padding-right: 1rem;
}
}
@media (min-width: 1024px) {
.h-500 {
height: 350px;
padding-left: 0;
padding-right: 0;
}
}
@media (min-width: 1366px) {
.h-500 {
height: 450px;
}
}
.btn-outline-primary {
-webkit-border-radius: 4px;
border-radius: 4px;
background: 0 0;
padding: 0.45rem 1rem;
}
@media (min-width: 1024px) {
.btn-outline-primary {
padding: 15px 30px;
}
}
.tl-d-project-list__item .card-img-top {
width: 100%;
-o-object-fit: contain;
object-fit: contain;
-webkit-border-radius: 12px;
border-radius: 12px;
}
@media (min-width: 1024px) {
.tl-d-project-list__item .card-img-top {
height: 290px;
}
}
.tl-d-project-list__item span {
padding: 1rem 0;
}
.tl-d-project-list__item .h3 {
color: #fff;
font-weight: 700;
font-size: 28px;
line-height: 32px;
}
@media (min-width: 1024px) {
.tl-d-project-list__item .h3 {
font-size: 30px;
}
}
.tl-d-project-list__item p {
color: #fff;
font-size: 14px;
line-height: 24px;
font-weight: 500;
}
@media (min-width: 1024px) {
.tl-d-project-list__item p {
font-size: 16px;
line-height: 26px;
}
}
.tl-d-project-list .card-body {
padding: 28px 0;
}
.image-fit {
width: 100%;
height: 100%;
-webkit-border-radius: 8px;
border-radius: 8px;
}
.js-new-client-slider__img img {
width: 100% !important;
height: auto;
-o-object-fit: contain;
object-fit: contain;
}
@media (min-width: 768px) {
.js-new-client-slider__img img {
height: 450px;
}
}
@media (min-width: 1024px) {
.js-new-client-slider__img img {
height: 550px;
}
}
@media (min-width: 1366px) {
.js-new-client-slider__img img {
height: 600px;
}
}
.js-new-client-slider__content .slick-list.draggable {
padding: 0 !important;
}
.js-new-client-slider__content .h2 {
color: #333;
font-size: 30px;
font-weight: 600;
}
@media (min-width: 1024px) {
.js-new-client-slider__content .h2 {
font-size: 50px;
font-weight: 600;
}
}
.js-new-client-slider__content p {
color: #666;
font-size: 16px;
font-weight: 400;
line-height: 27px;
}
@media (min-width: 1024px) {
.js-new-client-slider__content p {
font-size: 20px;
line-height: 31px;
}
}
.js-new-client-slider__content .new-view-content {
padding: 50px;
position: relative;
margin: 0 auto;
background-color: #fff;
}
@media (max-width: 991px) {
.js-new-client-slider__content .new-view-content {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 30px;
}
}
.js-new-client-slider__content .slick-dots {
position: relative;
margin: 20px auto;
}
@media (min-width: 1366px) {
.js-new-client-slider__content .slick-dots {
margin: 40px auto;
}
}
.js-new-client-slider__content .slick-dots button {
width: 6px;
height: 7px;
background-color: #4c33f2;
opacity: 1;
border: 1px solid #4c33f2;
}
.js-new-client-slider__content .slick-dots:before {
width: calc(100% - 144px);
height: 1px;
cursor: pointer;
position: absolute;
content: "";
top: 50%;
left: 73px;
right: 0;
}
@media (min-width: 1366px) {
.js-new-client-slider__content .slick-dots:before {
z-index: 0;
background: #4c33f2;
}
}
.js-new-client-slider__content .slick-dots li {
border: 1px solid transparent;
-webkit-border-radius: 50%;
border-radius: 50%;
text-align: center;
width: 36px;
height: 37px;
margin: 0 10px;
cursor: pointer;
z-index: 1;
padding: 3px 15px 3px 14px;
}
@media (min-width: 1366px) {
.js-new-client-slider__content .slick-dots li {
margin: 0 50px;
}
}
.js-new-client-slider__content .slick-dots li.slick-active {
background: #fff;
border: 1px solid #5533ef;
}
@media (min-width: 768px) {
.mt-70 {
margin-top: -70px;
}
}
@media (max-width: 767px) {
.section--goals {
padding: 45px 0;
}
}
.tl-dev-list {
padding-top: 2rem;
}
@media (min-width: 768px) {
.tl-dev-list {
padding-top: 2.5rem;
}
}
@media (min-width: 1024px) {
.tl-dev-list {
padding-top: 3rem;
}
}
.tl-dev-list__item {
font-size: 26px;
line-height: 36px;
color: #fff;
font-weight: 300;
margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
.tl-dev-list__item {
font-size: 42px;
line-height: 52px;
}
}
@media (min-width: 1024px) {
.tl-dev-list__item {
margin-bottom: 1rem;
font-size: 40px;
line-height: 50px;
}
}
.tl-dev-pattern {
position: absolute;
width: 100%;
right: 0;
margin: 0 auto;
text-align: right;
bottom: 0;
-webkit-transform: translateX(50px);
-ms-transform: translateX(50px);
transform: translateX(50px);
}
.tl-dev-pattern img {
max-width: 100%;
height: auto;
width: 260px;
}
@media (min-width: 768px) {
.tl-dev-pattern img {
width: 400px;
}
}
@media (min-width: 1200px) {
.tl-dev-pattern img {
width: 776px;
}
}
.text-black {
color: #363844;
}
.accordion--faq h2,
.tl-faq-list {
-webkit-border-radius: 14px;
border-radius: 14px;
}
.accordion--faq h2 {
color: #1d2037;
font-size: 16px;
line-height: 26px;
font-weight: 700;
background-color: #f6f8ff;
width: 100%;
margin-bottom: 0.9rem;
position: relative;
cursor: pointer;
padding: 20px 40px 20px 20px;
}
@media (min-width: 1024px) {
.accordion--faq h2 {
font-size: 18px;
line-height: 30px;
margin-bottom: 1rem;
padding: 24px 60px 24px 36px;
}
}
.accordion--faq h2[aria-expanded="false"]:before,
.accordion--faq h2[aria-expanded="true"]:before {
position: absolute;
width: 15px;
height: 24px;
z-index: 1;
bottom: 33%;
right: 20px;
font-size: 30px;
font-weight: 700;
line-height: 30px;
}
@media (min-width: 1024px) {
.accordion--faq h2[aria-expanded="false"]:before,
.accordion--faq h2[aria-expanded="true"]:before {
bottom: 36%;
right: 36px;
}
}
.accordion--faq h2[aria-expanded="false"]:after,
.accordion--faq h2[aria-expanded="true"]:after {
content: "";
bottom: -11px;
right: 30px;
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
width: 40px;
height: 40px;
position: absolute;
}
.accordion--faq h2[aria-expanded="true"]:after {
border: 0;
}
.accordion--faq h2[aria-expanded="false"]:before {
content: "+";
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.accordion--faq h2[aria-expanded="false"]:after {
border: transparent;
background: 0 0;
}
.accordion--faq h2[aria-expanded="true"]:before {
font-family: FontAwesome;
content: "\f068";
font-size: 20px;
}
.accordion--faq h2[aria-expanded="true"]:after {
border-left: 1px solid #f6f8ff;
border-top: 1px solid #f6f8ff;
background: #f6f8ff;
}
.tl-faq-list {
padding: 20px;
background: 0 0;
}
@media (min-width: 1024px) {
.tl-faq-list {
padding: 15px 36px;
}
}
.tl-faq-list__item {
margin-bottom: 1rem;
}
.tl-faq-list__item:last-child {
margin-bottom: 0;
}
.qa-block,
.tl-faq-list__item p {
color: #515470;
font-size: 16px;
line-height: 26px;
font-weight: 400;
}
@media (min-width: 1024px) {
.tl-faq-list__item p {
font-size: 18px;
line-height: 30px;
}
}
.qa-block {
font-size: 14px;
letter-spacing: 0.7px;
line-height: 24px;
-webkit-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.16);
box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.16);
background-color: #fafbff;
padding: 9px 22px;
-webkit-border-radius: 44px;
border-radius: 44px;
position: relative;
}
.qa-block:after {
content: "";
bottom: 32%;
left: -5px;
-webkit-transform: rotate(50deg);
-ms-transform: rotate(50deg);
transform: rotate(50deg);
border: 0;
width: 15px;
height: 15px;
position: absolute;
z-index: 0;
border-left: 1px solid #fafbff;
border-top: 1px solid #fafbff;
background: #fafbff;
}
.section-descr {
color: #fff;
font-size: 16px;
line-height: 28px;
font-weight: 400;
}
@media (min-width: 1024px) {
.section-descr {
font-size: 18px;
line-height: 30px;
}
}
.section-descr--black {
color: #505050;
}
.tl-sol-partnr-slider .h4 {
color: #000;
font-size: 22px;
line-height: 32px;
font-weight: 600;
}
@media (min-width: 1024px) {
.tl-sol-partnr-slider .h4 {
max-width: 200px;
padding-left: 20px;
position: relative;
font-size: 24px;
line-height: 34px;
}
.tl-sol-partnr-slider .h4::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background-color: #dc33a9;
}
}
@media (max-width: 767px) {
.tl-sol-partnr-slider__content {
padding: 20px;
}
}
@media (min-width: 768px) {
.tl-sol-partnr-slider__content {
padding: 30px;
}
}
@media (min-width: 1366px) {
.tl-sol-partnr-slider__content {
padding: 0 60px;
}
}
.tl-sol-partnr-slider__desc {
color: #505050;
font-size: 14px;
font-weight: 400;
line-height: 30px;
}
@media (min-width: 1024px) {
.tl-sol-partnr-slider__desc {
font-size: 16px;
}
}
.tl-sol-partnr-slider .text-link {
letter-spacing: 0.7px;
line-height: 23px;
}
@media (max-width: 991px) {
.tl-sol-partnr-slider img {
-webkit-border-radius: 15px;
border-radius: 15px;
}
}
@media (max-width: 767px) {
.tl-sol-partnr-slider li:nth-child(even) {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
}
.tl-sol-partnr-slider li {
margin-bottom: 75px;
}
@media (max-width: 768px) {
.tl-sol-partnr-slider li {
margin-bottom: 40px;
}
}
.our-part-info.our-part-info .hpage-ourclient {
-webkit-box-shadow: none !important;
box-shadow: none !important;
background: 0 0;
}
.br-rd-15 {
-webkit-border-radius: 15px;
border-radius: 15px;
}
.pos-rel-z {
z-index: 1;
position: relative;
}
@media (max-width: 768px) {
.m-25 {
margin: 25px;
}
}
.tl-s-new-solution__item {
-webkit-box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
box-shadow: 0 8px 11px rgba(0, 0, 0, 0.03);
background-color: #fff;
padding: 30px 15px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-border-radius: 15px;
border-radius: 15px;
}
@media (min-width: 768px) {
.tl-s-new-solution__item {
padding: 30px;
}
}
@media (min-width: 1024px) {
.tl-s-new-solution__item {
padding: 60px;
}
}
.tl-s-new-solution .tl-s-white-card-block {
text-align: center;
}
@media (max-width: 767px) {
.tl-s-new-solution li:nth-child(even) {
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
}
.tl-s-new-solution li {
margin-bottom: 75px;
}
@media (max-width: 768px) {
.tl-s-new-solution li {
margin-bottom: 40px;
}
}
.s-white-card-content li {
position: relative;
padding-left: 32px;
margin-bottom: 40px;
}
@media (max-width: 768px) {
.s-white-card-content li {
padding-left: 22px;
margin-bottom: 30px;
}
}
.s-white-card-content li::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background-color: #ebefff;
}
@media (min-width: 1024px) {
.s-white-card-content li::before {
width: 6px;
}
}
.s-icon {
width: 129px;
height: 129px;
}
@media (max-width: 768px) {
.s-icon {
width: 80px;
height: 80px;
}
}
.s-title {
color: #313558;
font-size: 16px;
line-height: 26px;
font-weight: 600;
max-width: 200px;
margin: 8px auto 14px;
}
@media (min-width: 1024px) {
.s-title {
font-size: 18px;
line-height: 24px;
margin: 13px auto;
}
}
.s-subtitle {
color: #dc33a9;
font-size: 16px;
line-height: 26px;
font-weight: 600;
margin-bottom: 8px;
}
@media (min-width: 1024px) {
.s-subtitle {
margin-bottom: 14px;
font-size: 18px;
line-height: 24px;
}
}
.s-desc {
color: #505050;
font-size: 14px;
line-height: 24px;
font-weight: 400;
}
@media (min-width: 1024px) {
.s-desc {
font-size: 16px;
line-height: 24px;
}
}
.bg-s-new-gradient {
background-image: -webkit-linear-gradient(24deg, #33f 0%, #ff3397 100%);
background-image: -o-linear-gradient(24deg, #33f 0%, #ff3397 100%);
background-image: linear-gradient(66deg, #33f 0%, #ff3397 100%);
opacity: 0.88;
-webkit-border-radius: 15px;
border-radius: 15px;
margin-bottom: 20px;
-webkit-box-shadow: 20px 20px 40px rgba(109, 33, 86, 0.25);
box-shadow: 20px 20px 40px rgba(109, 33, 86, 0.25);
}
@media (min-width: 1024px) {
.bg-s-new-gradient {
margin-bottom: 23px;
}
}
.bg-s-new-gradient__content {
padding: 20px 15px; }
@media (min-width: 1024px) {
.bg-s-new-gradient__content {
padding: 47px;
margin-left: 0px;
}
}
.s-panel-img-block {
text-align: center;
-webkit-border-radius: 15px;
border-radius: 15px;
margin-bottom: 20px;
-webkit-box-shadow: 8px 8px 11px rgba(0, 0, 0, 0.03);
box-shadow: 8px 8px 11px rgba(0, 0, 0, 0.03);
background-color: #fff;
}
@media (min-width: 768px) {
.s-panel-img-block {
margin-bottom: 23px;
}
}
.s-p-icon {
-o-object-fit: contain;
object-fit: contain;
width: 125px;
height: 125px;
}
@media (max-width: 767px) {
.s-p-icon {
width: 90px;
height: 80px;
padding: 5px;
}
}
.section-new-img {
width: 100%;
height: 311px;
-o-object-fit: contain;
object-fit: contain;
}
.ts-s-slider-bottom {
position: relative;
}
.ts-s-slider-bottom .js-banner-s-slider-nav {
position: absolute;
left: 30px;
bottom: 30px;
width: 100%;
right: 0;
}
@media (min-width: 768px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
left: 40px;
bottom: 40px;
}
}
@media (min-width: 992px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
left: 30px;
bottom: 30px;
}
}
@media (min-width: 1024px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
left: 48px;
}
}
@media (min-width: 1280px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
left: 83px;
}
}
@media (min-width: 1366px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
left: auto;
right: 0;
width: calc(100% - 832px);
bottom: calc(100% - -86px);
}
}
@media (min-width: 1600px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
width: calc(100% - 972px);
}
}
@media (min-width: 1920px) {
.ts-s-slider-bottom .js-banner-s-slider-nav {
width: calc(100% - 1072px);
}
}
.ts-s-slider-bottom .js-banner-s-slider-nav .slick-track {
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: end;
}
.ts-s-slider-bottom .h5 {
color: #cccbcb;
font-size: 14px;
line-height: 23px;
font-weight: 600;
letter-spacing: 0.7px;
text-transform: uppercase;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
cursor: pointer;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.ts-s-slider-bottom .h5::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
height: 3px;
width: 100%;
background-color: transparent;
}
.ts-s-slider-bottom .slick-current .h5 {
color: #fff;
}
.ts-s-slider-bottom .slick-current .h5::before {
background-color: #dc33a9;
}
.ts-s-slider-bottom .slick-slide {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
width: 23% !important;
margin: 0 29px 0 0;
}
@media (min-width: 1366px) {
.ts-s-slider-bottom .slick-slide {
margin: 0;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
width: 25% !important;
}
}
@media (max-width: 600px) {
.pl-29 {
padding: 0 0 0 29px;
}
}
.new-breadcrumbs .b-cum {
font-size: 14px;
color: #aaa8a8;
font-weight: 400;
}
.new-breadcrumbs .b-cum.c-black {
font-size: 14px;
color: #313558;
font-weight: 500;
}
.data-banner .banner-heading {
color: #363844;
font-weight: 700;
font-size: 26px;
line-height: 38px;
}
@media (min-width: 1024px) {
.data-banner .banner-heading {
font-size: 48px;
line-height: 50px;
}
}
.data-banner .banner-subtitle,
.work-list.online-backup-list .work__title {
color: #dc33a9;
font-size: 20px;
line-height: 30px;
font-weight: 700;
}
@media (min-width: 1024px) {
.data-banner .banner-subtitle {
font-size: 26px;
line-height: 50px;
}
}
.data-banner .banner-imge {
width: 493px;
height: 408px;
}
.sec-description {
color: #515470;
font-size: 16px;
line-height: 30px;
font-weight: 400;
}
@media (min-width: 1024px) {
.sec-description {
font-size: 18px;
line-height: 29px;
}
}
.work-list.online-backup-list .work__title {
color: #313558;
letter-spacing: 1.1px;
}
@media (min-width: 1024px) {
.work-list.online-backup-list .work__title {
font-size: 22px;
line-height: 32px;
}
}
.work-list.online-backup-list .work__desc {
color: #515470;
font-weight: 400;
font-size: 16px;
line-height: 28px;
}
@media (min-width: 1024px) {
.work-list.online-backup-list .work__desc {
font-size: 18px;
line-height: 29px;
}
}
.online-bgimg,
.work-list.online-backup-list .work__icon {
width: 50px;
height: 50px;
-o-object-fit: contain;
object-fit: contain;
margin-top: 107px;
}
.work-list.online-backup-list .work-list__item {
border: 0;
}
.online-bgimg {
width: 100%;
height: auto;
margin-top: 107px !important;
}
@media (min-width: 1024px) {
.online-bgimg {
height: 545px;
margin-top: 0px;
}
}
.slider-space5.new-ser.margin-b4.hpage-ourclient.new-cloud-backup {
-webkit-box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
-webkit-border-radius: 10px;
border-radius: 10px;
background-color: #fff;
padding: 0 !important;
}
.service-panel-cloud {
padding: 30px;
}
@media (min-width: 1024px) {
.service-panel-cloud {
padding: 55px;
}
}
@media (min-width: 1366px) {
.service-panel-cloud-list li:nth-child(even),
.service-panel-cloud-list li:nth-child(odd) {
position: relative;
}
.service-panel-cloud-list li:nth-child(even)::after,
.service-panel-cloud-list li:nth-child(even)::before,
.service-panel-cloud-list li:nth-child(odd)::after,
.service-panel-cloud-list li:nth-child(odd)::before {
position: absolute;
content: "";
background: #f1f1f1;
}
.service-panel-cloud-list li:nth-child(even)::after {
width: 100%;
height: 1px;
bottom: 0;
left: 0;
right: 0;
}
.service-panel-cloud-list li:nth-child(odd)::after {
height: 100%;
width: 1px;
top: 0;
right: 0;
}
.service-panel-cloud-list li:nth-child(odd)::before {
width: 100%;
height: 1px;
bottom: 0;
left: 0;
right: 0;
}
}
.js-banner-s-slider-for li.slick-slide {
position: relative;
}
.bg-gradient-pink-new::after,
.js-banner-s-slider-for li.slick-slide::before {
content: "";
position: absolute;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.js-banner-s-slider-for li.slick-slide::before {
background-image: -webkit-gradient(
linear,
left top,
right top,
from(#313558),
to(#b238c7)
);
background-image: -webkit-linear-gradient(left, #313558 0%, #b238c7 100%);
background-image: -o-linear-gradient(left, #313558 0%, #b238c7 100%);
background-image: linear-gradient(to right, #313558 0%, #b238c7 100%);
opacity: 0.6;
right: 0;
z-index: 0;
}
.opa-z-index {
opacity: 1;
z-index: 2;
}
.talk-heading {
color: #fff;
font-size: 28px;
line-height: 39px;
font-weight: 700;
}
@media (min-width: 1024px) {
.talk-heading {
font-size: 40px;
line-height: 52px;
}
}
.talk-desc {
color: #fff;
font-size: 18px;
line-height: 30px;
font-weight: 600;
}
@media (min-width: 1024px) {
.talk-desc {
font-size: 24px;
line-height: 35px;
}
}
.bg-gradient-pink-new {
background-image: -webkit-linear-gradient(27deg, #33f 0%, #ff3397 100%);
background-image: -o-linear-gradient(27deg, #33f 0%, #ff3397 100%);
background-image: linear-gradient(63deg, #33f 0%, #ff3397 100%);
opacity: 0.88;
}
.bg-gradient-pink-new::after {
left: 0;
z-index: -1;
}
@media (min-width: 1280px) {
.bg-gradient-pink-new::after {
background: url(//terralogic.com/wp-content/themes/terralogic/img/data-recovery/pattern.svg) no-repeat right top;
}
}
.bg-gradient-pink-new::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
right: 0;
bottom: 0;
left: auto;
}
@media (min-width: 1024px) {
.bg-gradient-pink-new::before {
right: 40px;
background: url(//terralogic.com/wp-content/themes/terralogic/img/data-recovery/placeholder.webp) no-repeat right
bottom;
}
}
@media (min-width: 1280px) {
.bg-gradient-pink-new::before {
right: 170px;
}
}
@media (min-width: 1366px) {
.bg-gradient-pink-new::before {
right: 210px;
}
}
.section-padding100 {
padding: 50px 0;
}
@media (min-width: 1024px) {
.section-padding100 {
padding: 100px 0;
}
.w-580 {
width: 580px;
}
} .header-top {
position: fixed !important;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
background-color: #ffffff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
body.admin-bar .header-top {
top: 32px; } .main-top {
padding-top: 0px;
} .header-top.transparent { background-color: #ffffff;
} @media (max-width: 768px) {
.main-top {
padding-top: 0px;
}
}
.btn--primary:focus,
.btn--primary:hover {
background: #33f;
border: 1px solid #33f;
}
.btn-outline-primary {
border: 1px solid #ea74c6;
}
.btn-outline-primary:focus,
.btn-outline-primary:hover {
background: #335fdc;
border: 1px solid #335fdc;
}
@media (min-width: 1366px) {
.tl-view-all-tech {
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
}
.tl-view-all-tech i.icon-link.icon-right-arrow {
top: -6px;
}
}
.d-r-banner-image {
width: 100%;
}
@media (min-width: 1280px) {
.d-r-banner-image {
width: 100%;
margin-top: -5rem;
margin-left: -2rem;
}
.section-center {
height: 100vh;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.js-new-client-slider__content .slick-dots {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
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;
}
.js-new-client-slider__content .slick-dots::before {
display: none;
}
.t-d-update__desc {
max-width: 100%;
}
.s-p-icon {
height: 32px;
width: 120px;
margin: 3.5rem;
}
}.bg-white {
position: relative;
}
@media (min-width: 1366px) {
.bg-white--top:after {
position: absolute;
content: "";
left: 0;
right: 0;
height: 100%;
width: 100%;
background: #fff;
z-index: 0;
pointer-events: none;
top: -80px;
}
}
@media (max-width: 768px) {
.our-expertise-block {
padding: 60px 0;
}
}
@media (min-width: 1366px) {
.mt-160 {
margin-top: -60px;
}
}
.design-audit {
border-bottom: 3px solid #f6f8ff;
padding-bottom: 2.5rem;
}
@media (min-width: 1366px) {
.design-audit {
border-bottom: 0px solid #f6f8ff;
padding-bottom: 5rem;
}
}
.design-audit .service-panel-cloud {
padding: 15px 0;
}
@media (min-width: 1366px) {
.design-audit .service-panel-cloud {
padding: 30px 60px 30px 0;
}
}
.design-audit .service-panel-cloud-list li:nth-child(even)::after,
.design-audit .service-panel-cloud-list li:nth-child(even)::before,
.design-audit .service-panel-cloud-list li:nth-child(odd)::after,
.design-audit .service-panel-cloud-list li:nth-child(odd)::before,
.it-consulting-lists .service-panel-cloud-list li:nth-child(even)::after,
.it-consulting-lists .service-panel-cloud-list li:nth-child(even)::before,
.it-consulting-lists .service-panel-cloud-list li:nth-child(odd)::after,
.it-consulting-lists .service-panel-cloud-list li:nth-child(odd)::before {
background: 0 0;
}
.design-audit .service-card__icon {
margin: 0 0 22px;
width: 40px;
height: 42px;
-o-object-fit: contain;
object-fit: contain;
}
.tl-faq-list h3 {
color: #313558;
font-weight: 600;
font-size: 22px;
line-height: 32px;
margin-bottom: 20px;
}
@media (min-width: 1024px) {
.tl-faq-list h3 {
font-size: 28px;
line-height: 38px;
margin-bottom: 30px;
}
}
.tl-faq-list .lists-data li {
position: relative;
padding-left: 24px;
}
@media (min-width: 1024px) {
.tl-faq-list .lists-data li {
padding-left: 40px;
}
}
.tl-faq-list .lists-data li:before {
width: 8px;
height: 8px;
background-color: #515470;
content: "";
left: 3px;
top: 9px;
position: absolute;
-webkit-border-radius: 50%;
border-radius: 50%;
}
@media (min-width: 1024px) {
.tl-faq-list .lists-data li:before {
width: 12px;
height: 12px;
}
}
.tl-faq-list h5 {
color: #515470;
font-weight: 600;
font-size: 16px;
line-height: 26px;
margin-bottom: 10px;
}
@media (min-width: 1024px) {
.tl-faq-list h5 {
font-size: 18px;
line-height: 30px;
}
.bg-gradient-pink-new.it-professional-section::before {
background: url(//terralogic.com/wp-content/themes/terralogic/img/new-services/it-professional/placeholder.png)
no-repeat right;
bottom: 0;
}
.bg-gradient-pink-new.it-infrastructure-outsourcing-section::before {
background: url(//terralogic.com/wp-content/themes/terralogic/img/new-services/it-infrastructure-outsourcing/placeholder.png)
no-repeat right;
bottom: 0;
}
.bg-gradient-pink-new.it-technical-support-section::before {
background: url(//terralogic.com/wp-content/themes/terralogic/img/new-services/it-technical-support/placeholder.png)
no-repeat right;
bottom: 0;
}
}
.bg-gradient-grey-new {
background: #f6f8ff;
background: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(56%, #f6f8ff),
color-stop(50%, #efeffe)
);
background: -webkit-linear-gradient(bottom, #f6f8ff 56%, #efeffe 50%);
background: -o-linear-gradient(bottom, #f6f8ff 56%, #efeffe 50%);
background: linear-gradient(to top, #f6f8ff 56%, #efeffe 50%);
}
.it-consulting-lists .service-panel-cloud {
-webkit-box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
-webkit-border-radius: 10px;
border-radius: 10px;
background-color: #fff;
border: 0;
}
.section-new-consulting-img {
bottom: 0;
right: 0;
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
@media (min-width: 768px) {
.section-new-consulting-img {
position: absolute;
}
}
.bg-gradient-pink-s.new-bg.no-after:after {
display: none;
}
.text-link-md {
color: #343af5;
font-size: 18px;
font-weight: 400;
letter-spacing: 0.9px;
line-height: 26px;
margin-top: 14px;
display: inline-block;
}
.bg-new-white-shadow {
-webkit-box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03);
background-color: #fff;
}
@media (max-width: 992px) {
.height-fit-content {
height: 100%;
}
}
.new-breadcrumbs .b-cum,
.new-breadcrumbs .b-cum.c-black {
-webkit-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
transition: 0.5s all ease;
}
.new-breadcrumbs .b-cum.c-black:focus,
.new-breadcrumbs .b-cum.c-black:hover,
.new-breadcrumbs .b-cum:focus,
.new-breadcrumbs .b-cum:hover {
-webkit-transition: 0.5s all ease;
-o-transition: 0.5s all ease;
transition: 0.5s all ease;
color: #313558;
}
.work-list li .brd-btm {
position: relative;
}
.work-list li .brd-btm:after {
content: "";
left: 0;
right: 0;
bottom: -30px;
position: absolute;
width: 100%;
height: 1px;
background: #ececec;
}
.work-list li:last-child .brd-btm:after {
background-color: transparent;
}
@media (min-width: 1024px) {
.data-banner .banner-heading {  margin-left: -4px;
}
}
.tl-banner-wrapper-new {
z-index: 4;
}
.tl-banner-wrapper-new::after,
.tl-banner-wrapper-new:before {
position: absolute;
width: 100%;
left: 0;
right: 0;
z-index: 0;
content: "";
pointer-events: none;
}
.tl-banner-wrapper-new:before {
height: 64vh;
top: 0;
background-image: -webkit-gradient(
linear,
left top,
right top,
color-stop(0, #5d33ea),
to(#ff3397)
);
background-image: -webkit-linear-gradient(left, #5d33ea 0, #ff3397 100%);
background-image: -o-linear-gradient(left, #5d33ea 0, #ff3397 100%);
background-image: linear-gradient(90deg, #5d33ea 0, #ff3397 100%);
}
.tl-banner-wrapper-new::after {
height: 50vh;
bottom: 0;
background: #f6f8ff;
}
.mt-nag-4 {
margin-top: -10rem !important;
}
.bg-fff {
background-color: #fff;
}
.thread-cloud .service-card__desc {
padding-left: 3.5rem;
padding-right: 2rem;
margin-bottom: 1rem !important;
}
.thrd-sperate .service-card__desc {
margin-bottom: 0 !important;
}
.how-help-content__pera {
text-align: left;
}
.labs1 {
opacity: 0.15;
color: #6d4cef;
font-size: 40px;
font-weight: 700;
line-height: 53px;
padding-right: 15px;
}
.trd-cont {
font-weight: 600;
}
.pad-des {
padding: 3rem;
margin-top: -5rem;
}