13538 lines
250 KiB
CSS
13538 lines
250 KiB
CSS
:root {
|
|
--color-black: #1a1a1a;
|
|
--color-darks: #333333;
|
|
--color-greys: #cccccc;
|
|
--color-light: #f5f5f5;
|
|
--color-white: #ffffff;
|
|
--color-blues: #3c83f6;
|
|
--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
|
|
0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
|
|
0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
|
|
0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
--Yellow: rgb(255, 195, 31);
|
|
--site-gradient: radial-gradient(circle, hwb(221 0% 37% / 0.678) 0, #000063d9 50%, #000e2b 85%);
|
|
--site-gradient-dark: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
--light-dark: #252525;
|
|
--dark-44: #444;
|
|
--theme-blue: #0071dc;
|
|
--Dark-blue: #070b3b;
|
|
--dark-blue-60: #070f60;
|
|
--light-blue: #bbddff;
|
|
--scrollbar-color: #2831cf;
|
|
--light-blue: #28e4fd;
|
|
--light-white-e1e1: #e1e1e1;
|
|
--light-white-f8f8: #f8f8f8;
|
|
--cloud-infrastructure-background: radial-gradient(at 95% 7%, #45bcc9 0, #45bcc900 60%),
|
|
radial-gradient(at 95% 93%, #fae500 0, #fae50000 60%),
|
|
radial-gradient(at 6% 6%, #0060fa 15%, rgba(0, 96, 250, 0.001) 80%),
|
|
radial-gradient(at 6% 94%, #fff 0, #ffffff00 60%);
|
|
--iot-bg: #013f52;
|
|
--title-blue-dark: #000259;
|
|
--page-background-color: #070b3b;
|
|
--gradient-color-1: #fae500;
|
|
--gradient-color-2: #3c83f6;
|
|
--color-status-green: #05947C;
|
|
}
|
|
|
|
@import "https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap";
|
|
|
|
@font-face {
|
|
font-family: "Gilroy-Regular";
|
|
src: url(../fonts/Gilroy-Regular.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Gilroy-Thin";
|
|
src: url(../fonts/Gilroy-Thin.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Gilroy-Black";
|
|
src: url(../fonts/Gilroy-Black.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Gilroy-Heavy";
|
|
src: url(../fonts/Gilroy-Heavy.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Gilroy-SemiBold";
|
|
src: url(../fonts/Gilroy-SemiBold.ttf);
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--scrollbar-color);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
body {
|
|
font-size: 15px;
|
|
line-height: 1.6;
|
|
font-family: "Gilroy-Regular" !important;
|
|
color: var(--dark-44);
|
|
font-weight: 400;
|
|
}
|
|
|
|
p {
|
|
color: var(--dark-44);
|
|
font-weight: 400;
|
|
}
|
|
|
|
a {
|
|
display: inline-block;
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
text-decoration: none;
|
|
}
|
|
|
|
button {
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: 0;
|
|
}
|
|
|
|
button:focus {
|
|
outline: 0;
|
|
border: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: 600;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
h3 {
|
|
font-size: 22px;
|
|
}
|
|
|
|
select,
|
|
select.form-control,
|
|
select.custom-file-control {
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.d-table {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.d-table-cell {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.p-40 {
|
|
padding: 40px !important;
|
|
}
|
|
|
|
.ptb-100 {
|
|
padding-top: 100px;
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
.pt-100 {
|
|
padding-top: 100px;
|
|
}
|
|
|
|
.pt-80 {
|
|
padding-top: 80px;
|
|
}
|
|
|
|
.ptb-70 {
|
|
padding-top: 70px;
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.mtb-70 {
|
|
margin-bottom: 70px;
|
|
margin-top: 70px;
|
|
}
|
|
|
|
.pb-100 {
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
.pb-70 {
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.pb-50 {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.pt-50 {
|
|
padding-top: 50px;
|
|
}
|
|
|
|
.pt-45 {
|
|
padding-top: 45px;
|
|
}
|
|
|
|
.pt-20 {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.mt-30 {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.ml-25 {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.ml-20 {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.mr-20 {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.mt-50 {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.mt-100 {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.mb-100 {
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
.mb-50 {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.ml-auto {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.margin-auto {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.border-radius-50 {
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.border-radius-5 {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.z-index-one {
|
|
z-index: 1;
|
|
}
|
|
|
|
.box-shadow {
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.section-title span {
|
|
margin-bottom: 8px;
|
|
font-weight: 600;
|
|
display: block;
|
|
}
|
|
|
|
|
|
|
|
.section-title p {
|
|
padding-top: 10px;
|
|
margin-bottom: 0;
|
|
max-width: 530px;
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.about-area .section-title .section-index-title {
|
|
font-size: 35px;
|
|
font-weight: 600;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
line-height: 1.2;
|
|
color: var(--Dark-blue);
|
|
padding-bottom: 14px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.technology-area .section-title .section-index-title {
|
|
font-size: 35px;
|
|
font-weight: 600;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
line-height: 1.2;
|
|
color: var(--color-white);
|
|
padding-bottom: 14px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.section-title .section-index-title {
|
|
font-size: 35px;
|
|
font-weight: 600;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
line-height: 1.2;
|
|
color: var(--Dark-blue);
|
|
padding-bottom: 14px;
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.section-title .section-index-provide-title {
|
|
font-size: 35px;
|
|
font-weight: 600;
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
line-height: 1.2;
|
|
color: var(--Dark-blue);
|
|
padding-bottom: 14px;
|
|
max-width: none;
|
|
}
|
|
|
|
.sp-color1 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.sp-color2 {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.default-btn {
|
|
display: inline-block;
|
|
padding: 12px 32px;
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
z-index: 1;
|
|
}
|
|
|
|
.banner-item-content .default-btn {
|
|
opacity: 0;
|
|
}
|
|
|
|
.active .banner-item-content .default-btn {
|
|
animation: sliderTextFad 4.5s ease-out 0.5s, sliderTextBottomFad 4.5s ease-out 0.5s;
|
|
}
|
|
|
|
.accordion-button:focus {
|
|
border-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.default-btn i {
|
|
font-size: 20px;
|
|
position: relative;
|
|
top: 4px;
|
|
display: none;
|
|
}
|
|
|
|
.default-btn::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
height: 100%;
|
|
left: -50%;
|
|
top: 0;
|
|
-webkit-transform: skew(50deg);
|
|
transform: skew(50deg);
|
|
-webkit-transition-duration: 0.6s;
|
|
transition-duration: 0.6s;
|
|
-webkit-transform-origin: top left;
|
|
transform-origin: top left;
|
|
width: 0;
|
|
}
|
|
|
|
.default-btn:hover {
|
|
color: var(--color-white) !important;
|
|
}
|
|
|
|
.default-btn:hover:before {
|
|
height: 130%;
|
|
width: 155%;
|
|
background-color: var(--light-dark);
|
|
}
|
|
|
|
.btn-bg-one {
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.btn-bg-two {
|
|
background-color: var(--theme-blue);
|
|
}
|
|
|
|
.top-header {
|
|
padding: 0px 0 3px;
|
|
}
|
|
|
|
.top-header-bg {
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.top-left-side .top-header-text {
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.top-left-side .top-header-text::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: -20px;
|
|
width: 1px;
|
|
height: 22px;
|
|
background-color: var(--color-white);
|
|
top: 1px;
|
|
}
|
|
|
|
.top-left-side .top-header-text p {
|
|
font-size: 16px;
|
|
color: var(--color-white);
|
|
font-weight: 500;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.top-left-side .top-header-text p b {
|
|
color: var(--Yellow);
|
|
font-weight: 500;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.top-head-left {
|
|
float: left;
|
|
}
|
|
|
|
.top-head-left .top-contact {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.top-head-left .top-contact:hover i {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.top-head-left .top-contact:hover h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.top-head-left .top-contact h3 {
|
|
font-size: 14px;
|
|
color: var(--color-white);
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.top-head-left .top-contact h3 a {
|
|
color: var(--color-white);
|
|
margin-bottom: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.top-head-left .top-contact h3 a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.top-header-right {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.top-header-right .top-header-social {
|
|
display: inline-block;
|
|
}
|
|
|
|
.top-header-right .top-header-social ul {
|
|
list-style: disc;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
border-right: 1px solid var(--color-white);
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.top-header-right .top-header-social ul li {
|
|
display: inline-block;
|
|
top: 1px;
|
|
position: relative;
|
|
}
|
|
|
|
.top-header-right .top-header-social ul li a {
|
|
width: auto;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
text-align: center;
|
|
background-color: transparent;
|
|
color: var(--color-white);
|
|
border-radius: 50px;
|
|
font-size: 14px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.top-header-right .top-header-social ul li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.top-header-right .language-list {
|
|
top: 0px;
|
|
margin-bottom: 0;
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-left: -20px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.nav-side-item .search-box {
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
|
|
.nav-side-item .search-box i {
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
color: var(--color-white);
|
|
position: relative;
|
|
display: inline-block;
|
|
top: 10px;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.icon-png {
|
|
width: 25px;
|
|
}
|
|
|
|
.close-btn {
|
|
color: var(--color-white) !important;
|
|
opacity: 1 !important;
|
|
font-weight: normal !important;
|
|
font-size: 28px !important;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
border: 0;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.top-header-right .language-list .language-list-item {
|
|
height: 0;
|
|
padding: 0 15px;
|
|
border: none;
|
|
color: var(--color-white);
|
|
background-color: transparent;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
border-radius: 5px 0 0 5px;
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
}
|
|
|
|
.top-header-right .language-list .language-list-item:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select {
|
|
height: 0;
|
|
width: 125px;
|
|
line-height: 0;
|
|
font-size: 15px;
|
|
margin-bottom: 0;
|
|
border-radius: 0;
|
|
background-color: transparent;
|
|
color: var(--color-white);
|
|
border-radius: 5px 0 0 5px;
|
|
z-index: 9999;
|
|
text-align: right !important;
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select .list {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
|
|
box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
|
|
border-radius: 0;
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select .list .option {
|
|
-webkit-transition: 0.6s;
|
|
transition: 0.6s;
|
|
color: var(--light-dark);
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
margin-bottom: 0;
|
|
width: 180px;
|
|
border-bottom: 1px solid var(--light-white-e1e1);
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select .list .option:hover {
|
|
background-color: transparent !important;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select .list .option .selected {
|
|
background-color: transparent !important;
|
|
font-weight: 500;
|
|
color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.top-header-right .language-list .nice-select::after {
|
|
content: "\e98c";
|
|
height: 8px;
|
|
width: 8px;
|
|
border: none;
|
|
top: 0;
|
|
margin-bottom: 0;
|
|
right: 10px;
|
|
background-color: transparent;
|
|
font-family: boxicons !important;
|
|
color: var(--color-white);
|
|
font-size: 18px;
|
|
-webkit-transform-origin: none;
|
|
transform-origin: none;
|
|
-webkit-transform: none;
|
|
transform: none;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.main-nav {
|
|
background-color: var(--color-white);
|
|
top: 0;
|
|
position: inherit;
|
|
left: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.main-nav .navbar {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item:hover a,
|
|
.main-nav nav .navbar-nav .nav-item .active {
|
|
color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item:hover a::before,
|
|
.main-nav nav .navbar-nav .nav-item .active::before {
|
|
opacity: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item:hover a i,
|
|
.main-nav nav .navbar-nav .nav-item .active i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a {
|
|
text-transform: capitalize;
|
|
color: var(--light-dark);
|
|
font-weight: 500;
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a span {
|
|
font-size: 10px;
|
|
color: red;
|
|
margin-left: 2px;
|
|
top: -7px;
|
|
position: relative;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a::before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 0;
|
|
height: 1px;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--theme-blue);
|
|
opacity: 0;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a i {
|
|
line-height: 0;
|
|
position: relative;
|
|
top: 3px;
|
|
font-size: 18px;
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a:hover,
|
|
.main-nav nav .navbar-nav .nav-item a :focus {
|
|
color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a:hover::before,
|
|
.main-nav nav .navbar-nav .nav-item a :focus::before {
|
|
opacity: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a:hover i,
|
|
.main-nav nav .navbar-nav .nav-item a :focus i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a.active {
|
|
color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a.active::before {
|
|
opacity: 1;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item a.active i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item:hover .dropdown-menu {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
|
|
z-index: 5;
|
|
border: none;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
background-color: var(--color-white) !important;
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
|
|
border-bottom: 1px solid var(--light-white-e1e1);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
|
|
text-transform: capitalize;
|
|
color: var(--light-dark) !important;
|
|
position: relative;
|
|
z-index: 1;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
font-weight: 600;
|
|
padding: 10px 25px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
|
|
float: right;
|
|
top: 12px;
|
|
position: relative;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 2px;
|
|
height: 100%;
|
|
background-color: var(--theme-blue);
|
|
-webkit-transition: 0.9s;
|
|
transition: 0.9s;
|
|
z-index: -1;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
|
|
border-radius: 0;
|
|
color: var(--color-white) !important;
|
|
padding-left: 35px;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active {
|
|
color: var(--color-white) !important;
|
|
border-radius: 0;
|
|
padding-left: 35px;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover i,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus i,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a :focus::before,
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a .active::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active {
|
|
color: var(--color-white) !important;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active::before {
|
|
width: 100%;
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li.active i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
|
|
left: 100%;
|
|
margin-top: 18px !important;
|
|
position: absolute;
|
|
-webkit-transform: scaleX(0);
|
|
transform: scaleX(0);
|
|
}
|
|
|
|
.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
|
|
-webkit-transform: scaleX(1);
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.main-nav .nav-side.nav-side {
|
|
position: relative;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item {
|
|
margin-right: 20px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-box {
|
|
position: relative;
|
|
top: -5px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-box i {
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
color: var(--light-dark);
|
|
position: relative;
|
|
display: inline-block;
|
|
top: 0px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-box:hover i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form {
|
|
position: relative;
|
|
top: -10px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form .form-control {
|
|
height: 45px;
|
|
background-color: var(--light-white-f8f8);
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
border-radius: 50px;
|
|
border: none;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form .form-control:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form button {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 3px;
|
|
height: 40px;
|
|
width: 40px;
|
|
background-color: var(--Yellow);
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
border: none;
|
|
outline: none;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form button i {
|
|
color: var(--color-white);
|
|
position: relative;
|
|
top: 1.9px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .search-side-widget .search-side-form button:hover {
|
|
background-color: var(--theme-blue);
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .get-btn {
|
|
display: inline-block;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.main-nav .nav-side .nav-side-item .get-btn .default-btn {
|
|
padding: 9px 25px;
|
|
}
|
|
|
|
.nav-side-mt {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.side-nav-responsive {
|
|
display: none;
|
|
}
|
|
|
|
.side-nav-responsive .dot-menu {
|
|
padding: 0 10px;
|
|
height: 30px;
|
|
cursor: pointer;
|
|
z-index: 999;
|
|
position: absolute;
|
|
right: 60px;
|
|
top: 20px;
|
|
}
|
|
|
|
.side-nav-responsive .dot-menu .circle-inner {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
height: 30px;
|
|
}
|
|
|
|
.side-nav-responsive .dot-menu .circle-inner .in-circle {
|
|
height: 5px;
|
|
width: 5px;
|
|
border-radius: 100%;
|
|
margin: 0 2px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
background-color: var(--theme-blue);
|
|
}
|
|
|
|
.side-nav-responsive .dot-menu:hover .circle-inner .circle {
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.side-nav-responsive .container-max {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
.side-nav-responsive .container-max .container {
|
|
position: absolute;
|
|
top: 70px;
|
|
right: 0;
|
|
max-width: 220px;
|
|
margin-left: auto;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
-webkit-transform: scaleX(0);
|
|
transform: scaleX(0);
|
|
z-index: 2;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
}
|
|
|
|
.side-nav-responsive .container-max .container.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
-webkit-transform: scaleX(1);
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner {
|
|
padding: 12px 10px 10px;
|
|
-webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
|
|
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav {
|
|
background-color: var(--theme-blue);
|
|
padding: 10px;
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav .side-nav-item .search-box {
|
|
position: relative;
|
|
display: inline-block;
|
|
top: -10px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav .side-nav-item .search-box i {
|
|
cursor: pointer;
|
|
font-size: 24px;
|
|
color: var(--color-white);
|
|
position: relative;
|
|
display: inline-block;
|
|
top: 5px;
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav .side-nav-item .search-box:hover i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav .side-nav-item .get-btn {
|
|
display: inline-block;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.side-nav-responsive .side-nav-inner .side-nav .side-nav-item .get-btn .default-btn {
|
|
padding: 7px 15px;
|
|
background-color: var(--color-white);
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.sticky-nav {
|
|
top: 0;
|
|
position: fixed;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 100% !important;
|
|
z-index: 999;
|
|
}
|
|
|
|
.sticky-nav .main-nav {
|
|
top: 0;
|
|
border: none;
|
|
position: fixed;
|
|
z-index: 999;
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.search-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 9999;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
transition: all 0.3s ease-in-out;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.search-overlay .search-layer {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
-webkit-transform: translateX(100%);
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.search-overlay .search-layer:nth-child(1) {
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
-webkit-transition: all 0.3s ease-in-out 0s;
|
|
transition: all 0.3s ease-in-out 0s;
|
|
}
|
|
|
|
.search-overlay .search-layer:nth-child(2) {
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
-webkit-transition: all 0.3s ease-in-out 0.3s;
|
|
transition: all 0.3s ease-in-out 0.3s;
|
|
}
|
|
|
|
.search-overlay .search-layer:nth-child(3) {
|
|
left: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
-webkit-transition: all 0.9s ease-in-out 0.6s;
|
|
transition: all 0.9s ease-in-out 0.6s;
|
|
}
|
|
|
|
.search-overlay .search-close {
|
|
position: absolute;
|
|
top: 40px;
|
|
right: 40px;
|
|
width: 50px;
|
|
z-index: 2;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
-webkit-transition: all 0.9s ease-in-out 1.5s;
|
|
transition: all 0.9s ease-in-out 1.5s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.search-overlay .search-close .search-close-line {
|
|
width: 100%;
|
|
height: 3px;
|
|
float: left;
|
|
margin-bottom: 5px;
|
|
background-color: var(--color-white);
|
|
-webkit-transition: all 500ms ease;
|
|
transition: all 500ms ease;
|
|
}
|
|
|
|
.search-overlay .search-close .search-close-line:nth-child(1) {
|
|
-webkit-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.search-overlay .search-close .search-close-line:nth-child(2) {
|
|
margin-top: -7px;
|
|
-webkit-transform: rotate(-45deg);
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
.search-overlay .search-close:hover .search-close-line {
|
|
background: var(--theme-blue);
|
|
-webkit-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.search-overlay .search-form {
|
|
-webkit-transition: all 0.9s ease-in-out 1.4s;
|
|
transition: all 0.9s ease-in-out 1.4s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%) translateX(-50%);
|
|
transform: translateY(-50%) translateX(-50%);
|
|
z-index: 2;
|
|
max-width: 500px;
|
|
width: 500px;
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.search-overlay .search-form form {
|
|
position: relative;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search {
|
|
display: block;
|
|
width: 100%;
|
|
height: 60px;
|
|
border: none;
|
|
border-radius: 30px;
|
|
color: var(--light-dark);
|
|
padding: 3px 0 0 25px;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search::-webkit-input-placeholder {
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
letter-spacing: 0.5px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:-ms-input-placeholder {
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
letter-spacing: 0.5px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search::-ms-input-placeholder {
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
letter-spacing: 0.5px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search::placeholder {
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
letter-spacing: 0.5px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:focus {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:focus::-webkit-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:focus:-ms-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:focus::-ms-input-placeholder {
|
|
color: transparent;
|
|
}
|
|
|
|
.search-overlay .search-form form .input-search:focus::placeholder {
|
|
color: transparent;
|
|
}
|
|
|
|
.search-overlay .search-form form button {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
width: 50px;
|
|
color: var(--color-white);
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background-color: var(--theme-blue);
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
border: none;
|
|
font-size: 20px;
|
|
line-height: 55px;
|
|
}
|
|
|
|
.search-overlay .search-form form button:hover {
|
|
background-color: var(--Yellow);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.search-overlay .search-form form:hover {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.search-overlay.search-overlay-active.search-overlay {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.search-overlay.search-overlay-active.search-overlay .search-layer {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.search-overlay.search-overlay-active.search-overlay .search-close {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.search-overlay.search-overlay-active.search-overlay .search-form {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.banner-slider-area {
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
.banner-slider-area .owl-dots {
|
|
margin-top: 0 !important;
|
|
position: absolute;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
right: 7%;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-65%);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.banner-slider-area .owl-dots .owl-dot span {
|
|
background-color: #fbfbfb3f !important;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
margin: 7px;
|
|
width: 30px !important;
|
|
height: 30px !important;
|
|
border: 10px solid #fbfbfb3f;
|
|
}
|
|
|
|
.banner-slider-area .owl-dots .owl-dot.active span {
|
|
background-color: var(--color-white) !important;
|
|
width: 30px !important;
|
|
height: 30px !important;
|
|
border: 9px solid var(--Yellow);
|
|
}
|
|
|
|
.banner-slider-area .owl-dots .owl-dot:hover span {
|
|
background-color: var(--color-white) !important;
|
|
width: 30px !important;
|
|
height: 30px !important;
|
|
border: 9px solid var(--Yellow);
|
|
}
|
|
|
|
.banner-item {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
align-items: center;
|
|
height: 75vh;
|
|
min-height: 600px;
|
|
}
|
|
|
|
|
|
.banner-item-content span {
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
color: var(--theme-blue);
|
|
padding: 10px 25px;
|
|
background-color: var(--color-white);
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.banner-item-content .slider-title {
|
|
margin-top: 25px;
|
|
font-size: 50px;
|
|
color: var(--color-white);
|
|
font-weight: 700;
|
|
max-width: 550px;
|
|
margin-bottom: 20px;
|
|
text-shadow: 0px -2px 4px #00000087;
|
|
opacity: 0;
|
|
}
|
|
|
|
.active .banner-item-content .slider-title {
|
|
animation: sliderTextFad 4.5s ease-out 0.5s;
|
|
}
|
|
|
|
.banner-text-content {
|
|
overflow: hidden;
|
|
animation: sliderTextBottomFad 4.5s ease-out 0.5s;
|
|
}
|
|
|
|
@keyframes sliderTextFad {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate(0px, 200px);
|
|
}
|
|
|
|
50% {
|
|
transform: translate(0px, 0px);
|
|
opacity: 1;
|
|
}
|
|
|
|
75% {
|
|
transform: translate(0px, 0px);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
transform: translate(0px, 200px);
|
|
}
|
|
}
|
|
|
|
@keyframes sliderTextBottomFad {
|
|
0% {
|
|
height: 0px;
|
|
}
|
|
|
|
50% {
|
|
height: 100%;
|
|
}
|
|
|
|
75% {
|
|
height: 100%;
|
|
}
|
|
|
|
100% {
|
|
height: 0px;
|
|
}
|
|
}
|
|
|
|
.banner-item-content p {
|
|
font-size: 18px;
|
|
color: var(--color-white);
|
|
font-weight: 400;
|
|
max-width: 660px;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.active .item-bg1-btm {
|
|
background: url(../images/home-one/slider/one-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg2-btm {
|
|
background: url(../images/home-one/slider/two-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg3-btm {
|
|
background: url(../images/home-one/slider/three-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg4-btm {
|
|
background: url(../images/home-one/slider/four-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg5-btm {
|
|
background: url(../images/home-one/slider/five-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg6-btm {
|
|
background: url(../images/home-one/slider/six-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg7-btm {
|
|
background: url(../images/home-one/slider/seven-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
.active .item-bg8-btm {
|
|
background: url(../images/home-one/slider/eight-slider.jpg);
|
|
background-size: 100% 100%;
|
|
animation: fad 0.5s linear forwards;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: -9;
|
|
}
|
|
|
|
@keyframes fad {
|
|
from {
|
|
filter: blur(15px);
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
filter: blur(0px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.item-bg1 {
|
|
background: url(../images/home-one/slider/one-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg2 {
|
|
background: url(../images/home-one/slider/one-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg3 {
|
|
background: url(../images/home-one/slider/two-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg4 {
|
|
background: url(../images/home-one/slider/three-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg5 {
|
|
background: url(../images/home-one/slider/four-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg6 {
|
|
background: url(../images/home-one/slider/five-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg7 {
|
|
background: url(../images/home-one/slider/six-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.item-bg8 {
|
|
background: url(../images/home-one/slider/seven-slider.jpg);
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.banner-area {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/home-two.jpg);
|
|
}
|
|
|
|
.banner-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: -webkit-gradient(linear, left top, right top, from(#252525bf), to(#25252500));
|
|
background-image: linear-gradient(to right, #252525bf, #25252500);
|
|
}
|
|
|
|
.banner-item-ptb {
|
|
padding-top: 140px;
|
|
padding-bottom: 160px;
|
|
}
|
|
|
|
.banner-item-ptb h1 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.banner-area-two {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.banner-area-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/home-three/home-three-bg.png);
|
|
}
|
|
|
|
.banner-content {
|
|
position: relative;
|
|
margin-top: -50px;
|
|
}
|
|
|
|
.banner-content h1 {
|
|
font-size: 60px;
|
|
color: var(--light-dark);
|
|
font-weight: 600;
|
|
max-width: 680px;
|
|
line-height: 1.2;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.banner-content p {
|
|
font-size: 17px;
|
|
color: var(--light-dark);
|
|
font-weight: 500;
|
|
max-width: 500px;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.banner-img {
|
|
position: relative;
|
|
padding-top: 70px;
|
|
}
|
|
|
|
.banner-img .banner-img-shape {
|
|
position: absolute;
|
|
bottom: 100px;
|
|
right: 0;
|
|
-webkit-animation: moveBounce 9s linear infinite;
|
|
animation: moveBounce 9s linear infinite;
|
|
}
|
|
|
|
.banner-sub-item {
|
|
position: relative;
|
|
background-color: var(--color-white);
|
|
border-radius: 15px;
|
|
padding: 15px 10px 15px 160px;
|
|
max-width: 350px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.banner-sub-item img {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
max-width: 125px;
|
|
border-radius: 15px 0 0 15px;
|
|
}
|
|
|
|
.banner-sub-item .content {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.banner-sub-item .content h3 {
|
|
font-size: 45px;
|
|
color: var(--Yellow);
|
|
font-weight: 700;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.banner-sub-item .content span {
|
|
color: var(--light-dark);
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.banner-sub-slider {
|
|
position: relative;
|
|
margin-top: -80px;
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.banner-four-area {
|
|
background-color: var(--Dark-blue);
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.banner-four-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 70%;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/home-four/home-four-bg.png);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.banner-four-content {
|
|
max-width: 620px;
|
|
margin-left: auto;
|
|
margin-right: -50px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.banner-four-content span {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: var(--Yellow);
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.banner-four-content h1 {
|
|
font-size: 50px;
|
|
color: var(--color-white);
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.banner-four-content p {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
font-weight: 500;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .default-btn {
|
|
display: inline-block;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn {
|
|
padding-left: 65px;
|
|
position: relative;
|
|
z-index: 1;
|
|
top: -3px;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn i {
|
|
position: absolute;
|
|
top: -3px;
|
|
left: 0;
|
|
width: 50px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
background-color: var(--color-white);
|
|
color: var(--Yellow);
|
|
border-radius: 50px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn i::after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: transparent;
|
|
border: 0.5px solid var(--color-white);
|
|
border-radius: 50px;
|
|
-webkit-animation: ripple 2s infinite ease-in-out;
|
|
animation: ripple 2s infinite ease-in-out;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn h3 {
|
|
margin-bottom: 5px;
|
|
font-size: 16px;
|
|
color: var(--Yellow);
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn span {
|
|
font-size: 14px;
|
|
color: var(--color-white);
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn:hover i {
|
|
background-color: var(--Yellow);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn:hover i::after {
|
|
border-color: var(--Yellow);
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn:hover h3 {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.banner-four-content .banner-btn .play-btn:hover span {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.banner-four-img {
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.banner-five-area {
|
|
background-color: #d5e5f4;
|
|
position: relative;
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.banner-five-content {
|
|
max-width: 560px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.banner-five-content span {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.banner-five-content h1 {
|
|
font-size: 52px;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.banner-five-content h1 b {
|
|
font-weight: 600;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.banner-five-content p {
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.banner-five-img {
|
|
-webkit-animation: moveBounce 9s infinite ease-in-out;
|
|
animation: moveBounce 9s infinite ease-in-out;
|
|
}
|
|
|
|
.banner-bottom-area {
|
|
position: relative;
|
|
margin-top: -75px;
|
|
}
|
|
|
|
.banner-bottom-card {
|
|
background-color: var(--color-white);
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 30px 20px 30px 135px;
|
|
border-radius: 15px;
|
|
margin-bottom: 30px;
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
|
|
border-bottom: 3px solid var(--theme-blue);
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.banner-bottom-card i {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 30px;
|
|
font-size: 40px;
|
|
width: 80px;
|
|
height: 80px;
|
|
line-height: 80px;
|
|
color: var(--light-dark);
|
|
background-color: #e5f3ff;
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.banner-bottom-card h3 {
|
|
color: var(--light-dark);
|
|
margin-bottom: 10px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.banner-bottom-card p {
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.banner-bottom-card:hover {
|
|
-webkit-transform: translateY(-10px);
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.banner-bottom-card:hover h3 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.inner-banner {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.inner-banner .inner-title {
|
|
padding-top: 150px;
|
|
padding-bottom: 150px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.inner-banner .inner-title h3 {
|
|
font-size: 45px;
|
|
color: var(--color-white);
|
|
font-weight: 600;
|
|
position: relative;
|
|
}
|
|
|
|
.inner-banner .inner-title ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.inner-banner .inner-title ul li {
|
|
font-size: 18px;
|
|
color: var(--color-white);
|
|
display: inline-block;
|
|
}
|
|
|
|
.inner-banner .inner-title ul li i {
|
|
color: var(--color-white);
|
|
position: relative;
|
|
top: 3px;
|
|
margin: 0 3px;
|
|
}
|
|
|
|
.inner-banner .inner-title ul li a {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.inner-banner .inner-title ul li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.inner-banner .inner-shape {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: none;
|
|
}
|
|
|
|
.about-content .about-content-card {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.about-content .about-content-card i {
|
|
font-size: 60px;
|
|
color: var(--theme-blue);
|
|
line-height: 1;
|
|
}
|
|
|
|
.about-content .about-content-card h3 {
|
|
margin-top: 15px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.about-content .about-content-card p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about-content .about-list {
|
|
list-style: none;
|
|
margin: 20px 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.about-content .about-list li {
|
|
display: block;
|
|
color: var(--light-dark);
|
|
margin-bottom: 10px;
|
|
font-weight: 500;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
padding-left: 35px;
|
|
position: relative;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.about-content .about-list li:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.about-content .about-list li:hover i {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.about-content .about-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about-content .about-list li i {
|
|
font-size: 26px;
|
|
color: var(--theme-blue);
|
|
position: absolute;
|
|
left: 0;
|
|
top: -2px;
|
|
margin-right: 5px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.about-content .about-content-text {
|
|
margin-top: 20px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about-img {
|
|
position: relative;
|
|
}
|
|
|
|
.about-img::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
width: 30%;
|
|
height: 40%;
|
|
background-color: transparent;
|
|
border: 3px solid var(--Yellow);
|
|
bottom: -10px;
|
|
right: -40px;
|
|
border-radius: 35px;
|
|
}
|
|
|
|
.about-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.about-img .sub-content {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--color-white);
|
|
border-radius: 15px;
|
|
padding: 15px 10px 23px 160px;
|
|
max-width: 340px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.about-img .sub-content img {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
max-width: 123px;
|
|
border-radius: 15px 0 0 15px;
|
|
}
|
|
|
|
.about-img .sub-content h3 {
|
|
font-size: 45px;
|
|
color: var(--Yellow);
|
|
font-weight: 700;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about-img .sub-content span {
|
|
color: var(--light-dark);
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.about-play {
|
|
position: relative;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.about-play img {
|
|
border-radius: 30px;
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.about-play .about-play-content {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 0;
|
|
left: 0;
|
|
max-width: 470px;
|
|
background-color: #25252538;
|
|
border-bottom-left-radius: 30px;
|
|
border-top-right-radius: 70%;
|
|
padding: 100px 40px 70px 25px;
|
|
}
|
|
|
|
.about-play .about-play-content::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
bottom: 0;
|
|
right: 30px;
|
|
width: 91.7%;
|
|
height: 90.1%;
|
|
background-color: var(--theme-blue);
|
|
border-bottom-left-radius: 30px;
|
|
border-top-right-radius: 70%;
|
|
}
|
|
|
|
.about-play .about-play-content span {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.about-play .about-play-content h2 {
|
|
color: var(--color-white);
|
|
font-size: 35px;
|
|
max-width: 300px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.about-play .about-play-content .play-on-area {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 175px;
|
|
left: 200px;
|
|
}
|
|
|
|
.about-play .about-play-content .play-on-area .play-on {
|
|
width: 80px;
|
|
height: 80px;
|
|
color: var(--theme-blue);
|
|
background-color: var(--color-white);
|
|
text-align: center;
|
|
font-size: 55px;
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.about-play .about-play-content .play-on-area .play-on i {
|
|
padding-left: 3px;
|
|
}
|
|
|
|
.about-play .about-play-content .play-on-area .play-on:hover {
|
|
color: var(--color-white);
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.about-bg {
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.about-img-2 {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.about-img-2 img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.about-content-2 {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.about-content-2 .section-title h2 {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.about-content-2 .section-title p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.about-content-2 .about-card {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.about-content-2 .about-card .content {
|
|
padding-top: 20px;
|
|
position: relative;
|
|
padding-left: 70px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.about-content-2 .about-card .content i {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 0;
|
|
font-size: 55px;
|
|
color: var(--theme-blue);
|
|
line-height: 1;
|
|
}
|
|
|
|
.about-content-2 .about-card .content h3 {
|
|
margin-bottom: 10px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.about-content-2 .about-card p {
|
|
margin-top: 25px;
|
|
margin-bottom: 0;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.about-bg2 {
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.about-img-4 {
|
|
max-width: 750px;
|
|
margin-left: auto;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.about-content-3 {
|
|
max-width: 560px;
|
|
margin-right: auto;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.about-content-3 .section-title {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.about-content-3 h3 {
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.all-skill-bar {
|
|
margin-right: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.skill-bar {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.skill-bar .progress-title-holder {
|
|
position: relative;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.skill-bar .progress-title {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.skill-bar .progress-number-wrapper {
|
|
width: 100%;
|
|
z-index: 10;
|
|
font-size: 11px;
|
|
line-height: 24px;
|
|
height: 24px;
|
|
letter-spacing: 0;
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
color: #fbede9;
|
|
}
|
|
|
|
.skill-bar .progress-number-mark {
|
|
margin-bottom: 4px;
|
|
border-radius: 3px;
|
|
color: var(--color-white);
|
|
padding: 0 8px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
width: 45px;
|
|
height: 26px;
|
|
text-align: center;
|
|
line-height: 28px;
|
|
background: var(--Dark-blue);
|
|
}
|
|
|
|
.skill-bar .progress-content-outer {
|
|
height: 10px;
|
|
background-color: #bddfff;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.skill-bar .progress-content {
|
|
height: 10px;
|
|
background-color: var(--theme-blue);
|
|
width: 0%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.security-area .section-title h2 {
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.security-card {
|
|
background-color: var(--color-white);
|
|
position: relative;
|
|
z-index: 1;
|
|
padding: 30px;
|
|
border-radius: 15px;
|
|
margin-bottom: 30px;
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
|
|
border-bottom: 3px solid var(--theme-blue);
|
|
height: max-content;
|
|
min-height: 88%;
|
|
}
|
|
|
|
.security-card i {
|
|
font-size: 45px;
|
|
width: 80px;
|
|
height: 80px;
|
|
line-height: 80px;
|
|
color: var(--light-dark);
|
|
background-color: #e5f3ff;
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
margin-bottom: 12px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.security-card h3 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.security-card h3 a {
|
|
color: var(--light-dark);
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
display: block;
|
|
}
|
|
|
|
.security-card p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.security-card:hover i {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.security-card:hover h3 a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.services-area {
|
|
background-color: var(--Dark-blue);
|
|
position: relative;
|
|
}
|
|
|
|
.services-area .section-title h2 {
|
|
max-width: 500px;
|
|
color: var(--color-white);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.services-area .section-title p {
|
|
color: var(--color-white);
|
|
max-width: 760px;
|
|
}
|
|
|
|
.services-card {
|
|
padding: 20px;
|
|
background-color: var(--color-white);
|
|
border-radius: 13px;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
height: max-content;
|
|
min-height: 88%;
|
|
}
|
|
|
|
.branding-services-card {
|
|
padding: 20px;
|
|
background-color: var(--color-white);
|
|
border-radius: 13px;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 30px;
|
|
height: max-content;
|
|
min-height: 90%;
|
|
}
|
|
|
|
.branding-services-card h3 {
|
|
margin-top: 20px;
|
|
margin-bottom: 12px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 80%;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.branding-services-card h3 a {
|
|
display: block;
|
|
color: #0b0e4c;
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 17px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 90px;
|
|
height: 90px;
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
border-radius: 272px 0 0 0;
|
|
opacity: 0.1;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card::after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 75px;
|
|
height: 75px;
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
border-radius: 170px 0 0 0;
|
|
opacity: 0.1;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card i {
|
|
color: var(--theme-blue);
|
|
font-size: 60px;
|
|
line-height: 1;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card h3 {
|
|
margin-top: 20px;
|
|
margin-bottom: 12px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 80%;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.services-card h3 a {
|
|
display: block;
|
|
color: var(--light-dark);
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 17px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card h3 a:hover {
|
|
color: var(--Yellow) !important;
|
|
}
|
|
|
|
.services-card .service-card-title {
|
|
margin-top: 20px;
|
|
margin-bottom: 12px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 80%;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.services-card .service-card-title a {
|
|
display: block;
|
|
color: var(--light-dark);
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 17px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card .service-card-title a:hover {
|
|
color: var(--Yellow) !important;
|
|
}
|
|
|
|
.services-card p {
|
|
margin-bottom: 12px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.services-card .learn-btn {
|
|
color: var(--light-dark);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card .learn-btn i {
|
|
font-size: 20px;
|
|
position: relative;
|
|
top: 5px;
|
|
color: var(--light-dark);
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-card .learn-btn:hover {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card .learn-btn:hover i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card:hover::before {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 10px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.iot-column {
|
|
width: 50%;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.branding-iot-column {
|
|
width: 30%;
|
|
}
|
|
|
|
.services-card:hover i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card:hover h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.services-card:hover p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card:hover .learn-btn {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card:hover .learn-btn i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.services-card-color-bg {
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
padding: 40px 30px 35px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.services-left {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.services-left .section-title {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.services-left .section-title p {
|
|
padding-top: 17px;
|
|
}
|
|
|
|
.services-style-bg {
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
}
|
|
|
|
.service-shape {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.service-shape img {
|
|
max-width: 400px;
|
|
}
|
|
|
|
.services-area-two {
|
|
background-color: var(--Dark-blue);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.services-area-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/services/services-bg.png);
|
|
}
|
|
|
|
.services-area-two .section-title h2 {
|
|
max-width: 500px;
|
|
color: var(--color-white);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.services-item {
|
|
position: relative;
|
|
margin-bottom: 80px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.services-item:hover {
|
|
-webkit-transform: translateY(-5px);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.services-item:hover .content h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.services-item a {
|
|
display: block;
|
|
}
|
|
|
|
.services-item a img {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.services-item .content {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
width: 82%;
|
|
bottom: -80px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
border-radius: 5px;
|
|
padding: 20px 20px 20px 100px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.services-item .content i {
|
|
font-size: 60px;
|
|
position: absolute;
|
|
top: 17px;
|
|
left: 20px;
|
|
line-height: 1;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.services-item .content span {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.services-item .content h3 {
|
|
font-size: 20px;
|
|
margin-top: 3px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.services-item .content h3 a {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.services-area-three {
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.services-area-three .section-title h2 {
|
|
max-width: 390px;
|
|
color: var(--light-dark);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.services-widget-area .section-title h2 {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.services-style-area .section-title h2 {
|
|
max-width: 390px;
|
|
color: var(--light-dark);
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.services-style-area .section-title p {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.service-article .service-article-img {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.service-article .service-article-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.service-article .service-article-content h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.service-article .service-article-content p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list {
|
|
list-style: none;
|
|
margin: 0 0 25px;
|
|
padding: 0;
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list li {
|
|
display: block;
|
|
color: var(--light-dark);
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
padding-left: 35px;
|
|
position: relative;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list li:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list li:hover i {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.service-article .service-article-content .service-article-list li i {
|
|
font-size: 26px;
|
|
color: var(--theme-blue);
|
|
position: absolute;
|
|
left: 0;
|
|
top: -2px;
|
|
margin-right: 5px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.service-article .service-article-another h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.service-article .service-article-another p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.service-article .service-article-another .service-article-another-img {
|
|
margin-bottom: 25px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.service-article .service-article-another .service-article-another-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.service-article .service-work-process h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.service-article .service-work-process p {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.service-article .work-process-card p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.work-process-area .section-title .section-index-title {
|
|
max-width: 550px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.work-process-area .section-title span {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.work-process-left {
|
|
background-color: var(--Dark-blue);
|
|
padding: 148px 50px;
|
|
border-radius: 10px;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.work-process-left::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
opacity: 0.2;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/shape/bg-shape.png);
|
|
}
|
|
|
|
.work-process-left .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.work-process-left .section-title h2 {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.work-process-left .default-btn {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.work-process-card {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
padding: 0px;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
min-height: 100%;
|
|
height: max-content
|
|
}
|
|
|
|
|
|
.work-process-card i {
|
|
font-size: 60px;
|
|
color: var(--theme-blue);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.work-process-text {
|
|
padding: 0px 20px 20px;
|
|
}
|
|
|
|
.work-services-text {
|
|
padding: 0px 20px 20px;
|
|
height: 270px;
|
|
}
|
|
|
|
.work-process-card .business-title {
|
|
margin-top: 15px;
|
|
margin-bottom: 10px;
|
|
font-size: 1.2rem;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.work-imageDiv {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.work-process-area {
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
padding: 10em 0;
|
|
position: relative;
|
|
}
|
|
|
|
.work-process-area:before {
|
|
content: "";
|
|
position: absolute;
|
|
background: url(../images/home-one/CellCity-System-bg.png) no-repeat;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.work-card-image {
|
|
width: 100%;
|
|
height: 170px;
|
|
object-fit: cover;
|
|
transform: scale(1);
|
|
transition: transform 0.5s;
|
|
}
|
|
|
|
.work-process-card:hover .work-card-image {
|
|
transform: scale(1.1);
|
|
width: 100%;
|
|
max-height: 170px;
|
|
transition: transform 0.5s;
|
|
}
|
|
|
|
.work-process-card p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.work-process-card .number {
|
|
font-size: 24px;
|
|
color: var(--theme-blue);
|
|
font-weight: 600;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 15px;
|
|
}
|
|
|
|
.work-process-area-two {
|
|
position: relative;
|
|
}
|
|
|
|
.work-shape {
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.work-process-card-two {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
padding: 35px 23px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.work-process-card-two .number-title {
|
|
font-size: 30px;
|
|
color: var(--theme-blue);
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.work-process-card-two h3 {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.work-process-card-two p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.work-process-right {
|
|
background-color: var(--Dark-blue);
|
|
padding: 138px 50px;
|
|
border-radius: 10px;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.advance-text {
|
|
font-size: 21px;
|
|
color: var(--Yellow);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.advance-textDiv {
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.massive-ai-models-video video {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.work-process-right::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/shape/bg-shape2.png);
|
|
}
|
|
|
|
.work-process-right .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.work-process-right .section-title h2 {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.work-process-right .default-btn {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.work-process-card-three {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
padding: 35px 23px;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.work-process-card-three::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
right: 0;
|
|
width: 85px;
|
|
height: 75px;
|
|
background-color: var(--theme-blue);
|
|
border-radius: 0 0 0 100%;
|
|
opacity: 0.1;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.work-process-card-three .number-title {
|
|
font-size: 30px;
|
|
color: var(--theme-blue);
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.work-process-card-three h3 {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.work-process-card-three p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.work-process-card-three i {
|
|
font-size: 30px;
|
|
color: var(--theme-blue);
|
|
position: absolute;
|
|
top: 7px;
|
|
right: 15px;
|
|
}
|
|
|
|
.choose-area {
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.choose-content {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.choose-content .section-title h2 {
|
|
max-width: 470px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.choose-content .section-title p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.choose-content .choose-content-card {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.choose-content .choose-content-card .content {
|
|
padding-top: 20px;
|
|
position: relative;
|
|
padding-left: 75px;
|
|
}
|
|
|
|
.choose-content .choose-content-card .content i {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 0;
|
|
font-size: 60px;
|
|
color: var(--theme-blue);
|
|
line-height: 1;
|
|
}
|
|
|
|
.choose-content .choose-content-card .content h3 {
|
|
margin-top: 10px;
|
|
margin-bottom: 30px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.choose-content .choose-content-card p {
|
|
margin-top: 5px;
|
|
margin-bottom: 0;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.choose-img {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.choose-img img {
|
|
border-radius: 15px;
|
|
height: auto;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.choose-content-two .section-title {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.choose-content-two .section-title p {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.choose-content-two .choose-content-card {
|
|
position: relative;
|
|
padding-left: 100px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.choose-content-two .choose-content-card i {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 75px;
|
|
height: 75px;
|
|
line-height: 75px;
|
|
text-align: center;
|
|
font-size: 35px;
|
|
color: var(--color-white);
|
|
background-color: var(--theme-blue);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.choose-content-two .choose-content-card h3 {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.choose-content-two .choose-content-card p {
|
|
margin-bottom: 0;
|
|
max-width: 315px;
|
|
}
|
|
|
|
.choose-img-two {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding-right: 30px;
|
|
padding-bottom: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.choose-img-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
right: 0;
|
|
width: 90%;
|
|
height: 100%;
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.build-area {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.build-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
background-color: #0e1566;
|
|
}
|
|
|
|
.build-area::after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
background-image: url(../images/build/build-bg.png);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.build-area .default-btn {
|
|
background-color: var(--color-white);
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.build-content .section-title span {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.build-content .section-title .section-index-title {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.build-content.build-content-on-color .section-title span {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.build-content.build-content-on-color .section-title .section-index-title {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.build-btn-area {
|
|
float: right;
|
|
}
|
|
|
|
.build-play-img {
|
|
position: relative;
|
|
border-radius: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.build-play-img img {
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.build-play-img .play-area-content {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 2px;
|
|
left: -1px;
|
|
max-width: 470px;
|
|
background-color: #25252538;
|
|
border-bottom-left-radius: 30px;
|
|
border-top-right-radius: 70%;
|
|
padding: 150px 80px 110px 40px;
|
|
transition: width 0.5s, padding 0.5s, visibility 0.5s;
|
|
}
|
|
|
|
.build-play-img .play-area-content::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 30px;
|
|
right: 30px;
|
|
left: 0;
|
|
width: 92.7%;
|
|
height: 92.1%;
|
|
background-color: #0e1566;
|
|
border-bottom-left-radius: 30px;
|
|
border-top-right-radius: 70%;
|
|
transition: width 0.5s, padding 0.5s, visibility 0.5s;
|
|
}
|
|
|
|
.build-play-img .play-area-content span {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.build-play-img .play-area-content p {
|
|
color: var(--color-white);
|
|
font-size: 35px;
|
|
max-width: 300px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.build-play-img .play-content-hide {
|
|
width: 0;
|
|
padding: 0;
|
|
visibility: hidden;
|
|
transition: width 0.5s, padding 0.5s, visibility 0.5s;
|
|
}
|
|
|
|
.build-play-img .play-content-hide::before {
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
visibility: hidden;
|
|
transition: width 0.5s, padding 0.5s, visibility 0.5s;
|
|
|
|
}
|
|
|
|
.build-play-img .play-content-hide span {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.build-play-img .play-content-hide h2 {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.play-area {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 220px;
|
|
left: 260px;
|
|
}
|
|
|
|
.play-icon-div {
|
|
bottom: 20px;
|
|
left: 20px;
|
|
}
|
|
|
|
.play-area .play-on {
|
|
width: 80px;
|
|
height: 80px;
|
|
color: #0e1566;
|
|
background-color: var(--color-white);
|
|
text-align: center;
|
|
font-size: 45px;
|
|
line-height: 85px;
|
|
border-radius: 50px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.play-area .play-on i {
|
|
position: relative;
|
|
left: 4px;
|
|
top: 1px;
|
|
}
|
|
|
|
.play-area .play-on .bx-pause {
|
|
position: relative;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.play-area .play-on:hover {
|
|
color: var(--color-white);
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
|
|
|
|
.build-item {
|
|
position: relative;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.build-item a {
|
|
display: block;
|
|
}
|
|
|
|
.build-item a img {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.build-item .content {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
width: 90%;
|
|
bottom: -80px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.build-item .content h3 {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.build-item .content h3 a {
|
|
color: var(--light-dark);
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.build-item .content ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.build-item .content ul li {
|
|
display: inline-block;
|
|
margin-right: 15px;
|
|
color: var(--dark-44);
|
|
font-weight: 500;
|
|
position: relative;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.build-item .content ul li a {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.build-item .content ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 5px;
|
|
right: -10px;
|
|
width: 2px;
|
|
height: 15px;
|
|
background-color: var(--dark-44);
|
|
-webkit-transform: skew(-20deg);
|
|
transform: skew(-20deg);
|
|
}
|
|
|
|
.build-item .content ul li:last-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.build-item .content ul li:last-child::before {
|
|
display: none;
|
|
}
|
|
|
|
.build-item .content ul li:hover a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.build-item .content .more-btn {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
text-align: center;
|
|
border-top-left-radius: 30px;
|
|
border-bottom-right-radius: 5px;
|
|
background-color: #e6f1fc;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.build-item:hover .content h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.build-item:hover .more-btn {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.build-text {
|
|
margin-bottom: 20px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.build-text p {
|
|
color: var(--color-white);
|
|
margin-bottom: 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.build-text.build-on-text p {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.play-btn-area {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding-top: 170px;
|
|
padding-bottom: 170px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.play-btn-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url(../images/build/build-play-bg.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.play-btn-area .build-play {
|
|
font-size: 35px;
|
|
color: var(--color-white);
|
|
width: 100px;
|
|
height: 100px;
|
|
z-index: 1;
|
|
background-color: #ffffff87;
|
|
border-radius: 50%;
|
|
line-height: 105px;
|
|
text-align: center;
|
|
position: relative;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
-webkit-animation: pulse 3s ease-out infinite;
|
|
animation: pulse 3s ease-out infinite;
|
|
}
|
|
|
|
.play-btn-area .build-play i {
|
|
position: relative;
|
|
top: 1px;
|
|
left: 3px;
|
|
}
|
|
|
|
.play-btn-area .build-play::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 70px;
|
|
height: 70px;
|
|
left: 0;
|
|
right: 0;
|
|
top: 15px;
|
|
margin: 0 auto;
|
|
z-index: -1;
|
|
background-color: var(--theme-blue);
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.play-btn-area .build-play:hover {
|
|
border-radius: 0;
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
.play-btn-area .build-play:hover::before {
|
|
border-radius: 0;
|
|
-webkit-animation: none;
|
|
animation: none;
|
|
}
|
|
|
|
.build-area-two {
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.talk-area {
|
|
background-image: url(../images/talk-bg.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.talk-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--Dark-blue);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.talk-content .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.talk-content .section-title h2 {
|
|
color: var(--color-white);
|
|
max-width: 530px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.talk-area-two {
|
|
background-image: url(../images/talk-bg2.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
z-index: 1;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.talk-area-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--theme-blue);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.call-us-area {
|
|
background-color: var(--Dark-blue);
|
|
background-attachment: fixed;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.call-us-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
opacity: 0.1;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url(../images/call-us/call-shape1.png);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.call-us-img {
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.call-shape .shape1 {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 30px;
|
|
}
|
|
|
|
.call-shape .shape2 {
|
|
position: absolute;
|
|
top: 30px;
|
|
right: -35px;
|
|
}
|
|
|
|
.call-contact {
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.call-contact h3 {
|
|
font-size: 22px;
|
|
color: var(--Yellow);
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.call-contact .call-btn {
|
|
font-size: 35px;
|
|
color: var(--color-white);
|
|
margin-bottom: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.call-contact .call-btn:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.call-contact p {
|
|
font-size: 20px;
|
|
color: var(--color-white);
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.counter-area {
|
|
position: relative;
|
|
}
|
|
|
|
.counter-area .section-title h2 {
|
|
max-width: 560px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.counter-area .section-title p {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 720px;
|
|
}
|
|
|
|
.counter-content {
|
|
margin-bottom: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.counter-content h1 {
|
|
font-size: 170px;
|
|
color: var(--light-dark);
|
|
margin-bottom: 0;
|
|
line-height: 1;
|
|
}
|
|
|
|
.counter-content h1 span {
|
|
color: var(--theme-blue);
|
|
line-height: 1;
|
|
position: relative;
|
|
top: -6px;
|
|
}
|
|
|
|
.counter-content h3 {
|
|
margin-bottom: 13px;
|
|
}
|
|
|
|
.counter-content p {
|
|
max-width: 355px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.counter-another-content {
|
|
margin-bottom: 25px;
|
|
padding-left: 90px;
|
|
position: relative;
|
|
}
|
|
|
|
.counter-another-content i {
|
|
position: absolute;
|
|
line-height: 1;
|
|
font-size: 60px;
|
|
top: 3px;
|
|
left: 0;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.counter-another-content h3 {
|
|
color: var(--light-dark);
|
|
font-size: 35px;
|
|
line-height: 1;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.counter-another-content span {
|
|
font-size: 17px;
|
|
color: var(--dark-44);
|
|
margin-bottom: 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.counter-shape {
|
|
display: none;
|
|
}
|
|
|
|
.counter-shape .shape1 {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.counter-shape .shape1 img {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.counter-shape .shape2 {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.counter-shape .shape2 img {
|
|
max-width: 200px;
|
|
}
|
|
|
|
.case-study-area .section-title h2 {
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.case-study-item {
|
|
position: relative;
|
|
margin-bottom: 80px;
|
|
}
|
|
|
|
.case-study-item a {
|
|
display: block;
|
|
}
|
|
|
|
.case-study-item a img {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.case-study-item .content {
|
|
width: 100%;
|
|
background-color: var(--color-white);
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 5%);
|
|
border-radius: 0px 0px 5px 5px;
|
|
padding: 20px;
|
|
margin-bottom: 30px;
|
|
min-height: 130px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.case-study-item .content h3 {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.case-study-item .content h3 a {
|
|
color: var(--light-dark);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.case-study-item a img {
|
|
height: 250px;
|
|
object-fit: cover;
|
|
border-radius: 5px 5px 0px 0px;
|
|
}
|
|
|
|
.case-study-item .content h3:hover a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.case-study-item .content ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.case-study-item .content ul li {
|
|
display: inline-block;
|
|
margin-right: 15px;
|
|
color: var(--dark-44);
|
|
font-weight: 500;
|
|
position: relative;
|
|
}
|
|
|
|
.case-study-item .content ul li::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 5px;
|
|
right: -10px;
|
|
width: 2px;
|
|
height: 15px;
|
|
background-color: var(--dark-44);
|
|
-webkit-transform: skew(-20deg);
|
|
transform: skew(-20deg);
|
|
}
|
|
|
|
.case-study-item .content ul li a {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.case-study-item .content ul li:last-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.case-study-item .content ul li:last-child::before {
|
|
display: none;
|
|
}
|
|
|
|
.case-study-item .content ul li:hover a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.case-study-item .content .more-btn {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 50px;
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
text-align: center;
|
|
border-top-left-radius: 30px;
|
|
border-bottom-right-radius: 5px;
|
|
background-color: #e6f1fc;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.case-study-item .content .more-btn:hover {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.case-study-slider .owl-stage-outer .owl-stage .owl-item {
|
|
max-width: 400px;
|
|
}
|
|
|
|
.case-study-item:hover .content h3 a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.case-study-item:hover .content .more-btn {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.case-article .case-article-img {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.case-article .case-article-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.case-article .case-article-content h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.case-article .case-article-content p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list {
|
|
list-style: none;
|
|
margin: 0 0 25px;
|
|
padding: 0;
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list li {
|
|
display: block;
|
|
color: var(--light-dark);
|
|
margin-bottom: 10px;
|
|
font-weight: 600;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
padding-left: 35px;
|
|
position: relative;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list li:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list li:hover i {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list li i {
|
|
font-size: 26px;
|
|
color: var(--theme-blue);
|
|
position: absolute;
|
|
left: 0;
|
|
top: 2px;
|
|
margin-right: 5px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.case-article .case-article-content .case-article-list.case-article-ls li i {
|
|
top: -1px;
|
|
}
|
|
|
|
.case-article .case-article-another h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.case-article .case-article-another p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.case-article .case-article-another .case-article-another-img {
|
|
margin-bottom: 25px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.case-article .case-article-another .case-article-another-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.case-article .case-work-process h2 {
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.case-article .case-work-process p {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.case-play-btn {
|
|
position: relative;
|
|
z-index: 1;
|
|
padding-top: 170px;
|
|
padding-bottom: 170px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.case-play-btn::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url(../images/build/build-play-bg.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.case-play-btn .case-play {
|
|
font-size: 40px;
|
|
color: var(--theme-blue);
|
|
width: 80px;
|
|
height: 80px;
|
|
z-index: 1;
|
|
background-color: var(--color-white);
|
|
border-radius: 50%;
|
|
line-height: 85px;
|
|
text-align: center;
|
|
position: relative;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
-webkit-animation: pulse 3s ease-out infinite;
|
|
animation: pulse 3s ease-out infinite;
|
|
}
|
|
|
|
.case-play-btn .case-play i {
|
|
position: relative;
|
|
top: 1px;
|
|
left: 3px;
|
|
}
|
|
|
|
.case-play-btn .case-play:hover {
|
|
border-radius: 0;
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
.case-play-btn .case-play:hover::before {
|
|
border-radius: 0;
|
|
-webkit-animation: none;
|
|
animation: none;
|
|
}
|
|
|
|
.case-study-area-two {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.case-study-area-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 60%;
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.case-study-area-two .section-title h2 {
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.team-card {
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
}
|
|
|
|
.team-card:hover .social-link {
|
|
opacity: 1;
|
|
}
|
|
|
|
.team-card:hover .social-link li a {
|
|
-webkit-transform: scaleY(1);
|
|
transform: scaleY(1);
|
|
}
|
|
|
|
.team-card:hover .content {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.team-card .social-link {
|
|
position: absolute;
|
|
top: 17%;
|
|
right: 30px;
|
|
padding: 0;
|
|
list-style: none;
|
|
opacity: 0;
|
|
}
|
|
|
|
.team-card .social-link li {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.team-card .social-link li a {
|
|
width: 30px;
|
|
height: 30px;
|
|
line-height: 32px;
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
border-radius: 50px;
|
|
background-color: var(--theme-blue);
|
|
-webkit-transform: scaleY(0);
|
|
transform: scaleY(0);
|
|
}
|
|
|
|
.team-card .social-link li:hover a {
|
|
background-color: var(--color-white);
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.team-card .content {
|
|
position: absolute;
|
|
z-index: 1;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--theme-blue);
|
|
padding: 20px 25px;
|
|
border-top-left-radius: 100px;
|
|
text-align: center;
|
|
-webkit-transition: 0.9s;
|
|
transition: 0.9s;
|
|
}
|
|
|
|
.team-card .content h3 {
|
|
margin-bottom: 0;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.team-card .content span {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.technology-area {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-image: url(../images/technology-img.webp);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.technology-area .section-title h2 {
|
|
color: var(--color-white);
|
|
max-width: 670px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.technology-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--Dark-blue);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.technology-card {
|
|
padding: 30px;
|
|
border: 1px solid var(--color-white);
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.technology-card i {
|
|
font-size: 50px;
|
|
line-height: 1;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.technology-card h3 {
|
|
color: var(--color-white);
|
|
margin-bottom: 0;
|
|
margin-top: 15px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.technology-area-two {
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.technology-area-two .section-title h2 {
|
|
max-width: 570px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.technology-card-color {
|
|
border-color: var(--theme-blue);
|
|
}
|
|
|
|
.technology-card-color i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.technology-card-color h3 {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.technology-area-three {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.technology-area-three .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.technology-area-three .section-title h2 {
|
|
color: var(--color-white);
|
|
max-width: 540px;
|
|
}
|
|
|
|
.technology-area-three .section-title p {
|
|
color: var(--color-white);
|
|
margin-bottom: 20px;
|
|
padding-top: 17px;
|
|
}
|
|
|
|
.technology-area-three::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url(../images/shape/bg-shape3.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.technology-card-color2 i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.technology-area-four {
|
|
background-color: var(--light-white-f8f8);
|
|
}
|
|
|
|
.technology-area-four .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.technology-area-four .section-title p {
|
|
padding-top: 18px;
|
|
}
|
|
|
|
.technology-item {
|
|
padding: 17px 17px 15px;
|
|
border: 1px solid var(--theme-blue);
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.technology-item i {
|
|
font-size: 35px;
|
|
line-height: 1;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.technology-item h3 {
|
|
color: var(--Dark-blue);
|
|
margin-bottom: 0;
|
|
margin-top: 17px;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.technology-play-area {
|
|
padding: 200px 0;
|
|
text-align: center;
|
|
background-image: url(../images/technology-img2.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
z-index: 1;
|
|
border-radius: 10px;
|
|
margin-bottom: 30px;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.technology-play-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--Dark-blue);
|
|
opacity: 0.5;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.technology-play-area .play-btn i {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 90px;
|
|
height: 90px;
|
|
line-height: 90px;
|
|
font-size: 40px;
|
|
text-align: center;
|
|
background-color: var(--color-white);
|
|
color: var(--Yellow);
|
|
border-radius: 50px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.technology-play-area .play-btn i::after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: transparent;
|
|
border: 0.5px solid var(--color-white);
|
|
border-radius: 50px;
|
|
-webkit-animation: ripple 2s infinite ease-in-out;
|
|
animation: ripple 2s infinite ease-in-out;
|
|
}
|
|
|
|
.technology-play-area .play-btn:hover i {
|
|
background-color: var(--Yellow);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.technology-play-area .play-btn:hover i::after {
|
|
border-color: var(--Yellow);
|
|
}
|
|
|
|
.brand-area {
|
|
position: relative;
|
|
}
|
|
|
|
.brand-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/brand-logo/brand-bg.png);
|
|
}
|
|
|
|
.brand-area-two {
|
|
position: relative;
|
|
background-color: var(--theme-blue);
|
|
}
|
|
|
|
.brand-area-two::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-image: url(../images/brand-logo/brand-bg.png);
|
|
}
|
|
|
|
.brand-item img {
|
|
width: unset !important;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.clients-area {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: #15163b;
|
|
}
|
|
|
|
.clients-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
background-image: url(../images/clients-img/client-bg.png);
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.clients-area .section-title h2 {
|
|
max-width: 430px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.clients-area .owl-nav {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.clients-area .owl-nav .owl-prev {
|
|
position: absolute;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
left: -7%;
|
|
font-size: 25px !important;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 45px;
|
|
height: 45px;
|
|
border-radius: 50px;
|
|
line-height: 47px !important;
|
|
background-color: transparent !important;
|
|
color: var(--theme-blue) !important;
|
|
border: 1px solid var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area .owl-nav .owl-prev:hover {
|
|
color: var(--color-white) !important;
|
|
background-color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area .owl-nav .owl-next {
|
|
position: absolute;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
right: -7%;
|
|
color: var(--dark-44) !important;
|
|
font-size: 25px !important;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 47px !important;
|
|
border-radius: 50px;
|
|
background-color: transparent !important;
|
|
color: var(--theme-blue) !important;
|
|
border: 1px solid var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area .owl-nav .owl-next:hover {
|
|
color: var(--color-white) !important;
|
|
background-color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area-two {
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.clients-area-two .section-title h2 {
|
|
max-width: 430px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.clients-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
|
|
padding: 30px 40px 25px;
|
|
margin-bottom: 30px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.clients-content::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
bottom: 0;
|
|
width: 95%;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: var(--color-white);
|
|
opacity: 0.5;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.clients-content .content {
|
|
padding-left: 110px;
|
|
position: relative;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.clients-content .content img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: 50%;
|
|
width: unset !important;
|
|
width: 85px !important;
|
|
height: 85px !important;
|
|
}
|
|
|
|
.clients-content .content i {
|
|
position: absolute;
|
|
bottom: -10px;
|
|
left: 60px;
|
|
border-radius: 50px;
|
|
width: 35px;
|
|
height: 35px;
|
|
line-height: 35px;
|
|
background-color: var(--Yellow);
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
}
|
|
|
|
.clients-content .content h3 {
|
|
padding-top: 20px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.clients-content .content span {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.clients-content p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.client-circle .client-circle-1 {
|
|
position: absolute;
|
|
top: 10%;
|
|
left: 0;
|
|
}
|
|
|
|
.client-circle .client-circle-2 {
|
|
position: absolute;
|
|
top: 40%;
|
|
left: 3%;
|
|
}
|
|
|
|
.client-circle .client-circle-3 {
|
|
position: absolute;
|
|
top: 75%;
|
|
left: 0%;
|
|
}
|
|
|
|
.client-circle .client-circle-4 {
|
|
position: absolute;
|
|
top: 10%;
|
|
right: 20%;
|
|
}
|
|
|
|
.client-circle .client-circle-5 {
|
|
position: absolute;
|
|
top: 25%;
|
|
right: 5%;
|
|
}
|
|
|
|
.client-circle .client-circle-6 {
|
|
position: absolute;
|
|
top: 70%;
|
|
right: 0;
|
|
}
|
|
|
|
.client-circle .client-circle-7 {
|
|
position: absolute;
|
|
bottom: 5%;
|
|
right: 35%;
|
|
}
|
|
|
|
.circle {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
position: relative;
|
|
z-index: 1;
|
|
border: 13px solid #f6fbff;
|
|
}
|
|
|
|
.clients-content-color {
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.clients-content-color::before {
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.clients-content-color .content h3 {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.clients-content-color .content span {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.clients-content-color p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.clients-area-three {
|
|
background-color: #f4f4ff;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.clients-area-three::before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
background-image: url(../images/shape/bg-shape5.png);
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.clients-area-three .owl-nav {
|
|
margin-top: 0;
|
|
line-height: 0;
|
|
}
|
|
|
|
.clients-area-three .owl-nav .owl-prev {
|
|
position: absolute;
|
|
bottom: 90px;
|
|
left: 575px;
|
|
font-size: 25px !important;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 42px !important;
|
|
border-radius: 50px;
|
|
background-color: transparent !important;
|
|
color: var(--theme-blue) !important;
|
|
border: 1px solid var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area-three .owl-nav .owl-prev:hover {
|
|
color: var(--color-white) !important;
|
|
background-color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area-three .owl-nav .owl-next {
|
|
position: absolute;
|
|
bottom: 90px;
|
|
left: 620px;
|
|
color: var(--dark-44) !important;
|
|
font-size: 24px !important;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 42px !important;
|
|
border-radius: 50px;
|
|
background-color: transparent !important;
|
|
color: var(--theme-blue) !important;
|
|
border: 1px solid var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-area-three .owl-nav .owl-next:hover {
|
|
color: var(--color-white) !important;
|
|
background-color: var(--theme-blue) !important;
|
|
}
|
|
|
|
.clients-slider-img {
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.clients-slider-img img {
|
|
width: unset !important;
|
|
text-align: center;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.clients-slider-img .clients-slider-circle {
|
|
position: absolute;
|
|
z-index: -1;
|
|
bottom: 0;
|
|
left: -35px;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
width: 90%;
|
|
height: 90%;
|
|
-webkit-animation: border-transform 15s infinite ease-in-out;
|
|
animation: border-transform 15s infinite ease-in-out;
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-blue)), to(var(--Dark-blue)));
|
|
background-image: linear-gradient(var(--theme-blue), var(--Dark-blue));
|
|
}
|
|
|
|
.clients-slider-content {
|
|
margin-bottom: 90px;
|
|
}
|
|
|
|
.clients-slider-content i {
|
|
border-radius: 50px;
|
|
width: 80px;
|
|
height: 80px;
|
|
line-height: 82px;
|
|
font-size: 40px;
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
display: inline-block;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.clients-slider-content i::after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: transparent;
|
|
border: 0.5px solid var(--theme-blue);
|
|
border-radius: 50px;
|
|
-webkit-animation: ripple 2s infinite ease-in-out;
|
|
animation: ripple 2s infinite ease-in-out;
|
|
}
|
|
|
|
.clients-slider-content p {
|
|
margin-bottom: 20px;
|
|
font-size: 17px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.clients-slider-content h3 {
|
|
margin-bottom: 7px;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.clients-slider-content span {
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.owl-item.active .clients-slider-item .clients-slider-img {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation-name: fadeInUp;
|
|
animation-name: fadeInUp;
|
|
-webkit-animation-delay: 0.7s;
|
|
animation-delay: 0.7s;
|
|
}
|
|
|
|
.owl-item.active .clients-slider-item .clients-slider-content i {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation-name: fadeInUp;
|
|
animation-name: fadeInUp;
|
|
-webkit-animation-delay: 1.1s;
|
|
animation-delay: 1.1s;
|
|
}
|
|
|
|
.owl-item.active .clients-slider-item .clients-slider-content p {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation-name: fadeInDown;
|
|
animation-name: fadeInDown;
|
|
-webkit-animation-delay: 1.5s;
|
|
animation-delay: 1.5s;
|
|
}
|
|
|
|
.owl-item.active .clients-slider-item .clients-slider-content h3 {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation-name: fadeInUp;
|
|
animation-name: fadeInUp;
|
|
-webkit-animation-delay: 1.7s;
|
|
animation-delay: 1.7s;
|
|
}
|
|
|
|
.owl-item.active .clients-slider-item .clients-slider-content span {
|
|
-webkit-animation-duration: 1s;
|
|
animation-duration: 1s;
|
|
-webkit-animation-fill-mode: both;
|
|
animation-fill-mode: both;
|
|
-webkit-animation-name: fadeInDown;
|
|
animation-name: fadeInDown;
|
|
-webkit-animation-delay: 1.9s;
|
|
animation-delay: 1.9s;
|
|
}
|
|
|
|
.blog-card {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
margin-bottom: 30px;
|
|
border-radius: 5px;
|
|
-webkit-transition: 0.9s;
|
|
transition: 0.9s;
|
|
border: 1px solid #f1f1f1;
|
|
height: fit-content;
|
|
min-height: 95%;
|
|
}
|
|
|
|
.blog-card .blog-img {
|
|
position: relative;
|
|
}
|
|
|
|
.blog-card .blog-img a {
|
|
width: 100%;
|
|
}
|
|
|
|
.blog-card .blog-img img {
|
|
border-radius: 5px;
|
|
width: 100%;
|
|
height: fit-content;
|
|
}
|
|
|
|
.blog-card .blog-img .blog-tag {
|
|
background-color: var(--Yellow);
|
|
padding: 15px 12px;
|
|
position: absolute;
|
|
bottom: -20px;
|
|
right: 30px;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
.blog-card .blog-img .blog-tag h3 {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-card .blog-img .blog-tag span {
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-card .content {
|
|
padding: 25px 30px;
|
|
}
|
|
|
|
.blog-card .content ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-card .content ul li {
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.blog-card .content ul li a {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.blog-card .content ul li a i {
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
margin-right: 5px;
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
|
|
.blog-card .content ul li a:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.blog-card .content ul li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.blog-card .content ul li a:hover i {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-card .content .blog-title-trusting {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.blog-card .content .blog-title-trusting a {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-card .content h3 {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.blog-card .content h3 a {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-card .content p {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.blog-card .content .read-btn {
|
|
color: var(--theme-blue);
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.blog-card .content .read-btn i {
|
|
font-size: 20px;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.blog-card .content .read-btn:hover {
|
|
color: var(--light-dark);
|
|
letter-spacing: 0.25px;
|
|
}
|
|
|
|
.blog-card:hover {
|
|
-webkit-transform: translateY(-10px);
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.blog-card:hover .content h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.blog-item {
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
margin-bottom: 30px;
|
|
border-radius: 5px;
|
|
-webkit-transition: 0.9s;
|
|
transition: 0.9s;
|
|
}
|
|
|
|
.blog-item .blog-img {
|
|
position: relative;
|
|
}
|
|
|
|
.blog-item .blog-img img {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.blog-item .blog-img .blog-tag {
|
|
background-color: var(--theme-blue);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 6px 20px;
|
|
position: absolute;
|
|
bottom: 30px;
|
|
right: 30px;
|
|
border-radius: 50px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.blog-item .blog-img .blog-tag:hover {
|
|
background-color: var(--color-white);
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-item .blog-img2 {
|
|
position: relative;
|
|
}
|
|
|
|
.blog-item .blog-img2 img {
|
|
border-radius: 5px;
|
|
padding: 20px;
|
|
background-color: #e6f1fc;
|
|
}
|
|
|
|
.blog-item .blog-img2 .blog-tag {
|
|
background-color: var(--theme-blue);
|
|
padding: 10px 14px 8px;
|
|
position: absolute;
|
|
top: 30px;
|
|
right: 30px;
|
|
text-align: center;
|
|
}
|
|
|
|
.blog-item .blog-img2 .blog-tag h3 {
|
|
font-size: 20px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
margin-bottom: 2px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.blog-item .blog-img2 .blog-tag span {
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.blog-item .content {
|
|
padding: 25px 21px;
|
|
}
|
|
|
|
.blog-item .content ul {
|
|
list-style: none;
|
|
margin: 0 0 10px;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-item .content ul li {
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
margin-right: 20px;
|
|
color: var(--dark-44);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-item .content ul li i {
|
|
font-size: 18px;
|
|
color: var(--theme-blue);
|
|
margin-right: 5px;
|
|
position: relative;
|
|
top: 3px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.blog-item .content ul li a {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.blog-item .content ul li a i {
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
margin-right: 5px;
|
|
position: relative;
|
|
font-size: 18px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.blog-item .content ul li a:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.blog-item .content ul li a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-item .content ul li a:hover i {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.blog-item .content h3 {
|
|
margin-bottom: 10px;
|
|
font-size: 22px;
|
|
}
|
|
|
|
.blog-item .content h3 a {
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-item .content p {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.blog-item .content .read-btn {
|
|
color: var(--theme-blue);
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.blog-item .content .read-btn i {
|
|
font-size: 20px;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.blog-item .content .read-btn:hover {
|
|
color: var(--light-dark);
|
|
letter-spacing: 0.25px;
|
|
}
|
|
|
|
.blog-item:hover {
|
|
-webkit-transform: translateY(-10px);
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.blog-item:hover .content h3 a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-article {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.blog-article .blog-article-img {
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
}
|
|
|
|
.blog-article .blog-article-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.blog-article .blog-article-img .blog-article-tag {
|
|
background-color: var(--Yellow);
|
|
padding: 15px 12px;
|
|
position: absolute;
|
|
bottom: -20px;
|
|
right: 30px;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
}
|
|
|
|
.blog-article .blog-article-img .blog-article-tag h3 {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-article .blog-article-img .blog-article-tag span {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-article .blog-article-title {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.blog-article .blog-article-title ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-article .blog-article-title ul li {
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
color: var(--light-dark);
|
|
margin-right: 30px;
|
|
position: relative;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-article .blog-article-title ul li:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.blog-article .blog-article-title ul li i {
|
|
font-size: 18px;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
top: 3px;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-article .blog-article-title h2 {
|
|
margin-top: 15px;
|
|
font-size: 26px;
|
|
max-width: 650px;
|
|
margin-bottom: 0;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-article .article-content {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.blog-article .article-content p {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.blog-article .article-content .blockquote {
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 30px;
|
|
margin-top: 30px;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
padding: 20px 30px 20px 50px;
|
|
margin-left: 35px;
|
|
}
|
|
|
|
.blog-article .article-content .blockquote p {
|
|
font-size: 15px;
|
|
color: var(--dark-44);
|
|
font-weight: 500;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.blog-article .article-content .blockquote span {
|
|
font-size: 15px;
|
|
color: var(--light-dark);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.blog-article .article-content .blockquote i {
|
|
font-size: 35px;
|
|
width: 70px;
|
|
height: 70px;
|
|
line-height: 70px;
|
|
color: var(--color-white);
|
|
background-image: linear-gradient(to right, var(--dark-blue-60), var(--theme-blue));
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
position: absolute;
|
|
top: 24%;
|
|
left: -35px;
|
|
}
|
|
|
|
.blog-article .blog-article-share {
|
|
padding: 10px 0;
|
|
border-top: 1px solid #e1e1e1;
|
|
border-bottom: 1px solid #e1e1e1;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul li {
|
|
display: inline-block;
|
|
padding: 5px 3px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
color: var(--light-dark);
|
|
font-weight: 400;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul li:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul li i {
|
|
color: var(--theme-blue);
|
|
font-size: 18px;
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul li a {
|
|
color: var(--color-white);
|
|
background-color: var(--theme-blue);
|
|
padding: 5px 12px;
|
|
border-radius: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.blog-article .blog-article-share .blog-tag ul li:hover a {
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.blog-article .blog-article-share .social-icon {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
float: right;
|
|
}
|
|
|
|
.blog-article .blog-article-share .social-icon li {
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.blog-article .blog-article-share .social-icon li a {
|
|
border-radius: 0;
|
|
width: 35px;
|
|
height: 35px;
|
|
line-height: 37px;
|
|
text-align: center;
|
|
color: var(--theme-blue);
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.blog-article .blog-article-share .social-icon li a:hover {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.blog-article .comments-wrap {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-title .title {
|
|
font-size: 24px;
|
|
margin-bottom: 0;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li {
|
|
position: relative;
|
|
padding: 30px;
|
|
padding-left: 75px;
|
|
border-bottom: 1px solid #e1e1e1;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li img {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li h3 {
|
|
margin-bottom: 5px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li span {
|
|
font-size: 15px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li p {
|
|
margin-top: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li a {
|
|
color: var(--theme-blue);
|
|
font-weight: 600;
|
|
position: absolute;
|
|
top: 30px;
|
|
right: 0;
|
|
}
|
|
|
|
.blog-article .comments-wrap .comment-list li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.blog-article .comments-form {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.blog-article .comments-form .title {
|
|
font-size: 24px;
|
|
margin-bottom: 20px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.blog-article .comments-form .contact-form {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
padding: 0;
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.blog-article .comments-form .default-btn {
|
|
width: unset;
|
|
}
|
|
|
|
.search-widget {
|
|
margin-bottom: 30px;
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.search-widget .search-form {
|
|
position: relative;
|
|
border: 1px solid #e2e2e2;
|
|
border-radius: 5px;
|
|
right: 0 !important;
|
|
}
|
|
|
|
.search-widget .search-form .form-control {
|
|
height: 50px;
|
|
border: none;
|
|
background-color: var(--color-white);
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
color: var(--light-dark);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.search-widget .search-form .form-control:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
outline: 0;
|
|
}
|
|
|
|
.search-widget .search-form button {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 3px;
|
|
height: 45px;
|
|
width: 45px;
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
border: none;
|
|
outline: none;
|
|
background-color: var(--theme-blue);
|
|
line-height: 57px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.search-widget .search-form button i {
|
|
color: var(--color-white);
|
|
font-size: 24px;
|
|
}
|
|
|
|
.search-widget .search-form button:hover {
|
|
background-color: var(--light-dark);
|
|
}
|
|
|
|
.side-bar-area {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.side-bar-widget {
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.side-bar-widget .title {
|
|
font-size: 20px;
|
|
color: var(--light-dark);
|
|
padding: 0;
|
|
font-weight: 600;
|
|
position: relative;
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
background-color: transparent;
|
|
width: 100%;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li {
|
|
position: relative;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li .line-circle {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 0;
|
|
width: 13px;
|
|
height: 13px;
|
|
background-color: transparent;
|
|
border: 1px solid var(--theme-blue);
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li .line-circle::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 1px;
|
|
left: 1px;
|
|
right: 1px;
|
|
margin: 0 auto;
|
|
width: 9px;
|
|
height: 9px;
|
|
background-color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li a {
|
|
display: inline-block;
|
|
color: var(--dark-44);
|
|
font-weight: 400;
|
|
padding: 5px 0 5px 25px;
|
|
font-weight: 600;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li a span {
|
|
right: 30px;
|
|
position: absolute;
|
|
top: 10px;
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.side-bar-widget .side-bar-categories ul li a:hover span {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item {
|
|
overflow: hidden;
|
|
margin-bottom: 13px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 1px solid #e2e2e2;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item:last-child {
|
|
margin-bottom: 0;
|
|
border-bottom: none;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb {
|
|
float: left;
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb .full-image {
|
|
width: 80px;
|
|
height: 80px;
|
|
display: inline-block;
|
|
background-size: cover !important;
|
|
background-repeat: no-repeat;
|
|
background-position: center center !important;
|
|
position: relative;
|
|
background-color: var(--Dark-blue);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
|
|
background-image: url(../images/blog/blog-details.jpg);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
|
|
background-image: url(../images/blog/blog-img2.jpg);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
|
|
background-image: url(../images/blog/blog-img3.jpg);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg4 {
|
|
background-image: url(../images/blog/blog-img1.jpg);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .info {
|
|
overflow: hidden;
|
|
padding: 0;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .info .title-text {
|
|
margin-bottom: 0;
|
|
line-height: 1.5;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
max-width: 210px;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .info .title-text a {
|
|
display: inline-block;
|
|
color: var(--light-dark);
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.side-bar-widget .widget-popular-post .item .info p {
|
|
font-size: 15px;
|
|
margin-bottom: 0;
|
|
max-width: 180px;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.side-bar-widget .side-bar-widget-tag {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-widget-tag li {
|
|
display: inline-block;
|
|
margin: 5px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.side-bar-widget .side-bar-widget-tag li a {
|
|
color: var(--color-white);
|
|
padding: 7px 15px;
|
|
background-color: var(--theme-blue);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
border-radius: 5px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.side-bar-widget .side-bar-widget-tag li:hover a {
|
|
color: var(--color-white);
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
padding-left: 0;
|
|
list-style-type: none;
|
|
margin-left: -5px;
|
|
margin-right: -5px;
|
|
margin-top: 10px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li {
|
|
-webkit-box-flex: 0;
|
|
-ms-flex: 0 0 33.33%;
|
|
flex: 0 0 33.33%;
|
|
max-width: 33.33%;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a {
|
|
display: block;
|
|
position: relative;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--theme-blue);
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a::after {
|
|
content: "\ee93";
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
-webkit-transform: translate(0, -50%);
|
|
transform: translate(0, -50%);
|
|
text-align: center;
|
|
background-color: transparent;
|
|
-webkit-transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
font-size: 35px;
|
|
font-family: boxicons;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a:hover::before {
|
|
opacity: 0.5;
|
|
visibility: visible;
|
|
}
|
|
|
|
.side-bar-widget .blog-gallery li a:hover::after {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.blog-style-card {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.blog-style-card .blog-style-img {
|
|
position: relative;
|
|
}
|
|
|
|
.blog-style-card .blog-style-img img {
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.blog-style-card .blog-style-img .blog-style-tag {
|
|
background-color: var(--Yellow);
|
|
padding: 15px 12px;
|
|
position: absolute;
|
|
bottom: -20px;
|
|
right: 30px;
|
|
border-radius: 3px;
|
|
text-align: center;
|
|
}
|
|
|
|
.blog-style-card .blog-style-img .blog-style-tag h3 {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
margin-bottom: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-style-card .blog-style-img .blog-style-tag span {
|
|
font-size: 17px;
|
|
color: var(--color-white);
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-style-card .content {
|
|
padding: 30px 0 0;
|
|
}
|
|
|
|
.blog-style-card .content ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.blog-style-card .content ul li {
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
color: var(--light-dark);
|
|
margin-right: 30px;
|
|
position: relative;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.blog-style-card .content ul li:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.blog-style-card .content ul li i {
|
|
font-size: 18px;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
top: 3px;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.blog-style-card .content h3 {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.blog-style-card .content h3 a {
|
|
color: var(--light-dark);
|
|
display: block;
|
|
}
|
|
|
|
.blog-style-card .content p {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.blog-style-card .content .default-btn {
|
|
padding: 8px 16px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.blog-style-card:hover .content h3 a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.faq-area .section-title p {
|
|
max-width: 560px;
|
|
}
|
|
|
|
.faq-content {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.faq-content .section-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.faq-content .section-title h2 {
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.faq-content .section-title p {
|
|
max-width: 540px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion {
|
|
list-style-type: none;
|
|
padding-left: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-item {
|
|
display: block;
|
|
margin-bottom: 15px;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-title {
|
|
padding: 15px 60px 15px 20px;
|
|
color: var(--light-dark);
|
|
text-decoration: none;
|
|
position: relative;
|
|
display: block;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-title i {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 14px;
|
|
font-size: 25px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
font-size: 24px;
|
|
width: 30px;
|
|
height: 30px;
|
|
color: var(--theme-blue);
|
|
text-align: center;
|
|
line-height: 30px;
|
|
background-color: transparent;
|
|
border-radius: 50px;
|
|
border: 1px solid var(--theme-blue);
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-title.active i::before {
|
|
content: "\eaed";
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-title.active i .accordion-content p {
|
|
margin-top: -5px;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-content {
|
|
display: none;
|
|
position: relative;
|
|
margin-top: 0;
|
|
padding-bottom: 10px;
|
|
padding-right: 20px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-content p {
|
|
margin-top: -6px;
|
|
line-height: 1.8;
|
|
font-size: 15px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.faq-content .faq-accordion .accordion .accordion-content.show {
|
|
display: block;
|
|
}
|
|
|
|
.user-img {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.user-form .contact-form {
|
|
max-width: 640px;
|
|
}
|
|
|
|
.user-form .contact-form .agree-label .forget {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
.user-form .contact-form .default-btn {
|
|
width: unset;
|
|
}
|
|
|
|
.user-form .contact-form .account-desc {
|
|
margin-top: 15px;
|
|
font-weight: 600;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.user-form .contact-form .account-desc a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.user-form .contact-form .account-desc a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.pagination-area {
|
|
margin-top: 10px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.pagination-area .page-numbers {
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
color: var(--theme-blue);
|
|
background-color: transparent;
|
|
border: 1px solid var(--theme-blue);
|
|
text-align: center;
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
font-size: 18px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.pagination-area .page-numbers:hover {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.pagination-area .page-numbers i {
|
|
position: relative;
|
|
font-size: 25px;
|
|
top: 5px;
|
|
}
|
|
|
|
.pagination-area .page-numbers.current {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.terms-conditions-img {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.single-content {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.single-content h3 {
|
|
font-size: 24px;
|
|
color: var(--light-dark);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.single-content p {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.contact-form {
|
|
max-width: 800px;
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-bottom: 30px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.contact-form h2 {
|
|
color: var(--light-dark);
|
|
margin-bottom: 30px;
|
|
font-weight: 700;
|
|
font-size: 26px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.contact-form .form-group {
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.contact-form .form-group label {
|
|
color: var(--light-dark);
|
|
font-size: 15px;
|
|
margin-bottom: 15px;
|
|
font-weight: 500;
|
|
min-height: 100%;
|
|
height: max-content;
|
|
max-height: 100%;
|
|
}
|
|
|
|
.contact-form .form-group label span {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.contact-form .form-group.checkbox-option {
|
|
position: relative;
|
|
}
|
|
|
|
.contact-form .form-group.checkbox-option #chb2 {
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 0;
|
|
}
|
|
|
|
.contact-form .form-group.checkbox-option p {
|
|
padding-left: 25px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.contact-form .form-group.checkbox-option p a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.contact-form .form-group.checkbox-option p a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.contact-form .form-group .is-invalid {
|
|
border-color: #e63c3c !important;
|
|
}
|
|
|
|
.contact-form .form-group .form-control {
|
|
height: 50px;
|
|
color: var(--light-dark);
|
|
border: 1px solid var(--theme-blue);
|
|
background-color: var(--color-white);
|
|
font-size: 15px;
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
border-radius: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.contact-form .form-group .is-invalid:focus {
|
|
border-color: #e63c3c !important;
|
|
}
|
|
|
|
.contact-form .form-group .form-control:focus {
|
|
outline: none;
|
|
border-color: var(--light-dark);
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.contact-form .form-group textarea.form-control {
|
|
height: auto;
|
|
}
|
|
|
|
.contact-form .agree-label {
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
}
|
|
|
|
.contact-form .agree-label #chb1 {
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 0;
|
|
}
|
|
|
|
.contact-form .agree-label label {
|
|
font-weight: 500;
|
|
color: var(--light-dark);
|
|
margin-left: 25px;
|
|
}
|
|
|
|
.contact-form .agree-label label a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.contact-form .agree-label label a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.contact-form .with-errors {
|
|
float: left;
|
|
font-size: 14px;
|
|
margin-top: 10px;
|
|
margin-bottom: 0;
|
|
color: red;
|
|
font-weight: 400;
|
|
display: block;
|
|
}
|
|
|
|
.contact-form .text-danger {
|
|
font-size: 18px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.contact-form .default-btn {
|
|
border: 0;
|
|
outline: none;
|
|
}
|
|
|
|
.contact-form .form-group .form-control::-webkit-input-placeholder,
|
|
.contact-form .form-group .form-control:-ms-input-placeholder,
|
|
.contact-form .form-group .form-control::-ms-input-placeholder,
|
|
.contact-form .form-group .form-control::-webkit-input-placeholder {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.contact-form .form-group .form-control::-webkit-input-placeholder,
|
|
.contact-form .form-group .form-control:-ms-input-placeholder,
|
|
.contact-form .form-group .form-control::-ms-input-placeholder,
|
|
.contact-form .form-group .form-control::placeholder {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.contact-card {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
background-color: var(--color-white);
|
|
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
|
|
padding: 30px 20px;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.contact-card i {
|
|
width: 60px;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
background-color: var(--color-white);
|
|
font-size: 24px;
|
|
color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
border: 1px solid #e2e2e2;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.contact-card h3 {
|
|
font-size: 24px;
|
|
margin-bottom: 10px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.contact-card span {
|
|
color: var(--dark-44);
|
|
font-weight: 500;
|
|
font-size: 17px;
|
|
display: block;
|
|
}
|
|
|
|
.contact-card span a {
|
|
color: var(--dark-44);
|
|
display: block;
|
|
}
|
|
|
|
.contact-card span a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.contact-info {
|
|
margin-bottom: 30px;
|
|
background-color: var(--Dark-blue);
|
|
padding: 52px 35px 22px;
|
|
border-radius: 15px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.contact-info::before {
|
|
content: "";
|
|
position: absolute;
|
|
opacity: 0.1;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url(../images/call-us/call-shape1.png);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.contact-info span {
|
|
color: var(--Yellow);
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.contact-info h2 {
|
|
color: var(--color-white);
|
|
font-size: 26px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.contact-info p {
|
|
color: var(--color-white);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.contact-info ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.contact-info ul li {
|
|
display: block;
|
|
margin-bottom: 30px;
|
|
padding-left: 60px;
|
|
position: relative;
|
|
}
|
|
|
|
.contact-info ul li .content i {
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 45px;
|
|
background-color: var(--color-white);
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
border: 1px solid #e2e2e2;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.contact-info ul li .content h3 {
|
|
font-size: 18px;
|
|
margin-bottom: 10px;
|
|
color: var(--color-white);
|
|
display: block;
|
|
}
|
|
|
|
.contact-info ul li .content a {
|
|
color: var(--color-white);
|
|
display: block;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.contact-info ul li .content a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.contact-info ul li .content span {
|
|
color: var(--color-white);
|
|
font-weight: 400;
|
|
display: block;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.error-area {
|
|
height: 100%;
|
|
padding-top: 50px;
|
|
padding-bottom: 70px;
|
|
}
|
|
|
|
.error-area .error-content {
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.error-area .error-content img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.error-area .error-content h3 {
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
color: var(--light-dark);
|
|
font-size: 35px;
|
|
}
|
|
|
|
.error-area .error-content p {
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
font-size: 18px;
|
|
max-width: 520px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.coming-soon-area {
|
|
position: relative;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background-color: var(--color-white);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content {
|
|
text-align: center;
|
|
max-width: 750px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
position: relative;
|
|
z-index: 2;
|
|
padding: 50px 30px;
|
|
background-color: var(--light-white-f8f8);
|
|
border: 3px solid var(--theme-blue);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content h1 {
|
|
margin-bottom: 0;
|
|
color: var(--light-dark);
|
|
font-size: 50px;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content p {
|
|
font-size: 16px;
|
|
max-width: 600px;
|
|
margin-top: 15px;
|
|
margin-bottom: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div {
|
|
display: inline-block;
|
|
color: var(--light-dark);
|
|
position: relative;
|
|
width: 80px;
|
|
height: 80px;
|
|
margin: 0 10px;
|
|
font-size: 35px;
|
|
font-weight: 700;
|
|
background-color: var(--color-white);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div span {
|
|
display: block;
|
|
text-transform: capitalize;
|
|
margin-top: -15px;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div:last-child::before {
|
|
display: none;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content #timer div::before {
|
|
content: "";
|
|
position: absolute;
|
|
right: -50px;
|
|
top: -10px;
|
|
font-size: 70px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form {
|
|
position: relative;
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
|
|
display: block;
|
|
width: 100%;
|
|
height: 60px;
|
|
border: none;
|
|
background-color: var(--color-white);
|
|
padding-left: 15px;
|
|
color: var(--color-white);
|
|
outline: 0;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
border-radius: 0;
|
|
border: 1px solid #ccc;
|
|
color: #5d5d5d;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
|
|
border-color: var(--light-dark);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
|
|
border: 0;
|
|
outline: 0;
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form button {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
height: 60px;
|
|
padding: 0 30px;
|
|
text-transform: uppercase;
|
|
outline: 0;
|
|
color: var(--color-white);
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form button::after {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form button::before {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content .newsletter-form button:hover {
|
|
color: var(--color-white);
|
|
background-color: #190f3c;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content ul {
|
|
list-style: none;
|
|
margin-top: 30px;
|
|
padding: 0;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content ul li {
|
|
display: inline-block;
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 50px;
|
|
font-size: 18px;
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
border-radius: 50px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content ul li a {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.coming-soon-area .coming-soon-content ul li:hover {
|
|
background-color: var(--light-dark);
|
|
}
|
|
|
|
.coming-soon-area #validator-newsletter {
|
|
text-align: left;
|
|
color: #dc3545 !important;
|
|
}
|
|
|
|
.map-area iframe {
|
|
display: block;
|
|
width: 100%;
|
|
height: 400px;
|
|
}
|
|
|
|
.footer-section {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.industries-div {
|
|
width: 67%;
|
|
}
|
|
|
|
.services-div {
|
|
width: 30%;
|
|
}
|
|
|
|
.footer-bg {
|
|
position: relative;
|
|
}
|
|
|
|
.footer-details-text {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-sub-title {
|
|
color: var(--Dark-blue);
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
margin: 0;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.industries-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.industries-footer ul {
|
|
list-style: none;
|
|
padding-left: 0px;
|
|
width: 30%;
|
|
}
|
|
|
|
.industries-footer ul li {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.industries-footer ul li a {
|
|
color: #2f78c4 !important;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.services-div .industries-footer ul {
|
|
width: 100%;
|
|
}
|
|
|
|
.ocean {
|
|
height: 100%;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: -30px;
|
|
left: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wave {
|
|
background: url(../images/wave.svg) repeat-x;
|
|
width: 6400px;
|
|
height: 198px;
|
|
animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.wave:nth-of-type(2) {
|
|
top: 30px;
|
|
animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
|
|
opacity: 1;
|
|
position: absolute;
|
|
}
|
|
|
|
@keyframes wave {
|
|
0% {
|
|
margin-left: 0;
|
|
}
|
|
|
|
100% {
|
|
margin-left: -1600px;
|
|
}
|
|
}
|
|
|
|
@keyframes swell {
|
|
|
|
0%,
|
|
100% {
|
|
transform: translate3d(0, -25px, 0);
|
|
}
|
|
|
|
50% {
|
|
transform: translate3d(0, 5px, 0);
|
|
}
|
|
}
|
|
|
|
.footer-widget {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.footer-widget .footer-logo {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.footer-widget h3 {
|
|
margin-top: 0;
|
|
font-size: 24px;
|
|
margin-bottom: 30px;
|
|
color: var(--Dark-blue);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.footer-widget p {
|
|
margin-bottom: 20px;
|
|
color: var(--dark-44);
|
|
max-width: 300px;
|
|
font-family: 'Gilroy-Regular';
|
|
}
|
|
|
|
.footer-widget .footer-call-content {
|
|
background-color: #aad8ff;
|
|
padding: 20px 80px 15px 20px;
|
|
border-radius: 15px;
|
|
position: relative;
|
|
max-width: 345px;
|
|
min-width: 245px;
|
|
}
|
|
|
|
.footer-widget .footer-call-content:hover i {
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.footer-widget .footer-call-content h3 {
|
|
font-size: 17px;
|
|
line-height: 1;
|
|
margin-bottom: 5px;
|
|
color: var(--light-dark);
|
|
}
|
|
|
|
.footer-widget .footer-call-content span a {
|
|
color: var(--light-dark);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer-widget .footer-call-content span a:hover {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.footer-widget .footer-call-content i {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 20px;
|
|
width: 60px;
|
|
height: 60px;
|
|
font-size: 35px;
|
|
line-height: 60px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
background-color: #e5f3ff;
|
|
color: var(--theme-blue);
|
|
border-radius: 50px;
|
|
-webkit-transition: 0.7s;
|
|
transition: 0.7s;
|
|
}
|
|
|
|
.footer-widget .footer-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-widget .footer-list li {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer-widget .footer-list li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.footer-widget .footer-list li a {
|
|
color: var(--dark-44);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.footer-widget .footer-list li a i {
|
|
font-size: 18px;
|
|
position: relative;
|
|
top: 3px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.footer-widget .footer-list li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.footer-widget .footer-blog {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-widget .footer-blog li {
|
|
display: block;
|
|
margin-bottom: 20px;
|
|
padding-left: 90px;
|
|
position: relative;
|
|
}
|
|
|
|
.footer-widget .footer-blog li:hover h3 a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.footer-widget .footer-blog li:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.footer-widget .footer-blog li a {
|
|
display: block;
|
|
}
|
|
|
|
.footer-widget .footer-blog li a img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 70px;
|
|
width: 70px;
|
|
}
|
|
|
|
.footer-widget .footer-blog li h3 {
|
|
font-size: 16px;
|
|
color: var(--color-white);
|
|
margin-bottom: 5px;
|
|
max-width: 200px;
|
|
}
|
|
|
|
.footer-widget .footer-blog li h3 a {
|
|
color: var(--dark-44);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.footer-widget .footer-blog li h3 a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.footer-widget .footer-blog li span {
|
|
font-size: 14px;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form {
|
|
position: relative;
|
|
max-width: 270px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form .form-control {
|
|
background-color: var(--color-white);
|
|
height: 50px;
|
|
line-height: 50px;
|
|
margin: 0;
|
|
border-radius: 5px;
|
|
border: 0;
|
|
padding: 0 45px 0 15px;
|
|
max-width: 100%;
|
|
color: var(--light-dark);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form .form-control:focus {
|
|
outline: none;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form .subscribe-btn {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 3px;
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
height: 45px;
|
|
line-height: 50px;
|
|
width: 45px;
|
|
border: 0;
|
|
border-radius: 5px;
|
|
font-size: 20px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form .subscribe-btn:hover {
|
|
background: var(--light-dark);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.footer-widget .newsletter-area .newsletter-form .validation-danger {
|
|
font-size: 18px;
|
|
margin-top: 5px;
|
|
color: red;
|
|
}
|
|
|
|
.copy-right-area {
|
|
padding: 15px 0;
|
|
border-top: 1px solid #0071dc61;
|
|
}
|
|
|
|
.copy-right-text {
|
|
text-align: center;
|
|
}
|
|
|
|
.copy-right-text p {
|
|
color: var(--dark-44);
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.copy-right-text p a {
|
|
color: var(--Yellow);
|
|
border-bottom: 1px solid var(--Yellow);
|
|
}
|
|
|
|
.copy-right-text p a:hover {
|
|
color: var(--theme-blue);
|
|
border-color: var(--theme-blue);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.go-top {
|
|
position: fixed;
|
|
top: 60%;
|
|
right: 90px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
color: var(--color-white);
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
text-align: center;
|
|
background: var(--theme-blue);
|
|
border-radius: 50%;
|
|
width: 45px;
|
|
height: 45px;
|
|
line-height: 48px;
|
|
z-index: 100;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.go-top i {
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.go-top:hover {
|
|
background-color: var(--Yellow);
|
|
}
|
|
|
|
.go-top.active {
|
|
top: auto;
|
|
bottom: 17px;
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.preloader {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 99999;
|
|
background: var(--Dark-blue);
|
|
}
|
|
|
|
.spinner {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 5px;
|
|
background-color: var(--color-white);
|
|
margin: 100px auto;
|
|
-webkit-animation: rotate-in 1.2s infinite ease-in-out;
|
|
animation: rotate-in 1.2s infinite ease-in-out;
|
|
}
|
|
|
|
.loader-wrapper {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: fixed;
|
|
overflow: hidden;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 999999;
|
|
}
|
|
|
|
.bg-grd-blue-radial,
|
|
.loader-wrapper {
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
}
|
|
|
|
.loader {
|
|
width: 20em;
|
|
height: 20em;
|
|
font-size: 10px;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.loader .face {
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
border-style: solid;
|
|
animation: animate 3s linear infinite;
|
|
}
|
|
|
|
.loader .face:nth-child(1) {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #6dccff;
|
|
border-color: currentColor transparent transparent currentColor;
|
|
border-width: 0.2em 0.2em 0 0;
|
|
--deg: -45deg;
|
|
animation-direction: normal;
|
|
}
|
|
|
|
.loader .face:nth-child(2) {
|
|
width: 70%;
|
|
height: 70%;
|
|
color: var(--color-white);
|
|
border-color: currentColor currentColor transparent transparent;
|
|
border-width: 0.2em 0 0 0.2em;
|
|
--deg: -135deg;
|
|
animation-direction: reverse;
|
|
}
|
|
|
|
.loader .face .circle {
|
|
position: absolute;
|
|
width: 50%;
|
|
height: 0.1em;
|
|
top: 50%;
|
|
left: 50%;
|
|
background-color: transparent;
|
|
transform: rotate(var(--deg));
|
|
transform-origin: left;
|
|
border: none;
|
|
}
|
|
|
|
.loader .face:nth-child(1) .circle {
|
|
transform: matrix(.70711, -.70711, .70711, .70711, 0, 0);
|
|
}
|
|
|
|
.loader .face:nth-child(2) .circle {
|
|
transform: matrix(-.70711, -.70711, .70711, -.70711, 0, 0);
|
|
}
|
|
|
|
.loader .face .circle::before {
|
|
position: absolute;
|
|
top: -0.5em;
|
|
right: -0.5em;
|
|
content: '';
|
|
width: 1em;
|
|
height: 1em;
|
|
background-color: currentColor;
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em, 0 0 0 0.5em rgb(109 204 255 / 10%);
|
|
}
|
|
|
|
@keyframes animate {
|
|
100% {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.form-error-message {
|
|
animation-duration: 1s !important;
|
|
animation-fill-mode: both !important;
|
|
animation-name: shake !important;
|
|
color: #e63c3c !important;
|
|
line-height: 25px;
|
|
white-space: nowrap;
|
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
|
|
box-shadow 0.15s ease-in-out;
|
|
}
|
|
|
|
@-webkit-keyframes rotate-in {
|
|
0% {
|
|
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
}
|
|
|
|
50% {
|
|
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
}
|
|
}
|
|
|
|
@keyframes rotate-in {
|
|
0% {
|
|
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
|
|
}
|
|
|
|
50% {
|
|
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes moveBounce {
|
|
0% {
|
|
-webkit-transform: translateY(0px);
|
|
transform: translateY(0px);
|
|
}
|
|
|
|
50% {
|
|
-webkit-transform: translateY(50px);
|
|
transform: translateY(50px);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: translateY(0px);
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
|
|
@keyframes moveBounce {
|
|
0% {
|
|
-webkit-transform: translateY(0px);
|
|
transform: translateY(0px);
|
|
}
|
|
|
|
50% {
|
|
-webkit-transform: translateY(50px);
|
|
transform: translateY(50px);
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: translateY(0px);
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes ripple {
|
|
0% {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
75% {
|
|
-webkit-transform: scale(1.3);
|
|
transform: scale(1.3);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: scale(1.5);
|
|
transform: scale(1.5);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes ripple {
|
|
0% {
|
|
-webkit-transform: scale(1);
|
|
transform: scale(1);
|
|
}
|
|
|
|
75% {
|
|
-webkit-transform: scale(1.3);
|
|
transform: scale(1.3);
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
-webkit-transform: scale(1.5);
|
|
transform: scale(1.5);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@-webkit-keyframes border-transform {
|
|
|
|
0%,
|
|
100% {
|
|
border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
|
|
}
|
|
|
|
14% {
|
|
border-radius: 50% 20% 50% 30%/49% 60% 40% 51%;
|
|
}
|
|
|
|
28% {
|
|
border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
|
|
}
|
|
|
|
42% {
|
|
border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
|
|
}
|
|
|
|
56% {
|
|
border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
|
|
}
|
|
|
|
70% {
|
|
border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
|
|
}
|
|
|
|
84% {
|
|
border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
|
|
}
|
|
}
|
|
|
|
@keyframes border-transform {
|
|
|
|
0%,
|
|
100% {
|
|
border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
|
|
}
|
|
|
|
14% {
|
|
border-radius: 50% 20% 50% 30%/49% 60% 40% 51%;
|
|
}
|
|
|
|
28% {
|
|
border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
|
|
}
|
|
|
|
42% {
|
|
border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
|
|
}
|
|
|
|
56% {
|
|
border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
|
|
}
|
|
|
|
70% {
|
|
border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
|
|
}
|
|
|
|
84% {
|
|
border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
|
|
}
|
|
}
|
|
|
|
.information {
|
|
background: #53565a;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.information p {
|
|
color: var(--color-white);
|
|
margin: 0;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.information i {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.goog-te-banner-frame.skiptranslate {
|
|
display: none !important;
|
|
}
|
|
|
|
body {
|
|
top: 0px !important;
|
|
}
|
|
|
|
.skiptranslate .goog-te-gadget span {
|
|
display: none;
|
|
}
|
|
|
|
.goog-te-combo {
|
|
padding: 10px;
|
|
border: none;
|
|
color: var(--color-white);
|
|
background-color: var(--Dark-blue);
|
|
font-weight: 500;
|
|
font-size: 14px !important;
|
|
border-radius: 5px;
|
|
margin: 3px 0 0 30px !important;
|
|
}
|
|
|
|
.goog-te-combo:focus {
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
.goog-te-combo::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.item-con {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 30px;
|
|
}
|
|
|
|
.brand-building-menu {
|
|
max-width: 330px;
|
|
}
|
|
|
|
.item {
|
|
max-width: 460px;
|
|
overflow: hidden;
|
|
border-radius: 0.375rem;
|
|
background: white;
|
|
transition-property: all;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
box-shadow: 0px 8px 9px #00000030;
|
|
height: max-content;
|
|
min-height: 95%;
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
|
|
|
|
.item figure img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
vertical-align: middle;
|
|
transition-property: all;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 250ms;
|
|
}
|
|
|
|
.item figure img:hover {
|
|
filter: saturate(0.05)
|
|
}
|
|
|
|
|
|
|
|
.this-meta {
|
|
padding: .75rem;
|
|
}
|
|
|
|
.this-meta .figure-sub-title {
|
|
width: fit-content;
|
|
cursor: pointer;
|
|
font-family: "Gilroy-Regular";
|
|
font-size: 1.125rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
color: rgb(51, 51, 51);
|
|
transition-property: all;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.this-meta .figure-sub-title:hover {
|
|
color: black;
|
|
}
|
|
|
|
.this-meta .figure-sub-title a {
|
|
color: var(--dark-44);
|
|
}
|
|
|
|
.this-meta .figure-sub-title a:hover {
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.b-con {
|
|
margin-top: 0.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 0.875rem;
|
|
line-height: 1.25rem;
|
|
}
|
|
|
|
.b-con .bc-item {
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
color: rgb(34, 46, 57);
|
|
}
|
|
|
|
.b-con .bc-item:hover {
|
|
color: black;
|
|
}
|
|
|
|
.bc-item.author,
|
|
put-stamp {
|
|
margin-right: 1.5rem;
|
|
}
|
|
|
|
.author-name {
|
|
color: var(--dark-blue-60);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.navbar-nav .nav-item+.nav-item {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.post-module {
|
|
position: relative;
|
|
z-index: 1;
|
|
display: block;
|
|
background: var(--color-white);
|
|
min-width: 270px;
|
|
height: 400px;
|
|
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
|
|
transition: all 0.3s linear 0s;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-module:hover,
|
|
.hover {
|
|
box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.post-module:hover .thumbnail img,
|
|
.hover .thumbnail img {
|
|
transform: scale(1.1);
|
|
opacity: .6;
|
|
}
|
|
|
|
.post-module .thumbnail {
|
|
background: #00000052;
|
|
height: 400px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-module .thumbnail .date {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 1;
|
|
background: #e74c3c;
|
|
width: 55px;
|
|
height: 55px;
|
|
padding: 12.5px 0;
|
|
-webkit-border-radius: 100%;
|
|
-moz-border-radius: 100%;
|
|
border-radius: 100%;
|
|
color: var(--color-white);
|
|
font-weight: 700;
|
|
text-align: center;
|
|
-webkti-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.post-module .thumbnail .date .day {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.post-module .thumbnail .date .month {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.post-module .thumbnail img {
|
|
display: block;
|
|
width: 100%;
|
|
transition: all 0.3s linear 0s;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.post-module .post-content {
|
|
position: absolute;
|
|
bottom: 0;
|
|
background: #080c43c7;
|
|
width: 100%;
|
|
padding: 30px;
|
|
box-sizing: border-box;
|
|
transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
|
|
}
|
|
|
|
.post-module .post-content .title {
|
|
margin: 0;
|
|
padding: 0 0 10px;
|
|
color: var(--color-white);
|
|
font-size: 22px;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.post-module .post-content .sub_title {
|
|
margin: 0;
|
|
padding: 0 0 10px;
|
|
color: var(--Yellow);
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.post-module .post-content .description {
|
|
color: #dbdbdb;
|
|
font-size: 14px;
|
|
line-height: 1.8em;
|
|
height: 0;
|
|
opacity: 0;
|
|
transition: height 0.5s, opacity 0.5s;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.post-module .post-content .post-meta {
|
|
margin: 10px 0 0;
|
|
color: #999999;
|
|
}
|
|
|
|
.post-module .post-content .post-meta .timestamp {
|
|
margin: 0 16px 0 0;
|
|
}
|
|
|
|
.post-module .post-content .post-meta a {
|
|
color: var(--Yellow);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.hover .post-content .description {
|
|
display: block !important;
|
|
height: auto !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
.container:before,
|
|
.container:after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
.container .column {
|
|
box-sizing: border-box;
|
|
float: left;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.container .column .demo-title {
|
|
margin: 0 0 15px;
|
|
color: #666666;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.container .info {
|
|
width: 300px;
|
|
margin: 50px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.container .info h1 {
|
|
margin: 0 0 15px;
|
|
padding: 0;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
}
|
|
|
|
.container .info span {
|
|
color: #666666;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.container .info span a {
|
|
color: var(--color-black);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container .info span .fa {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
.post-module:hover .post-content .description {
|
|
height: 80px;
|
|
opacity: 1;
|
|
transition: height 0.5s, opacity 0.5s;
|
|
}
|
|
|
|
.outcome-title {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.artificial-intelligence {
|
|
background: url(../images/case-study/cloud-server-1.webp) no-repeat fixed;
|
|
background-size: cover;
|
|
min-height: 600px;
|
|
background-position: center center;
|
|
transition: 0.3s;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.artificial-cloud {
|
|
background: url(../images/home-one/internet-things.jpg) no-repeat fixed;
|
|
background-size: cover;
|
|
min-height: 865px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.hexagon-section-mainDiv {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.artificial-description {
|
|
color: var(--color-white);
|
|
font-size: 16px;
|
|
width: 85%;
|
|
margin-top: 16px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.artificial-description-home {
|
|
color: var(--color-white);
|
|
font-size: 16px;
|
|
width: 85%;
|
|
margin-top: 16px;
|
|
padding-bottom: 50px;
|
|
|
|
}
|
|
|
|
.artificial-intelligence::before,
|
|
.artificial-cloud::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
background: radial-gradient(circle, #0033a0d4 0, #000063b5 50%, #000e2bf7 85%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.artificial-title {
|
|
color: var(--color-white);
|
|
font-size: 3.5em;
|
|
font-family: "Gilroy-SemiBold";
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.artificial-subtitle {
|
|
color: var(--Yellow);
|
|
font-family: "Gilroy-Regular";
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.iot-video-animation {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
top: 0;
|
|
}
|
|
|
|
.iot-video-animation video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
display: block;
|
|
}
|
|
|
|
.cloud-infrastructure-image {
|
|
width: 450px;
|
|
height: 450px;
|
|
background: var(--color-white);
|
|
border-radius: 50%;
|
|
padding: 1em;
|
|
position: relative;
|
|
margin-right: 9em;
|
|
}
|
|
|
|
.cloud-infrastructure-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.cloud-infrastructure-home {
|
|
display: flex;
|
|
background: #0071dc;
|
|
width: 340px;
|
|
padding: 10px 10px;
|
|
border-radius: 45px 0px 0px 45px;
|
|
position: relative;
|
|
margin: 20px;
|
|
}
|
|
|
|
#cloudInfrastructureHome,
|
|
#cloudInfrastructureHomeTwo,
|
|
#cloudInfrastructureHomeThree,
|
|
#cloudInfrastructureHomeFour,
|
|
#cloudInfrastructureHomeFive {
|
|
transform: translate(0px, 1000%);
|
|
transition: 1s;
|
|
}
|
|
|
|
.cloud-infrastructure-home:after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -55%;
|
|
width: 58%;
|
|
height: 4px;
|
|
background: #ffffff;
|
|
transform: rotate(-27deg);
|
|
top: 79px;
|
|
}
|
|
|
|
.cloud-infrastructure-home:nth-child(2)::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -50%;
|
|
width: 51%;
|
|
height: 4px;
|
|
background: #ffffff;
|
|
transform: rotate(-16deg);
|
|
top: 56px;
|
|
}
|
|
|
|
.cloud-infrastructure-home:nth-child(3)::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -48%;
|
|
width: 48%;
|
|
height: 4px;
|
|
background: white;
|
|
transform: rotate(0deg);
|
|
top: 30px;
|
|
}
|
|
|
|
.cloud-infrastructure-home:nth-child(4)::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -50%;
|
|
width: 51%;
|
|
height: 4px;
|
|
background: white;
|
|
transform: rotate(17deg);
|
|
top: 3px;
|
|
}
|
|
|
|
.cloud-infrastructure-home:nth-child(5)::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: -57%;
|
|
width: 61%;
|
|
height: 4px;
|
|
background: white;
|
|
transform: rotate(27deg);
|
|
top: -28px;
|
|
}
|
|
|
|
.cloud-infrastructure-home:before {
|
|
content: "";
|
|
position: absolute;
|
|
border-top: 30px solid transparent;
|
|
width: 0;
|
|
height: 0;
|
|
border-bottom: 30px solid transparent;
|
|
border-right: 30px solid transparent;
|
|
border-left: 36px solid #0071dc;
|
|
right: -66px;
|
|
top: 0;
|
|
transition: 1s;
|
|
}
|
|
|
|
.addClassActive {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.cloud-infrastructure-home:hover {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.addClassActive::before {
|
|
content: "";
|
|
border-left: 36px solid var(--color-white);
|
|
}
|
|
|
|
.cloud-infrastructure-home:hover:before {
|
|
border-left: 36px solid var(--color-white);
|
|
}
|
|
|
|
.addClassActive .cloud-infrastructure-count {
|
|
background: var(--Yellow);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.addClassActive .cloud-infrastructure-text {
|
|
color: #000;
|
|
}
|
|
|
|
.cloud-infrastructure-home:hover .cloud-infrastructure-count {
|
|
background: var(--Yellow);
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.cloud-infrastructure-home:hover .cloud-infrastructure-text {
|
|
color: #000;
|
|
}
|
|
|
|
.hexagon-section {
|
|
position: relative;
|
|
width: 308px;
|
|
margin-bottom: 30px;
|
|
transition: 0.8s;
|
|
}
|
|
|
|
#StayAheadCurve,
|
|
#AutomateProcesses,
|
|
#IncreaseRevenue {
|
|
transform: translate(-1000%, 0px);
|
|
}
|
|
|
|
#GetRealTimeInsights,
|
|
#ImproveCustomerSatisfaction {
|
|
transform: translate(1000%, 0px);
|
|
}
|
|
|
|
.hexagon-div {
|
|
clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
|
|
width: 150px;
|
|
height: 130px;
|
|
border: 10px solid #fff;
|
|
background: white;
|
|
position: absolute;
|
|
top: -14px;
|
|
right: -10px;
|
|
}
|
|
|
|
.hexagon-div-text {
|
|
width: 360px;
|
|
height: 100px;
|
|
background: linear-gradient(91deg, #0000, var(--bs-blue), var(--bs-blue));
|
|
clip-path: polygon(0% 0%, 75% 0%, 83% 50%, 75% 100%, 0% 100%, 0% 50%);
|
|
z-index: 9;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.hexagon-div-text-left {
|
|
width: 360px;
|
|
height: 100px;
|
|
background: linear-gradient(90deg, var(--bs-blue) 0%, var(--bs-blue) 50%, #0000 80%);
|
|
clip-path: polygon(8% 0%, 75% 0%, 75% 50%, 75% 100%, 8% 100%, 0% 50%);
|
|
z-index: 9;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.mt-77 {
|
|
margin-top: 77px;
|
|
}
|
|
|
|
.mt---60 {
|
|
margin-top: -60px;
|
|
}
|
|
|
|
.hexagon-section-left {
|
|
margin-left: -17px;
|
|
}
|
|
|
|
.hexagon-div-left {
|
|
right: auto;
|
|
}
|
|
|
|
.hexagon-div-text p {
|
|
font-size: 22px;
|
|
margin: 0;
|
|
color: var(--color-white);
|
|
width: 57%;
|
|
text-align: center;
|
|
line-height: normal;
|
|
}
|
|
|
|
.hexagon-div-text i {
|
|
font-size: 39px;
|
|
color: #fff;
|
|
padding: 18px;
|
|
}
|
|
|
|
.cloud-infrastructure-count {
|
|
margin: 0 10px 0 0px;
|
|
background: var(--color-white);
|
|
border-radius: 55px;
|
|
width: 40px;
|
|
height: 40px;
|
|
line-height: normal;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 21px;
|
|
padding-top: 7px;
|
|
}
|
|
|
|
.cloud-infrastructure-text {
|
|
margin: 0;
|
|
border-radius: 55px;
|
|
line-height: normal;
|
|
font-size: 20px;
|
|
padding-top: 7px;
|
|
color: #fff;
|
|
}
|
|
|
|
.Botnet-attacks {
|
|
background: url(../images/case-study/09-Botnet-attacks-are-secured.webp) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
min-height: 76vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.Botnet-attacks-bg {
|
|
background: linear-gradient(45deg, #0283ff52, transparent);
|
|
padding: 20px;
|
|
font-size: 2rem;
|
|
color: var(--color-white);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.Botnet-attacks-bg p {
|
|
padding: 20px;
|
|
font-size: 2rem;
|
|
color: var(--color-white);
|
|
width: 70%;
|
|
}
|
|
|
|
.Botnet-attacks-bg a {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.designing-advanced {
|
|
background: url(../images/case-study/brand-reputation.jpg) no-repeat;
|
|
background-size: contain;
|
|
background-position: center center;
|
|
min-height: 480px;
|
|
height: 70vh;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
position: relative;
|
|
padding-bottom: 4em;
|
|
}
|
|
|
|
.designing-advanced::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
background: radial-gradient(circle, #0033a01f 0, #000063 50%, #000e2b 85%);
|
|
height: 100%;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.designing-advanced-bg {
|
|
position: relative;
|
|
}
|
|
|
|
.designing-advanced-bg p {
|
|
padding: 16px;
|
|
font-size: 2rem;
|
|
font-family: "Gilroy-Semibold";
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
margin: auto;
|
|
}
|
|
|
|
.designing-advanced-text {
|
|
font-size: 20px !important;
|
|
font-family: "Gilroy-Regular" !important;
|
|
}
|
|
|
|
.for-business {
|
|
margin: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 200px;
|
|
}
|
|
|
|
.close-icon {
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 20px;
|
|
cursor: pointer;
|
|
background: #191e72;
|
|
padding: 6px;
|
|
border-radius: 50%;
|
|
z-index: 999;
|
|
}
|
|
|
|
.color-white {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.color-yellow {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.social-text {
|
|
color: var(--color-white);
|
|
background: #191e72;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.social-text a,
|
|
.social-text a:hover {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.social-text b {
|
|
color: var(--Yellow);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.software-text {
|
|
color: var(--color-white);
|
|
padding: 20px;
|
|
width: 31%;
|
|
background: #191e72;
|
|
margin-right: 20px;
|
|
border-radius: 7px;
|
|
max-width: 450px;
|
|
}
|
|
|
|
.software-text b {
|
|
color: var(--Yellow);
|
|
font-weight: normal;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.software-design {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
/*======================================
|
|
Blog
|
|
========================================*/
|
|
.blog {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.text {
|
|
width: 100%;
|
|
}
|
|
|
|
.article-image {
|
|
width: 320px;
|
|
height: 130px;
|
|
display: flex;
|
|
}
|
|
|
|
.article-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.blog-list {
|
|
margin-bottom: 20px;
|
|
max-width: 330px !important;
|
|
}
|
|
|
|
.blog-list a {
|
|
font-size: 18px;
|
|
color: var(--Yellow) !important;
|
|
transition: all .50s;
|
|
text-decoration: none;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.blog-list a:hover {
|
|
text-decoration: underline;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.blog-list img {
|
|
height: auto;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 780px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.article-div {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
|
|
/* Styling */
|
|
|
|
#heading h1 span {
|
|
font-size: 1em;
|
|
color: #71BC2F;
|
|
}
|
|
|
|
.article-div {
|
|
border-bottom: 1px solid #e1e1e1;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.article-div img {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
|
|
|
|
.text p {
|
|
font-size: 15px;
|
|
color: var(--color-white);
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.text .article-sub-title {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1em;
|
|
color: var(--Yellow);
|
|
font-size: 24px;
|
|
}
|
|
|
|
.text .article-sub-title a {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.services-title {
|
|
background: #e4e6ff;
|
|
padding: 25px;
|
|
border-radius: 15px;
|
|
width: 47%;
|
|
margin: 15px;
|
|
}
|
|
|
|
.services-h1 {
|
|
font-size: 24px;
|
|
margin: 0;
|
|
color: #000358;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.services-title svg {
|
|
width: 90px;
|
|
height: 90px;
|
|
background: #000358;
|
|
padding: 10px;
|
|
fill: var(--color-white);
|
|
border-radius: 70px;
|
|
margin: 0 20px 0 2px;
|
|
}
|
|
|
|
.icon-flex {
|
|
display: flex;
|
|
align-items: center;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.read-more {
|
|
color: #000063;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.read-more:hover {
|
|
text-decoration: underline;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.brand-building {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
margin-top: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.brand-building-image {
|
|
width: 70%;
|
|
height: 100%;
|
|
margin: 0 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.brand-image {
|
|
width: 85%;
|
|
height: 66%;
|
|
}
|
|
|
|
.brand-building-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.brand-building-image video {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
.brand-building-text {
|
|
width: 30%;
|
|
padding: 0 30px;
|
|
background: #00093f;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.brand-text {
|
|
right: 0;
|
|
background: #00093fd1;
|
|
width: 40%;
|
|
height: fit-content;
|
|
padding: 5em 2em;
|
|
}
|
|
|
|
.brand-building-text p {
|
|
color: #b3b3b3;
|
|
}
|
|
|
|
.brand-building-text a {
|
|
border: 1px solid var(--color-white);
|
|
color: var(--color-white);
|
|
padding: 8px 30px;
|
|
text-decoration: none;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.brand-building-text a:hover {
|
|
border-color: var(--Yellow);
|
|
color: var(--Yellow);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.brand-building-text .brand-title-building {
|
|
color: var(--Yellow);
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 34px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
.nav-link {
|
|
text-transform: inherit !important;
|
|
}
|
|
|
|
.hardware-text {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.our-expertise {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.hardware-blog-list {
|
|
background-color: var(--color-white);
|
|
position: relative;
|
|
z-index: 1;
|
|
border-radius: 10px;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 50%);
|
|
border-bottom: 3px solid var(--theme-blue);
|
|
overflow: hidden;
|
|
width: 31%;
|
|
margin: 13px;
|
|
padding: 0;
|
|
}
|
|
|
|
.hardware-blog-list a {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.hardware-blog-list p {
|
|
padding: 0 15px;
|
|
}
|
|
|
|
.software-development-image {
|
|
width: 50%;
|
|
height: 340px;
|
|
transition: transform 1s;
|
|
}
|
|
|
|
.software-development-image img {
|
|
object-fit: cover;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.software-development-image video {
|
|
object-fit: cover;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.software-development-text {
|
|
width: 50%;
|
|
padding: 50px;
|
|
}
|
|
|
|
|
|
.software-development-text p {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.software-development-text .software-title-development {
|
|
color: var(--title-blue-dark);
|
|
font-family: 'Gilroy-SemiBold';
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.software-development-button {
|
|
color: #0283ff;
|
|
border: 1px solid #0283ff;
|
|
padding: 10px 30px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.software-development-button:hover,
|
|
.software-development-button:focus {
|
|
background: #0283ff;
|
|
color: var(--color-white);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.saving-dollars-background {
|
|
background: url(../images/case-study/Saving-Dollars.webp);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
width: 100%;
|
|
height: 600px;
|
|
}
|
|
|
|
.saving-dollar {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
background: linear-gradient(101deg, #0033a0db 55%, transparent 45%);
|
|
padding-left: 7em;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.saving-dollar .saving-title-dollars {
|
|
width: 45%;
|
|
font-size: 29px;
|
|
color: var(--color-white);
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.saving-dollar p {
|
|
font-size: 19px;
|
|
color: #cdcdcd;
|
|
width: 43%;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.saving-dollar a {
|
|
color: var(--color-white);
|
|
border: 1px solid var(--color-white);
|
|
padding: 10px 20px;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.saving-dollar a:focus,
|
|
.saving-dollar a:hover {
|
|
color: #0283ff;
|
|
background: var(--color-white);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.saving-div {
|
|
margin: auto;
|
|
max-width: 1620px;
|
|
}
|
|
|
|
.build-complete {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 60%;
|
|
background: linear-gradient(300deg, #0033a0db 60%, transparent 45%);
|
|
padding: 40px;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
.build-complete-background {
|
|
background: url(../images/case-study/varistor-education.webp);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
width: 100%;
|
|
height: 600px;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
position: relative;
|
|
}
|
|
|
|
.build-background-video {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
}
|
|
|
|
.build-background-video video {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.build-background-video img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.build-div {
|
|
height: 100%;
|
|
width: 48%;
|
|
position: relative;
|
|
margin-left: auto !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
padding-bottom: 2em;
|
|
margin-right: 90px;
|
|
}
|
|
|
|
.build-container {
|
|
margin-top: auto;
|
|
}
|
|
|
|
.build-div .build-title-div,
|
|
.build-complete h1 {
|
|
font-size: 29px;
|
|
color: var(--color-white);
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.build-div p,
|
|
.build-complete p {
|
|
font-size: 19px;
|
|
color: #cdcdcd;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.build-div a,
|
|
.build-complete a {
|
|
color: var(--color-white);
|
|
border: 1px solid var(--color-white);
|
|
padding: 10px 20px;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.build-div a:focus,
|
|
.build-div a:hover,
|
|
.build-complete a:focus,
|
|
.build-complete a:hover {
|
|
color: #0283ff;
|
|
background: var(--color-white);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.build-complete-first {
|
|
width: 290px;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 260px;
|
|
background: linear-gradient(137deg, #0033a0db 50%, transparent 50%);
|
|
padding-left: 7em;
|
|
z-index: 1;
|
|
}
|
|
|
|
.build-top-corner {
|
|
width: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 260px;
|
|
background: linear-gradient(137deg, #0033a0db 50%, transparent 50%);
|
|
padding-left: 7em;
|
|
}
|
|
|
|
.build-bottom-corner {
|
|
width: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 70%;
|
|
background: linear-gradient(300deg, #0033a0db 60%, transparent 45%);
|
|
padding: 40px;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.cloud-servers-background {
|
|
background: url(../images/case-study/cloud-servers.webp);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center 60%;
|
|
width: 100%;
|
|
height: 640px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
position: relative;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cloud-servers {
|
|
text-align: center;
|
|
}
|
|
|
|
.cloud-servers .cloud-title-servers {
|
|
width: 72%;
|
|
font-size: 29px;
|
|
color: var(--title-blue-dark);
|
|
font-family: "Gilroy-SemiBold";
|
|
margin: auto;
|
|
}
|
|
|
|
.cloud-servers p {
|
|
font-size: 19px;
|
|
color: var(--color-black);
|
|
width: 72%;
|
|
margin: 15px auto;
|
|
}
|
|
|
|
.cloud-servers a {
|
|
color: var(--title-blue-dark);
|
|
border: 1px solid var(--title-blue-dark);
|
|
padding: 10px 20px;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
margin-bottom: 3.2em;
|
|
}
|
|
|
|
.cloud-servers a:focus,
|
|
.cloud-servers a:hover {
|
|
color: var(--color-white);
|
|
background: var(--title-blue-dark);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.re-invent-background {
|
|
background: url(../images/case-study/AI-infrastructure.jpg);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
width: 100%;
|
|
height: 640px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
justify-content: center;
|
|
}
|
|
|
|
.re-invent {
|
|
text-align: center;
|
|
}
|
|
|
|
.re-invent .re-title-invent {
|
|
width: 72%;
|
|
font-size: 29px;
|
|
color: var(--color-white);
|
|
font-family: "Gilroy-SemiBold";
|
|
margin: auto;
|
|
}
|
|
|
|
.re-invent p {
|
|
font-size: 19px;
|
|
color: #cdcdcd;
|
|
width: 72%;
|
|
margin: 15px auto;
|
|
}
|
|
|
|
.re-invent a {
|
|
color: var(--Yellow);
|
|
border: 1px solid var(--Yellow);
|
|
padding: 10px 20px;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.re-invent a:focus,
|
|
.re-invent a:hover {
|
|
color: var(--color-white);
|
|
background: var(--Yellow);
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
.read-button-div {
|
|
width: 45%;
|
|
}
|
|
|
|
.hardware-design {
|
|
display: flex;
|
|
min-height: 87%;
|
|
width: 25%;
|
|
height: max-content;
|
|
box-shadow: none;
|
|
margin-bottom: 0;
|
|
position: relative;
|
|
height: 480px;
|
|
}
|
|
|
|
.hardware-design-image {
|
|
width: 100%;
|
|
height: 480px;
|
|
position: absolute;
|
|
}
|
|
|
|
.w-97 {
|
|
width: 97%;
|
|
}
|
|
|
|
.hardware-design-image:before {
|
|
content: "";
|
|
background: linear-gradient(0deg, #012e8d00, transparent);
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hardware-design-text {
|
|
position: relative;
|
|
margin-top: auto;
|
|
z-index: 1;
|
|
overflow: hidden;
|
|
height: 100px;
|
|
min-height: 100px;
|
|
padding: 0px 20px 0px;
|
|
background: #2246e159;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.hardware-design-text h3 {
|
|
color: var(--Yellow);
|
|
font-size: 23px;
|
|
height: 76%;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.hardware-design-text p {
|
|
color: #fff;
|
|
}
|
|
|
|
.hardware-design-text .read-more {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.hardware-design-card {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.hardware-design-video {
|
|
width: 100%;
|
|
display: block;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.rendering-image {
|
|
height: 100%;
|
|
}
|
|
|
|
.hardware-design:hover .hardware-design-card {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.hardware-design:hover .rendering-image {
|
|
max-height: 100%;
|
|
}
|
|
|
|
.hardware-design:hover .hardware-design-text {
|
|
height: 260px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.hardware-design:hover .hardware-design-text h3 {
|
|
height: auto;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.choose-us {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.coding-subtitle {
|
|
color: var(--theme-blue);
|
|
padding-top: 20px;
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 19px;
|
|
}
|
|
|
|
@media only screen and (max-width: 425px) {
|
|
.coding-subtitle {
|
|
color: var(--theme-blue);
|
|
padding-top: 20px;
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 19px;
|
|
width: 240px;
|
|
}
|
|
}
|
|
|
|
.coding-title {
|
|
padding-top: 10px;
|
|
text-align: left;
|
|
margin: auto;
|
|
color: var(--Yellow);
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 3em;
|
|
}
|
|
@media only screen and (max-width: 425px) {
|
|
.coding-title {
|
|
padding-top: 10px;
|
|
text-align: left;
|
|
margin: auto;
|
|
color: var(--Yellow);
|
|
font-family: Gilroy-SemiBold;
|
|
font-size: 2em
|
|
}
|
|
}
|
|
|
|
.write-code-image img {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.coding-description {
|
|
font-size: 15px;
|
|
padding-top: 15px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.coding-description:last-child {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.crackit-perks {
|
|
padding-left: 50px;
|
|
}
|
|
|
|
.crackit-perks li {
|
|
padding: 5px 0;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.crackit-queries h3 {
|
|
color: var(--theme-blue);
|
|
font-size: 20px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.light-blue {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.crackit-queries p {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.hosting-services {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.hosting-services h4 {
|
|
font-size: 16px;
|
|
color: var(--theme-blue);
|
|
padding-top: 2px;
|
|
}
|
|
|
|
.hosting-services-div {
|
|
background: radial-gradient(circle, #0033a0 0, #000063 50%, #000e2b 85%);
|
|
}
|
|
|
|
.hosting-image {
|
|
width: 82%;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
@media screen and (min-width: 425px) {
|
|
.hosting-image {
|
|
width: 82%;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
margin-top: 55px;
|
|
}
|
|
}
|
|
|
|
|
|
.hosting-image:before {
|
|
content: "";
|
|
position: absolute;
|
|
background: #002d98;
|
|
width: 78%;
|
|
padding-bottom: 35px;
|
|
height: 51%;
|
|
top: -50px;
|
|
z-index: 0;
|
|
left: -51px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.hosting-image::after {
|
|
content: "";
|
|
position: absolute;
|
|
background: repeating-linear-gradient(45deg, var(--theme-blue) 0px, var(--theme-blue) 6px, var(--theme-blue) 6px, #00000000 8px, #00000000 14px);
|
|
width: 65%;
|
|
height: 51%;
|
|
bottom: -50px;
|
|
z-index: 0;
|
|
right: -51px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.hosting-image img {
|
|
width: 100%;
|
|
border-radius: 0px 0px 0px 130px;
|
|
position: relative;
|
|
}
|
|
|
|
|
|
.hosting-text p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.arrow-image {
|
|
width: 50px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.arrow-image img {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
|
|
.why-choose {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 10px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.choose-icon-div {
|
|
min-width: 10px;
|
|
height: 150px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.background-one {
|
|
background: #000048;
|
|
}
|
|
|
|
.background-two {
|
|
background: #102871;
|
|
}
|
|
|
|
.background-three {
|
|
background: #1f509b;
|
|
}
|
|
|
|
.background-four {
|
|
background: #2f78c4;
|
|
}
|
|
|
|
.background-five {
|
|
background: #88c2ff;
|
|
}
|
|
|
|
.choose-icon-div i {
|
|
font-size: 100px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.know-stuff {
|
|
background: var(--color-white);
|
|
box-shadow: 0px 1px 0px 0px #e7e7e7;
|
|
padding: 15px;
|
|
width: 100%;
|
|
height: 149px;
|
|
position: relative;
|
|
}
|
|
|
|
.know-stuff h2 {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.know-stuff h5 {
|
|
position: absolute;
|
|
right: 5px;
|
|
font-size: 4em;
|
|
opacity: 0.15;
|
|
top: 2px;
|
|
}
|
|
|
|
.building-back-background {
|
|
width: 100%;
|
|
position: relative;
|
|
display: flex;
|
|
padding: 0;
|
|
}
|
|
|
|
.building-section {
|
|
width: 67%;
|
|
height: 400px;
|
|
}
|
|
|
|
.building-section img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.brand-text {
|
|
left: 15%;
|
|
bottom: -50%;
|
|
background: #0033a0db;
|
|
}
|
|
|
|
.brand-building-text .professional-text {
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.brand-text h2 {
|
|
color: #035bbb;
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 34px;
|
|
padding-bottom: 12px;
|
|
margin-top: 1;
|
|
}
|
|
|
|
.brand-building-text .building-button {
|
|
border: 1px solid #035bbb;
|
|
color: #035bbb;
|
|
padding: 8px 30px;
|
|
text-decoration: none;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.background-perks {
|
|
background: linear-gradient(45deg, #020006 0%, #050B46 100%);
|
|
background-position: center right;
|
|
background-repeat: no-repeat;
|
|
display: flex;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.background-perks:before {
|
|
content: "";
|
|
background: url(../images/product/perk-crackit.png);
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
background-position: center center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.perks-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
}
|
|
|
|
.perks-image {
|
|
width: 35%;
|
|
position: relative;
|
|
}
|
|
|
|
.perks-image img {
|
|
display: block;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.perks-text {
|
|
width: 62%;
|
|
margin-left: 4em;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.perks-text h3 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.image-shape-one {
|
|
background: #273540;
|
|
animation: morph2 8s ease-in-out infinite;
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
height: 97%;
|
|
transition: all 1s ease-in-out;
|
|
width: 97%;
|
|
position: absolute;
|
|
top: 13px;
|
|
z-index: 0;
|
|
left: 13px;
|
|
}
|
|
|
|
.image-shape-two {
|
|
background: #104cba;
|
|
animation: morph 8s ease-in-out infinite;
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
height: 90%;
|
|
width: 97%;
|
|
position: absolute;
|
|
bottom: 42px;
|
|
z-index: 0;
|
|
left: -9px;
|
|
}
|
|
|
|
.crackit-queries-background {
|
|
background: url(../images/product/product-bg.jpg);
|
|
background-size: cover;
|
|
background-position: center top;
|
|
}
|
|
|
|
.reliable-secure {
|
|
position: absolute;
|
|
font-size: 60px;
|
|
opacity: 0.1;
|
|
top: 0;
|
|
right: 10px;
|
|
}
|
|
|
|
.video-play {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
@keyframes morph2 {
|
|
0% {
|
|
border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
|
|
}
|
|
|
|
50% {
|
|
border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
|
|
}
|
|
|
|
100% {
|
|
border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
|
|
}
|
|
}
|
|
|
|
@keyframes morph {
|
|
0% {
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
}
|
|
|
|
50% {
|
|
border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
|
|
}
|
|
|
|
100% {
|
|
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* Why choose us */
|
|
|
|
.bg-screen {
|
|
position: absolute;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
.content-front:nth-child(2):after {
|
|
content: '';
|
|
}
|
|
|
|
|
|
.bg-header {
|
|
background-color: rgb(16 255 0 / 20%);
|
|
padding: 12px 20px;
|
|
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
color: #05C2DE;
|
|
transition: 1s;
|
|
}
|
|
|
|
.welcome-board-name {
|
|
font-family: 'Vast Shadow', cursive;
|
|
color: var(--color-white);
|
|
font-size: 2.3em;
|
|
text-shadow: 1px 2px 3px #03802a;
|
|
|
|
}
|
|
|
|
.content-inner {
|
|
width: 100%;
|
|
color: var(--color-white);
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
perspective: 1000px;
|
|
backface-visibility: hidden;
|
|
transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
}
|
|
|
|
.fl-wrap {
|
|
float: left;
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.content-inner .content-front,
|
|
.content-inner .content-back {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
perspective: 1000px;
|
|
backface-visibility: hidden;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.content-front {
|
|
background: #292929;
|
|
position: relative;
|
|
}
|
|
|
|
.content-inner>* {
|
|
backface-visibility: hidden;
|
|
transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
}
|
|
|
|
.cf-inner:before,
|
|
.cf-inner:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-color: rgba(255, 255, 255, 0.4);
|
|
z-index: 10;
|
|
}
|
|
|
|
.cf-inner:before {
|
|
top: 20px;
|
|
left: 20px;
|
|
border-left: 2px solid;
|
|
border-top: 2px solid;
|
|
}
|
|
|
|
.bg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
background-size: cover;
|
|
background-attachment: scroll;
|
|
background-position: center;
|
|
background-repeat: repeat;
|
|
background-origin: content-box;
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #000;
|
|
opacity: 0.4;
|
|
z-index: 3;
|
|
}
|
|
|
|
.content-inner .cf-inner .inner {
|
|
align-items: stretch;
|
|
transform-style: preserve-3d;
|
|
perspective: 1000px;
|
|
backface-visibility: hidden;
|
|
transform: translateZ(95px) scale(0.81);
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.cf-inner:after {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
border-right: 2px solid;
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
.content-inner .cf-inner .inner h2 {
|
|
position: relative;
|
|
font-size: 22px;
|
|
padding-bottom: 20px;
|
|
color: var(--color-white);
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.content-inner .cf-inner .inner p {
|
|
color: var(--color-white);
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
.content-inner .cf-inner .inner h2:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 10px;
|
|
width: 20px;
|
|
height: 2px;
|
|
margin-left: -10px;
|
|
}
|
|
|
|
.content-inner .content-front li {
|
|
display: inline-block;
|
|
color: var(--color-white);
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
letter-spacing: 2px;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.cf-inner:after {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
border-right: 2px solid;
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
.content-inner .content-front,
|
|
.content-inner .content-back {
|
|
position: relative;
|
|
transform-style: preserve-3d;
|
|
perspective: 1000px;
|
|
backface-visibility: hidden;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.content-inner .cf-inner .inner {
|
|
align-items: stretch;
|
|
transform-style: preserve-3d;
|
|
perspective: 1000px;
|
|
backface-visibility: hidden;
|
|
transform: translateZ(95px) scale(0.81);
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.content-inner:hover .content-front {
|
|
transform: rotateY(-180deg);
|
|
}
|
|
|
|
.content-inner:hover .content-back {
|
|
transform: rotateY(0deg);
|
|
}
|
|
|
|
.content-inner .content-back {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
transform: rotateY(180deg);
|
|
background: #292929;
|
|
background-image: url("https://images.unsplash.com/photo-1478760329108-5c3ed9d495a0?ixlib=rb-1.2.1&auto=format&fit=crop&w=667&q=80");
|
|
}
|
|
|
|
.content-inner .cf-inner {
|
|
transform-style: preserve-3d;
|
|
backface-visibility: hidden;
|
|
width: 100%;
|
|
padding: 150px 20px;
|
|
}
|
|
|
|
.serve-price-wrap {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
padding: 15px 30px;
|
|
margin-top: 14px;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.content-inner .cf-inner .inner h2:before {
|
|
background: #00bcd4;
|
|
}
|
|
|
|
.inner:before,
|
|
.cf-inner:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-color: rgba(255, 255, 255, 0.4);
|
|
z-index: 10;
|
|
}
|
|
|
|
.cf-inner:before,
|
|
.cf-inner:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 50px;
|
|
height: 72%;
|
|
border-color: rgba(0, 188, 212, 0.33);
|
|
z-index: 10;
|
|
}
|
|
|
|
.dec-icon {
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.content-back .cf-inner:before {
|
|
top: 50px;
|
|
}
|
|
|
|
.content-back .cf-inner:after {
|
|
bottom: 50px;
|
|
}
|
|
|
|
|
|
|
|
|
|
/* custom-cursor
|
|
=============================================================================================== */
|
|
.custom-cursor {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
border: 1px solid hsla(0, 0%, 100%, .7);
|
|
border-radius: 100%;
|
|
|
|
background: hsla(0, 0%, 80%, .2);
|
|
position: absolute;
|
|
z-index: 5;
|
|
transform: translate(-50%, -50%);
|
|
|
|
pointer-events: none;
|
|
}
|
|
|
|
|
|
/* buttons
|
|
===============================================================================================
|
|
btn-circle
|
|
---------------------------------------- */
|
|
.btn-circle {
|
|
width: 4rem;
|
|
height: 4rem;
|
|
border-radius: 100rem;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
/* btn-pTSecond
|
|
---------------------------------------- */
|
|
.btn-pTSecond {
|
|
margin-top: 2rem;
|
|
border: 1px solid red;
|
|
|
|
transform: scale(.8);
|
|
transform-origin: left center;
|
|
transition: .3s;
|
|
}
|
|
|
|
.btn-pTSecond:hover,
|
|
.btn-pTSecond:focus {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.btn-pTSecond::before {
|
|
content: '';
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
|
|
position: absolute;
|
|
background: var(--gradient-2);
|
|
|
|
transform: scale(0);
|
|
transition: .6s;
|
|
}
|
|
|
|
.intro-video-div {
|
|
overflow: hidden;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.intro-video-div video {
|
|
display: block;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
max-height: 500px;
|
|
height: 100%;
|
|
}
|
|
|
|
.coding-solution-div {
|
|
background: linear-gradient(90deg, #102871 60%, transparent 40%);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.coding-image {
|
|
width: 100%;
|
|
height: 420px;
|
|
}
|
|
|
|
.coding-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.cube {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 45vw;
|
|
width: 10px;
|
|
height: 10px;
|
|
border: solid 1px #0040C1;
|
|
transform-origin: top left;
|
|
transform: scale(0) rotate(0deg) translate(-50%, -50%);
|
|
animation: cube 12s ease-in forwards infinite;
|
|
}
|
|
|
|
.cube:nth-child(2n) {
|
|
border-color: lighten(#0040C1, 10%);
|
|
}
|
|
|
|
.cube:nth-child(2) {
|
|
animation-delay: 2s;
|
|
left: 25vw;
|
|
top: 40vh;
|
|
}
|
|
|
|
.cube:nth-child(3) {
|
|
animation-delay: 4s;
|
|
left: 75vw;
|
|
top: 50vh;
|
|
}
|
|
|
|
.cube:nth-child(4) {
|
|
animation-delay: 6s;
|
|
left: 90vw;
|
|
top: 10vh;
|
|
}
|
|
|
|
.cube:nth-child(5) {
|
|
animation-delay: 8s;
|
|
left: 10vw;
|
|
bottom: 50px;
|
|
top: auto;
|
|
}
|
|
|
|
.cube:nth-child(6) {
|
|
animation-delay: 10s;
|
|
left: 50vw;
|
|
top: 10vh;
|
|
}
|
|
|
|
|
|
@keyframes cube {
|
|
from {
|
|
transform: scale(0) rotate(0deg) translate(-50%, -50%);
|
|
opacity: 1;
|
|
}
|
|
|
|
to {
|
|
transform: scale(20) rotate(960deg) translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.choose-background {
|
|
background: radial-gradient(circle, #0033a0a3 0, #000063a3 50%, #000e2ba3 85%), url(../images/product/Why-Us.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.polygon-div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.choose-section-polygon {
|
|
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
|
|
width: 250px;
|
|
height: 250px;
|
|
background: #000048;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transform: rotate(0deg);
|
|
animation: weKnow 30s infinite;
|
|
}
|
|
|
|
.icon-div:nth-child(2) .choose-section-polygon {
|
|
background: #102871;
|
|
}
|
|
|
|
.icon-div:nth-child(3) .choose-section-polygon {
|
|
background: #1f509b;
|
|
}
|
|
|
|
.icon-div:nth-child(4) .choose-section-polygon {
|
|
background: #2f78c4;
|
|
}
|
|
|
|
.icon-div:nth-child(5) .choose-section-polygon {
|
|
background: #88c2ff;
|
|
}
|
|
|
|
.choose-section-polygon i {
|
|
font-size: 8em;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.polygon-section {
|
|
width: 100%;
|
|
}
|
|
|
|
.polygon-section .choose-section-polygon {
|
|
clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
|
|
width: 250px;
|
|
height: 250px;
|
|
background: #1f509b;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
|
|
@keyframes weKnow {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
50% {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.icon-div {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.icon-div i {
|
|
font-size: 6em;
|
|
position: absolute;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.title-clip-path {
|
|
clip-path: polygon(74% 19%, 83% 45%, 74% 72%, 8% 72%, 17% 45%, 8% 19%);
|
|
height: 120px;
|
|
width: 20%;
|
|
background: #000048;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title-clip-path:nth-child(2) {
|
|
background: #102871;
|
|
}
|
|
|
|
.title-clip-path:nth-child(3) {
|
|
background: #1f509b;
|
|
}
|
|
|
|
.title-clip-path:nth-child(4) {
|
|
background: #2f78c4;
|
|
}
|
|
|
|
.title-clip-path:nth-child(5) {
|
|
background: #88c2ff;
|
|
}
|
|
|
|
.title-clip-path h3 {
|
|
font-size: 19px;
|
|
width: 100px;
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
position: relative;
|
|
left: -10px;
|
|
top: -3px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.clip-path-description {
|
|
width: 20%;
|
|
position: relative;
|
|
}
|
|
|
|
.clip-path-description:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -34px;
|
|
background: #000048;
|
|
width: 2px;
|
|
height: 35px;
|
|
left: 50%;
|
|
}
|
|
|
|
.top-hosting-description .clip-path-description::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: auto;
|
|
bottom: -23px;
|
|
background: #102871;
|
|
width: 2px;
|
|
height: 40px;
|
|
left: 50%;
|
|
}
|
|
|
|
.top-hosting-description .clip-path-description:nth-child(2)::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: auto;
|
|
bottom: -23px;
|
|
background: #2f78c4;
|
|
width: 2px;
|
|
height: 40px;
|
|
left: 50%;
|
|
}
|
|
|
|
.bottom-hosting-description .clip-path-description:nth-child(2)::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -34px;
|
|
background: #1f509b;
|
|
width: 2px;
|
|
height: 35px;
|
|
left: 50%;
|
|
}
|
|
|
|
.bottom-hosting-description .clip-path-description:nth-child(3)::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -34px;
|
|
background: #88c2ff;
|
|
width: 2px;
|
|
height: 35px;
|
|
left: 50%;
|
|
}
|
|
|
|
.clip-path-description p {
|
|
width: 100%;
|
|
border: 1px solid #ddd;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
.reliable-image {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
margin: 0 auto 11px;
|
|
}
|
|
|
|
.reliable-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.reliable-path {
|
|
width: 20%;
|
|
}
|
|
|
|
.clip-path-arrow {
|
|
position: relative;
|
|
left: 22px;
|
|
}
|
|
|
|
.top-hosting-description {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.bottom-hosting-description {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.we-best-description {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.expert-background {
|
|
background: url(../images/about/We-experts.webp);
|
|
height: 330px;
|
|
background-size: cover;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.expert-text-background {
|
|
background: linear-gradient(-90deg, #03051C 0%, #090B34 100%);
|
|
padding: 40px;
|
|
margin-left: auto;
|
|
width: 50%;
|
|
border-radius: 20px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
.it-services {
|
|
background: linear-gradient(45deg, #020006 0%, #050B46 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.latest-technology-image {
|
|
width: 100%;
|
|
height: 300px;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.latest-technology-image img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.cost-effective {
|
|
background: linear-gradient(45deg, #020006 0%, #050B46 100%);
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
min-height: max-content;
|
|
height: 100%;
|
|
}
|
|
|
|
.cost-effective-image {
|
|
width: 100%;
|
|
height: 260px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cost-effective-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transform: scale(1);
|
|
transition: transform 0.5s;
|
|
}
|
|
|
|
.cost-effective-text {
|
|
padding: 15px;
|
|
}
|
|
|
|
.cost-effective-text p {
|
|
margin: 0;
|
|
}
|
|
|
|
.cost-effective:hover .cost-effective-image img {
|
|
transform: scale(1.2);
|
|
transition: transform 0.5s;
|
|
}
|
|
|
|
/* Careers Page */
|
|
.careers-details-area {
|
|
background: url(../images/careers/careers-banner.jpg) no-repeat;
|
|
width: 100%;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.careers-details-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
background: radial-gradient(circle, #0033a130 0, #000063d4 50%, #000e2b 85%);
|
|
width: 130%;
|
|
height: 100%;
|
|
top: 0;
|
|
z-index: 0;
|
|
}
|
|
|
|
.careers-form {
|
|
position: relative;
|
|
width: 40%;
|
|
}
|
|
|
|
.section {
|
|
margin: 0 auto;
|
|
padding: 5rem 0 2rem;
|
|
}
|
|
|
|
|
|
.centered {
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.form-flex form {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.form-group-careers {
|
|
position: relative;
|
|
width: 30%;
|
|
margin-right: 25px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-group-careers .form-arrow {
|
|
position: absolute;
|
|
top: 0.65rem;
|
|
right: 0.5rem;
|
|
z-index: 10;
|
|
font-size: 1.35rem;
|
|
line-height: inherit;
|
|
color: var(--color-darks);
|
|
}
|
|
|
|
.dropdown-select {
|
|
position: relative;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 0.75rem 1.25rem;
|
|
border: none;
|
|
outline: none;
|
|
color: var(--color-black);
|
|
background-clip: padding-box;
|
|
background-color: var(--color-white);
|
|
box-shadow: var(--shadow-medium);
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.dropdown-menu-inner {
|
|
max-height: 16rem;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
|
|
|
|
}
|
|
|
|
.dropdown-menu::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: auto;
|
|
}
|
|
|
|
.dropdown-menu::-webkit-scrollbar-thumb {
|
|
border-radius: 0.25rem;
|
|
background-color: var(--color-greys);
|
|
box-shadow: var(--shadow-small);
|
|
}
|
|
|
|
.dropdown-menu-item {
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
font-weight: normal;
|
|
line-height: inherit;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
padding: 0.65rem 1.25rem;
|
|
background-color: var(--color-white);
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
.dropdown-menu-item:hover {
|
|
color: var(--color-black);
|
|
background-color: var(--color-greys);
|
|
}
|
|
|
|
.dropdown-menu-item.is-select,
|
|
.dropdown-menu-item.is-select:hover {
|
|
color: var(--color-white);
|
|
background-color: var(--color-blues);
|
|
}
|
|
|
|
.dropdown-menu-search {
|
|
display: block;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 0.65rem 1.25rem;
|
|
border: none;
|
|
outline: none;
|
|
color: var(--color-black);
|
|
background-clip: padding-box;
|
|
background-color: var(--color-light);
|
|
}
|
|
|
|
.dropdown-menu {
|
|
position: absolute;
|
|
display: none;
|
|
top: 100%;
|
|
left: 0;
|
|
width: 100%;
|
|
z-index: 10;
|
|
border-radius: 0.25rem;
|
|
background-color: var(--color-white);
|
|
box-shadow: var(--shadow-large);
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
.dropdown {
|
|
position: relative;
|
|
}
|
|
|
|
|
|
|
|
.wrapper-column {
|
|
max-width: 40rem;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
padding: 5rem 3rem;
|
|
border-radius: 0.25rem;
|
|
background-color: var(--color-white);
|
|
box-shadow: var(--shadow-medium);
|
|
}
|
|
|
|
.nice-select {
|
|
display: none;
|
|
}
|
|
|
|
.job-search-button {
|
|
margin-right: 25px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.job-search-button button {
|
|
background: var(--Yellow);
|
|
color: var(--color-black);
|
|
border: none;
|
|
padding: 0.70rem 2.25rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.search-title {
|
|
color: var(--Yellow);
|
|
font-size: 19px;
|
|
font-family: 'Gilroy-Regular';
|
|
width: 40%;
|
|
}
|
|
|
|
.careers-details-title {
|
|
color: var(--color-white);
|
|
font-size: 3.2em;
|
|
}
|
|
|
|
.careers-job-box {
|
|
background: #0033a0;
|
|
padding: 10px 20px;
|
|
margin: 10px;
|
|
box-sizing: border-box;
|
|
width: 31%;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.careers-job-box:hover {
|
|
background: var(--color-white);
|
|
border-color: #0033a0;
|
|
}
|
|
|
|
.careers-job-box:hover .careers-job-details {
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.careers-job-box:hover .careers-job-title {
|
|
color: #0033a0;
|
|
}
|
|
|
|
.careers-job-title {
|
|
color: var(--Yellow);
|
|
font-size: 20px;
|
|
font-family: "Gilroy-SemiBold";
|
|
}
|
|
|
|
.careers-job-title:hover {
|
|
color: #0033a0;
|
|
}
|
|
|
|
.careers-job-details {
|
|
color: var(--color-white);
|
|
font-size: 16px;
|
|
font-family: "Gilroy-Regular";
|
|
}
|
|
|
|
.difference-section {
|
|
width: 45%;
|
|
height: 100%;
|
|
max-height: 590px;
|
|
}
|
|
|
|
.difference-section img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.difference-second-image {
|
|
width: 30%;
|
|
max-height: 590px;
|
|
}
|
|
|
|
.difference-second-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
|
|
.difference-section-box {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
position: relative;
|
|
width: 70%;
|
|
}
|
|
|
|
.difference-section-description {
|
|
position: absolute;
|
|
left: 45%;
|
|
}
|
|
|
|
.difference-section-description h1 {
|
|
color: #0033a0;
|
|
margin-bottom: -20px;
|
|
padding-left: 15px;
|
|
font-size: 2em;
|
|
}
|
|
|
|
.difference-section-description p {
|
|
padding: 3em;
|
|
background: var(--color-white);
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 10%);
|
|
min-width: 520px;
|
|
position: relative;
|
|
right: 8em;
|
|
margin: 0;
|
|
top: 40px;
|
|
}
|
|
|
|
.column-w-25 {
|
|
width: 25%;
|
|
}
|
|
|
|
.textBackground {
|
|
background: linear-gradient(135deg, #00264C 20%, #00264c 10%, #002f5f 20%, #002F5F 20%);
|
|
padding: 2em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.textBackground-text {
|
|
color: var(--Yellow);
|
|
margin: 0;
|
|
font-size: 18px;
|
|
font-family: 'Gilroy-SemiBold';
|
|
}
|
|
|
|
.textBackground-title {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.core-value-div h1 {
|
|
text-align: center;
|
|
color: #002f5f;
|
|
}
|
|
|
|
.core-value-div p {
|
|
text-align: center;
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.core-value-icon-div {
|
|
width: 75px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.core-value-section p {
|
|
text-align: center;
|
|
color: #002f5f;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.core-value-icon-div img {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.core-value-section {
|
|
display: flex;
|
|
justify-content: center;
|
|
background: var(--color-white);
|
|
box-shadow: 0 0 3px rgb(0 0 0 / 10%);
|
|
padding: 5em;
|
|
}
|
|
|
|
.second-video {
|
|
position: absolute;
|
|
z-index: 1;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.play-icon-div-second {
|
|
bottom: 0;
|
|
left: 5% !important;
|
|
top: 81% !important;
|
|
transform: translate(-5%, -20%) !important;
|
|
}
|
|
|
|
.serviceBox {
|
|
position: relative;
|
|
width: 350px;
|
|
height: 280px;
|
|
background: var(--theme-blue);
|
|
border-radius: 0px;
|
|
overflow: hidden;
|
|
margin: 20px;
|
|
}
|
|
|
|
.serviceBox .icon {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--i);
|
|
transition: 0.5s;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 2;
|
|
transition-delay: 0.25s;
|
|
}
|
|
|
|
.serviceBox .icon img {
|
|
width: 70%;
|
|
display: block;
|
|
}
|
|
|
|
.serviceBox:hover .icon {
|
|
top: 30px;
|
|
left: calc(50% - 40px);
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.serviceBox .icon i {
|
|
font-size: 5em;
|
|
color: var(--color-white);
|
|
transition: 0.5s;
|
|
transition-delay: 0.25s;
|
|
}
|
|
|
|
.serviceBox:hover .icon i {
|
|
font-size: 2em;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.serviceBox .content {
|
|
position: relative;
|
|
padding: 20px;
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
margin-top: 100px;
|
|
z-index: 1;
|
|
transform: scale(0);
|
|
transition: 0.5s;
|
|
transition-delay: 0s;
|
|
}
|
|
|
|
.serviceBox:hover .content {
|
|
transform: scale(1);
|
|
transition-delay: 0.25s;
|
|
}
|
|
|
|
.serviceBox .content h2 {
|
|
margin-top: 10px;
|
|
margin-bottom: 5px;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.serviceBox .content p {
|
|
font-weight: 300;
|
|
line-height: 1.5em;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.job-area-column {
|
|
width: 25%;
|
|
text-align: center;
|
|
background: var(--color-white);
|
|
box-shadow: 0 0 3px rgb(0 0 0 / 10%);
|
|
padding: 20px;
|
|
}
|
|
|
|
.job-area-icon {
|
|
width: 100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.job-area-icon img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.job-area-description a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.job-area-description h3 {
|
|
font-size: 15px;
|
|
color: var(--Yellow);
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.Job-area-title h1 {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.skill-services {
|
|
width: 50%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.skill-services ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
line-height: 2;
|
|
}
|
|
|
|
.skill-services ul li {
|
|
font-size: 19px;
|
|
}
|
|
|
|
.see-open-positions {
|
|
display: flex;
|
|
}
|
|
|
|
/* Search Job */
|
|
|
|
.filter-background {
|
|
background: #F1F3F7;
|
|
}
|
|
|
|
.Keyword-box {
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.Keyword-box input {
|
|
position: relative;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 0.75rem 1.25rem;
|
|
border: none;
|
|
outline: none;
|
|
color: var(--color-black);
|
|
background-clip: padding-box;
|
|
background-color: var(--color-white);
|
|
box-shadow: var(--shadow-medium);
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.location-section {
|
|
width: 24%;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.job-search-reset button {
|
|
background: none;
|
|
border: 1px solid #0d6efd;
|
|
color: #0d6efd;
|
|
}
|
|
|
|
.dropdown-menu-inner .dropdown-menu-item:first-child {
|
|
display: none;
|
|
}
|
|
|
|
.Job-box-div {
|
|
background: var(--color-white);
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 10%);
|
|
padding: 10px;
|
|
border-left: 5px solid #0d6efd;
|
|
width: 48.7%;
|
|
margin-bottom: 2em;
|
|
position: relative;
|
|
}
|
|
|
|
.Job-box-div:hover {
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 20%);
|
|
}
|
|
|
|
.job-title {
|
|
margin: 0;
|
|
font-size: 18px;
|
|
font-family: "Gilroy-SemiBold";
|
|
padding: 7px 0px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.job-title a {
|
|
width: 70%;
|
|
}
|
|
|
|
.job-title span {
|
|
font-size: 13px;
|
|
color: #818181;
|
|
}
|
|
|
|
.job-location-icon {
|
|
width: 25px;
|
|
display: flex;
|
|
}
|
|
|
|
.job-location-icon svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.job-location {
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 0px 0 10px;
|
|
width: 130px;
|
|
}
|
|
|
|
.job-type {
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
padding: 0px 0px 10px;
|
|
width: 100px;
|
|
}
|
|
|
|
.job-type-icon {
|
|
width: 20px;
|
|
margin: 0px 4px 0px 2px;
|
|
}
|
|
|
|
.job-Interest {
|
|
margin: 0;
|
|
padding: 0px 0px 10px;
|
|
}
|
|
|
|
.job-details-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.job-list-apply-now {
|
|
background: none;
|
|
border: 1px solid var(--bs-blue);
|
|
padding: 10px 20px;
|
|
color: var(--bs-blue);
|
|
}
|
|
|
|
.job-list-apply-now:hover {
|
|
background: var(--bs-blue);
|
|
border: 1px solid transparent;
|
|
padding: 10px 20px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.job-list-apply-div {
|
|
display: flex;
|
|
}
|
|
|
|
.search-job-subtitle p {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.job-title-description {
|
|
width: 90%;
|
|
}
|
|
|
|
.job-information {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.apply-button a {
|
|
background: none;
|
|
border: 1px solid var(--Yellow);
|
|
padding: 10px 20px;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.apply-button a:hover {
|
|
background: var(--Yellow);
|
|
border: 1px solid transparent;
|
|
padding: 10px 20px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.apply-button-bottom {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.apply-button-bottom a {
|
|
background: none;
|
|
border: 1px solid var(--bs-blue);
|
|
padding: 10px 20px;
|
|
color: var(--bs-blue);
|
|
}
|
|
|
|
.apply-button-bottom a:hover {
|
|
background: var(--bs-blue);
|
|
border: 1px solid transparent;
|
|
padding: 10px 20px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.filter-background-job {
|
|
background: var(--site-gradient-dark);
|
|
}
|
|
|
|
.job-description {
|
|
width: 70%;
|
|
}
|
|
|
|
.job-description h1 {
|
|
color: var(--Yellow);
|
|
font-size: 22px;
|
|
}
|
|
|
|
.job-description p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.social-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
list-style: none;
|
|
padding-left: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.social-icon li {
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.social-icon li a svg {
|
|
fill: var(--color-white);
|
|
}
|
|
|
|
.details-type {
|
|
width: 50%;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.details-type p {
|
|
margin: 0;
|
|
}
|
|
|
|
.detail-box {
|
|
background: var(--color-light);
|
|
padding: 2em;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.similar-job {
|
|
border-bottom: 1px solid #dfdfdf;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.similar-job h5 {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.similar-job p {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.similar-title {
|
|
font-size: 20px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
|
|
.newsletter-form {
|
|
position: relative;
|
|
max-width: 270px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.newsletter-form .form-control {
|
|
background-color: var(--color-white);
|
|
height: 50px;
|
|
line-height: 50px;
|
|
margin: 0;
|
|
border-radius: 5px;
|
|
border: 0;
|
|
padding: 0 45px 0 15px;
|
|
max-width: 100%;
|
|
color: var(--light-dark);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.newsletter-form .subscribe-btn {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 3px;
|
|
background-color: var(--theme-blue);
|
|
color: var(--color-white);
|
|
height: 45px;
|
|
line-height: 50px;
|
|
width: 45px;
|
|
border: 0;
|
|
border-radius: 5px;
|
|
font-size: 20px;
|
|
-webkit-transition: 0.5s;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
|
|
.job-type-id {
|
|
font-size: 20px;
|
|
font-family: "Gilroy-SemiBold";
|
|
color: var(--Yellow);
|
|
margin: 0;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.job-type-id span {
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.candidate-title {
|
|
font-size: 22px;
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.candidate-button {
|
|
color: var(--Dark-blue);
|
|
border: 1px solid var(--Dark-blue);
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
.candidate-button:hover {
|
|
color: var(--color-white);
|
|
border: 1px solid transparent;
|
|
padding: 10px 20px;
|
|
background: var(--Dark-blue);
|
|
}
|
|
|
|
.upload-card {
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 10%);
|
|
background-color: var(--color-white);
|
|
padding: 25px 30px 30px;
|
|
}
|
|
|
|
.upload-card h3 {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.drop_box {
|
|
margin: 10px 0;
|
|
padding: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
border: 3px dotted #a3a3a3;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.drop_box h4 {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
color: #2e2e2e;
|
|
}
|
|
|
|
.drop_box p {
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
font-size: 12px;
|
|
color: #a3a3a3;
|
|
}
|
|
|
|
.btn {
|
|
text-decoration: none;
|
|
background-color: #005af0;
|
|
color: var(--color-white);
|
|
padding: 10px 20px;
|
|
border: none;
|
|
outline: none;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
text-decoration: none;
|
|
background-color: var(--color-white);
|
|
color: #005af0;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
outline: 1px solid #010101;
|
|
}
|
|
|
|
.form input {
|
|
margin: 10px 0;
|
|
width: 100%;
|
|
background-color: var(--color-white);
|
|
border: none;
|
|
outline: none;
|
|
padding: 12px 20px;
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
input[type=number] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
/* ======= Event ======= */
|
|
.event-area {
|
|
background: url(../images/event/event-banner.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
height: 450px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.event-area::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: var(--site-gradient);
|
|
z-index: 0;
|
|
}
|
|
|
|
.event-title {
|
|
color: var(--color-white);
|
|
font-family: "Gilroy-Regular";
|
|
font-size: 32px;
|
|
width: 500px;
|
|
}
|
|
|
|
/* Search Popup */
|
|
.search-popup {
|
|
display: none;
|
|
position: absolute;
|
|
top: 165px;
|
|
right: 0;
|
|
left: 0;
|
|
background: var(--site-gradient-dark);
|
|
z-index: 9999;
|
|
}
|
|
|
|
.search-bg {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.search-popup label {
|
|
color: white;
|
|
}
|
|
|
|
.search-form {
|
|
display: block;
|
|
margin: 7em auto;
|
|
position: relative;
|
|
right: -100%;
|
|
}
|
|
|
|
.close-icon-search {
|
|
position: absolute;
|
|
right: 30px;
|
|
left: auto;
|
|
top: -50px;
|
|
width: 30px;
|
|
height: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.close-icon-search svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.form {
|
|
position: relative;
|
|
}
|
|
|
|
.form .input-header-search {
|
|
border-radius: 25px;
|
|
}
|
|
|
|
.form label {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 4px;
|
|
background: var(--Dark-blue);
|
|
padding: 12px;
|
|
font-size: 24px;
|
|
border-radius: 45px;
|
|
height: 44px;
|
|
width: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.top-banner-page-section {
|
|
background: linear-gradient(45deg, #0283ff8c, #0283ff8c);
|
|
padding: 25px;
|
|
}
|
|
|
|
.header-row-page {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.top-banner-page-top-section h3 {
|
|
font-size: 20px;
|
|
color: var(--bs-light);
|
|
margin: 0;
|
|
}
|
|
|
|
.top-banner-page-sub-section ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.top-banner-page-sub-section ul li {
|
|
font-size: 15px;
|
|
color: var(--bs-light);
|
|
display: inline-block;
|
|
}
|
|
|
|
.top-banner-page-sub-section ul li a {
|
|
color: var(--bs-light);
|
|
}
|
|
|
|
.top-banner-page-sub-section ul li a:hover {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.Software-Development-page {
|
|
background: url(../images/services/Software-Development.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.software-development-page-title {
|
|
color: var(--Yellow);
|
|
font-size: 30px;
|
|
}
|
|
|
|
.Software-Development-page .hardware-text {
|
|
color: var(--color-light);
|
|
max-width: 460px;
|
|
}
|
|
|
|
.software-development-subsection {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.software-subsection-image {
|
|
width: 50%;
|
|
}
|
|
|
|
.software-development-subsection:nth-child(2n) .software-subsection-image {
|
|
order: 2;
|
|
}
|
|
|
|
.software-subsection-image img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.software-subsection-text {
|
|
width: 50%;
|
|
padding: 2em;
|
|
}
|
|
|
|
.software-sub-title {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.vlsi-section {
|
|
background: url(../images/services/VLSI-and-Circuit.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
background-attachment: fixed;
|
|
position: relative;
|
|
}
|
|
|
|
.vlsi-section::before {
|
|
content: "";
|
|
position: absolute;
|
|
background: linear-gradient(90deg, var(--color-white) 20%, transparent 90%);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.vlsi-section h2 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.vlsi-section p {
|
|
color: var(--color-black);
|
|
width: 43%;
|
|
}
|
|
|
|
.cmos-process {
|
|
width: 40%;
|
|
}
|
|
|
|
.cmos-basics {
|
|
width: 60%;
|
|
}
|
|
|
|
.cmos-process-div {
|
|
background: #f9f9f9;
|
|
min-height: max-content;
|
|
height: 97%;
|
|
}
|
|
|
|
.cmos-basics-div {
|
|
background: #f9f9f9;
|
|
display: flex;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.cmos-detail-image {
|
|
width: 250px;
|
|
}
|
|
|
|
.cmos-detail-processing img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.cmos-basics-text-details {
|
|
width: calc(100% - 250px);
|
|
}
|
|
|
|
.cmos-detail-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.cmos-process-div h2 {
|
|
color: #2f78c4;
|
|
font-size: 21px;
|
|
margin: 0;
|
|
padding: 15px 15px 0;
|
|
}
|
|
|
|
.cmos-basics-div h2 {
|
|
color: #2f78c4;
|
|
font-size: 21px;
|
|
margin: 0;
|
|
padding: 15px 15px 0;
|
|
}
|
|
|
|
.cmos-process-text {
|
|
font-size: 16px;
|
|
padding: 15px;
|
|
color: #000048;
|
|
}
|
|
|
|
.mos-modeling {
|
|
background: #061237;
|
|
}
|
|
|
|
.mos-modeling h2 {
|
|
color: var(--bs-blue);
|
|
font-size: 28px;
|
|
}
|
|
|
|
.mos-modeling p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.mos-modeling-image {
|
|
border-radius: 40px 50px 20px 50px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mos-modeling-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.vhdl-basics {
|
|
background: #daf6ff;
|
|
margin: 4em 0;
|
|
padding: 3em 2em;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.vhdl-basics-image {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.vhdl-basics-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.vhdl-basics-details h2 {
|
|
color: var(--Yellow);
|
|
font-size: 21px;
|
|
}
|
|
|
|
.pcb-manufacturing-section {
|
|
background: url(../images/services/pcba-pcb.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.pcb-manufacturing-section h1 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.pcb-manufacturing-text-details {
|
|
background: url(../images/services/detail-pcba-pcb-bg2.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.pcb-manufacturing-text-details p {
|
|
color: var(--Dark-blue);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.pcb-manufacturing-expertise {
|
|
color: var(--color-white);
|
|
font-size: 30px;
|
|
border-bottom: 2px solid;
|
|
margin: 0 auto 1em;
|
|
width: 184px;
|
|
}
|
|
|
|
.quality-Services {
|
|
width: 30%;
|
|
box-shadow: 0px 0px 2px 1px #dfdfdf;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
transition: box-shadow 0.5s;
|
|
}
|
|
|
|
.quality-Services:hover {
|
|
box-shadow: 0px 0px 6px 3px #dfdfdf;
|
|
transition: box-shadow 0.5s;
|
|
}
|
|
|
|
.quality-Services p {
|
|
font-size: 19px;
|
|
font-weight: 700;
|
|
color: #146DB3;
|
|
padding: 17px 15px 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.quality-Services p:last-child {
|
|
font-size: 16px;
|
|
font-weight: normal;
|
|
color: var(--dark-44);
|
|
padding: 5px 15px 15px;
|
|
}
|
|
|
|
.quality-control-image {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
|
|
.quality-control-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transform: scale(1);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.quality-Services:hover .quality-control-image img {
|
|
transform: scale(1.3);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.oem-odm-services {
|
|
background: url(../images/services/oem-odm-services.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
.oem-odm-services:before {
|
|
content: "";
|
|
background: linear-gradient(104deg, #0b0e4ce6 50%, #092563e6 0%);
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.meta-text-ar-image {
|
|
background: url(../images/ar/meta-image.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
border-radius: 20px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.meta-text-ar-image:before {
|
|
content: "";
|
|
background: linear-gradient(104deg, #0b0e4cbd 50%, #092563bd 0%);
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.oem-odm-services p:first-child {
|
|
font-size: 28px;
|
|
color: var(--Yellow);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.oem-odm-services p:last-child {
|
|
font-size: 18px;
|
|
color: var(--color-white);
|
|
margin: 0;
|
|
}
|
|
|
|
.oem-odm-part-two {
|
|
width: 47%;
|
|
padding: 0 4em;
|
|
}
|
|
|
|
.meta-text-ar-part {
|
|
padding: 0 0em;
|
|
width: 100%;
|
|
padding-top: 8em;
|
|
}
|
|
|
|
.manufacturing-list-section {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
|
|
.manufacturing-list p {
|
|
width: 21%;
|
|
font-weight: bold;
|
|
position: relative;
|
|
padding-left: 15px;
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.manufacturing-list p:before {
|
|
content: "";
|
|
background: var(--color-black);
|
|
width: 7px;
|
|
height: 7px;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 9px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.designing-printing-section {
|
|
background: url(../images/services/3D-Designing-and-Printing.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
.designing-printing-row {
|
|
width: 50%;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.designing-printing-title {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.designing-printing-subtitle {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.designing-printing-expertise {
|
|
color: var(--bs-blue);
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.prototyping-image {
|
|
width: 400px;
|
|
}
|
|
|
|
.prototyping-image img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.expertise-section {
|
|
background: url(../images/services/Prototyping.jpg) no-repeat;
|
|
background-size: cover;
|
|
padding: 15px 20px;
|
|
width: 32%;
|
|
margin: 7px;
|
|
}
|
|
|
|
.expertise-section:nth-child(2) {
|
|
background: url(../images/services/Low-volume-production.png) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.expertise-section:nth-child(3) {
|
|
background: url(../images/services/Customization.jpg) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.expertise-section:nth-child(4) {
|
|
background: url(../images/services/manufacturing.jpg) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.expertise-section:nth-child(5) {
|
|
background: url(../images/services/analysis.jpg) no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.expertise-section p {
|
|
margin: 0;
|
|
color: white;
|
|
}
|
|
|
|
.expertise-section p:first-child {
|
|
font-size: 19px;
|
|
font-weight: bold;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.service-areas {
|
|
background: #000048;
|
|
border: 2px solid #000048;
|
|
width: 23%;
|
|
margin: 10px;
|
|
text-align: center;
|
|
padding: 17px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.service-areas:nth-child(2) {
|
|
background: #102871;
|
|
border: 2px solid #102871;
|
|
}
|
|
|
|
|
|
.service-areas:nth-child(3) {
|
|
background: #1f509b;
|
|
border: 2px solid #1f509b;
|
|
}
|
|
|
|
.service-areas:last-child {
|
|
background: #2f78c4;
|
|
border: 2px solid #2f78c4;
|
|
}
|
|
|
|
|
|
.service-areas p {
|
|
margin: 0;
|
|
font-weight: bold;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.custom-pcb-design {
|
|
width: 33%;
|
|
background: #0db7ce;
|
|
padding: 0;
|
|
}
|
|
|
|
.custom-pcb-design h3 {
|
|
color: var(--color-white);
|
|
text-align: center;
|
|
}
|
|
|
|
.custom-pcb-design p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.custom-pcb-image {
|
|
width: 100%;
|
|
height: 250px;
|
|
}
|
|
|
|
.custom-pcb-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.custom-pcb-design:nth-child(2) {
|
|
background: #2bcbc3;
|
|
}
|
|
|
|
.custom-pcb-design:last-child {
|
|
background: #24a5e9;
|
|
}
|
|
|
|
.custom-pcb-design-text {
|
|
padding: 15px;
|
|
height: 250px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.hardware-design-development {
|
|
background: url(../images/services/Hardware-Design-Development.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.hardware-development {
|
|
background: url(../images/services/Hardware-Design-Development1.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.hardware-development .hardware-text {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.reverse-engineering {
|
|
background: url(../images/services/Reverse-Engineering.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.reverse-engineering-text {
|
|
max-width: 560px;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.Manufacturing-Support {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Manufacturing-Support:after {
|
|
/* content: ""; */
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
width: 120%;
|
|
height: 100%;
|
|
z-index: 0;
|
|
border-radius: 0 0 100% 100%;
|
|
transform: translateX(-50%) rotate(0deg);
|
|
background-size: cover;
|
|
}
|
|
|
|
.hardware-development-expertise h3 {
|
|
font-size: 30px;
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.hardware-development-expertise p {
|
|
font-size: 17px;
|
|
color: var(--bs-dark);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.Manufacturing-Support-text {
|
|
position: relative;
|
|
z-index: 9;
|
|
}
|
|
|
|
.Manufacturing-Support-text h2 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.Manufacturing-Support-text p {
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.cloud-infrastructure-deployments {
|
|
background: url(../images/services/Cloud-Infrastructure-banner.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.cloud-infrastructure-deployments h3 {
|
|
color: var(--color-white);
|
|
font-size: 40px;
|
|
max-width: 440px;
|
|
}
|
|
|
|
.cloud-infrastructure-description {
|
|
background: #E6F1FC;
|
|
}
|
|
|
|
.cloud-infrastructure-description p {
|
|
color: #000048;
|
|
}
|
|
|
|
.cloud-infrastructure-expertise {
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
.cloud-infrastructure-expertise::after {
|
|
content: "";
|
|
position: absolute;
|
|
background-size: contain;
|
|
width: 100%;
|
|
height: 150px;
|
|
bottom: -52px;
|
|
}
|
|
|
|
.cloud-infrastructure-expertise:before {
|
|
content: "";
|
|
position: absolute;
|
|
background: #ffffffa1;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.Our-Expertise-Title {
|
|
color: #000047;
|
|
font-size: 31px;
|
|
}
|
|
|
|
.Our-Expertise-description {
|
|
color: #183d86;
|
|
font-size: 19px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.cloud-step {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.cloud-step-details {
|
|
clip-path: polygon(0% 0%, 0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 70%);
|
|
height: 70px;
|
|
width: 300px;
|
|
background: #000048;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cloud-step-details span {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
color: var(--color-white);
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.cloud-step-text {
|
|
clip-path: polygon(3.5% 50%, 0% 0%, 100% 0%, 100% 100%, 70% 100%, 60% 100%, 0% 100%);
|
|
height: 70px;
|
|
width: calc(100% - 300px);
|
|
background: #183c86;
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
left: -22px;
|
|
}
|
|
|
|
.cloud-step-text span {
|
|
padding-left: 40px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.iot-background {
|
|
background: #080a4d;
|
|
}
|
|
|
|
.iot-header-image {
|
|
width: 100%;
|
|
}
|
|
|
|
.iot-header-image img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.iot-title {
|
|
color: var(--color-white);
|
|
font-size: 35px;
|
|
}
|
|
|
|
.iot-sub-title {
|
|
color: var(--Yellow);
|
|
font-size: 24px;
|
|
}
|
|
|
|
.iot-description {
|
|
color: var(--color-white);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.iot-expertise-div {
|
|
background: linear-gradient(180deg, #e6f1fc, transparent);
|
|
}
|
|
|
|
.iot-expertise-title {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.iot-expertise-sub-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.expertise-div-stay {
|
|
width: 48%;
|
|
background: #d3e0ff;
|
|
margin: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
.expertise-div-stay p:first-child {
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
position: absolute;
|
|
right: -142px;
|
|
bottom: -144px;
|
|
width: 310px;
|
|
height: 310px;
|
|
background: #052163;
|
|
margin: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.expertise-div-stay p:first-child span {
|
|
width: 140px;
|
|
display: flex;
|
|
position: relative;
|
|
top: 80px;
|
|
left: 20px;
|
|
font-size: 21px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.expertise-div-stay p:last-child {
|
|
width: 340px;
|
|
font-size: 15px;
|
|
padding: 11px;
|
|
margin: 0;
|
|
}
|
|
|
|
.expertise-div-insights {
|
|
width: 48%;
|
|
background: #b8e0ff;
|
|
margin: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.expertise-div-insights p:first-child {
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
position: absolute;
|
|
left: -142px;
|
|
bottom: -144px;
|
|
width: 310px;
|
|
height: 310px;
|
|
background: #00457A;
|
|
margin: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.expertise-div-insights p:first-child span {
|
|
width: 140px;
|
|
display: flex;
|
|
position: relative;
|
|
top: 80px;
|
|
left: 148px;
|
|
font-size: 21px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.expertise-div-insights p:last-child {
|
|
width: 340px;
|
|
font-size: 15px;
|
|
padding: 11px;
|
|
margin: 0;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.expertise-div-Automate {
|
|
width: 48%;
|
|
background: #d3ebff;
|
|
margin: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.expertise-div-Automate p:first-child {
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
position: absolute;
|
|
right: -142px;
|
|
top: -144px;
|
|
width: 310px;
|
|
height: 310px;
|
|
background: #156eba;
|
|
margin: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.expertise-div-Automate p:first-child span {
|
|
width: 140px;
|
|
display: flex;
|
|
position: relative;
|
|
top: 160px;
|
|
left: 40px;
|
|
font-size: 21px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.expertise-div-Automate p:last-child {
|
|
width: 340px;
|
|
font-size: 15px;
|
|
padding: 11px;
|
|
margin: 0;
|
|
}
|
|
|
|
.expertise-div-revenue {
|
|
width: 48%;
|
|
background: #cfe9f0;
|
|
margin: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.expertise-div-revenue p:first-child {
|
|
text-align: center;
|
|
color: var(--color-white);
|
|
position: absolute;
|
|
left: -142px;
|
|
top: -144px;
|
|
width: 310px;
|
|
height: 310px;
|
|
background: #1595ba;
|
|
margin: 0;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.expertise-div-revenue p:first-child span {
|
|
width: 140px;
|
|
display: flex;
|
|
position: relative;
|
|
top: 160px;
|
|
left: 153px;
|
|
font-size: 21px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.expertise-div-revenue p:last-child {
|
|
width: 340px;
|
|
font-size: 15px;
|
|
padding: 11px;
|
|
margin: 0;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.expertise-div-insights:hover,
|
|
.expertise-div-Automate:hover,
|
|
.expertise-div-revenue:hover,
|
|
.expertise-div-stay:hover {
|
|
box-shadow: 0px 0px 6px 3px #dfdfdf;
|
|
}
|
|
|
|
.expertise-div {
|
|
background: var(--color-white);
|
|
padding: 13px 20px 16px;
|
|
margin: 10px;
|
|
box-sizing: border-box;
|
|
width: 98%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.expertise-increase-img {
|
|
width: 27%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.expertise-increase-img img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.expertise-increase-text {
|
|
width: 50%;
|
|
}
|
|
|
|
.expertise-div p:first-child {
|
|
font-size: 30px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
color: #052163;
|
|
}
|
|
|
|
.expertise-div p:last-child {
|
|
font-size: 20px;
|
|
margin: 0;
|
|
color: #00457a;
|
|
}
|
|
|
|
.our-iot-services {
|
|
text-align: center;
|
|
padding: 40px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
|
|
.brand-image-div {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.brand-image-div::before {
|
|
content: "";
|
|
position: absolute;
|
|
background: #bfdfff;
|
|
width: 78%;
|
|
height: 51%;
|
|
top: -50px;
|
|
z-index: 0;
|
|
left: -31px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.brand-image-div::after {
|
|
content: "";
|
|
position: absolute;
|
|
background: repeating-linear-gradient(45deg, #0033a0db 0px, #0033a0db 6px, #0033a0db 6px, #00000000 8px, #00000000 14px);
|
|
width: 65%;
|
|
height: 51%;
|
|
bottom: -50px;
|
|
z-index: 0;
|
|
right: -31px;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.brand-image-div img {
|
|
border-radius: 5px 5px 90px 5px;
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.building-button {
|
|
border: 1px solid #035bbb;
|
|
color: #035bbb;
|
|
padding: 8px 30px;
|
|
text-decoration: none;
|
|
width: fit-content;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.brand-title {
|
|
color: #035bbb;
|
|
font-family: "Gilroy-SemiBold";
|
|
font-size: 24px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
|
|
.animation-banner {
|
|
background: #282262 url(../images/services/animation-characters.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
.animation-banner-title {
|
|
color: var(--color-white);
|
|
padding: 3em 0;
|
|
font-size: 44px;
|
|
max-width: 450px;
|
|
}
|
|
|
|
.animation-banner-description {
|
|
background: #dbe8f0;
|
|
padding: 4em 0;
|
|
}
|
|
|
|
.Expertise-Animation-image {
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Expertise-Animation-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.animation-banner-expertise h3 {
|
|
color: var(--Yellow);
|
|
font-size: 30px;
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.animation-banner-expertise p {
|
|
font-size: 18px;
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.character-design {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.character-design-image {
|
|
width: 30%;
|
|
position: relative;
|
|
}
|
|
|
|
.character-design-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.character-design-text {
|
|
width: 66%;
|
|
position: relative;
|
|
}
|
|
|
|
.character-design-text p:first-child {
|
|
font-size: 22px;
|
|
color: var(--Yellow);
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.character-design-text p:last-child {
|
|
font-size: 18px;
|
|
margin: 0;
|
|
color: var(--color-black);
|
|
}
|
|
|
|
#wrap {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
background: #0b0e4c;
|
|
overflow: hidden;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.mid {
|
|
position: absolute;
|
|
top: 4%;
|
|
left: 49%;
|
|
}
|
|
|
|
.mid.one {
|
|
animation: expander 10s linear infinite;
|
|
}
|
|
|
|
.mid.two {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
.mid.three {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
.mid.four {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 3s;
|
|
}
|
|
|
|
.mid.five {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
.mid.six {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 5s;
|
|
}
|
|
|
|
.mid.seven {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 6s;
|
|
}
|
|
|
|
.mid.eight {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 7s;
|
|
}
|
|
|
|
.mid.nine {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 8s;
|
|
}
|
|
|
|
.mid.ten {
|
|
animation: expander 10s linear infinite;
|
|
animation-delay: 9s;
|
|
}
|
|
|
|
.o {
|
|
position: absolute;
|
|
width: 0em;
|
|
height: 0em;
|
|
border: 3px solid #0d1050;
|
|
margin: 0 auto;
|
|
-webkit-border-radius: 1em;
|
|
-moz-border-radius: 1em;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.o.one {
|
|
animation: expand 10s linear infinite;
|
|
}
|
|
|
|
.o.two {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 1s;
|
|
}
|
|
|
|
.o.three {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 2s;
|
|
}
|
|
|
|
.o.four {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 3s;
|
|
}
|
|
|
|
.o.five {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
.o.six {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 5s;
|
|
}
|
|
|
|
.o.seven {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 6s;
|
|
}
|
|
|
|
.o.eight {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 7s;
|
|
}
|
|
|
|
.o.nine {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 8s;
|
|
}
|
|
|
|
.o.ten {
|
|
animation: expand 10s linear infinite;
|
|
animation-delay: 9s;
|
|
}
|
|
|
|
@keyframes expand {
|
|
to {
|
|
width: 100em;
|
|
height: 100em;
|
|
-webkit-border-radius: 100em;
|
|
-moz-border-radius: 100em;
|
|
border-radius: 100em;
|
|
}
|
|
}
|
|
|
|
@keyframes expander {
|
|
to {
|
|
top: -40%;
|
|
left: -20%;
|
|
}
|
|
}
|
|
|
|
.lighting-video {
|
|
width: 100%;
|
|
height: 600px;
|
|
position: relative;
|
|
}
|
|
|
|
.lighting-video::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle, #0033a154 0, #00006396 50%, #000e2b96 85%);
|
|
}
|
|
|
|
.lighting-video video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.lighting-bottom-text {
|
|
position: absolute;
|
|
bottom: 7px;
|
|
background: rgba(0, 0, 72, .85);
|
|
padding: 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.lighting-bottom-text p:first-child {
|
|
font-size: 31px;
|
|
font-weight: bold;
|
|
color: var(--Yellow);
|
|
margin: 0;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.lighting-bottom-text p:last-child {
|
|
color: var(--color-white);
|
|
font-size: 17px;
|
|
margin: 0;
|
|
}
|
|
|
|
.software-designing-section {
|
|
background: url(../images/services/software-designing.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.software-designing-section h2 {
|
|
font-size: 44px;
|
|
max-width: 420px;
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.software-designing-services {
|
|
background: url(../images/services/software-designing-details.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.software-designing-services p {
|
|
color: var(--color-white);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.expertise-software-designing {
|
|
background: url(../images/services/expertise-software-designing.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.expertise-software-designing h3 {
|
|
color: var(--dark-blue-60);
|
|
font-size: 25px;
|
|
margin: 0;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.expertise-software-designing p {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.software-expertise {
|
|
background: #ffffff;
|
|
margin: 10px 0;
|
|
padding: 0 0 10px;
|
|
width: 70%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
box-shadow: 0px 6px 10px 3px #dfdfdf;
|
|
}
|
|
|
|
.software-details-image {
|
|
width: 160px;
|
|
height: 160px;
|
|
}
|
|
|
|
.software-details-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
border-radius: 10px 0% 50% 50%;
|
|
}
|
|
|
|
.software-details-text {
|
|
width: calc(100% - 200px);
|
|
padding-right: 40px;
|
|
}
|
|
|
|
.software-expertise:nth-child(2n) {
|
|
margin: 3em 0;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.software-expertise p:first-child {
|
|
color: var(--dark-blue-60);
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
.software-expertise p:last-child {
|
|
color: var(--color-black);
|
|
}
|
|
|
|
.arrow-round {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
transform: translate(0px, -50%);
|
|
}
|
|
|
|
.arrow-round-left {
|
|
position: absolute;
|
|
left: -160px;
|
|
top: 50%;
|
|
}
|
|
|
|
.details-border-top {
|
|
border-top: 2px dashed #0071dc;
|
|
width: 161px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(0px, -50%);
|
|
}
|
|
|
|
.details-border-top-left {
|
|
border-top: 2px dashed #0071dc;
|
|
width: 161px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(0px, -50%);
|
|
left: -1px;
|
|
}
|
|
|
|
.details-border-right {
|
|
border-right: 2px dashed #0071dc;
|
|
height: 161px;
|
|
position: absolute;
|
|
right: -161px;
|
|
}
|
|
|
|
.details-border-left {
|
|
border-right: 2px dashed #0071dc;
|
|
height: 161px;
|
|
position: absolute;
|
|
right: 0px;
|
|
}
|
|
|
|
.details-round {
|
|
background: #0071dc;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
right: -168px;
|
|
top: -7px;
|
|
box-shadow: 0px 0px 0px 4px #0071dc9e;
|
|
}
|
|
|
|
.details-round-left {
|
|
background: #0071dc;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
right: -9px;
|
|
top: -7px;
|
|
box-shadow: 0px 0px 0px 4px #0071dc9e;
|
|
}
|
|
|
|
.social-banner {
|
|
background: url(../images/services/social-media.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.social-banner h1 {
|
|
max-width: 42%;
|
|
color: var(--Yellow);
|
|
font-size: 48px;
|
|
}
|
|
|
|
@media screen and (min-width: 425px) {
|
|
.social-banner h1 {
|
|
max-width: 58%;
|
|
color: var(--Yellow);
|
|
font-size: 48px;
|
|
margin-top: 85px;
|
|
}
|
|
}
|
|
.social-banner p {
|
|
max-width: 42%;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.social-media-text h3 {
|
|
color: var(--bs-blue);
|
|
font-size: 27px;
|
|
border-bottom: 1px solid;
|
|
margin: 0 auto 15px;
|
|
width: 166px;
|
|
}
|
|
|
|
.social-media-tag {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.accordion-custom-tab {
|
|
background: #070b3b !important;
|
|
color: #fff !important;
|
|
font-size: 19px;
|
|
}
|
|
|
|
|
|
.accordion-custom-tab-one {
|
|
background: #080e60 !important;
|
|
color: #fff !important;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.accordion-custom-tab-three {
|
|
background: #121972 !important;
|
|
color: #fff !important;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.accordion-custom-tab-four {
|
|
background: #0240b1 !important;
|
|
color: #fff !important;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.accordion-custom-tab-five {
|
|
background: #3077f9 !important;
|
|
color: #fff !important;
|
|
font-size: 19px;
|
|
}
|
|
|
|
.accordion-button::after {
|
|
background-image: url(../images/arrow.svg) !important;
|
|
}
|
|
|
|
.content-creation-image {
|
|
width: 300px;
|
|
border-radius: 20px;
|
|
box-shadow: 0px 0 8px 0 #dfdfdf;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content-creation-image img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.accordion-custom-tab-details {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.accordion-custom-tab-details p {
|
|
font-size: 19px;
|
|
width: calc(100% - 350px);
|
|
}
|
|
|
|
.brand-building-details-banner {
|
|
background: url(../images/services/brand-building-marketing.jpg) no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.brand-building-details-banner h3 {
|
|
color: var(--Yellow);
|
|
font-size: 48px;
|
|
max-width: 520px;
|
|
}
|
|
|
|
.brand-building-details-banner p {
|
|
color: var(--color-white);
|
|
font-size: 18px;
|
|
width: 80%;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.brand-building-details-Expertise h3 {
|
|
font-size: 32px;
|
|
color: var(--bs-blue);
|
|
}
|
|
|
|
.brand-building-details-Expertise p {
|
|
font-size: 17px;
|
|
}
|
|
|
|
.brand-strategy-section {
|
|
width: 320px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: 0px 0px 20px 4px #bdbdbd;
|
|
border: 4px solid rgb(255 255 255);
|
|
}
|
|
|
|
|
|
.brand-strategy-section img {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.brand-strategy-text {
|
|
width: calc(100% - 390px);
|
|
}
|
|
|
|
.brand-strategy-text p:first-child {
|
|
color: var(--Dark-blue);
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.brand-strategy-text p:last-child {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.brand-strategy-div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: -50px 0;
|
|
}
|
|
|
|
.manufacturing-list-flex {
|
|
display: flex;
|
|
align-items: center;
|
|
max-width: 1240px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.manufacturing-list-round {
|
|
width: 450px;
|
|
height: 450px;
|
|
background: linear-gradient(90deg, #0b0e4c 40%, #092563 90%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.manufacturing-list-round h2 {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.manufacturing-list-li {
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.manufacturing-list-li li {
|
|
font-size: 18px;
|
|
padding: 10px 15px;
|
|
margin: 14px 0;
|
|
background: #0b0e4c;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
border: 2px solid #1924af;
|
|
min-width: 240px;
|
|
position: relative;
|
|
}
|
|
|
|
.manufacturing-list-li li:before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
right: -238px;
|
|
background: #1924af;
|
|
height: 2px;
|
|
top: 50%;
|
|
transform: translate(0%, -50%);
|
|
}
|
|
|
|
.manufacturing-list-li-second {
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.manufacturing-list-li-second li {
|
|
font-size: 18px;
|
|
padding: 10px 15px;
|
|
margin: 14px 0;
|
|
background: #092563;
|
|
color: #fff;
|
|
border-radius: 5px;
|
|
border: 2px solid #1924af;
|
|
min-width: 240px;
|
|
position: relative;
|
|
}
|
|
|
|
.manufacturing-list-li-second li:before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
left: -238px;
|
|
background: #1924af;
|
|
height: 2px;
|
|
top: 50%;
|
|
transform: translate(0%, -50%);
|
|
}
|
|
|
|
#spinManufacturing {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
#spinManufacturing:after {
|
|
content: "";
|
|
animation: spinManufacturing 20s linear infinite;
|
|
}
|
|
|
|
@keyframes spinManufacturing {
|
|
0% {
|
|
content: "Single-Sided PCBs";
|
|
}
|
|
|
|
9.09% {
|
|
content: "Double-Sided PCBs";
|
|
}
|
|
|
|
18.18% {
|
|
content: "Multilayer PCBs";
|
|
}
|
|
|
|
27.27% {
|
|
content: "Rigid PCBs";
|
|
}
|
|
|
|
36.36% {
|
|
content: "Flex PCBs";
|
|
}
|
|
|
|
45.45% {
|
|
content: "Rigid-Flex PCBs";
|
|
}
|
|
|
|
54.54% {
|
|
content: "Medical Devices";
|
|
}
|
|
|
|
63.63% {
|
|
content: "Consumer Electronics";
|
|
}
|
|
|
|
72.72% {
|
|
content: "Industrial Equipment";
|
|
}
|
|
|
|
81.81% {
|
|
content: "Automotive Components";
|
|
}
|
|
|
|
90.9% {
|
|
content: "Aerospace Components";
|
|
}
|
|
|
|
100% {
|
|
content: "Maritime Applications";
|
|
}
|
|
}
|
|
|
|
/* Animation css */
|
|
.reveal {
|
|
position: relative;
|
|
opacity: 0;
|
|
}
|
|
|
|
.reveal.active-reveal {
|
|
opacity: 1;
|
|
}
|
|
|
|
.active-reveal.fade-bottom {
|
|
animation: fade-bottom 0.8s ease-in;
|
|
}
|
|
|
|
.active-reveal.fade-left {
|
|
animation: fade-left 0.8s ease-in;
|
|
}
|
|
|
|
.active-reveal.fade-right {
|
|
animation: fade-right 0.8s ease-in;
|
|
}
|
|
|
|
.active-reveal.fade-in {
|
|
animation: fade-in 0.8s ease-in;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-bottom {
|
|
0% {
|
|
transform: translateY(50px);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-left {
|
|
0% {
|
|
transform: translateX(-100px);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-right {
|
|
0% {
|
|
transform: translateX(100px);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: translateX(0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.blog-image-style {
|
|
width: 100%;
|
|
height: 310px;
|
|
}
|
|
|
|
.blog-image-style img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.feedback-popup {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
left: 20px;
|
|
padding: 20px;
|
|
box-shadow: 0 0 10px rgb(51 51 51 / 70%);
|
|
background: var(--color-white);
|
|
z-index: 9;
|
|
opacity: 1;
|
|
transition: 0.5s;
|
|
display: block;
|
|
visibility: visible;
|
|
}
|
|
|
|
.closeFeedback {
|
|
display: none;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.feedback-popup-close {
|
|
width: 15px;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-left: auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.feedback-popup-close svg {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.feedback-popup-close:hover svg {
|
|
fill: var(--theme-blue);
|
|
}
|
|
|
|
.feedback-popup-close:hover svg path {
|
|
stroke: var(--theme-blue);
|
|
}
|
|
|
|
.feedback-popup p {
|
|
font-size: 20px;
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
.feedback-button-div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.feedback-button-div button {
|
|
border: 1px solid transparent;
|
|
outline: none;
|
|
padding: 10px 30px;
|
|
font-size: 16px;
|
|
border-radius: 50px;
|
|
background: var(--theme-blue);
|
|
color: var(--color-white);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.feedback-button-div button:hover {
|
|
border-color: var(--theme-blue);
|
|
background: none;
|
|
color: var(--theme-blue);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.feedback-button-div button:last-child {
|
|
border: none;
|
|
outline: none;
|
|
padding: 10px 30px;
|
|
font-size: 16px;
|
|
border-radius: 50px;
|
|
background: none;
|
|
color: var(--Dark-blue);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.report-bug-main-div {
|
|
padding: 3em;
|
|
}
|
|
|
|
.report-bug-div {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.report-bug-div:hover {
|
|
background: #e9e7e8;
|
|
}
|
|
|
|
.report-bug-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.report-bug-icon svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.report-bug-text p {
|
|
margin: 0;
|
|
}
|
|
|
|
.report-bug-text p:first-child {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.broken-text {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.PopupOpenOff {
|
|
display: none;
|
|
}
|
|
|
|
.PopupOpen {
|
|
display: block;
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: #00000073;
|
|
z-index: 9999;
|
|
overflow: auto;
|
|
}
|
|
|
|
.ReportBugOff {
|
|
padding: 40px;
|
|
}
|
|
|
|
.popupCloseIcon {
|
|
width: 20px;
|
|
display: block;
|
|
height: 20px;
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.popupCloseIcon svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.screenShoot-btn {
|
|
padding: 10px;
|
|
border-radius: 10px 0px 0px 10px;
|
|
width: 50%;
|
|
background: #eff4ff;
|
|
border: 1px solid #bed8ff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.screenShoot-btn span {
|
|
width: 25px;
|
|
height: 25px;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.screenShoot-btn span svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.start-btn {
|
|
padding: 10px;
|
|
border-radius: 0px 10px 10px 0px;
|
|
width: 50%;
|
|
background: #eff4ff;
|
|
border: 1px solid #bed8ff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.start-btn span {
|
|
width: 25px;
|
|
height: 25px;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.start-btn span svg {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.button-video-flex {
|
|
display: flex;
|
|
}
|
|
|
|
.screen-shoot-preview {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#screenshots img {
|
|
display: block;
|
|
width: 100% !important;
|
|
height: auto !important;
|
|
}
|
|
|
|
@media screen and (max-width:425px) {
|
|
.pt-100-area {
|
|
padding-bottom: 50px;
|
|
margin-top: 1px;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width:767px) {
|
|
.software-development-image {
|
|
width: 100%;
|
|
}
|
|
|
|
.software-development-text {
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.saving-dollar {
|
|
background: linear-gradient(101deg, #0033a0bd 55%, #0033a0bd 45%);
|
|
padding-left: 1em;
|
|
}
|
|
|
|
.saving-dollar h1 {
|
|
width: 100%;
|
|
}
|
|
|
|
.saving-dollar p {
|
|
width: 100%;
|
|
}
|
|
|
|
.artificial-title {
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
.artificial-description {
|
|
width: 100%;
|
|
}
|
|
|
|
.artificial-description-sm {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cloud-infrastructure-image {
|
|
width: 100%;
|
|
height: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.cloud-infrastructure-home {
|
|
width: 83%;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.cloud-infrastructure-home:nth-child(2)::after,
|
|
.cloud-infrastructure-home:nth-child(3)::after,
|
|
.cloud-infrastructure-home:nth-child(4)::after,
|
|
.cloud-infrastructure-home:nth-child(5)::after,
|
|
.cloud-infrastructure-home:after {
|
|
content: "";
|
|
background: transparent;
|
|
}
|
|
|
|
.cloud-infrastructure-text {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.hexagon-section {
|
|
margin: 20px 0px !important;
|
|
}
|
|
|
|
.brand-building {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.brand-building-image {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.brand-building-text {
|
|
width: 100%;
|
|
}
|
|
|
|
.designing-advanced {
|
|
background-size: cover;
|
|
height: 100vh;
|
|
}
|
|
|
|
.work-process-card {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hardware-design-image {
|
|
width: 100%;
|
|
}
|
|
|
|
.hardware-design-text {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.footer-bg {
|
|
height: 2280px;
|
|
}
|
|
|
|
.footer-section {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.industries-footer {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.industries-footer ul {
|
|
width: 100%;
|
|
}
|
|
|
|
.services-div {
|
|
width: 100%;
|
|
}
|
|
|
|
.footer-widget {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.footer-widget .footer-logo {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.build-complete-background {
|
|
height: auto;
|
|
min-height: 600px;
|
|
}
|
|
|
|
.build-div {
|
|
width: auto;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.Botnet-attacks-bg p {
|
|
font-size: 1.5rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.designing-advanced-text {
|
|
font-size: 17px !important;
|
|
}
|
|
|
|
.brand-title {
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.hexagon-section-mainDiv {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
/* TIDIO CHAT */
|
|
.footer-icons-wrapper~div {
|
|
display: none !important;
|
|
}
|
|
|
|
/* 3D Animation & Characters Designing Services */
|
|
.animation-characters {
|
|
background: linear-gradient(90deg, var(--Dark-blue) 75%, transparent 50%);
|
|
margin-bottom: 9em;
|
|
}
|
|
|
|
.animation-characters-text-div {
|
|
width: 50%;
|
|
padding-top: 6em;
|
|
padding-bottom: 4em;
|
|
}
|
|
|
|
.animation-characters-text-div h3 {
|
|
font-size: 38px;
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.animation-characters-text-div p {
|
|
color: var(--color-white);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.animation-characters-image-div {
|
|
width: 50%;
|
|
}
|
|
|
|
.top-square-animation {
|
|
width: 55px;
|
|
height: 60px;
|
|
background: #1355ff;
|
|
position: absolute;
|
|
top: -60px;
|
|
}
|
|
|
|
.top-left-square-animation {
|
|
width: 35px;
|
|
height: 35px;
|
|
background: #1355ff;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 65px;
|
|
}
|
|
|
|
.image-animation-characters {
|
|
width: 70%;
|
|
height: 350px;
|
|
position: relative;
|
|
top: 6em;
|
|
}
|
|
|
|
.image-animation-characters img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.animation-right-square {
|
|
width: 30%;
|
|
height: 315px;
|
|
background: #1355ff;
|
|
position: absolute;
|
|
top: -90px;
|
|
right: -95px;
|
|
}
|
|
|
|
.animation-right-square img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.dotted-box-image {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: -30px;
|
|
|
|
}
|
|
|
|
.dotted-box-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.round-box-image {
|
|
position: absolute;
|
|
right: 49%;
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
.round-box-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.about-header-image img {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.contact-description p {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.nav-pills .location-tab {
|
|
background: #e5eff9;
|
|
color: var(--color-black);
|
|
padding: 16px 90.2px !important;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
border-radius: 0;
|
|
border-top: 2px solid transparent;
|
|
}
|
|
|
|
.location-main-div {
|
|
border: 1px solid var(--theme-blue);
|
|
border-radius: 11px;
|
|
}
|
|
|
|
.nav-pills .location-tab-first-tab {
|
|
border-radius: 10px 0px 0px 0px;
|
|
}
|
|
|
|
.nav-pills .location-tab-last-tab {
|
|
border-radius: 0px 10px 0px 0px;
|
|
}
|
|
|
|
.nav-pills .nav-link.location-tab.active {
|
|
border-color: var(--theme-blue) !important;
|
|
color: var(--Dark-blue) !important;
|
|
font-weight: bold !important;
|
|
}
|
|
|
|
.location-title {
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.location-description {
|
|
margin: 0;
|
|
font-size: 19px;
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.location-description a {
|
|
color: var(--theme-blue);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.font-weight-bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.directions-tag {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.directions-tag i {
|
|
position: relative;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.directions-tag:hover i {
|
|
position: relative;
|
|
left: 5px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.location-div-flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.location-div {
|
|
max-width: 300px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
.contact-tab-content>.active {
|
|
height: auto;
|
|
}
|
|
|
|
.contact-inquiry {
|
|
color: var(--Dark-blue);
|
|
font-size: 30px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.contact-inquiry-mail {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--Dark-blue);
|
|
}
|
|
|
|
.contact-inquiry-mail a {
|
|
color: var(--theme-blue);
|
|
}
|
|
|
|
/* Customer support form */
|
|
.support-form-background {
|
|
background: var(--color-white);
|
|
border-radius: 20px;
|
|
padding: 30px;
|
|
box-shadow: 0 0 15px rgb(0 0 0 / 15%);
|
|
}
|
|
|
|
.support-form-title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: var(--bs-blue);
|
|
}
|
|
|
|
.customer-location-section {
|
|
position: relative;
|
|
}
|
|
|
|
.customer-location-section .form-arrow {
|
|
position: absolute;
|
|
top: 0.65rem;
|
|
right: 0.5rem;
|
|
z-index: 10;
|
|
font-size: 1.35rem;
|
|
line-height: inherit;
|
|
color: var(--color-darks);
|
|
}
|
|
|
|
.contact-form .form-group label p {
|
|
font-size: 12px;
|
|
display: inline;
|
|
}
|
|
|
|
.dropdown-select-support {
|
|
height: 50px;
|
|
color: var(--light-dark);
|
|
border: 1px solid var(--theme-blue);
|
|
background-color: var(--color-white);
|
|
font-size: 15px;
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
border-radius: 0;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.dropdown-support-customer {
|
|
display: block !important;
|
|
height: 50px;
|
|
color: var(--light-dark);
|
|
border: 1px solid var(--theme-blue);
|
|
background-color: var(--color-white);
|
|
font-size: 15px;
|
|
padding: 10px 20px;
|
|
width: 100%;
|
|
border-radius: 0;
|
|
font-weight: 500;
|
|
appearance: auto;
|
|
}
|
|
|
|
.form-group .nice-select {
|
|
display: none !important;
|
|
}
|
|
|
|
/* 4 Section */
|
|
.businesses-worldwide-section {
|
|
display: flex;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.businesses-worldwide-image {
|
|
/* background: url(../images/header/Hardware-Design-Development12.png) no-repeat; */
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
padding: 30px;
|
|
border-radius: 7px;
|
|
overflow: hidden;
|
|
width: 50%;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.businesses-worldwide-image-one {
|
|
background-image: url(../images/header/Hardware-Design-Development12.png);
|
|
}
|
|
|
|
.businesses-worldwide-image-two {
|
|
background-image: url(../images/header/Software-Designing-Services.webp);
|
|
}
|
|
|
|
.businesses-worldwide-image-three {
|
|
background-image: url(../images/home-one/3D-Animation.webp);
|
|
}
|
|
|
|
.businesses-worldwide-image-four {
|
|
background-image: url(../images/header/Social-Media-Designing-Services.jpg);
|
|
}
|
|
|
|
.businesses-worldwide-image:hover {
|
|
background: var(--Dark-blue);
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.businesses-worldwide-image .business-title-text {
|
|
margin: 0;
|
|
position: relative;
|
|
color: var(--color-white);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.businesses-worldwide-image:hover .business-title-text {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
.businesses-worldwide-content {
|
|
width: 48%;
|
|
padding: 1em;
|
|
height: 416px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 70px;
|
|
border-radius: 7px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.businesses-worldwide-image::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #00000061;
|
|
}
|
|
|
|
.businesses-worldwide-content::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: #000000ba;
|
|
}
|
|
|
|
.businesses-worldwide-image:hover+.businesses-worldwide-content {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.businesses-worldwide-active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.businesses-worldwide-active+.businesses-worldwide-content {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
transition: 0.4s;
|
|
}
|
|
|
|
.businesses-worldwide-section-content .worldwide-section-title-businesses {
|
|
color: var(--color-white);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.businesses-worldwide-section-content p {
|
|
color: var(--color-white);
|
|
}
|
|
|
|
.businesses-worldwide-section-content .read-more {
|
|
color: var(--Yellow);
|
|
}
|
|
|
|
div#goog-gt-tt {
|
|
display: none;
|
|
}
|
|
|
|
.goog-te-spinner-pos {
|
|
display: none !important;
|
|
}
|
|
|
|
.Leveraging-Artificial-section {
|
|
background: linear-gradient(45deg, #f2fdfd, #feffff);
|
|
}
|
|
|
|
.leveraging-content-artificial {
|
|
width: 48%;
|
|
}
|
|
|
|
.leveraging-image-artificial {
|
|
width: 48%;
|
|
position: relative;
|
|
}
|
|
|
|
.coding-leveraging-sub-title {
|
|
font-size: 21px;
|
|
padding-top: 12px;
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.leveraging-image-artificial img {
|
|
display: block;
|
|
width: 100%;
|
|
height: fit-content;
|
|
margin: 0 auto;
|
|
border-radius: 10px 100px 10px 10px;
|
|
position: relative;
|
|
top: 2em;
|
|
left: -2em;
|
|
}
|
|
|
|
.leveraging-image-border {
|
|
border: 1px solid #1596d3;
|
|
width: 60%;
|
|
margin: 0 auto;
|
|
border-radius: 10px 100px 10px 10px;
|
|
display: block;
|
|
}
|
|
|
|
.Medical-Imaging-queries {
|
|
padding-top: 10px;
|
|
text-align: left;
|
|
color: #1596d3;
|
|
max-width: 700px;
|
|
}
|
|
|
|
.Medical-Imaging-queries p {
|
|
font-size: 25px;
|
|
color: var(--bs-gray-200);
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.Medical-Imaging-queries p:last-child {
|
|
font-size: 20px;
|
|
color: var(--bs-gray-200);
|
|
padding-top: 10px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.introduction-medical-imaging {
|
|
padding: 5em 0;
|
|
}
|
|
|
|
|
|
.Medical-Introduction-section h3 {
|
|
text-align: center;
|
|
font-size: 26px;
|
|
padding-bottom: 19px;
|
|
font-weight: 700;
|
|
color: #1596d3;
|
|
}
|
|
|
|
.background-text-section {
|
|
border: 1px solid #9dc5e4;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
margin: 10px;
|
|
width: 48%;
|
|
box-sizing: border-box;
|
|
background: #f7fcff
|
|
}
|
|
|
|
.Medical-sub-title {
|
|
font-size: 23px;
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
.Applications-AI-Medical {
|
|
background: #f2fdfd;
|
|
}
|
|
|
|
.application-medical-title {
|
|
text-align: center;
|
|
color: #1596d3;
|
|
}
|
|
|
|
.title-medical {
|
|
text-align: center;
|
|
color: #1596d3;
|
|
}
|
|
|
|
.sub-title-medical {
|
|
font-size: 18px;
|
|
color: #000048;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.application-sub-text {
|
|
font-size: 18px;
|
|
color: #000048;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
.Early-Detection-Diagnosis {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.Early-Detection-Diagnosis .cmos-basics-div {
|
|
width: 48%;
|
|
} |