first commit
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
1023
wp-content/themes/thinkai/assets/css/module-css/03-about-section.css
Normal file
1023
wp-content/themes/thinkai/assets/css/module-css/03-about-section.css
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,249 @@
|
||||
/***
|
||||
=============================================
|
||||
Fact Counter style1 Css
|
||||
=============================================
|
||||
***/
|
||||
.fact-counter-style1 {
|
||||
padding: 0px 0px 0px;
|
||||
}
|
||||
|
||||
.fact-counter-style1 .container {
|
||||
max-width: 1750px;
|
||||
}
|
||||
|
||||
.fact-counter-style1__content {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.fact-counter-style1__content ul {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fact-counter-style1__content ul li {
|
||||
position: relative;
|
||||
padding: 0px 0 8px;
|
||||
}
|
||||
|
||||
.fact-counter-style1__content ul li:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100000px;
|
||||
right: -100000px;
|
||||
height: 1px;
|
||||
background-color: var(--thm-border-color);
|
||||
}
|
||||
|
||||
.fact-counter-style1__content ul li:last-child:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
bottom: 0;
|
||||
right: -100000px;
|
||||
height: 1px;
|
||||
background-color: var(--thm-border-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.single-fact-counter {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
li:nth-child(2).single-fact-counter {
|
||||
flex-direction: row-reverse;
|
||||
padding-right: 220px;
|
||||
}
|
||||
|
||||
li:nth-child(2).single-fact-counter .counting {
|
||||
max-width: 300px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
li:nth-child(2).single-fact-counter .big-title {
|
||||
margin-left: 0;
|
||||
margin-right: 120px;
|
||||
}
|
||||
|
||||
li:nth-child(2).single-fact-counter .text {
|
||||
width: 315px;
|
||||
}
|
||||
|
||||
|
||||
.single-fact-counter .counting {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: flex-end;
|
||||
max-width: 470px;
|
||||
width: 100%;
|
||||
top: 4px;
|
||||
}
|
||||
|
||||
.single-fact-counter .counting h2 {
|
||||
color: var(--thm-black);
|
||||
font-size: 72px;
|
||||
line-height: 60px;
|
||||
font-weight: 700;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
.single-fact-counter .counting p {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-left: 15px;
|
||||
top: -8px;
|
||||
color: #a3a0a7;
|
||||
font-size: 21px;
|
||||
line-height: 21px;
|
||||
font-weight: 700;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
.single-fact-counter .text {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
display: block;
|
||||
width: 350px;
|
||||
text-align: right;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.single-fact-counter .text p {
|
||||
color: var(--thm-black);
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
.single-fact-counter .text .dot {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
right: 0;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background-color: var(--thm-primary-color);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.single-fact-counter .big-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-left: 120px;
|
||||
font-size: 120px;
|
||||
line-height: 1.0em;
|
||||
font-weight: 700;
|
||||
font-family: var(--thm-font-2);
|
||||
background-image: linear-gradient(45deg, var(--thm-primary-color), var(--thm-secondary-color));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
-moz-background-clip: text;
|
||||
-moz-text-fill-color: transparent;
|
||||
opacity: 0.20;
|
||||
transition: opacity 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.single-fact-counter:hover .big-title {
|
||||
opacity: 0.50;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Fact Counter style2 Css
|
||||
=============================================
|
||||
***/
|
||||
.fact-counter-style2 {
|
||||
overflow: hidden;
|
||||
padding: 140px 0px 130px;
|
||||
}
|
||||
|
||||
.fact-counter-style2 .row {
|
||||
--bs-gutter-x: 0px;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single::before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0px;
|
||||
bottom: 9px;
|
||||
width: 1px;
|
||||
background: #ced5e8;
|
||||
content: "";
|
||||
}
|
||||
|
||||
li:last-child .fact-counter-style2__single::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.fact-counter-style2__single .round-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: var(--thm-primary-color);
|
||||
border-radius: 50%;
|
||||
margin: 0 auto 22px;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single .counter-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single .counter-box h2 {
|
||||
font-size: 52px;
|
||||
line-height: 0.9em;
|
||||
letter-spacing: 0.04em;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single .counter-box h2 .percent {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
top: 5px;
|
||||
left: -9px;
|
||||
}
|
||||
|
||||
.fact-counter-style2__single .counter-box h2 .sec {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
text-transform: capitalize;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
.fact-counter-style2 .odometer.odometer-auto-theme,
|
||||
.fact-counter-style2 .odometer.odometer-theme-default {
|
||||
font-family: var(--thm-font-2);
|
||||
line-height: 0.9em;
|
||||
}
|
||||
@@ -0,0 +1,911 @@
|
||||
/***
|
||||
=============================================
|
||||
Testimonial Style1 Css
|
||||
=============================================
|
||||
***/
|
||||
.testimonial-style1 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 140px 0px 140px;
|
||||
overflow: hidden;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.testimonial-style1__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-top: 1px solid var(--thm-border-color);
|
||||
padding-top: 60px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.testimonial-style1__inner::before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
width: 1px;
|
||||
margin: 0 auto;
|
||||
background: var(--thm-border-color);
|
||||
content: "";
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
width: 260px;
|
||||
height: 260px;
|
||||
background: #fbf8ff;
|
||||
border-radius: 50%;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .icon {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .icon span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .review-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .text-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .text-box h3 {
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.testimonial-style1__middle-content .text-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.testimonial-style1__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .icon-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .icon-box span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 35px;
|
||||
line-height: 35px;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .text {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .text p {
|
||||
font-size: 20px;
|
||||
line-height: 36px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .author-info {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .author-info h2 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.testimonial-style1__single .author-info p {
|
||||
color: var(--thm-primary-color);
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-top: 33px;
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom .img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: var(--thm-border-radius);
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom .img-box img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom .date-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom .date-box h4 {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-weight: 600;
|
||||
font-family: var(--thm-font);
|
||||
}
|
||||
|
||||
.testimonial-style1__single-bottom .date-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Testimonials Style2 Css
|
||||
=============================================
|
||||
***/
|
||||
.testimonials-style2 {
|
||||
padding: 140px 0px 132px;
|
||||
}
|
||||
|
||||
.testimonials-style2__top {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.testimonials-style2__top .sec-title {
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.testimonials-style2__top .btn-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
.testimonials-style2__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonials-style2__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
border-radius: var(--thm-border-radius);
|
||||
padding: 37px 35px 45px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .icon-box {
|
||||
position: absolute;
|
||||
right: 35px;
|
||||
bottom: 0px;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .icon-box span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: #d9e1f4;
|
||||
font-size: 145px;
|
||||
line-height: 145px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .title-box h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .title-box p {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.testimonials-style2__single .text-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .text-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .review-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 38px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .review-box ul li i {
|
||||
color: var(--thm-secondary-color);
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box .img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-radius: var(--thm-border-radius);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box .img-box img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box .date-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box .date-box h4 {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.testimonials-style2__single .author-info-box .date-box p {
|
||||
color: #6c7674;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*------------------------------------------
|
||||
Testimonial Style3 Css
|
||||
--------------------------------------------*/
|
||||
.testimonial-style3 {
|
||||
padding: 140px 0px 132px;
|
||||
}
|
||||
|
||||
.testimonial-style3 .sec-title {
|
||||
padding-bottom: 56px;
|
||||
}
|
||||
|
||||
.testimonial-style3__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style3__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 7px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .title {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .title .icon-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-top: -7px;
|
||||
margin-right: 9px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .title h3 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.testimonial-style3__single-content-box .rating-box {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 34px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .rating-box ul {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .rating-box ul li {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .rating-box ul li+li {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .rating-box ul li span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: #fbaf02;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.testimonial-style3__single-content-box .text {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style3__single-content-box .text p {
|
||||
font-size: 20px;
|
||||
line-height: 36px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
|
||||
.testimonial-style3__single .customer-info {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 52px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single .customer-info .img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.testimonial-style3__single .customer-info .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single .customer-info .title-box h3 {
|
||||
font-size: 21px;
|
||||
line-height: 30px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.testimonial-style3__single .customer-info .title-box span {
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-family: var(--thm-font);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.testimonial-style3__items-nav {
|
||||
position: absolute;
|
||||
left: 130px;
|
||||
bottom: 0;
|
||||
right: 130px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-next,
|
||||
.testimonial-style3__items-nav .swiper-button-prev {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 50px;
|
||||
height: 70px;
|
||||
margin-top: 0;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #ffffff;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
font-family: var(--thm-font-2);
|
||||
transform: translateY(-50%);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-next:after,
|
||||
.testimonial-style3__items-nav .swiper-button-prev:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-next i,
|
||||
.testimonial-style3__items-nav .swiper-button-prev i {
|
||||
font-size: 34px;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-prev i {
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-next i {
|
||||
margin-left: 7px;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-prev {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.testimonial-style3__items-nav .swiper-button-next {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.testimonial-style3__items-nav--style2 .swiper-button-next,
|
||||
.testimonial-style3__items-nav--style2 .swiper-button-prev {
|
||||
color: var(--thm-black);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Google Reviews Style1 Css
|
||||
=============================================
|
||||
***/
|
||||
.google-reviews-style1 {
|
||||
position: relative;
|
||||
display: block;
|
||||
background-image: -moz-linear-gradient(0deg, rgb(102, 201, 136) 15%, rgb(198, 245, 175) 100%);
|
||||
background-image: -webkit-linear-gradient(0deg, rgb(102, 201, 136) 15%, rgb(198, 245, 175) 100%);
|
||||
background-image: -ms-linear-gradient(0deg, rgb(102, 201, 136) 15%, rgb(198, 245, 175) 100%);
|
||||
padding: 15px 0px 15px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .google-reviews {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--thm-white);
|
||||
padding: 10px 15px 10px;
|
||||
border-radius: 22px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .google-reviews .icon-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .google-reviews .icon-box span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-size: 25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .google-reviews .text {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .google-reviews .text p {
|
||||
color: var(--thm-black);
|
||||
line-height: 25px;
|
||||
font-weight: 600;
|
||||
text-transform: capitalize;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
|
||||
.google-reviews-style1__inner .review-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .review-box ul li i {
|
||||
color: var(--thm-white);
|
||||
font-size: 20px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
|
||||
.google-reviews-style1__inner .text-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-left: 19px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .text-box h2 {
|
||||
font-size: 24px;
|
||||
line-height: 34px;
|
||||
}
|
||||
|
||||
.google-reviews-style1__inner .text-box h2 span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font-size: 18px;
|
||||
font-family: var(--thm-font);
|
||||
font-weight: 400;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Testimonials Style4 Css
|
||||
=============================================
|
||||
***/
|
||||
.testimonials-style4 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 140px 0px 140px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.testimonials-style4__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonials-style4__inner.style2 {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
.testimonials-style4__inner ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: nowrap;
|
||||
width: max-content;
|
||||
}
|
||||
|
||||
.testimonials-style4__inner ul li {
|
||||
position: relative;
|
||||
display: block;
|
||||
float: left;
|
||||
margin-left: 470px;
|
||||
}
|
||||
|
||||
.testimonials-style4__single {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.testimonials-style4__single .big-title {
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
right: -425px;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.testimonials-style4__single .big-title h2 {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: #191b1a;
|
||||
font-size: 185px;
|
||||
line-height: 0.9em;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.testimonials-style4__single .big-title h2:after {
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
white-space: nowrap;
|
||||
content: attr(data-hover);
|
||||
transition: all 0.9s cubic-bezier(0.17, 0.67, 0.32, 0.87);
|
||||
color: #202321;
|
||||
}
|
||||
|
||||
.testimonials-style4__single:hover .big-title h2:after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonials-style4__single .big-title.style2 h2 {
|
||||
color: transparent;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-stroke: 1px #202321;
|
||||
}
|
||||
|
||||
.testimonials-style4__single-img {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonials-style4__video {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: -30px;
|
||||
transform: translateY(-50%);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.testimonials-style4__video a {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background: var(--thm-white);
|
||||
border-radius: 50%;
|
||||
color: var(--thm-black);
|
||||
font-size: 15px;
|
||||
line-height: 15px;
|
||||
}
|
||||
|
||||
.testimonials-style4__video a:hover {
|
||||
color: var(--thm-white);
|
||||
background: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.testimonials-style4__single-img .inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
overflow: hidden;
|
||||
border-radius: 50%;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
.testimonials-style4__single-img .inner img {
|
||||
width: 100%;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.testimonials-style4__single-text {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-left: 60px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.testimonials-style4__single-text h2 {
|
||||
font-size: 24px;
|
||||
line-height: 30px;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.testimonials-style4__single-text p {
|
||||
color: var(--thm-primary-color);
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Testimonials Style5 Css
|
||||
=============================================
|
||||
***/
|
||||
.testimonial-style5 {
|
||||
background-color: #f9f6f3;
|
||||
padding: 140px 0px 118px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.testimonial-style5__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style5__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-radius: var(--thm-border-radius);
|
||||
background-color: var(--thm-white);
|
||||
padding: 39px 40px 33px;
|
||||
padding-right: 35px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single .overlay-icon {
|
||||
position: absolute;
|
||||
bottom: 75px;
|
||||
right: 40px;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.testimonial-style5__single .overlay-icon span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
-moz-background-clip: text;
|
||||
-moz-text-fill-color: transparent;
|
||||
background-image: linear-gradient(0deg, rgba(249, 246, 243, 0.258140756302521) 9%, rgba(249, 246, 243, 1) 60%, rgba(249, 246, 243, 1) 100%);
|
||||
font-size: 120px;
|
||||
line-height: 120px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single .review-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-title h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-title h3 a {
|
||||
color: var(--thm-black);
|
||||
}
|
||||
|
||||
.testimonial-style5__single-title h3 a:hover {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.testimonial-style5__single-video {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 29px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-video a {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: #a5a1a0;
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
font-family: var(--thm-font-2);
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-video a:hover {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.testimonial-style5__single-video a span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 16px;
|
||||
line-height: 16px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.testimonial-style5__single-author-info {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-top: 33px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-author-info .img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 70px;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-author-info .img-box img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-author-info .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-author-info .title-box h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
.testimonial-style5__single-author-info .title-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.testimonial-style5-carousel.owl-nav-style-one {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.testimonial-style5-carousel.owl-nav-style-one.owl-theme .owl-nav {
|
||||
border: 0px solid var(--thm-border-color);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*---------------------------------------
|
||||
Testimonial Page One Css
|
||||
-----------------------------------------*/
|
||||
@@ -0,0 +1,228 @@
|
||||
/***
|
||||
=============================================
|
||||
Partner Style1 Css
|
||||
=============================================
|
||||
***/
|
||||
.partner-style1 {
|
||||
padding: 0px 0px 140px;
|
||||
}
|
||||
|
||||
.partner-style1__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-right: 1px solid var(--thm-border-color);
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.partner-style1__single .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.partner-style1__single .title-box h3 {
|
||||
font-size: 21px;
|
||||
line-height: 20px;
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
|
||||
.partner-style1__single .title-box h3 a {
|
||||
color: var(--thm-black);
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.partner-style1__single .title-box h3 a:hover {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.partner-style1__single .title-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
.partner-style1__single .logo-box {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
padding-top: 53px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.partner-style1__single .logo-box a {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.partner-style1__single .logo-box a img {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.partner-style1__single .logo-box .btn-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.partner-style1__single .logo-box .btn-box a {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transform: translateX(50px);
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 34px;
|
||||
background: rgba(var(--thm-primary-color-rgb), .10);
|
||||
border-radius: var(--thm-border-radius);
|
||||
transition: all 500ms linear;
|
||||
}
|
||||
|
||||
.partner-style1__single:hover .logo-box .btn-box a {
|
||||
transform: translateX(0px);
|
||||
transition: background-color 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
.partner-style1__single:hover .logo-box .btn-box a:hover {
|
||||
color: var(--thm-white);
|
||||
background: rgba(var(--thm-primary-color-rgb), 0.95);
|
||||
}
|
||||
|
||||
|
||||
.partner-style1-carousel.owl-nav-style-one.owl-theme {
|
||||
border-left: 1px solid var(--thm-border-color);
|
||||
padding-left: 19px;
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
.partner-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
|
||||
position: absolute;
|
||||
top: -120px;
|
||||
right: 0px;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Partner Style2 Css
|
||||
=============================================
|
||||
***/
|
||||
.partner-style2 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0px 0px 172px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.partner-style2 .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 55px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.partner-style2 .title-box::before {
|
||||
position: absolute;
|
||||
top: 17px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background: var(--thm-border-color);
|
||||
content: "";
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.partner-style2 .title-box .inner {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
background: #e6edff;
|
||||
padding: 0px 20px 0px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.partner-style2 .title-box .inner h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
}
|
||||
|
||||
.partner-style2 .auto-container {
|
||||
max-width: 1830px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.partner-style2__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.single-partner-logo-box-style2 {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.single-partner-logo-box-style2 a {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.single-partner-logo-box-style2 a img {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Partner Style2 In Style3 Css
|
||||
=============================================
|
||||
***/
|
||||
.partner-style2--style3 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0px 0px 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.partner-style2--style3 .title-box .inner {
|
||||
background: var(--thm-black-bg);
|
||||
}
|
||||
|
||||
.partner-style2--style3 .single-partner-logo-box-style2 a {
|
||||
background-color: var(--thm-black-bg);
|
||||
}
|
||||
|
||||
.partner-style2--style3 .single-partner-logo-box-style2 a img {
|
||||
mix-blend-mode: luminosity;
|
||||
opacity: 0.80;
|
||||
}
|
||||
|
||||
.partner-style2--style3 .single-partner-logo-box-style2:hover a img {
|
||||
opacity: 1.0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Partner Style2 In Style4 Css
|
||||
=============================================
|
||||
***/
|
||||
.partner-style2--style4 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0px 0px 140px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.partner-style2--style4 .title-box .inner {
|
||||
background: #fbf8ff;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
2568
wp-content/themes/thinkai/assets/css/module-css/08-blog-section.css
Normal file
2568
wp-content/themes/thinkai/assets/css/module-css/08-blog-section.css
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,123 @@
|
||||
/***
|
||||
=============================================
|
||||
Breadcrumb style1
|
||||
=============================================
|
||||
***/
|
||||
.breadcrumb-style1 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 235px 0 238px;
|
||||
z-index: 10;
|
||||
background-color: #677b86;
|
||||
}
|
||||
|
||||
.m-t130{
|
||||
margin-top: 130px;
|
||||
}
|
||||
|
||||
.breadcrumb-style1 #particles-js {
|
||||
top: -180px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.breadcrumb-style1-bg {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
background-attachment: scroll;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
|
||||
.breadcrumb-style1 .inner-content {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.breadcrumb-style1 .title {
|
||||
position: relative;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.breadcrumb-style1 .title h2 {
|
||||
color: #ffffff;
|
||||
font-size: 60px;
|
||||
line-height: 1.2em;
|
||||
font-weight: 700;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Scrolling Text Style6
|
||||
=============================================
|
||||
***/
|
||||
.scrolling-text-style6 {
|
||||
position: absolute;
|
||||
top: -85px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: nowrap;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner ul li {
|
||||
position: relative;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
float: left;
|
||||
font-size: 120px;
|
||||
line-height: 1.3em;
|
||||
font-weight: 700;
|
||||
text-transform: none;
|
||||
font-family: var(--thm-font-2);
|
||||
margin-left: 90px;
|
||||
transition: all .4s ease;
|
||||
color: transparent;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-stroke: 2px var(--thm-primary-color);
|
||||
opacity: 0.50;
|
||||
transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner ul li:hover {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner ul li:before {
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
color: var(--thm-primary-color);
|
||||
white-space: nowrap;
|
||||
content: attr(data-hover);
|
||||
transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
|
||||
}
|
||||
|
||||
.scrolling-text-style6 .inner ul li:hover:before {
|
||||
width: 100%;
|
||||
}
|
||||
484
wp-content/themes/thinkai/assets/css/module-css/10-contact.css
Normal file
484
wp-content/themes/thinkai/assets/css/module-css/10-contact.css
Normal file
@@ -0,0 +1,484 @@
|
||||
/***
|
||||
=============================================
|
||||
Main Contact Form Css
|
||||
=============================================
|
||||
***/
|
||||
.main-contact-form {
|
||||
padding: 130px 0px 140px;
|
||||
}
|
||||
|
||||
.main-contact-form__shape1 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: -200px;
|
||||
}
|
||||
|
||||
.main-contact-form .scrolling-text-style6 {
|
||||
top: 45px;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.main-contact-form #particles-js {
|
||||
top: -50px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 180px;
|
||||
}
|
||||
|
||||
|
||||
.main-contact-form__img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-right: 70px;
|
||||
}
|
||||
|
||||
.main-contact-form__img-box .inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.main-contact-form__img-box .inner img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.main-contact-form__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 180px;
|
||||
}
|
||||
|
||||
.main-contact-form__inner .sec-title {
|
||||
padding-bottom: 45px;
|
||||
}
|
||||
|
||||
.subject-category-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.subject-category-box .inner-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.subject-category-box .inner-title h5 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.subject-category-box__list {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin-left: -5px;
|
||||
margin-right: -5px;
|
||||
}
|
||||
|
||||
.subject-category-box__list li {
|
||||
position: relative;
|
||||
display: block;
|
||||
float: left;
|
||||
padding: 0px 5px 10px;
|
||||
}
|
||||
|
||||
.subject-category-box__list li input[type=radio] {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.subject-category-box__list li label {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
background-color: transparent;
|
||||
border: 1px solid #e3dfe8;
|
||||
color: #a3a0a7;
|
||||
font-size: 13px;
|
||||
line-height: 38px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 0;
|
||||
border-radius: 20px;
|
||||
cursor: pointer;
|
||||
font-family: var(--thm-font-2);
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.subject-category-box__list li :checked+label {
|
||||
color: #ffffff;
|
||||
background-color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.contact-form {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 13px;
|
||||
}
|
||||
|
||||
.contact-form form {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.contact-form form .form-group {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 23px;
|
||||
}
|
||||
|
||||
.contact-form form .form-group .label-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 13px;
|
||||
}
|
||||
|
||||
.contact-form form .form-group .label-box label {
|
||||
position: relative;
|
||||
display: block;
|
||||
color: var(--thm-black);
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
font-family: var(--thm-font-2);
|
||||
font-weight: 600;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.contact-form form .input-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.contact-form form .input-box .icon-box {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.contact-form form .input-box .icon-box span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 15px;
|
||||
line-height: 15px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"],
|
||||
.contact-form form input[type="email"],
|
||||
.contact-form form textarea {
|
||||
position: relative;
|
||||
display: block;
|
||||
background: transparent;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
color: #a3a0a7;
|
||||
font-size: 16px;
|
||||
font-family: var(--thm-font);
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
padding-left: 20px;
|
||||
padding-right: 80px;
|
||||
border-radius: 10px;
|
||||
transition: all 500ms ease;
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"]:focus,
|
||||
.contact-form form input[type="email"]:focus,
|
||||
.contact-form form textarea:focus {
|
||||
border: 1px solid var(--thm-primary-color);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.contact-form form textarea {
|
||||
height: 160px;
|
||||
padding-top: 13px;
|
||||
padding-left: 20px;
|
||||
padding-right: 80px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"]::-webkit-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"]:-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"]::-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="text"]:-ms-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="email"]::-webkit-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="email"]:-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="email"]::-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form input[type="email"]:-ms-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form textarea::-webkit-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form textarea:-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form textarea::-moz-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
.contact-form form textarea:-ms-input-placeholder {
|
||||
color: var(--thm-gray);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.contact-form form .button-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.contact-form form .button-box button {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.contact-form form .button-box button.btn-one {
|
||||
position: relative;
|
||||
display: block;
|
||||
max-width: 570px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.contact-form form .button-box button.btn-one::before {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.contact-form form .button-box button.btn-one:hover::after {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Contact Info Style2 Css
|
||||
=============================================
|
||||
***/
|
||||
.contact-info-style2 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0px 0px 140px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.contact-info-style2__single {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: 10px;
|
||||
background-color: var(--thm-white);
|
||||
padding: 50px 0px 48px;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .shape-1 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .shape-2 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .icon-box {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 50%;
|
||||
background-color: #fbf8ff;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 23px;
|
||||
transition: all 500ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.contact-info-style2__single:hover .icon-box {
|
||||
background-color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.contact-info-style2__single .icon-box span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 35px;
|
||||
line-height: 35px;
|
||||
transition: all 300ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.contact-info-style2__single:hover .icon-box span {
|
||||
color: var(--thm-white);
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
|
||||
.contact-info-style2__single .text-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .text-box p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .phone-number-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .phone-number-box h3 {
|
||||
font-size: 21px;
|
||||
line-height: 31px;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .phone-number-box h3 a {
|
||||
color: var(--thm-black);
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.contact-info-style2__single .phone-number-box h3 a:hover {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.contact-info-style2__socel-links {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 55px;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li+li {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li a {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
border-radius: 50%;
|
||||
background: #f0ebf5;
|
||||
color: #a3a0a7;
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li a::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
bottom: 0px;
|
||||
right: 0px;
|
||||
border-radius: 50%;
|
||||
opacity: 0;
|
||||
background-color: var(--thm-primary-color);
|
||||
transform: scale(0.5);
|
||||
transform-style: preserve-3d;
|
||||
transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.contact-info-style2__socel-links ul li a:hover::before {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
End Css
|
||||
=============================================
|
||||
***/
|
||||
@@ -0,0 +1,761 @@
|
||||
/*
|
||||
-----------------------------------------
|
||||
Service style2 Css
|
||||
-----------------------------------------
|
||||
*/
|
||||
.service-style1 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 80px 0 140px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.service-style1 .particular {
|
||||
top: 0;
|
||||
left: -200px;
|
||||
right: -200px;
|
||||
height: 350px;
|
||||
bottom: auto;
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
.service-style1__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-style1__inner ul {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.service-style1__inner ul+ul {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.service-style1__inner ul li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
color: var(--thm-white);
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
font-weight: 700;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
.service-style1__inner ul li sup {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding-right: 2px;
|
||||
font-size: 14px;
|
||||
line-height: 14px;
|
||||
color: var(--thm-primary-color);
|
||||
top: -12px;
|
||||
}
|
||||
|
||||
.service-style1__inner ul li a {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
color: var(--thm-white);
|
||||
font-size: 36px;
|
||||
padding: 6px 6px 6px;
|
||||
padding-right: 20px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
.service-style1__inner ul li a span {
|
||||
position: relative;
|
||||
margin-right: 8px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
background-color: var(--thm-primary-color);
|
||||
border-radius: 50%;
|
||||
color: var(--thm-white);
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
|
||||
.service-style1__inner ul li:hover a {
|
||||
color: var(--thm-primary-color);
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
-----------------------------------------
|
||||
Service Details Css
|
||||
-----------------------------------------
|
||||
*/
|
||||
.service-details {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 140px 0 140px;
|
||||
}
|
||||
|
||||
.thm-sidebar-box-style2__service-details {
|
||||
padding-left: 0;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list .inner-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
background-color: var(--thm-primary-color);
|
||||
padding: 15px 29px 15px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list .inner-title h3 {
|
||||
color: var(--thm-white);
|
||||
font-size: 21px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul {
|
||||
position: relative;
|
||||
display: block;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
border-top: none;
|
||||
border-bottom-left-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li+li {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li a {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 13px 30px 13px;
|
||||
border-top: 1px solid var(--thm-border-color);
|
||||
border-bottom: 1px solid var(--thm-border-color);
|
||||
color: var(--thm-black);
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
font-family: var(--thm-font-2);
|
||||
font-weight: 700;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li:last-child a {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li a:hover,
|
||||
.sidebar-service-page-list ul li.active a {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li a .icon-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li a .icon-box span {
|
||||
color: #a9a6ad;
|
||||
font-size: 18px;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.sidebar-service-page-list ul li a:hover .icon-box span,
|
||||
.sidebar-service-page-list ul li.active a .icon-box span {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.service-details__content {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-details__content-top {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 43px;
|
||||
}
|
||||
|
||||
.service-details__content-top h2 {
|
||||
font-size: 44px;
|
||||
line-height: 1.2em;
|
||||
margin-top: -10px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.service-details__content-top p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.service-details-video-holder {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 500px;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.service-details-video-holder__bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: scroll;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
.service-details-video-holder .overlay-title {
|
||||
position: absolute;
|
||||
bottom: 25px;
|
||||
right: 30px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.service-details-video-holder .overlay-title h4 {
|
||||
color: var(--thm-white);
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
}
|
||||
|
||||
.service-details-video-holder .icon {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-details-video-holder .icon .video-popup {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 75px;
|
||||
height: 60px;
|
||||
border-radius: 10px;
|
||||
background-color: #dd352e;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.service-details-video-holder .icon .video-popup:hover {
|
||||
background-color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.service-details-video-holder .icon .video-popup span {
|
||||
color: var(--thm-white);
|
||||
font-size: 30px;
|
||||
line-height: 30px;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.service-details-video-holder .icon .video-popup:hover span {
|
||||
color: var(--thm-white);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.service-details__text2 {
|
||||
position: relative;
|
||||
display: block;
|
||||
border-left: 4px solid var(--thm-primary-color);
|
||||
padding-left: 20px;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.service-details__text2 p {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
font-family: var(--thm-font-2);
|
||||
font-weight: 600;
|
||||
background-image: linear-gradient(45deg, var(--thm-primary-color), var(--thm-secondary-color));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
-moz-background-clip: text;
|
||||
-moz-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.service-details__text3 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 33px;
|
||||
}
|
||||
|
||||
.service-details__text3 p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.services-and-applications-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 44px;
|
||||
}
|
||||
|
||||
.services-and-applications-box .row {
|
||||
--bs-gutter-x: 10px;
|
||||
}
|
||||
|
||||
.services-and-applications-box .inner-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 33px;
|
||||
}
|
||||
|
||||
.services-and-applications-box .inner-title h3 {
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.services-and-applications-box .inner-title p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: 10px;
|
||||
border: 1px solid var(--thm-border-color);
|
||||
background-color: transparent;
|
||||
padding: 30px 10px 22px;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box:hover {
|
||||
border: 1px solid #f0ebf5;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .static-content {
|
||||
position: relative;
|
||||
display: block;
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
transition: all 0.5s ease-in-out 0.2s;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box:hover .static-content {
|
||||
transform: translateY(-70px);
|
||||
transition: all 0.5s ease-in-out 0.5s;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .number-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 12px;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .number-box span {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
border-radius: 50%;
|
||||
background-color: #f0ebf5;
|
||||
margin: 0 auto;
|
||||
color: #a3a0a7;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
font-family: var(--thm-font-2);
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .title-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .title-box h4 {
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .btn-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
line-height: 0;
|
||||
padding-top: 11px;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .btn-box a {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .btn-box a span {
|
||||
color: #a4a1a8;
|
||||
font-size: 30px;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .btn-box a:hover span {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .overlay-content {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: #f0ebf5;
|
||||
text-align: center;
|
||||
padding: 23px 10px 20px;
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 0.5s ease-in-out 0.3s;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box:hover .overlay-content {
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .overlay-content h4 {
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
margin: 0 0 11px;
|
||||
}
|
||||
|
||||
.services-and-applications__single-box .overlay-content p {
|
||||
color: #6d6b71;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.service-details__text4 {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 31px;
|
||||
}
|
||||
|
||||
.service-details__text4 .inner-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.service-details__text4 .inner-title h2 {
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.service-details__text4 p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.service-details__text4 .btn-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 27px;
|
||||
}
|
||||
|
||||
.service-details__text4 .btn-box a {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: var(--thm-black);
|
||||
font-size: 16px;
|
||||
line-height: 25px;
|
||||
font-family: var(--thm-primary-color);
|
||||
font-weight: 700;
|
||||
transition: all 200ms linear;
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.service-details__text4 .btn-box a:hover {
|
||||
color: var(--thm-primary-color);
|
||||
}
|
||||
|
||||
.service-details__text4 .btn-box a span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
color: var(--thm-primary-color);
|
||||
font-size: 25px;
|
||||
font-weight: 600;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.service-details__img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 43px;
|
||||
}
|
||||
|
||||
.service-details__img-box .single-img-box {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.service-details__img-box .single-img-box::before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: var(--thm-black);
|
||||
opacity: 0;
|
||||
z-index: 1;
|
||||
transition: all 0.5s ease 0s;
|
||||
}
|
||||
|
||||
.service-details__img-box .single-img-box:hover::before {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.service-details__img-box .single-img-box img {
|
||||
width: 100%;
|
||||
transform: scale(1);
|
||||
transition: all 1500ms ease 0s;
|
||||
}
|
||||
|
||||
.service-details__img-box .single-img-box:hover img {
|
||||
transform: scale(1.05) rotate(0deg);
|
||||
}
|
||||
|
||||
|
||||
|
||||
.universal-image-generator {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-top: 21px;
|
||||
}
|
||||
|
||||
.universal-image-generator .inner-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.universal-image-generator .inner-title h2 {
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.universal-image-generator .inner-title p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
Service Page Css
|
||||
=============================================
|
||||
***/
|
||||
.service-page {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 140px 0px 0px;
|
||||
}
|
||||
|
||||
.service-page__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-page__inner-overlay-title {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 236px;
|
||||
text-align: center;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.service-page__inner-overlay-title h2 {
|
||||
font-size: 72px;
|
||||
line-height: 1.3em;
|
||||
background-image: linear-gradient(45deg, var(--thm-primary-color), var(--thm-secondary-color));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
-moz-background-clip: text;
|
||||
-moz-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.service-page__top {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-page__top-img {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-page__top-img__inner {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: 10px;
|
||||
max-width: 370px;
|
||||
}
|
||||
|
||||
.service-page__top-img__inner img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box {
|
||||
position: absolute;
|
||||
bottom: 65px;
|
||||
right: 0px;
|
||||
max-width: 200px;
|
||||
width: 100%;
|
||||
border-radius: 10px;
|
||||
background-color: var(--thm-primary-color);
|
||||
padding: 17px 30px 23px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.service-page__shape1 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box .top-title {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 35px;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box .top-title h2 {
|
||||
color: var(--thm-white);
|
||||
font-size: 52px;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box .top-title h4 {
|
||||
color: var(--thm-white);
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box .bottom-text {
|
||||
position: relative;
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.service-page__top-img .overlay-box .bottom-text h4 {
|
||||
color: var(--thm-white);
|
||||
font-size: 19px;
|
||||
line-height: 29px;
|
||||
}
|
||||
|
||||
.service-page__top-text {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 69px 100px 0px;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.service-page__top-text p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.service-page__bottom {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-top: -115px;
|
||||
}
|
||||
|
||||
.service-page__bottom .row {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.service-page__bottom-text {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-right: 100px;
|
||||
padding-bottom: 73px;
|
||||
}
|
||||
|
||||
.service-page__bottom-text p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.service-page__bottom-img {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.service-page__bottom-img img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/***
|
||||
=============================================
|
||||
End Css
|
||||
=============================================
|
||||
***/
|
||||
2534
wp-content/themes/thinkai/assets/css/module-css/12-shop.css
Normal file
2534
wp-content/themes/thinkai/assets/css/module-css/12-shop.css
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user