.parallax-effect {
height: 100%;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@media only screen and (max-device-width: 1024px) {
.parallax-effect {
background-attachment: scroll;
}
} .cb-navigation1 .dropdown:hover>.dropdown-menu {
display: block;
}
.cb-navigation1 .navbar {
background: #282828;
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
border-bottom: 1px solid #393939;
}
.cb-navigation1 .navbar-brand img {
height: 100%;
}
.cb-navigation1 .navbar-toggler,
.cb-navigation1 .navbar .navbar-toggler:focus,
.cb-navigation1 .navbar .navbar-toggler:hover {
color: #fff;
border: 0;
}
.cb-navigation1 .navbar-toggler,
.cb-navigation1 .navbar-toggler {
background: #fff;
}
.cb-navigation1 .navbar .navbar-nav > .active {
color: #fff;
background: none;
}
.cb-navigation1 .navbar .navbar-nav > .active > a {
color: #fff !important;
background: none;
}
.cb-navigation1 .navbar .navbar-nav > .active > a:hover,
.cb-navigation1 .navbar .navbar-nav > .active > a:focus {
color: #b7b7b7;
background: none;
}
.cb-navigation1 .navbar .navbar-nav > li {
margin-left: 55px;
}
.cb-navigation1 .navbar .navbar-nav > li > a {
color: #fff !important;
background: none;
}
.cb-navigation1 .navbar .navbar-nav > li > a:hover,
.cb-navigation1 .navbar .navbar-nav > li > a:focus {
color: #a2a2a2 !important;
background: none;
}
.cb-navigation1 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation1 .dropdown-item:hover,
.dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
} .cb-navigation2 .navbar {
background: #282828;
padding: 0;
border-radius: 0;
border: 0;
border-bottom: 1px solid #393939;
margin-bottom: 0;
font-weight: 400;
letter-spacing: 1px;
font-size: 12px;
font-weight: bold;
}
.cb-navigation2 .navbar-nav .btn,
.cb-navigation2 .navbar-nav .btn:focus {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-navigation2 .navbar .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation2 .navbar-brand img {
height: 100%;
}
@media (max-width: 1000px) {
.cb-navigation2 .navbar-brand img {
height: 100%;
}
}
.navigation2 .button_container {
position: fixed;
top: 5%;
right: 2%;
height: 27px;
width: 35px;
cursor: pointer;
z-index: 100;
-webkit-transition: opacity .25s ease;
transition: opacity .25s ease;
}
.navigation2 .button_container:hover {
opacity: .7;
}
.navigation2 .button_container.active .top {
-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
transform: translateY(11px) translateX(0) rotate(45deg);
background: #fff;
}
.navigation2 .button_container.active .middle {
opacity: 0;
background: #fff;
}
.navigation2 .button_container.active .bottom {
-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
transform: translateY(-11px) translateX(0) rotate(-45deg);
background: #fff;
}
.navigation2 .button_container span {
background: #62b151;
border: none;
height: 5px;
width: 100%;
position: absolute;
top: 0;
left: 0;
-webkit-transition: all .35s ease;
transition: all .35s ease;
cursor: pointer;
}
.navigation2 .button_container span:nth-of-type(2) {
top: 11px;
}
.navigation2 .button_container span:nth-of-type(3) {
top: 22px;
}
.navigation2 .overlay {
position: fixed;
background: #62b151;
top: 0;
left: 0;
width: 100%;
height: 0%;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity .35s, visibility .35s, height .35s;
transition: opacity .35s, visibility .35s, height .35s;
overflow: hidden;
z-index: 8;
}
.navigation2 .overlay.open {
opacity: .9;
visibility: visible;
height: 100%;
}
.navigation2 .overlay.open li {
-webkit-animation: fadeInRight .5s ease forwards;
animation: fadeInRight .5s ease forwards;
-webkit-animation-delay: .35s;
animation-delay: .35s;
}
.navigation2 .overlay.open li:nth-of-type(2) {
-webkit-animation-delay: .4s;
animation-delay: .4s;
}
.navigation2 .overlay.open li:nth-of-type(3) {
-webkit-animation-delay: .45s;
animation-delay: .45s;
}
.navigation2 .overlay.open li:nth-of-type(4) {
-webkit-animation-delay: .50s;
animation-delay: .50s;
}
.navigation2 .overlay nav {
position: relative;
height: 50%;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 28px;
font-weight: 400;
text-align: center;
}
.navigation2 .overlay ul {
list-style: none;
padding: 0;
margin: 0 auto;
display: inline-block;
position: relative;
height: 100%;
}
.navigation2 .overlay ul li {
display: block;
height: auto;
position: relative;
opacity: 0;
}
.navigation2 .overlay ul li a {
display: block;
position: relative;
color: #fff;
text-decoration: none;
overflow: hidden;
}
.navigation2 .overlay ul li a:hover:after,
.navigation2 .overlay ul li a:focus:after,
.navigation2 .overlay ul li a:active:after {
width: 100%;
}
.navigation2 .overlay ul li a:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
height: 2px;
background: #fff;
-webkit-transition: .35s;
transition: .35s;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
left: 20%;
}
100% {
opacity: 1;
left: 0;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
left: 20%;
}
100% {
opacity: 1;
left: 0;
}
}
.cb-navigation2 .navbar .navbar-toggler,
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:hover {
color: #000;
background-color: #fff;
border: 0;
}
.cb-navigation2 .navbar .navbar-nav > .active {
color: #fff;
background: none;
border-bottom: 2px solid #425cbb;
}
.cb-navigation2 .navbar .navbar-nav > .active > a {
color: #fff !important;
background: none;
}
.cb-navigation2 .navbar .navbar-nav > .active > a:hover,
.cb-navigation2 .navbar .navbar-nav > .active > a:focus {
color: #fff;
background: none;
}
.cb-navigation2 .navbar .navbar-nav > li {
border-left: 1px solid #393939;
padding: 10px 15px;
border-bottom: 2px solid #282828;
}
.cb-navigation2 .navbar .navbar-nav > li:hover {
background: #425cbb;
color: #fff;
border-bottom: 2px solid #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation2 .navbar .navbar-nav > li:last-child {
border-right: 1px solid #393939;
}
.cb-navigation2 .navbar .navbar-nav > li > a {
color: #fff !important;
background: none;
}
.cb-navigation2 .navbar .navbar-nav > li > a:hover,
.cb-navigation2 .navbar .navbar-nav > li > a:focus {
color: #fff !important;
background: none;
}
.cb-navigation2 .navbar-right {
padding-top: 12px;
padding-left: 10px;
}
.cb-navigation2 .navbar-nav > li > .dropdown-menu {
background-color: #555;
color: #fff;
}
.cb-navigation2 .dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #fff;
white-space: nowrap;
font-size: 13px;
}
.cb-navigation2 .dropdown-menu li > a:hover,
.cb-navigation2 .dropdown-menu li > a:focus,
.cb-navigation2 .dropdown-submenu:hover > a {
background-color: #425cbb;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation2 .dropdown-menu {
border-top-left-radius: 0px !important;
border-top-right-radius: 0px !important;
}
.cb-navigation2 .dropdown:hover>.dropdown-menu {
display: block;
} .cb-navigation3 .navbar {
background: #fff;
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
font-weight: 400;
border-bottom: 1px solid #898989;
}
.cb-navigation3 .navbar-brand img {
width: 100%;
}
@media (max-width: 1000px) {
.cb-navigation3 .navbar-brand img {
height: 100%;
}
}
.cb-navigation3 .navbar .navbar-toggler,
.cb-navigation3 .navbar .navbar-toggler:focus,
.cb-navigation3 .navbar .navbar-toggler:hover {
background: none;
color: #282828;
border: 0;
}
.cb-navigation3 .navbar .navbar-nav > .active {
color: #282828;
background: none;
}
.cb-navigation3 .navbar .navbar-nav > .active > a {
color: #282828 !important;
background: none;
}
.cb-navigation3 .navbar .navbar-nav > .active > a:hover,
.cb-navigation3 .navbar .navbar-nav > .active > a:focus {
color: #b7b7b7;
background: none;
}
.cb-navigation3 .navbar .navbar-nav > li {
padding: 10px 0;
}
.cb-navigation3 .navbar .navbar-nav > li > a {
color: #282828 !important;
background: none;
}
.cb-navigation3 .navbar .navbar-nav > li > a:hover,
.cb-navigation3 .navbar .navbar-nav > li > a:focus {
color: #a2a2a2 !important;
background: none;
}
.cb-navigation3 .navbar-nav > li > .shoping-cart {
min-width: 250px;
padding: 10px;
}
.cb-navigation3 .navbar-nav > li > .shoping-cart p {
font-weight: 200;
font-size: 12px;
}
.cb-navigation3 .dropdown-menu {
}
.cb-navigation3 .navbar .navbar-nav > li.no-caret> .dropdown-toggle:after {
display: none;
}
.cb-navigation3 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation3 .dropdown-item:hover,
.cb-navigation3 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation3 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation4 .navbar {
background: #fff;
padding: 0;
border-radius: 0;
margin-bottom: 0;
font-weight: 400;
border-bottom: 0px solid #000000;
border-top: 0;
border-left: 0;
border-right: 0;
box-shadow: 0px 4px 14px 3px rgba(0, 0, 0, 0.59);
z-index: 100;
}
.cb-navigation4 .navbar-brand img {
}
@media (max-width: 1000px) {
.cb-navigation4 .navbar-brand img {
height: 100%;
}
}
.cb-navigation4 .navbar .navbar-toggler,
.cb-navigation4 .navbar .navbar-toggler:focus,
.cb-navigation4 .navbar .navbar-toggler:hover {
background: none;
color: #282828;
border: 0;
}
.cb-navigation4 .navbar .navbar-nav > .active {
color: #282828;
background: none;
}
.cb-navigation4 .navbar .navbar-nav > .active > a {
color: #282828 !important;
background: none;
}
.cb-navigation4 .navbar .navbar-nav > .active > a:hover,
.cb-navigation4 .navbar .navbar-nav > .active > a:focus {
color: #b7b7b7;
background: none;
}
.cb-navigation4 .navbar .navbar-nav > li {
padding: 10px 0;
}
.cb-navigation4 .navbar .navbar-nav > li > a {
color: #ffffff !important;
background: none;
text-shadow: 1px 1px 1px #737373;
font-size: 22px;
font-family: 'ABeeZee', sans-serif;
}
.cb-navigation4 .navbar .navbar-nav > li > a:hover,
.cb-navigation4 .navbar .navbar-nav > li > a:focus {
color: #ffffff !important;
background: none;
text-shadow: 1px 1px 1px #000000;
}
.cb-navigation4 .navbar-nav > li > .shoping-cart {
min-width: 250px;
padding: 10px;
}
.cb-navigation4 .navbar-nav > li > .shoping-cart p {
font-weight: 200;
font-size: 12px;
}
.cb-navigation4 .dropdown-menu {
top: 40px;
} .cb-navigation4 .top-bar {
height: 40px;
background-color: #313131;
}
.cb-navigation4 .top-bar .top {
margin-top: 7px;
color: #fff;
font-size: 14px;
}
.cb-navigation4 .top-bar span {
color: #fff;
font-weight: 300;
line-height: 25px;
font-size: 13px;
}
.cb-navigation4 .top-bar .fa {
color: #fff;
margin-right: 6px;
}
.cb-navigation4 .top-bar ul li {
margin-right: 15px;
}
.cb-navigation4 .top-bar .dropdown {
margin-top: 6px;
}
.cb-navigation4 .top-bar .dropdown-toggle:hover {
color: #426391;
cursor: pointer;
}
.cb-navigation4 .top-bar .dropdown-toggle:hover > span {
color: #3c882c;
}
.cb-navigation4 .top-bar .dropdown-menu li {
margin-right: 0;
text-align: center;
}
.cb-navigation4 .top-bar .dropdown-menu {
border-radius: 4px;
border: none;
border-top: none;
padding: 10px 0;
background: #425cbb;
box-shadow: none;
width: auto;
margin-top: -2px;
}
.cb-navigation4 .top-bar .dropdown-menu > li > a,
.cb-navigation4 .top-bar .dropdown-menu > li > a:hover,
.cb-navigation4 .top-bar .dropdown-menu > li > a:focus,
.cb-navigation4 .top-bar .dropdown-submenu:hover > a,
.cb-navigation4 .top-bar .dropdown-submenu:focus > a {
background: none;
color: #fff;
font-size: 12px;
padding: 5px;
}
.cb-navigation4 .top-bar .dropdown:hover {
display: block;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation4 .top-bar .dropdown-menu > li > a:hover,
.cb-navigation4 .top-bar .dropdown-submenu:hover > a {
color: #3c882c;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation4 .top-bar .list-inline li {
float: left;
}
.cb-navigation4 a#navbarDropdownsearch:after {
display: none;
}
.cb-navigation4 a#navbarDropdowncart:after {
display: none;
}
.cb-navigation4 a#navbarDropdowncaret {
color: #fff;
font-size: 13px;
}
.cb-navigation4 a#navbarDropdowncaret:hover {
color: #88abbc;
text-decoration: none;
}
.cb-navigation4 .dropdown:hover >.dropdown-menu {
display: block;
}
.cb-navigation4 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation4 .dropdown-item:hover,
.cb-navigation4 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
} .cb-navigation5 .top-bar {
background: #3498db;
min-height: 40px;
}
.cb-navigation5 .top-bar .top {
margin-top: 7px;
color: #fff;
}
.cb-navigation5 .top-bar i {
color: #fff;
font-weight: 300;
line-height: 25px;
padding-right: 9px;
}
.cb-navigation5 .top-bar .fa {
color: #fff;
margin-right: 6px;
}
.cb-navigation5 .top-bar ul li {
margin-right: 15px;
}
.cb-navigation5 .social {
padding: 8px 0;
}
.cb-navigation5 .social .fa {
font-size: 14px;
}
.cb-navigation5 .top-bar .list-inline li {
float: left;
} .cb-navigation6 .navbar {
background: #425cbb;
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
font-weight: 400;
border-bottom: 1px solid #898989;
text-transform: uppercase;
color: #fff;
}
.cb-navigation6 .navbar-brand img {
text-align: center;
}
@media (max-width: 1000px) {
.cb-navigation6 .navbar-brand img {
height: 100%;
}
}
.cb-navigation6 .navbar .navbar-toggler,
.cb-navigation6 .navbar .navbar-toggler:focus,
.cb-navigation6 .navbar .navbar-toggler:hover {
background: none;
color: #fff;
border: 0;
background: #fff;
margin: 5px;
padding: 5px 9px;
}
.cb-navigation6 .navbar .navbar-nav > .active {
color: #fff;
background: none;
}
.cb-navigation6 .navbar .navbar-nav > .active > a {
color: #fff !important;
background: none;
}
.cb-navigation6 .navbar .navbar-nav > .active > a:hover,
.cb-navigation6 .navbar .navbar-nav > .active > a:focus {
color: #282828;
background: none;
}
.cb-navigation6 .navbar .navbar-nav > li {
padding: 10px 0;
}
.cb-navigation6 .navbar .navbar-nav > li > a {
color: #fff !important;
background: none;
}
.cb-navigation6 .navbar .navbar-nav > li > a:hover,
.cb-navigation6 .navbar .navbar-nav > li > a:focus {
color: #282828 !important;
background: none;
}
.cb-navigation6 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation6 .dropdown-item:hover,
.cb-navigation6 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation6 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation7 .navbar {
background: #fff;
padding: 0;
border-radius: 0;
border: 0;
border-bottom: 1px solid #f5f5f5;
margin-bottom: 0;
font-weight: 400;
letter-spacing: 1px;
font-size: 12px;
font-weight: bold;
}
.cb-navigation7 .navbar-brand img {
}
@media (max-width: 1000px) {
.cb-navigation7 .navbar-brand img {
height: 100%;
}
}
.cb-navigation7 .navbar .navbar-toggler,
.cb-navigation7 .navbar .navbar-toggler:hover {
background: none;
color: #425cbb;
border: 0;
}
.cb-navigation7 .navbar .navbar-toggler:focus {
color: #fff;
}
.cb-navigation7 .navbar .navbar-nav > .active {
color: #fff !important;
background: none;
border-bottom: 2px solid #425cbb;
}
.cb-navigation7 .navbar .navbar-nav > .active > a {
color: #425cbb !important;
background: none;
}
.cb-navigation7 .navbar .navbar-nav > .active > a:hover,
.cb-navigation7 .navbar .navbar-nav > .active > a:focus {
color: #fff;
background: none;
}
.cb-navigation7 .navbar .navbar-nav > li {
padding: 10px 15px;
}
.cb-navigation7 .navbar .navbar-nav > li:hover {
background: #425cbb;
color: #fff !important;
border-bottom: 2px solid #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation7 .navbar .navbar-nav > li:last-child {
border-right: 1px solid #f5f5f5;
}
.cb-navigation7 .navbar .navbar-nav > li > a,
.cb-navigation7 .navbar .navbar-nav > li > a:focus {
color: blue !important;
background: none;
}
.cb-navigation7 .navbar .navbar-nav > li > a:active {
color: #fff !important;
}
.cb-navigation7 .navbar .navbar-nav > li > a:hover {
color: #fff !important;
background: none;
}
.cb-navigation7 .navbar-right {
padding-top: 12px;
padding-left: 10px;
}
.cb-navigation7 .navbar-nav > li > .dropdown-menu {
background-color: #f5f5f5;
color: #425cbb;
}
.cb-navigation7 .navbar-nav > li > .dropdown-menu a {
color: #282828;
}
.cb-navigation7 .dropdown-menu li > a:hover,
.cb-navigation7 .dropdown-menu li > a:focus,
.cb-navigation7 .dropdown-submenu:hover > a {
background-color: #425cbb;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation7 .btn {
border-radius: 2px !important;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-navigation7 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation7 .btn,
.cb-navigation7 .btn:focus {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-navigation7 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation7 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation7 .dropdown-item:hover,
.cb-navigation7 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation7 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation8 .navbar {
background-color: #000 !important;
border-color: #e7e7e7;
border-top: 1px solid #e7e7e7;
}
.cb-navigation8 .dropdown:hover>.dropdown-menu {
display: block;
}
.cb-navigation8 .navbar-brand img {
height: 100%;
}
.cb-navigation8 .navbar-toggler,
.cb-navigation8 .navbar .navbar-toggler:focus,
.cb-navigation8 .navbar .navbar-toggler:hover {
color: #fff;
border: 0;
}
.cb-navigation8 .navbar-toggler,
.cb-navigation8 .navbar-toggler {
background: #fff;
}
.cb-navigation8 .navbar .navbar-nav > .active {
color: #fff;
background: none;
}
.cb-navigation8 .navbar .navbar-nav > .active > a {
color: #fff !important;
background: none;
}
.cb-navigation8 .navbar .navbar-nav > .active > a:hover,
.cb-navigation8 .navbar .navbar-nav > .active > a:focus {
color: #b7b7b7;
background: none;
}
.cb-navigation8 .navbar .navbar-nav > li {
margin-left: 55px;
}
.cb-navigation8 .navbar .navbar-nav > li > a {
color: #fff !important;
background: none;
}
.cb-navigation8 .navbar .navbar-nav > li > a:hover,
.cb-navigation8 .navbar .navbar-nav > li > a:focus {
color: #a2a2a2 !important;
background: none;
}
.cb-navigation8 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation8 .dropdown-item:hover,
.dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
} .cb-navigation9 .navbar {
background: rgba(40, 40, 40, 0.8);
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
text-transform: uppercase;
}
.cb-navigation9 .navbar-brand img {
height: 100%;
}
.cb-navigation9 .navbar .navbar-toggler,
.cb-navigation9 .navbar .navbar-toggler:focus,
.cb-navigation9 .navbar .navbar-toggler:hover {
background: none;
color: #fff;
border: 0;
background: #ccc;
padding: 5px 9px;
margin: 5px;
}
.cb-navigation9 .navbar .navbar-nav > .active {
color: #fff;
background: #425cbb;
}
.cb-navigation9 .navbar .navbar-nav > .active > a {
color: #fff !important;
background: none;
}
.cb-navigation9 .navbar .navbar-nav > .active > a:hover,
.cb-navigation9 .navbar .navbar-nav > .active > a:focus {
color: #fff;
background: #425cbb;
}
.cb-navigation9 .navbar .navbar-nav > li {
margin-left: 15px;
}
.cb-navigation9 .navbar .navbar-nav > li > a {
color: #fff !important;
background: none;
font-weight: 400;
padding: 10px 15px;
}
.cb-navigation9 .navbar .navbar-nav > li > a:hover,
.cb-navigation9 .navbar .navbar-nav > li > a:focus {
color: #fff !important;
background: #425cbb;
}
.cb-navigation9 .navbar-collapse {
border-top: 0px;
}
@media (max-width: 768px) {
.cb-navigation9 .navbar .navbar-nav > li {
margin-left: 0;
}
}
.cb-navigation9 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation9 .dropdown-item:hover,
.cb-navigation9 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation9 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation10 .navbar {
background: #000;
min-height: 40px;
border-bottom: 1px solid #ccc;
}
.cb-navigation10 .navbar .top {
margin-top: 7px;
color: #282828;
}
.cb-navigation10 .navbar i {
color: #282828;
font-weight: 300;
line-height: 25px;
margin-right: 8px;
margin-top: 6px;
}
.cb-navigation10 .navbar .fa {
color: #fff;
margin-right: 6px;
cursor: pointer;
}
.cb-navigation10 .navbar .fa:hover {
color: rgba(248, 231, 28, 0.9);
margin-right: 6px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation10 .navbar .nav-tem {
color: #fff;
}
.cb-navigation10 .navbar-light .navbar-nav .nav-link {
color: #f8f9fa;
}
.cb-navigation10 .navbar-nav .nav-link {
color: #f8f9fa;
}
.cb-navigation10 .navbar ul {
margin: 0;
}
.cb-navigation10 .navbar ul li {
margin-left: 0px;
padding: 3px 30px;
display: inline-block;
color: #fff !important;
}
.cb-navigation10 .navbar ul li:first-child {
}
.cb-navigation10 .navbar ul li a {
text-decoration: none;
text-transform: uppercase;
color: #000;
font-weight: 400;
}
.cb-navigation10 .dropdown-menu li {
width: 100%;
}
.cb-navigation10 .navbar ul li:hover {
background-color: #f8e71c;
color: #000;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation10 .navbar ul li:hover a {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
background: transparent;
}
.cb-navigation10 .social {
padding: 8px 0;
}
.cb-navigation10 .social .fa {
font-size: 14px;
}
.cb-navigation10 .mobile-menu {
display: none;
}
.cb-navigation10 .mobile-menu .fa {
font-size: 24px;
padding-top: 5px;
}
.cb-navigation10 .navbar {
padding: 0px;
}
.cb-navigation10 .navbar-light .navbar-toggler {
margin: 5px auto;
}
@media (max-width: 768px) {
.cb-navigation10 .top-bar ul {
display: none;
}
.cb-navigation10 .top-bar ul li {
display: block !important;
text-align: center;
border: none;
}
.cb-navigation10 .navbar ul li a {
text-align: center;
}
.cb-navigation10 .navbar ul li:first-child {
border-left: none;
}
.cb-navigation10 .navbar ul li {
border-right: none;
}
.cb-navigation10 .top-bar ul li:first-child {
border: none;
}
.cb-navigation10 .social {
display: none !important;
}
.cb-navigation10 .mobile-menu {
display: block;
}
.cb-navigation10 .mobile-menu:hover ul {
display: block !important;
}
}
@media (min-width: 768px) {
.cb-navigation10 .top-bar ul {
display: block !important;
}
}
.cb-navigation10 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation10 .dropdown-item:hover,
.cb-navigation10 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation10 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation11 .top-bar {
background: #282828;
min-height: 40px;
}
.cb-navigation11 .top-bar .top {
margin-top: 7px;
color: #fff;
}
.cb-navigation11 .top-bar i {
color: #fff;
font-weight: 300;
line-height: 25px;
margin-right: 9px;
}
.cb-navigation11 .top-bar .fa {
color: #fff;
margin-right: 6px;
}
.cb-navigation11 .top-bar ul li {
margin-right: 15px;
}
.cb-navigation11 .social {
padding: 8px 0;
float: right;
}
.cb-navigation11 .social .fa {
font-size: 14px;
color: #fff;
}
.cb-navigation11 .top-bar .list-inline li {
float: left;
} .cb-navigation12 .navbar {
background: #3498db;
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
font-weight: 400;
border-bottom: 1px solid #898989;
}
.cb-navigation12 .navbar-brand {
background-color: #fff;
height: 71px;
position: absolute;
top: 0;
}
.cb-navigation12 .navbar-brand img {
height: 100%;
}
@media (max-width: 768px) {
.cb-navigation12 .navbar-brand {
height: 49px;
}
.cb-navigation12 .navbar-brand img {
height: 100%;
}
.cb-navigation12 .navbar .navbar-nav > li {
padding: 10px 0px !important;
}
}
.cb-navigation12 .navbar .navbar-toggler,
.cb-navigation12 .navbar .navbar-toggler:focus,
.cb-navigation12 .navbar .navbar-toggler:hover {
background: none;
color: #282828;
border: 0;
padding: 5px 10px;
margin: 5px;
}
.cb-navigation12 .navbar .navbar-nav > .active {
color: #282828;
background: none;
}
.cb-navigation12 .navbar .navbar-nav > .active > a {
color: #282828 !important;
background: none;
}
.cb-navigation12 .navbar .navbar-nav > .active > a:hover,
.cb-navigation12 .navbar .navbar-nav > .active > a:focus {
color: #fff;
background: none;
}
.cb-navigation12 .navbar .navbar-nav > li {
padding: 10px 0;
}
.cb-navigation12 .navbar .navbar-nav > li > a,
.cb-navigation12 .navbar .navbar-nav > li > a:focus {
color: #fff !important;
background: none;
font-size: 16px;
font-weight: 200;
}
.cb-navigation12 .navbar .navbar-nav > li > a:hover {
color: #282828 !important;
background: none;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-navigation12 .navbar .navbar-collapse,
.navbar .navbar-form {
border-color: #e7e7e7;
}
.cb-navigation12 .navbar-collapse {
border-top: 1px solid #fff;
}
.cb-navigation12 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation12 .dropdown-item:hover,
.cb-navigation12 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation12 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation13 {
background-color: #000;
}
.cb-navigation13 .navbar-toggler {
padding: 15px;
color: #fff;
font-size: 14px;
}
.cb-navigation13 .navbar-toggler:focus {
color: #222;
background-color: #fff;
}
.cb-navigation13 .navbar-toggler:hover {
color: #222;
background-color: #fff;
}
.cb-navigation13 .navbar-brand {
color: #fff;
font-size: 24px;
line-height: 44px;
font-weight: 900;
text-transform: uppercase;
}
.cb-navigation13 .navbar-brand img {
height: 100%;
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link {
padding-top: 15px;
padding-bottom: 15px;
color: #fff;
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link:focus {
color: rgba(255, 255, 255, 0.5);
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link:hover {
color: blue;
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link.active {
color: #EF4035;
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link.active:focus {
color: #EF4035;
}
.cb-navigation13 .navbar-collapse .navbar-nav > .nav-item > .nav-link.active:hover {
color: #EF4035;
}
.cb-navigation13 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation13 .dropdown-item:hover,
.cb-navigation13 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation13 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-navigation14 .navbar {
background: #fff;
padding: 0;
border-radius: 0;
border: 0;
margin-bottom: 0;
font-weight: 400;
border-bottom: 1px solid #f5f5f5;
-webkit-box-shadow: 0px 8px 7px -1px rgba(204, 204, 204, 0.3);
-moz-box-shadow: 0px 8px 7px -1px rgba(204, 204, 204, 0.3);
box-shadow: 0px 8px 7px -1px rgba(204, 204, 204, 0.3);
}
.cb-navigation14 .navbar .navbar-toggler,
.cb-navigation14 .navbar .navbar-toggler:focus,
.cb-navigation14 .navbar .navbar-toggler:hover {
background: none;
color: #282828;
border: 0;
}
.cb-navigation14 .navbar .navbar-nav > .active {
color: #282828;
background: none;
}
.cb-navigation14 .navbar .navbar-nav > .active > a {
color: #282828 !important;
background: none;
}
.cb-navigation14 .navbar .navbar-nav > .active > a:hover,
.cb-navigation14 .navbar .navbar-nav > .active > a:focus {
color: #b7b7b7;
background: none;
}
.cb-navigation14 .navbar .navbar-nav > li {
padding: 10px 0;
}
.cb-navigation14 .navbar .navbar-nav > li > a {
color: #282828 !important;
background: none;
text-transform: uppercase;
padding: 15px 15px 15px 0;
}
.cb-navigation14 .navbar .navbar-nav > li > a:hover,
.cb-navigation14 .navbar .navbar-nav > li > a:focus {
color: #a2a2a2 !important;
background: none;
}
.cb-navigation14 .navbar-collapse,
.cb-navigation14 .collapse,
.cb-navigation14 .navbar .navbar-nav > li > a:first-child {
margin-left: 0;
padding-left: 0;
}
.cb-navigation14 .top-menu {
padding: 40px;
border-bottom: 1px solid #f5f5f5;
}
.cb-navigation14 .top-menu .social {
padding: 20px 0;
}
.cb-navigation14 .top-menu .social .fa {
font-size: 14px;
margin-right: 8px;
}
.cb-navigation14 .top-menu .social i {
font-size: 14px;
margin-right: 8px;
}
.cb-navigation14 .top-menu img {
max-width: 100%;
height: 100%;
}
.cb-navigation14 .top-menu .form-control {
background-color: #f5f5f5;
width: 80%;
float: right;
margin-top: 10px;
border-radius: 16px;
padding: 4px 20px;
}
.cb-navigation14 .top-menu .icon .fa {
font-size: 18px;
margin-top: -1px;
display: block;
}
.cb-navigation14 .top-menu .icon {
position: absolute;
top: 20px;
right: 25px;
}
@media (max-width: 768px) {
.cb-navigation14 .navbar .navbar-nav > li > a {
text-align: center;
}
.cb-navigation14 .top-menu .social {
display: none;
}
.cb-navigation14 .top-menu .form-control {
display: none;
}
.cb-navigation14 .top-menu .icon {
display: none;
}
}
.cb-navigation14 .dropdown-item {
background-color: #fff;
color: #000;
}
.cb-navigation14 .dropdown-item:hover,
.cb-navigation14 .dropdown-item:focus {
color: #ffffff;
text-decoration: none;
background-color: #000000;
}
.cb-navigation14 .dropdown:hover >.dropdown-menu {
display: block;
} .cb-slider1 {
overflow: hidden;
height: 100vh;
width: 100%;
}
.cb-slider1 .slide {
width: 100%;
}
.cb-slider1 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
}
.cb-slider1 .slide h3 {
text-align: center;
color: #ffffff;
font-size: 20px;
font-weight: normal;
letter-spacing: 6px;
line-height: normal;
text-transform: uppercase;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 6s;
animation-duration: 6s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider1 .slide h1 {
text-align: center;
color: #fff;
font-size: 80px;
font-weight: 400;
margin-bottom: 30px;
line-height: normal;
text-transform: capitalize;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 7s;
animation-duration: 7s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider1 .slide p {
text-align: center;
color: #fff;
font-size: 17px;
letter-spacing: 1px;
font-weight: normal;
line-height: normal;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 8s;
animation-duration: 8s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider1 .slide a {
outline: 0;
width: auto;
height: 50px;
color: #ffffff;
padding: 0 23px;
cursor: pointer;
font-size: 13px;
text-align: left;
text-shadow: none;
line-height: 50px;
margin: 30px 10px;
#fff-space: nowrap;
letter-spacing: 1px;
display: inline-block;
text-decoration: none;
border: 2px solid #ffffff;
text-transform: uppercase;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 9s;
animation-duration: 9s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
-webkit-transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
}
.cb-slider1 .slide a:hover {
color: #000;
background: #fff;
border: 2px solid #fff;
}
.cb-slider1 .carousel-inner .item {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-slider1 .carousel-inner .item {
-webkit-transition-property: top;
transition-property: top;
}
@media all and (transform-3d),
(-webkit-transform-3d) {
.cb-slider1 .carousel-inner .item {
-webkit-transition-property: -webkit-transform;
transition-property: transform;
}
.cb-slider1 .carousel-inner .item.next,
.cb-slider1 .carousel-inner .item.active.right {
top: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
.cb-slider1 .carousel-inner .item.prev,
.cb-slider1 .carousel-inner .item.active.left {
top: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
.cb-slider1 .carousel-inner .item.next.left,
.cb-slider1 .carousel-inner .item.prev.right,
.cb-slider1 .carousel-inner .item.active {
top: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.cb-slider1 .carousel-indicators {
cursor: pointer;
overflow-x: hidden;
overflow-y: auto;
}
.cb-slider1 .carousel-indicators li {
width: 13px;
height: 13px;
display: block;
margin: 10px;
border-radius: 0px;
-webkit-border-radius: 0px;
border: 2px solid rgba(255, 255, 255, 0.7);
}
.cb-slider1 .carousel-indicators .active {
margin: 1px;
width: 13px;
height: 13px;
margin: 10px;
background: #fff;
} .cb-slider2 {
height: 100vh;
}
.cb-slider2 .carousel-inner .item {
width: 100%;
}
.cb-slider2 .controls {
display: inline-flex;
flex-direction: column;
align-items: flex-end;
position: absolute;
right: 2%;
margin-top: 40px;
}
.cb-slider2 .controls .carousel-control {
opacity: 1;
width: 45px;
height: 45px;
z-index: 100;
border: none;
color: #ffffff;
display: block;
font-size: 14px;
cursor: pointer;
overflow: hidden;
line-height: 45px;
text-shadow: none;
font-weight: normal;
background: #1583c9;
}
.cb-slider2 .controls .carousel-control:hover {
opacity: 1;
}
.cb-slider2 .controls .carousel-control.left {
text-align: center;
margin-bottom: 5px;
}
.cb-slider2 .controls .carousel-control.right {
text-align: center;
margin-bottom: 5px;
}
.cb-slider2 .controls .carousel-control.left:hover {
color: #fff;
background: #000000;
}
.cb-slider2 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
}
.cb-slider2 .image {
padding: 0px;
margin: 0px;
width: 100%;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-slider2 .slide {
width: 100%;
}
.cb-slider2 .slide h1 {
color: #fff;
font-size: 2.5em;
text-shadow: none;
font-weight: 700;
font-style: normal;
letter-spacing: 3px;
-webkit-font-smoothing: antialiased;
text-align: center;
}
.cb-slider2 .slide h5 {
color: #fff;
font-size: 16px;
font-weight: 400;
text-shadow: none;
font-style: normal;
letter-spacing: 1px;
margin: 10px 0 50px 0;
-webkit-font-smoothing: antialiased;
}
.cb-slider2 .slide a {
color: #fff;
cursor: pointer;
font-size: 13px;
font-weight: 500;
text-shadow: none;
position: relative;
text-align: center;
font-style: normal;
padding: 10px 25px;
letter-spacing: 1px;
text-decoration: none;
background: #1583c9;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 0;
border: 1px solid #fff;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-slider2 .slide a:hover {
color: #fff;
background: #000000;
}
.cb-slider2 #slider2 .carousel-inner .item .row div:nth-child(1) img {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
]
.cb-slider2 #slider2 .carousel-inner .item .row div:nth-child(2) img {
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
} .cb-slider3 {
overflow: hidden;
height: 100vh;
width: 100%;
}
.cb-slider3 .slide {
width: 100%;
}
.cb-slider3 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
}
.cb-slider3 .slide h1 {
color: #fff;
font-size: 80px;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 7s;
animation-duration: 7s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
text-align: center;
}
.cb-slider3 .slide h1 span {
color: #ff0000;
font-size: 80px;
font-weight: 800;
text-transform: uppercase;
text-shadow: 2px 2px #000;
}
.cb-slider3 .slide p {
color: #fff;
font-size: 25px;
letter-spacing: 1px;
font-weight: 500;
line-height: normal;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 8s;
animation-duration: 8s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
text-align: center;
}
.cb-slider3 .slide .buttons {
margin-top: 10px;
margin-bottom: 10px;
}
.cb-slider3 .slide .buttons .btn1 {
margin-bottom: 7px;
outline: 0;
width: auto;
height: 50px;
color: #ffffff;
padding: 0 23px;
cursor: pointer;
font-size: 13px;
text-align: left;
text-shadow: none;
line-height: 50px;
#fff-space: nowrap;
letter-spacing: 1px;
display: inline-block;
text-decoration: none;
border: 2px solid #ffffff;
text-transform: uppercase;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 9s;
animation-duration: 9s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
-webkit-transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
background-color: #ff0000;
}
.cb-slider3 .slide .buttons .btn2 {
outline: 0;
width: auto;
height: 50px;
color: #000000;
padding: 0 23px;
cursor: pointer;
font-size: 13px;
text-align: left;
text-shadow: none;
line-height: 50px;
#fff-space: nowrap;
letter-spacing: 1px;
display: inline-block;
text-decoration: none;
border: 2px solid #000;
text-transform: uppercase;
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
-webkit-animation-duration: 9s;
animation-duration: 9s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
-webkit-transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
transition: background cubic-bezier(0.230, 1.000, 0.320, 1.000) 0.7s;
background-color: #fffc00;
}
.cb-slider3 .slide .buttons .btn1:hover {
color: #000;
background: #fff;
border: 2px solid #fff;
}
.cb-slider3 .slide .buttons .btn2:hover {
color: #000;
background: #fff;
border: 2px solid #fff;
}
.cb-slider3 .carousel-inner .item {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-slider3 .carousel-inner .item {
-webkit-transition-property: top;
transition-property: top;
}
.cb-slider3 .carousel-indicators {
cursor: pointer;
overflow-x: hidden;
overflow-y: auto;
}
.cb-slider3 .carousel-indicators li {
width: 13px;
height: 13px;
display: block;
margin: 10px;
border-radius: 0px;
-webkit-border-radius: 0px;
border: 2px solid rgba(255, 255, 255, 0.7);
background-color: #ff0000;
}
.cb-slider3 .carousel-indicators .active {
margin: 1px;
width: 13px;
height: 13px;
margin: 10px;
background: #fff;
} .cb-slider4 {
height: 100vh;
background: #1583c9;
}
.cb-slider4 .carousel-inner .item {
width: 100%;
}
.cb-slider4 .carousel-inner .item .image {
padding: 0px;
margin: 0px;
width: 100%;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-slider4 .slide {
background-color: #1583c9;
padding: 50px;
}
.cb-slider4 .slide h1 {
text-align: center;
color: #fff;
font-weight: 700;
font-size: 50px;
text-shadow: none;
font-style: normal;
letter-spacing: 2px;
text-transform: uppercase;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
}
.cb-slider4 .slide p {
color: #fff;
font-weight: 300;
margin-top: 30px;
margin-bottom: 30px;
font-style: normal;
text-align: center;
}
.cb-slider4 .slide a {
background-color: #d31d8c;
color: #fff;
padding: 20px 20px 20px 20px;
cursor: pointer;
font-size: 20px;
font-weight: 300;
text-decoration: none;
position: relative;
text-align: center;
font-style: normal;
letter-spacing: 1px;
text-transform: uppercase;
border: 1px solid #fff;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-slider4 .slide a:hover {
color: #fff;
border-bottom: 1px solid #fff;
}
.cb-slider4 .controls {
position: absolute;
top: 0px;
}
.cb-slider4 .controls a:hover {
opacity: 1;
}
.cb-slider4 .controls a.left {
z-index: 100;
color: #000;
background-color: #fff;
left: 1%;
position: absolute;
padding: 5px;
}
.cb-slider4 .controls a.right {
z-index: 100;
color: #000;
background-color: #fff;
right: 1%;
position: absolute;
padding: 5px;
}
.cb-slider4 .controls a.left:hover,
.cb-slider4 .controls a.right:hover {
color: #ffffff !important;
background: #d31d8c;
border: 1px solid #fff;
}
.cb-slider4 .controls a.left span:nth-child(1) {
margin-right: 0;
}
.cb-slider4 .controls a.right span:nth-child(1) {
margin-left: 0;
} .cb-slider5 {
overflow: hidden;
height: 100vh;
}
.cb-slider5 .carousel_indicators {
z-index: 3;
height: 100%;
overflow: auto;
margin-left: 0%;
margin-bottom: 0px;
padding: 0px 5px 0px 5px;
}
.cb-slider5 .carousel_indicators li {
width: 100%;
opacity: 0.8;
height: auto;
border: none;
display: block;
margin: 2px 0px 2px 0px;
-webkit-border-radius: 0%; border-radius: 0%; -webkit-transition: opacity 0.3s ease-in-out 0s; transition: opacity 0.3s ease-in-out 0s; }
.cb-slider5 .carousel_indicators li img {
width: 100%;
}
.cb-slider5 .carousel_indicators .active {
width: 100%;
opacity: 0.4;
border: none;
margin: 2px 0px 2px 0px;
}
.cb-slider5 .carousel_indicators::-webkit-scrollbar {
width: 5px;
}
.cb-slider5 .carousel_indicators::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
}
.cb-slider5 .carousel_indicators {
background: #282828;
cursor: pointer;
}
.cb-slider5 .carousel_indicators::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
}
.cb-slider5 .carousel-item {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-slider5 .carousel_caption {
padding: 60px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
height: 100%;
}
.cb-slider5 .carousel_caption h1 {
font-size: 60px;
font-weight: bold;
color: #fff;
margin: 0px 0px 5px 0px;
text-transform: uppercase;
-webkit-animation-delay: 1s;
animation-delay: 1s;
-webkit-animation-timing-function: cubic-bezier(.22, .81, .01, .99);
animation-timing-function: cubic-bezier(.22, .81, .01, .99);
}
.cb-slider5 .carousel_caption h2 {
font-size: 30px;
font-weight: bold;
color: #fff;
margin: 5px 0px 30px 0px;
text-transform: uppercase;
-webkit-animation-delay: 1.5s;
animation-delay: 1.5s;
-webkit-animation-timing-function: cubic-bezier(.22, .81, .01, .99);
animation-timing-function: cubic-bezier(.22, .81, .01, .99);
}
.cb-slider5 .carousel_caption a {
font-size: 20px;
text-decoration: none;
text-transform: uppercase;
padding: 15px 20px 15px 20px;
-webkit-animation-delay: 2s;
animation-delay: 2s;
-webkit-animation-timing-function: cubic-bezier(.22, .81, .01, .99);
animation-timing-function: cubic-bezier(.22, .81, .01, .99);
-webkit-transition: all 0.2s ease-in-out 0s;
transition: all 0.2s ease-in-out 0s;
}
.cb-slider5 .carousel_caption a {
color: #000;
background: #ffffff;
text-align: center;
}
.cb-slider5 .carousel_caption a:hover {
color: #ffffff;
background: #1583c9;
}
.cb-slider5 .carousel_indicators::-webkit-scrollbar-thumb {
background-color: #fff;
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-slider5 .carousel_caption h1 {
font-size: 40px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.cb-slider5 .carousel_caption h1 {
font-size: 30px;
}
}
@media (min-width: 200px) and (max-width: 599px) {
.cb-slider5 .carousel_caption {
width: 100%;
}
.cb-slider5 .carousel_caption h1 {
font-size: 30px;
}
.cb-slider5 .carousel_caption h2 {
font-size: 18px;
}
} .cb-slider6 {
top: -80px;
overflow: hidden;
max-height: 650px;
position: relative;
margin-bottom: -80px;
}
.cb-slider6 .carousel-inner .item img,
.cb-slider6 .carousel-inner .item a img {
opacity: 1;
margin: auto;
width: 100% !important;
}
.cb-slider6 .item {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.cb-slider6 .video {
width: 100%;
}
.cb-slider6 .caption {
top: 0%;
left: 0%;
right: 0%;
width: 100%;
padding: 0%;
}
.cb-slider6 .caption_text {
padding: 60px;
z-index: 2;
text-align: left;
top: 20%;
display: flex;
flex-direction: column;
position: absolute;
align-items: flex-start;
}
.cb-slider6 .caption_text h1 {
background: rgba(0, 0, 0, 0.5);
color: #fff;
font-size: 55px;
font-weight: 600;
text-transform: uppercase;
padding: 10px 20px 10px 20px;
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.cb-slider6 .caption_text p {
background: rgba(0, 0, 0, 0.5);
color: #fff;
font-size: 25px;
padding: 10px 20px 10px 20px;
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.cb-slider6 .main_button {
outline: 0;
margin: 0%;
height: 44px;
border: none;
cursor: pointer;
font-size: 16px;
font-weight: 700;
text-shadow: none;
line-height: 44px;
padding: 5px 35px;
font-style: normal;
#fff-space: nowrap;
letter-spacing: 1px;
display: inline-block;
text-transform: uppercase;
text-decoration: none !important;
-webkit-border-radius: 0px;
border-radius: 0px;
-webkit-box-sizing: initial !important;
-moz-box-sizing: initial !important;
box-sizing: initial !important;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s;
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.cb-slider6 .main_button {
color: #ffffff;
background: #1583c9;
}
.cb-slider6 .main_button:hover {
color: #ffffff !important;
background: #000 !important;
}
.cb-slider6 .control_left,
.cb-slider6 .control_right {
bottom: 50%;
z-index: 2;
width: 55px;
height: 55px;
border: none;
opacity: 0.2;
text-align: center;
-webkit-transition: all ease-in-out 0.3s;
transition: all ease-in-out 0.3s;
display: flex;
justify-content: center;
align-items: center;
}
.cb-slider6 .control_icons {
line-height: 50px;
font-size: 34px !important;
font-weight: normal !important;
color: #fff;
}
.cb-slider6 .control_left {
position: absolute;
top: 0;
bottom: 0;
left: 0;
border-left: none !important;
-webkit-border-radius: 0px 100% 100% 0px;
border-radius: 0px 100% 100% 0px;
}
.cb-slider6 .control_right {
position: absolute;
top: 0;
bottom: 0;
right: 0;
border-right: none !important;
-webkit-border-radius: 100% 0px 0px 100%;
border-radius: 100% 0px 0px 100%;
}
.cb-slider6 .control_left:hover {
opacity: 1;
}
.cb-slider6 .cb-slider6_fade {
opacity: 1;
}
.cb-slider6 .cb-slider6_fade .item {
z-index: 1;
opacity: 0;
width: 100%;
-webkit-transition: opacity ease-in-out 0.7s;
-moz-transition: opacity ease-in-out 0.7s;
-ms-transition: opacity ease-in-out 0.7s;
-o-transition: opacity ease-in-out 0.7s;
transition: opacity ease-in-out 0.7s;
}
.cb-slider6 .cb-slider6_fade .item:first-child {
top: auto;
position: relative;
}
.cb-slider6 .cb-slider6_fade .item.active {
opacity: 1;
z-index: 2;
-webkit-transition: opacity ease-in-out 0.7s;
-moz-transition: opacity ease-in-out 0.7s;
-ms-transition: opacity ease-in-out 0.7s;
-o-transition: opacity ease-in-out 0.7s;
transition: opacity ease-in-out 0.7s;
}
@media (max-width: 727px) {
.cb-slider6 .caption_text {
bottom: 0%;
}
.cb-slider6 .caption_text h1 {
font-size: 25px;
margin-bottom: 2px;
padding: 5px 5px 5px 5px;
}
.cb-slider6 .caption_text p {
font-size: 15px;
margin-bottom: 2px;
padding: 5px 5px 5px 5px;
}
}
@media (max-width: 322px) {
.cb-slider6 .caption_text {
padding-top: 0;
}
.cb-slider6 .caption_text h1 {
text-align: center;
}
.cb-slider6 .caption_text p {
text-align: center;
}
.cb-slider6 .main_button {
width: 100%;
padding-right: 0;
padding-left: 0;
text-align: center;
}
} .cb-slider7 {
overflow: hidden;
height: 100vh;
width: 100%;
background-color: #000;
}
.cb-slider7 .carousel-inner .item .row .image {
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-slider7 .carousel-inner .item .row {
margin: 0;
}
.cb-slider7 .carousel-inner .item .row div {
opacity: 0.5;
padding: 0;
}
.cb-slider7 .carousel-inner .item .row div:nth-child(1) img {
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider7 .carousel-inner .item .row div:nth-child(2) img {
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider7 .carousel-inner .item .row div:nth-child(3) img {
-webkit-animation-delay: 0s;
animation-delay: 0s;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
animation-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider7 .slide {
top: 0%;
width: 600px;
padding: 80px;
text-align: left;
overflow: hidden;
position: absolute;
}
.cb-slider7 .slide_center {
left: 0;
margin: auto;
text-align: center;
}
.cb-slider7 .slide_right {
text-align: right;
}
.cb-slider7 .slide h1 {
color: #ffffff;
margin-bottom: 10px;
font-size: 60px;
font-weight: 700;
text-shadow: none;
font-style: normal;
letter-spacing: 2px;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
.cb-slider7 .slide h1 span {
color: #1583c9;
}
.cb-slider7 .slide p {
left: 15px;
width: 400px;
color: #ffffff;
font-size: 14px;
font-weight: 400;
text-shadow: none;
letter-spacing: 2px;
-webkit-font-smoothing: antialiased;
}
.cb-slider7 .slide_center p {
text-align: center;
}
.cb-slider7 .slide_right p {
left: auto;
right: 10px;
text-align: right;
}
.cb-slider7 .slide a {
color: #ffffff;
cursor: pointer;
font-size: 12px;
font-weight: 400;
text-shadow: none;
padding: 11px 25px;
text-align: center;
background: #1583c9;
letter-spacing: 1px;
display: inline-block;
text-decoration: none;
text-transform: capitalize;
-webkit-border-radius: 150px;
border-radius: 150px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider7 .slide a:hover,
.cb-slider7 .slide a:active {
color: #1583c9;
background: #ffffff;
}
.cb-slider7 .carousel-control {
top: 45%;
opacity: 0;
width: 35px;
height: 75px;
z-index: 100;
color: #ffffff;
display: block;
font-size: 24px;
cursor: pointer;
overflow: hidden;
line-height: 75px;
text-shadow: none;
position: absolute;
font-weight: normal;
background: rgba(255, 255, 255, 0.5);
-webkit-transition: all 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
transition: all 0.5s cubic-bezier(0.230, 1.000, 0.320, 1.000);
}
.cb-slider7:hover .carousel-control {
opacity: 1;
}
.cb-slider7 .carousel-control.left {
left: 0;
-webkit-border-radius: 0 100px 100px 0;
border-radius: 0 100px 100px 0;
}
.cb-slider7 .carousel-control.right {
right: 0;
-webkit-border-radius: 0 100px 100px 0;
border-radius: 100px 0 0 100px;
}
.cb-slider7 .carousel-control.left:hover {
color: #000;
background: #fff;
}
.cb-slider7 .carousel-control.left span:nth-child(1) {
margin-right: 10px;
}
.cb-slider7 .carousel-control.right>span:nth-child(1) {
margin-left: 10px;
}
@media only screen and (max-width: 480px) {
.cb-slider7 .slide {
top: 1%;
width: 100%;
text-align: center;
margin-left: 0;
margin-right: 0;
}
.cb-slider7 .right {
left: 0;
right: 0;
text-align: center;
}
.cb-slider7 .slide h1 {
margin: 0;
font-size: 22px;
padding-left: 0;
padding-right: 0;
text-align: center;
width: 100%;
}
.cb-slider7 .slide p {
padding: 0;
margin: 0 0 5px 0;
width: 100%;
text-align: center;
letter-spacing: 1px;
}
.cb-slider7 .slide_right p {
left: 0;
right: 0;
text-align: center;
}
.cb-slider7 .slide a {
width: 100%;
margin: 10px 0 0;
padding-right: 0;
padding-left: 0;
}
.cb-slider7 .carousel-control {
display: none;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-slider7 .slide {
top: 1%;
left: 0;
padding: 0;
width: 100%;
text-align: center;
}
.cb-slider7 .slide_right {
left: 0;
right: 0;
text-align: center;
}
.cb-slider7 .slide h1 {
font-size: 40px;
}
.cb-slider7 .slide p {
left: 0;
padding: 0;
width: 100%;
position: relative;
}
.cb-slider7 .slide_right p {
left: 0;
right: 0;
text-align: center;
}
.cb-slider7 .slide a {
margin-top: 30px;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-slider7 .slide {
top: 1%;
left: 0;
}
.cb-slider7 .slide_right {
right: 0;
left: auto;
}
}
@media (min-width: 201px) and (max-width: 766px) {
.cb-slider7 .slide {
top: 1%;
left: 0;
}
.cb-slider7 .slide_right {
right: 0;
left: auto;
}
} .cb-slider8 {
overflow: hidden;
max-height: 643px;
position: relative;
background: #000000;
}
.cb-slider8 .carousel-inner .item img,
.cb-slider8 .carousel-inner .item a img {
opacity: 0.8;
width: 100%;
margin: auto;
}
.cb-slider8 .carousel-indicators {
left: 0;
bottom: 0;
margin: 0;
width: 100%;
padding: 5px 0;
cursor: e-resize;
position: absolute;
text-align: center;
#fff-space: nowrap;
background: rgba(255, 255, 255, 0.2);
}
.cb-slider8 .carousel-indicators li {
width: 6%;
border: 0px;
padding: 0px;
height: 100%;
margin: 2px 0;
text-indent: 0;
cursor: pointer;
display: inline-block;
background-color: transparent;
background-color: transparent;
-webkit-border-radius: 2px;
border-radius: 2px;
}
.cb-slider8 .carousel-indicators li img {
width: 100%;
-webkit-border-radius: 1px;
border-radius: 1px;
}
.cb-slider8 .carousel-indicators .active {
width: 6%;
margin: 0;
height: 100%;
background-color: transparent;
}
.cb-slider8 .carousel-indicators .active img {
opacity: 0.6;
}
.cb-slider8 .carousel-indicators::-webkit-scrollbar {
margin: 0;
padding: 0;
width: 5px;
height: 5px;
background: rgba(0, 0, 0, 0.3);
}
.cb-slider8 .carousel-indicators::-webkit-scrollbar-thumb {
-webkit-border-radius: 0;
border-radius: 0;
background: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 768px) {
.cb-slider8 .carousel-indicators {
bottom: 0;
}
}
.cb-slider8 .slide {
top: 20%;
left: 10%;
width: 35%;
right: auto;
margin: auto;
text-align: left;
position: absolute;
-webkit-animation-delay: 0.3s;
animation-delay: 0.3s;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-slider8 .slide_right {
right: 10%;
left: auto;
text-align: right;
}
.cb-slider8 .slide_center {
left: 0;
right: 0;
text-align: center;
}
.cb-slider8 .slide h2 {
margin-top: 10px;
margin-bottom: 20px;
color: #ffffff;
font-size: 28px;
font-weight: 100;
text-transform: capitalize;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-slider8 .slide h1 {
margin: 0;
padding: 0;
color: #ffffff;
font-size: 50px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-slider8 .slide h4 {
width: 275px;
color: #000000;
font-size: 11px;
font-weight: 400;
margin: 0 0 15px 0;
background: #ffffff;
letter-spacing: 1px;
padding: 5px 5px 5px 10px;
text-transform: uppercase;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-slider8 .slide_right h4 {
margin-left: auto;
text-align: right;
}
.cb-slider8 .slide_center h4 {
margin-left: auto;
margin-right: auto;
text-align: center;
}
.cb-slider8 .slide a {
color: #ffffff;
cursor: pointer;
font-size: 14px;
line-height: 10px;
text-align: center;
padding: 20px 30px 20px 30px;
letter-spacing: 1px;
#fff-space: nowrap;
display: inline-block;
text-decoration: none;
border: 1px solid #ffffff;
text-transform: uppercase;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
-webkit-transition: background cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: background cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-slider8 .slide a:hover {
color: #000000;
background: #ffffff;
}
@media only screen and (max-width: 480px) {
.cb-slider8 .slide,
.cb-slider8 .slide.slide_right {
top: 0;
left: 0;
right: 0;
width: 100%;
padding: 10px;
text-align: center;
}
.cb-slider8 .slide h2 {
font-size: 18px;
}
.cb-slider8 .slide h1 {
font-size: 25px;
margin-bottom: 5px;
}
.cb-slider8 .slide h4,
.cb-slider8 .slide_right h4 {
width: 100%;
margin-bottom: 5px;
text-align: center;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-slider8 .slide {
top: 5%;
width: 100%;
padding: 5px;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-slider8 .slide {
width: 100%;
}
} .cb-slider9 {
height: 100vh;
width: 100%;
}
.cb-slider9 .carousel-item {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-slider9 .carousel-indicators {
margin-right: 7%;
z-index: 12;
list-style: none;
color: #fff;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
left: unset;
}
.cb-slider9 .carousel-indicators li {
margin: 8px 0px;
background-color: transparent;
text-indent: 0px;
width: auto;
height: auto;
text-align: right;
cursor: pointer;
}
.cb-slider9 .carousel-indicators li.active {
color: #ffca28;
}
.cb-slider9 .carousel-indicators li.active span {
padding: 6px 6px;
border-radius: 50%;
display: inline-flex;
background-color: #fff;
border: solid 1px #fff;
}
.cb-slider9 .carousel-caption {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
left: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.62);
}
.cb-slider9 .carousel-caption h1 {
font-size: 57px;
font-weight: 700;
color: #ffff;
margin-top: -20px;
}
.cb-slider9 .carousel-caption h1 span {
color: #ffff;
}
.cb-slider9 .carousel-caption h2 {
margin-top: 20px;
margin-bottom: 30px;
font-size: 13px;
letter-spacing: 2px;
color: #fff;
}
.cb-slider9 .carousel-caption .btn {
background-color: transparent;
border: solid 2px #fff;
border-radius: 0px;
color: #fff;
padding: 10px 31px;
font-size: 15px;
}
.cb-slider9 .carousel-caption .btn:hover {
background-color: #fff;
color: #000;
}
.cb-slider9 .circle {
padding: 6px 6px;
border-radius: 50%;
display: inline-flex;
background-color: transparent;
border: solid 1px #fff;
}
.cb-slider9 .carousel-indicators li.active span.circle {
background-color: #fff;
}
@media (max-width: 395px) {
.cb-slider9 .carousel-caption h1 {
font-size: 30px;
}
.cb-slider9 .carousel-caption h2 {
margin-top: 0px!important;
margin-bottom: 20px;
}
} .cb-slider10 {
overflow: hidden;
}
.cb-slider10 img {
width: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.cb-slider10 .overlay {
width: 100%;
height: 100%;
position: absolute;
top: 0;
opacity: 0.3;
background-color: #000;
}
.cb-slider10 .carousel-caption {
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-slider10 .carousel-inner {
overflow: hidden;
}
.cb-slider10 .carousel-item {
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 100vh;
}
.cb-slider10 .carousel-caption { }
.cb-slider10 .headings {
color: #ffffff;
font-weight: 800;
font-size: 50px;
}
.cb-slider10 .carousel-caption p {
font-size: 24px;
}
.cb-slider10 .btn {
background-color: #ffffff;
margin: 6px 0px;
color: #000000;
font-size: 12px;
padding: 8px 15px;
border-top: 2px solid #000000;
border-left: 2px solid;
border-bottom: 2px solid;
border-style: solid;
border-right: 2px solid;
} .cb-header1 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header1 .overlay {
background-color: rgba(0, 0, 0, 0);
width: 100%;
height: 100%;
}
.cb-header1 .content {
margin-top: 0px;
margin-bottom: 0px;
}
.cb-header1 .content h1 {
color: #fff;
font-weight: 600;
}
.cb-header1 .content p {
color: #fff;
font-weight: 500;
width: 60%;
}
.cb-header1 .content .btns {
margin: 0px;
}
.cb-header1 .content .btns .one {
padding: 12px 24px;
border: 1px solid #fff;
color: #333;
background-color: #fff;
margin-right: 10px;
border-radius: 40px;
}
.cb-header1 .content .btns .one:hover {
color: #fff;
background-color: #000;
}
.cb-header1 .content .btns .two {
padding: 12px 24px;
background: transparent;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
border-radius: 40px;
margin-bottom: 20px;
}
.cb-header1 .content .btns .two:hover {
color: #fff;
background-color: #000;
} .cb-header2 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header2 .overlay {
background-color: rgba(0, 0, 0, 0.5) !important;
width: 100%;
}
.cb-header2 .content {
margin: 0px;
}
.cb-header2 .content h1 {
text-align: center;
color: #fff;
text-transform: uppercase;
margin-top: 200px;
}
.cb-header2 .content .box {
background: #425cbb;
text-align: center;
text-decoration: none;
padding: 10px 20px;
overflow: hidden;
display: table;
width: auto;
margin: 0 auto;
color: #fff;
text-transform: uppercase;
margin-top: 20px;
cursor: pointer;
}
.cb-header2 .content i {
text-align: center;
display: table;
width: auto;
margin: 0 auto;
color: #fff;
text-transform: uppercase;
margin-top: 100px;
cursor: pointer;
} .cb-header3 {
background-color: #425cbb;
width: 100%;
height: 80vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header3 .overlay {
background-color: rgba(0, 0, 0, 0.5) !important;
width: 100%;
}
.cb-header3 .content h1 {
text-align: center;
color: #fff;
text-transform: uppercase;
margin-top: 200px;
}
.cb-header3 .content p {
text-align: center;
color: #fff;
text-transform: uppercase;
margin-top: 20px;
font-weight: 400;
font-size: 14px;
}
.cb-header3 img {
display: block;
margin: 0 auto;
margin-top: 70px;
} .cb-header4 {
width: 100%;
height: 100vh;
background: no-repeat center center;
background-attachment: scroll;
background-color: #b7b7b7;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.cb-header4 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header4 .content {
margin: 0px;
}
.cb-header4 .content h1 {
color: #fff;
text-align: center;
font-weight: 600;
}
.cb-header4 .content p {
color: #fff;
text-align: center;
max-width: 80%;
margin: 0 auto;
margin-bottom: 40px;
margin-top: 20px;
}
.cb-header4 .content .box {
background: #425cbb;
color: #fff;
text-transform: uppercase;
margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
}
.cb-header4 .form-subscribe {
color: #fff;
}
.cb-header4 .form-subscribe .form-control {
background-color: #393939;
border: 1px solid #425cbb;
border-radius: 0px;
}
.cb-header4 .form-subscribe .btn {
background-color: #425cbb;
color: #fff;
border: 1px solid #425cbb !important;
border-radius: 0 !important;
} .cb-header5 {
width: 100%;
height: 100vh;
background: no-repeat center center;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
position: relative;
}
.cb-header5 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header5 .content {
margin: 0px;
}
.cb-header5 .content h1 {
margin-top: 160px;
color: #fff;
text-align: center;
text-transform: uppercase;
font-size: 28px;
font-weight: bold;
}
.cb-header5 .content p {
color: #fff;
text-align: center;
font-size: 22px;
text-transform: uppercase;
font-weight: bold;
margin: 0;
}
.cb-header5 .content .buttons {
margin-top: 30px;
text-align: center;
}
.cb-header5 .content .buttons .one {
border-radius: 2px !important;
background: #fff;
border-radius: 40px;
padding: 6px 24px;
border: 1px solid #000;
color: #000;
}
.cb-header5 .content .buttons .one {
border-radius: 2px !important;
background: #fff;
border-radius: 40px;
padding: 6px 24px;
border: 1px solid #000;
color: #000;
}
.cb-header5 .content .buttons .one:hover {
border: 1px solid #425cbb;
color: #000;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-header5 .content .buttons .two {
border-radius: 2px !important;
background: #425cbb;
border-radius: 40px;
padding: 6px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-header5 .content .buttons .two:hover {
border: 1px solid #425cbb;
color: #000;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-header6 {
height: 100vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header6 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header6 .content h1 {
background: #282828;
display: table;
color: #fff;
text-align: center;
text-transform: uppercase;
font-size: 28px;
font-weight: bold;
padding: 10px 20px;
margin-left: auto;
margin-right: auto;
}
.cb-header6 .content p {
background: #3498db;
color: #fff;
text-align: center;
font-size: 22px;
text-transform: uppercase;
font-weight: bold;
padding: 10px;
}
.cb-header6 .buttons {
margin-top: 20px;
text-align: center;
}
.cb-header6 .buttons .btn-secondary {
border-radius: 8px;
background: #3498db;
color: #fff;
border: 1px solid #3498db;
}
.cb-header6 .buttons .btn-secondary:hover {
border-radius: 8px;
background: #fff;
color: #3498db;
}
.cb-header6 .buttons  .btn-secondary-transparent {
border-radius: 8px;
background: #fff;
color: #3498db;
}
.cb-header6 .buttons .btn-secondary-transparent:hover {
border-radius: 8px;
background: #fff;
color: #3498db;
border: 1px solid #3498db;
} .cb-header7 {
height: 100vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header7 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header7 .overlay .content h3 {
text-align: center;
color: #fff;
font-size: 3em;
text-transform: uppercase;
text-shadow: 1px 1px 1px #000;
font-weight: 500;
overflow: hidden;
}
.cb-header7 .overlay .content .button {
text-align: center;
}
.cb-header7 .overlay .content .button .btn {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-header7 .overlay .content .button .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-header8 {
height: 100vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header8 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header8 .content h3 {
font-size: 34px;
color: #425cbb;
}
.cb-header8 .content p {
margin-top: 20px;
font-size: 16px;
color: #fff;
}
.cb-header8 .content .button {
text-align: left;
}
.cb-header8 .content .button a {
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #b7b7b7;
background-color: #fff;
color: #000;
margin-top: 20px;
}
.cb-header8 .content .button a:hover {
background-color: #000;
color: #fff;
}
.cb-header8 .contact-box {
background: #fff;
border-radius: 4px;
padding: 40px;
width: 100%;
}
.cb-header8 .contact-box h3 {
text-align: center;
font-size: 18px;
text-transform: uppercase;
}
.cb-header8 .contact-box .form-control {
border: 1px solid #ededed;
border-radius: 4px;
margin-top: 15px;
margin-bottom: 15px;
color: #282828;
}
.cb-header8 .contact-box form .button {
text-align: center;
}
.cb-header8 .contact-box form .button a {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #fff;
text-align: center;
}
.cb-header8 .contact-box form .button a:hover {
background-color: #000;
color: #fff;
} .cb-header9 {
height: 100vh;
width: 100%;
background-color: #fff;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header9 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header9 .content .title {
z-index: 100;
}
.cb-header9 .content .title h1 {
text-align: center;
color: #282828;
text-transform: uppercase;
z-index: 100;
}
.cb-header9 .content p {
text-align: center;
color: #282828;
text-transform: uppercase;
margin-top: 20px;
font-weight: 400;
font-size: 14px;
}
.cb-header9 .img-post {
}
.cb-header9 .img-post img {
display: block;
margin: 0 auto;
margin-top: 100px;
} .cb-header10 {
height: 100vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header10 .overlay {
background-color: rgba(0, 0, 0, 0.0) !important;
width: 100%;
}
.cb-header10 .content {
margin-top: 50px;
}
.cb-header10 .content h3 {
font-size: 24px;
color: #425cbb;
}
.cb-header10 .content p {
font-size: 16px;
color: #fff;
font-weight: normal;
}
.cb-header10 .buttons {
margin-top: 25px;
}
.cb-header10 .content .buttons .btn1 {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
border-radius: 5px;
color: #fff;
text-decoration: none;
}
.cb-header10 .content .buttons .btn2 {
border-radius: 5px;
background-color: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
text-decoration: none;
}
.cb-header10 .content .buttons .btn1:hover {
color: #282828;
background-color: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-header10 .content .buttons .btn2:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-header11 {
height: 100vh;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
}
.cb-header11 .overlay {
background-color: rgba(0, 0, 0, 0.5) !important;
width: 100%;
}
.cb-header11 .content {
}
.cb-header11 .content .top h1 {
text-align: center;
color: #fff;
text-transform: uppercase;
font-size: 34px;
line-height: 34px;
margin-top: 30px;
}
.cb-header11 .content .top p {
text-align: center;
color: #fff;
margin-top: 20px;
font-weight: 400;
font-size: 16px;
width: 60%;
margin: 0 auto;
}
.cb-header11 .content .btn {
margin-top: 30px;
border-radius: 2px !important;
background: rgba(237, 237, 237, 0.3);
padding: 12px 24px;
border: 1px solid #ededed;
color: #fff;
}
.cb-header11 .content .btn:hover {
border: 1px solid rgba(237, 237, 237, 0.8);
color: #fff;
background: rgba(237, 237, 237, 0.6);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-header11 .content .register {
text-align: center;
font-size: 14px;
color: #fff;
position: relative;
margin: 40px 0;
}
.cb-header11 .content .register span:after {
content: "";
display: block;
width: 38%;
height: 1px;
background-color: #fff;
position: absolute;
top: 12px;
right: 0;
}
.cb-header11 .content .register span:before {
content: "";
display: block;
width: 38%;
height: 1px;
background-color: #fff;
position: absolute;
top: 12px;
}
.cb-header11 .content .bottom .btn {
width: 100%;
border: 1px solid #425cbb;
color: #fff;
background-color: #425cbb;
}
.cb-header11 .content .bottom .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-header11 .content .bottom .form-control {
background-color: rgba(237, 237, 237, 0.3);
border-radius: 2px;
border: 1px solid #ededed;
color: #fff;
}
.cb-header11 .content .bottom p {
text-align: center;
color: #fff;
font-weight: 400;
font-size: 12px;
margin-top: 10px;
padding-bottom: 10px;
}
.cb-header11 .content .bottom .nopaddingleft {
padding-left: 0 !important;
}
.cb-header11 .content .bottom .nopaddingright {
padding-right: 0 !important;
} .cb-header12 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
}
.cb-header12:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002f4b, #425cbb);
opacity: .6;
}
.cb-header12 .container {
position: relative;
}
.cb-header12 h3 {
font-weight: 700;
width: 80%;
margin: 0 auto;
text-align: center;
font-size: 46px;
text-transform: uppercase;
letter-spacing: 8px;
color: #fff;
}
.cb-header12 h3 span {
color: #425cbb;
}
.cb-header12 p {
font-weight: 300;
width: 60%;
text-align: center;
margin: 10px auto 60px auto;
font-size: 16px;
letter-spacing: 14px;
}
.cb-header12 .buttons {
text-align: center;
}
.cb-header12 .buttons .btn {
background-color: #425cbb;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-header12 .buttons .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-header12 #scrolldown {
bottom: 0;
margin-top: 80px;
height: 100px;
margin-left: -50px;
left: 50%;
text-align: center;
width: 100px;
}
.cb-header12 #scrolldown span {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-name: scroll;
animation-name: scroll;
color: #fff;
margin: 0 auto;
position: absolute;
left: 7px;
}
.cb-header12 .mouse {
border: 2px solid #fff;
border-radius: 13px;
display: block;
height: 46px;
left: 50%;
margin: 10px 0 0 -13px;
position: absolute;
width: 26px;
}
.cb-header12 .mouse span {
display: block;
font-size: 1.5em;
margin: 6px auto;
}
@-webkit-keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
}
@keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
} .cb-header13 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header13 .overlay {
background-color: rgba(117, 146, 229, 0.66);
width: 100%;
height: 100%;
}
.cb-header13 .content {
text-align: center;
}
.cb-header13 .content h3 {
font-size: 38px;
width: 70%;
text-align: center;
margin: 0 auto;
font-weight: 700;
color: #ffffff;
}
.cb-header13 .content p {
font-size: 12px;
width: 60%;
text-align: center;
margin: 30px auto;
font-weight: 300;
color: #ffffff;
}
.cb-header13 .content .buttons {
text-align: center;
}
.cb-header13 .content .buttons .btn {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
}
.cb-header13 .content .buttons .btn:hover {
background-color: #fff;
color: #000;
border-color: #fff;
} .cb-header14 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header14 .overlay {
background-color: rgba(203, 203, 203, 0.27);
width: 100%;
height: 100%;
}
.cb-header14 .content {
overflow: hidden;
padding: 20px 50px 20px 50px;
background: rgba(233, 233, 233, 0.9);
outline: 2px solid #e9e9e9;
border: 2px solid #000000;
}
.cb-header14 .content h3 {
color: #425cbb;
font-size: 20px;
text-shadow: none;
font-weight: normal;
margin-bottom: 25px;
text-transform: uppercase;
}
.cb-header14 .content h2 {
color: #000000;
font-size: 35px;
font-weight: 900;
text-shadow: none;
letter-spacing: 1px;
margin-bottom: 25px;
text-transform: uppercase;
}
.cb-header14 .content h4 {
color: #000000;
font-size: 16px;
text-shadow: none;
font-weight: normal;
letter-spacing: 1px;
margin-bottom: 40px;
width: 80%;
}
.cb-header14 .content .btn {
color: #000;
cursor: pointer;
font-weight: 700;
font-size: 12px;
overflow: hidden;
position: relative;
text-shadow: none;
text-align: center;
#fff-space: nowrap;
letter-spacing: 2px;
display: inline-block;
text-decoration: none;
text-transform: uppercase;
border: 2px solid #000;
}
.cb-header14 .content .btn:hover {
background-color: #007bff;
color: #000;
} .cb-header15 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
}
.cb-header15 .overlay {
background-color: rgba(0, 142, 254, 0.87);
width: 100%;
height: 100%;
}
.cb-header15 .content h3 {
font-size: 28px;
font-weight: 700;
color: #ffffff;
}
.cb-header15 .content {
padding-top: 100px;
}
.cb-header15 .content p {
margin: 40px 0;
color: #ffffff;
width: 75%;
}
.cb-header15 .content .btn {
border-radius: 6px;
border: 1px solid #fff;
background-color: #fff;
color: #282828;
font-weight: 500;
width: 100%;
}
.cb-header15 .content .btn:hover {
color: #fff;
background-color: #05436c;
border: 1px solid #05436c;
} .cb-header16 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header16 .overlay {
background-color: rgba(0, 0, 0, 0.24);
width: 100%;
height: 100%;
}
.cb-header16 .content {
padding: 100px 0;
text-align: center;
}
.cb-header16 .content h3 {
font-size: 42px;
font-weight: 500;
text-transform: uppercase;
margin: 0;
color: #ffffff;
}
.cb-header16 .content h2 {
font-size: 62px;
font-weight: 700;
text-transform: uppercase;
margin: 25px 0;
color: #ffffff;
overflow: hidden;
}
.cb-header16 .content p {
margin-bottom: 25px;
color: #ffffff;
}
.cb-header16 .content .btn {
border: 1px solid #62b151;
background-color: #62b151;
color: #fff;
font-weight: 500;
}
.cb-header16 .content .btn:hover {
color: #fff;
background-color: #282828;
border: 1px solid #62b151;
} .cb-header17 {
-webkit-text-size-adjust: 100% !important;
-moz-osx-font-smoothing: grayscale !important;
-webkit-font-smoothing: antialiased !important;
-ms-font-size-adjust: inherit !important;
font-size-adjust: inherit !important;
}
.cb-header17_container {
padding: 0px;
overflow: hidden;
max-height: 650px;
position: relative;
margin-bottom: -80px;
}
.cb-header17_container img {
width: 100%;
-webkit-transform-origin: 100% 0%;
-moz-transform-origin: 100% 0%;
-ms-transform-origin: 100% 0%;
-o-transform-origin: 100% 0%;
transform-origin: 100% 0%;
-webkit-animation: backgroundkenburns 20000ms linear 0s infinite alternate;
animation: backgroundkenburns 20000ms linear 0s infinite alternate;
}
.cb-header17_caption {
bottom: 35%;
width: 100%;
position: absolute;
text-align: center;
}
.cb-header17_caption h1 {
color: #fff;
font-size: 65px;
font-weight: 800;
letter-spacing: -3px;
text-transform: uppercase;
}
.cb-header17_caption p {
width: 80%;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
color: #fff;
font-size: 16px;
font-weight: 400;
letter-spacing: 1px;
text-transform: capitalize;
}
.cb-header17_caption a {
text-decoration: none;
}
.cb-header17-btn1 {
background-color: #fff;
color: #000;
font-weight: 600;
margin-right: 5px;
padding: 15px 30px;
border-radius: 50px;
letter-spacing: 1px;
text-decoration: none;
text-transform: uppercase;
}
.cb-header17-btn2 {
background-color: #fff;
color: #000;
font-weight: 600;
margin-left: 5px;
padding: 15px 30px;
border-radius: 50px;
letter-spacing: 1px;
text-decoration: none;
text-transform: uppercase;
}
@-webkit-keyframes backgroundkenburns {
0% {
-webkit-transform: scale(1);
-webkit-transition: -webkit-transform 20000ms linear 0s;
}
100% {
-webkit-transform: scale(1.2);
-webkit-transition: -webkit-transform 20000ms linear 0s;
}
}
@-moz-keyframes backgroundkenburns {
0% {
-moz-transform: scale(1);
-moz-transition: -moz-transform 20000ms linear 0s;
}
100% {
-moz-transform: scale(1.2);
-moz-transition: -moz-transform 20000ms linear 0s;
}
}
@-ms-keyframes backgroundkenburns {
0% {
-ms-transform: scale(1);
-ms-transition: -ms-transform 20000ms linear 0s;
}
100% {
-ms-transform: scale(1.2);
-ms-transition: -ms-transform 20000ms linear 0s;
}
}
@-o-keyframes backgroundkenburns {
0% {
-o-transform: scale(1);
-o-transition: -o-transform 20000ms linear 0s;
}
100% {
-o-transform: scale(1.2);
-o-transition: -o-transform 20000ms linear 0s;
}
}
@keyframes backgroundkenburns {
0% {
transform: scale(1);
transition: transform 20000ms linear 0s;
}
100% {
transform: scale(1.2);
transition: transform 20000ms linear 0s;
}
}
@media (max-width: 991px) {
.cb-header17_container {
top: 0px;
margin-bottom: 0px;
}
}
@media only screen and (max-width: 480px) {
.cb-header17_caption {
bottom: 25%;
}
.cb-header17_caption h1 {
font-size: 20px;
letter-spacing: 1px;
}
.cb-header17_caption p {
font-size: 12px;
letter-spacing: 0px;
margin-top: 15px;
margin-bottom: 15px;
}
.cb-header17-btn1,
.cb-header17-btn2 {
padding: 5px 10px;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-header17_caption {
bottom: 10%;
}
.cb-header17_caption h1 {
font-size: 40px;
}
.cb-header17_caption p {
margin-bottom: 30px;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-header17_caption {
bottom: 10%;
}
} .cb-header18 {
-webkit-text-size-adjust: 100% !important;
-moz-osx-font-smoothing: grayscale !important;
-webkit-font-smoothing: antialiased !important;
-ms-font-size-adjust: inherit !important;
font-size-adjust: inherit !important;
}
.cb-header18 .cb-header18_container {
background: transparent;
top: -50px;
padding: 0px;
overflow: hidden;
max-height: 650px;
position: relative;
margin-bottom: -80px;
}
.cb-header18 .cb-header18_container video {
width: 100%;
}
.cb-header18 .cb-header18_caption {
width: 100%;
text-align: center;
}
.cb-header18 .cb-header18_caption h1 {
color: #ffffff;
font-size: 100px;
font-weight: 900;
text-shadow: none;
z-index: 1000;
}
@media (max-width: 991px) {
.cb-header18 .cb-header18_container {
top: 0px;
margin-bottom: 0px;
}
}
@media only screen and (max-width: 480px) {
.cb-header18 .cb-header18_caption {
bottom: 40%;
}
.cb-header18 .cb-header18_caption h1 {
font-size: 30px;
}
} .cb-header19 {
-webkit-text-size-adjust: 100% !important;
-moz-osx-font-smoothing: grayscale !important;
-webkit-font-smoothing: antialiased !important;
-ms-font-size-adjust: inherit !important;
font-size-adjust: inherit !important;
}
.cb-header19 .container-fluid {
max-height: 350px !important;
}
.cb-header19 .cb-header19_background {
background-color: #000;
padding: 0px;
overflow: hidden;
position: relative;
}
.cb-header19 .cb-header19_background img {
width: 100%;
opacity: 0.6;
}
.cb-header19 .cb-header19_caption {
left: 0%;
right: 0%;
bottom: 25%;
text-align: center;
position: absolute;
}
.cb-header19 .cb-header19_caption h1 {
color: #fff;
font-size: 70px;
font-weight: 800;
margin-bottom: 20px;
text-transform: uppercase;
}
@media (min-width: 100px) and (max-width: 319px) {
.cb-header19 .container-fluid {
max-height: 60px !important;
}
.cb-header19 .cb-header19_caption {
bottom: 50%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 10px;
margin-bottom: 0px;
}
}
@media (min-width: 320px) and (max-width: 480px) {
.cb-header19 .container-fluid {
max-height: 90px !important;
}
.cb-header19 .cb-header19_caption {
bottom: 50%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 18px;
margin-bottom: 0px;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-header19 .cb-header19 .container-fluid {
max-height: 130px !important;
}
.cb-header19 .cb-header19_caption {
bottom: 40%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 18px;
margin-bottom: 0px;
}
}
@media (min-width: 601px) and (max-width: 768px) {
.cb-header19 .cb-header19 .container-fluid {
max-height: 150px !important;
}
.cb-header19 .cb-header19_caption {
bottom: 40%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 40px;
margin-bottom: 0px;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
.cb-header19 .cb-header19 .container-fluid {
max-height: 200px !important;
}
.cb-header19  .cb-header19_caption {
bottom: 40%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 50px;
margin-bottom: 0px;
}
}
@media (min-width: 1024px) and (max-width: 1200px) {
.cb-header19 .cb-header19 .container-fluid {
max-height: 230px !important;
}
.cb-header19 .cb-header19_caption {
bottom: 40%;
}
.cb-header19 .cb-header19_caption h1 {
font-size: 50px;
margin-bottom: 0px;
}
} .cb-header20 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-header20 .overlay {
background-color: rgba(0, 0, 0, 0.55);
width: 100%;
height: 100%;
}
.cb-header20 .content {
width: 225px;
height: auto;
right: auto;
margin: auto;
padding: 25px;
text-align: center;
position: absolute;
}
.cb-header20 .content_center {
left: 0;
right: 0;
text-align: center;
}
.cb-header20 .content:before,
.cb-header20 .content:after,
.cb-header20 .content :first-child:before,
.cb-header20 .content :first-child:after {
width: 30px;
height: 30px;
content: ' ';
position: absolute;
border-style: solid;
border-color: #ffffff;
}
.cb-header20 .content:before {
top: 0;
left: 0;
border-width: 1px 0 0 1px;
}
.cb-header20 .content:after {
top: 0;
right: 0;
border-width: 1px 1px 0 0;
}
.cb-header20 .content :first-child:before {
right: 0;
bottom: 0;
border-width: 0 1px 1px 0;
}
.cb-header20 .content :first-child:after {
left: 0;
bottom: 0;
border-width: 0 0 1px 1px;
}
.cb-header20 .content h1 {
color: #ffffff;
font-size: 50px;
margin: 0 0 0 0;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
}
.cb-header20 .content a,
.cb-header20 .content a:visited,
.cb-header20 .content a {
color: #ffffff;
cursor: pointer;
font-size: 23px;
text-align: center;
letter-spacing: 2px;
#fff-space: nowrap;
background: transparent;
display: inline-block;
text-decoration: none;
text-transform: uppercase;
}
.cb-header20 .content a:hover,
.cb-header20 .content a:active,
.cb-header20 .content a,
.cb-header20 .content a,
.cb-header20 .content a {
color: #ffd200;
} .cb-header21 {
width: 100%;
height: 100vh;
text-align: center;
overflow: hidden;
}
.cb-header21 .nopad {
margin: 0px !important;
padding: 0px !important;
}
.cb-header21 .front-img {
height: 100vh;
}
.cb-header21 .overlay-1 {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(57, 54, 54, 0.48);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.cb-header21 .overlay-2 {
height: 100%;
position: absolute;
width: 100%;
background-color: rgba(57, 54, 54, 0.48);
background-size: cover;
background-position: center center;
}
.cb-header21 .content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-header21 .content h1 {
text-align: center;
color: #fff;
font-size: 2.5em;
text-shadow: none;
font-weight: 700;
font-style: normal;
letter-spacing: 3px;
-webkit-font-smoothing: antialiased;
}
.cb-header21 .content h2 {
text-align: center;
color: #fff;
font-size: 1em;
text-shadow: none;
font-style: normal;
letter-spacing: 3px;
-webkit-font-smoothing: antialiased;
}
.cb-header21 .content span {
margin-right: 7px;
text-align: center;
font-size: 13px;
}
.cb-header21 .content .btn {
color: #fff;
background-color: #241d4f;
margin-top: 30px;
cursor: pointer;
font-size: 13px;
font-weight: 700;
text-shadow: none;
position: relative;
text-align: center;
font-style: normal;
padding: 10px 25px;
letter-spacing: 1px;
text-decoration: none;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 0;
border: 1px solid #fff;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
} .cb-header22 {
height: 100vh;
width: 100%;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header22 .overlay {
width: 100%;
background-color: rgba(0, 0, 0, 0.55);
}
.cb-header22 .content {
border: none;
}
.cb-header22 .content h1 {
color: #ffffff;
font-size: 40px;
overflow: hidden;
text-align: center;
}
.cb-header22 .content h2 {
color: #ffffff;
font-size: 20px;
overflow: hidden;
}
.cb-header22 .content .buttons {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-header22 .content .buttons .btn1 {
background: #1024ff;
color: #fff;
border: 2px solid #1024ff;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
text-decoration: none;
}
.cb-header22 .content .buttons .btn1:hover {
background-color: #000;
text-decoration: none;
border-color: #000;
}
.cb-header22 .content .buttons .btn2 {
background: #1024ff;
color: #fff;
border: 2px solid #1024ff;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
text-decoration: none;
}
.cb-header22 .content .buttons .btn2:hover {
background-color: #fff;
color: #000;
text-decoration: none;
border-color: #fff;
} .cb-header23 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header23 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.55);
}
.cb-header23 .content {
border: none;
}
.cb-header23 .content h1 {
color: #ffffff;
font-size: 50px;
text-align: center;
}
.cb-header23 .content h2 {
color: #ffffff;
font-size: 20px;
}
.cb-header23 .content .buttons {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-header23 .content .buttons .btn {
background: #1024ff;
color: #fff;
border: 2px solid #1024ff;
padding-top: 10px;
padding-left: 40px;
padding-right: 40px;
padding-bottom: 10px;
text-decoration: none;
}
.cb-header23 .content .buttons .btn:hover {
background-color: #000;
text-decoration: none;
border-color: #000;
} .cb-header24 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-color: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header24 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0);
}
.cb-header24 .content {
border: none;
}
.cb-header24 .content h1 {
margin-bottom: 20px;
font-size: 54px;
line-height: 1.3;
font-weight: 800;
color: #000;
text-align: center;
}
@media (max-width:330px) {
.cb-header24 .content h1 {
font-size: 34px;
}
}
.cb-header24 .content h2 {
font-size: 30px;
line-height: 1.5;
margin-bottom: 30px;
text-align: center;
}
@media (max-width:330px) {
.cb-header24 .content h2 {
font-size: 20px;
}
}
.cb-header24 .content .buttons {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-header24 .content .buttons .btn1 {
background-color: #1024ff;
padding: 15px 30px;
color: #fff;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
border-radius: 30px;
border: 2px solid #1024ff;
font-size: 18px;
margin: 5px;
}
.cb-header24 .content .buttons .btn1:hover {
background: #000;
color: #fff;
border: 1px solid #fff;
-webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
}
.cb-header24 .content .buttons .btn2 {
background-color: #1024ff;
padding: 15px 30px;
color: #fff;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
border-radius: 30px;
border: 2px solid #1024ff;
font-size: 18px;
margin: 5px;
}
.cb-header24 .content .buttons .btn2:hover {
background: #000;
color: #fff;
border: 1px solid #fff;
-webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
} .cb-header25 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header25 .overlay {
height: 100%;
width: 100%;
background-color: rgba(6, 147, 255, 0.51) !important;
}
.cb-header25 .content {
border: none;
}
.cb-header25 .content h1 {
margin-bottom: 20px;
font-size: 54px;
line-height: 1.3;
font-weight: 800;
color: #ffffff !important;
text-align: center;
}
@media (max-width:393px) {
.cb-header25 .content h1 {
font-size: 40px;
}
}
.cb-header25 .content h2 {
font-size: 30px;
line-height: 1.5;
margin-bottom: 30px;
color: #ffffff !important;
text-align: center;
}
@media (max-width:393px) {
.cb-header25 .content h2 {
font-size: 20px;
}
} .cb-header26 {
height: 100vh;
width: 100%;
background-color: #0088ff !important;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header26 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0);
}
.cb-header26 .content {
padding: 25px;
}
.cb-header26 .content h1 {
margin-bottom: 20px;
font-size: 64px;
line-height: 1.3;
font-weight: 300;
color: #ffffff !important;
text-align: left;
}
@media (max-width:330px) {
.cb-header26 .content h1 {
font-size: 34px;
}
}
.cb-header26 .content p {
font-size: 30px;
line-height: 1.5;
margin-bottom: 30px;
text-align: left;
color: #ffffff !important;
font-weight: 200;
width: 80%;
}
@media (max-width:330px) {
.cb-header26 .content p {
font-size: 20px;
}
} .cb-header27 {
height: 100vh;
width: 100%;
background-color: #0088ff !important;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header27 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.45);
}
.cb-header27 .content {
text-align: center;
padding: 40px;
}
.cb-header27 .content h1 {
font-size: 200px;
color: #6e83ac;
z-index: 1;
font-weight: 700;
line-height: 0.7;
opacity: 0.3;
}
@media (max-width:659px) {
.cb-header27 .content h1 {
font-size: 90px;
}
}
.cb-header27 .content h2 {
color: #fff;
font-size: 48px;
text-transform: uppercase;
font-weight: 700;
line-height: 0.8;
}
.cb-header27 .content h2 span {
color: #f40c0c;
}
.cb-header27 .content .button {
transform: translateX(-50%);
font-size: 24px;
color: #fff;
}
.cb-header27 .content .button a {
color: #00be3b;
} .cb-header28 {
height: 100vh;
width: 100%;
background-color: #0088ff !important;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header28 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0);
}
.cb-header28 .content {
padding: 25px;
}
.cb-header28 .content h1 {
margin-bottom: 20px;
font-size: 64px;
line-height: 1.3;
font-weight: 500;
color: #ffffff !important;
text-transform: uppercase;
border: 5px solid #fff;
padding: 20px;
text-align: center;
}
@media (max-width:330px) {
.cb-header28 .content h1 {
font-size: 34px;
}
}
.cb-header28 .content p {
font-size: 30px;
line-height: 1.5;
margin-bottom: 30px;
text-align: center;
color: #ffffff !important;
font-weight: 200;
width: 80%;
}
@media (max-width:330px) {
.cb-header28 .content p {
font-size: 20px;
}
} .cb-header29 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header29 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.55);
}
.cb-header29 .content {
border: none;
padding: 50px;
}
.cb-header29 .content h1 {
color: #ffffff;
font-size: 80px;
text-align: left;
font-weight: 300;
}
.cb-header29 .content h1 span {
color: #1024ff;
font-size: 80px;
text-align: left;
font-weight: 600;
}
.cb-header29 .content h2 {
color: #ffffff;
font-size: 36px;
text-transform: capitalize;
}
@media (max-width:494px) {
.cb-header29 .content h1 {
font-size: 40px;
}
.cb-header29 .content h1 span {
font-size: 40px;
}
.cb-header29 .content h2 {
font-size: 30px;
}
}
.cb-header29 .content .buttons {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-header29 .content .buttons .btn {
background: #1024ff;
color: #fff;
border-radius: 50px;
text-decoration: none;
text-transform: uppercase;
font-weight: 500;
padding-top: 20px;
padding-left: 40px;
padding-bottom: 20px;
padding-right: 40px;
font-size: 1em;
border-style: solid;
border-top: 2px solid #1024ff;
border-bottom: 2px solid #1024ff;
border-left: 2px solid #1024ff;
border-right: 2px solid #1024ff;
}
.cb-header29 .content .buttons .btn:hover {
background-color: #000;
text-decoration: none;
border-color: #000;
} .cb-header30 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header30 .overlay {
height: 100%;
width: 100%;
background-color: rgba(0, 7, 255, 0.79) !important;
}
.cb-header30 .content {
border: none;
padding: 20px;
}
.cb-header30 .content .thumb-image {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: relative;
height: 200px;
width: 200px;
margin: 0 auto;
margin-bottom: 30px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%;
object-fit: cover;
}
.cb-header30 .content h1 {
text-align: center;
color: #ffffff !important;
font-size: 38px;
}
.cb-header30 .content h3 {
color: #ffffff !important;
font-size: 30px;
text-align: center;
}
.cb-header30 .content .social-icons {
list-style: none;
padding-top: 30px;
padding-bottom: 30px;
}
.cb-header30 .content .social-icons li {
padding: 20px;
}
.cb-header30 .content .social-icons li a i {
font-size: 30px;
color: #fff;
} .cb-header31 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header31 .overlay {
height: 100%;
width: 100%;
background-color: rgba(26, 27, 31, 0.79) !important;
}
.cb-header31 .content {
border: none;
padding: 20px;
}
.cb-header31 .content h1 {
font-size: 50px;
text-transform: capitalize;
max-width: 695px;
margin: 0 auto;
line-height: 62px;
color: #ffffff !important;
}
.cb-header31 .content h3 {
max-width: 640px;
color: #dadadc;
margin: 0 auto;
font-size: 18px;
line-height: 30px;
padding-top: 1rem;
}
.cb-header31 .content .social-icons {
list-style: none;
padding-top: 3rem !important;
padding-left: 0px;
}
.cb-header31 .content .social-icons li {
margin-right: 5px;
}
.cb-header31 .content .social-icons li a {
font-size: 18px;
color: #ffffff;
padding-right: 20px;
}
.cb-header31 .content  .btn-outline-white {
background-color: transparent;
border: 2px solid #7F7F7F;
color: #fff;
font-size: 12px;
border-radius: 35px;
letter-spacing: 2px;
transition: all 0.3s;
font-weight: 600;
padding: 15px 45px;
}
.cb-header31 .content  .btn-outline-white:hover {
background-color: #fff;
color: #000;
} .cb-header32 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header32 .overlay {
height: 100%;
width: 100%;
background-color: rgba(26, 27, 31, 0.79) !important;
}
.cb-header32 .nopadding {
padding: 0px;
margin: 0px;
}
.cb-header32 .bg-image {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
object-fit: cover;
}
.cb-header32 .content {
padding: 20px;
}
.cb-header32 .content h4 {
text-align: center;
font-size: 26px;
}
.cb-header32 .content h1 {
text-align: center;
font-size: 36px;
font-weight: 800;
text-transform: uppercase;
}
.cb-header32 .content p {
font-size: 10px;
}
.cb-header32 .content .btn {
color: #ffffff !important;
background-color: rgba(0, 7, 255, 0.79) !important;
border: 1px solid #fff;
border-radius: 30px;
font-size: 1em;
padding-left: 30px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 30px;
}
.cb-header32 .content .btn:hover {
background: #000;
color: #fff;
-webkit-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
box-shadow: 0px 14px 30px -15px rgba(0, 0, 0, 0.75);
border: 1px solid #000;
} .cb-header33 {
height: 100vh;
width: 100%;
overflow: hidden;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-header33 .overlay {
height: 100%;
width: 100%;
background-color: rgba(28, 28, 28, 0.65) !important;
}
.cb-header33 .content {
padding: 20px;
}
.cb-header33 .content h3 {
color: #ffffff !important;
font-size: 30px;
font-weight: 600;
text-align: center;
}
.cb-header33 .content h1 {
color: #ffffff !important;
font-size: 46px;
font-weight: 700;
margin-bottom: 20px;
text-align: center;
}
.cb-header33 .content .form-group .form-control {
height: 60px;
}
.cb-header33 .content .form-group .btn {
background-color: #1024ff;
color: #ffffff;
border: 2px solid #1024ff;
height: 60px;
padding-left: 30px;
padding-right: 30px;
}
@media (max-width:764px) {
.cb-header33 .content .form-group .btn {
width: 100%;
}
} .cb-header34 {
height: 100vh;
width: 100%;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
}
.cb-header34 .content {
background-color: rgba(0, 0, 0, 0.55);
padding: 10px;
}
.cb-header34 .content h1 {
color: #ffffff;
font-size: 50px;
overflow: hidden;
text-align: center;
font-weight: 300;
}
.cb-header34 .content p {
color: #ffffff !important;
font-size: 24px;
font-weight: 600;
text-align: center;
}
.cb-header34 .content .btn {
background-color: #1024ff;
padding-left: 40px;
padding-right: 40px;
border: none;
}
.cb-header34 .content .btn:hover {
color: #fff;
background-color: #000;
} .cb-header35 {
width: 100%;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
}
.cb-header35 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.38) !important;
}
.cb-header35 .design {
display: block;
background: transparent no-repeat 50% bottom;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
z-index: 10;
height: 150px;
background-image: url(//www.krystalspa.ca/wp-content/themes/krystalspa/components/pg.chocka-blocks/images/curve-mask.svg);
}
.cb-header35 .content {
padding-top: 300px;
padding-left: 50px;
padding-bottom: 150px;
padding-right: 50px;
}
.cb-header35 .content h1 {
color: #fff;
text-align: center;
font-size: 50px;
font-weight: 700;
}
.cb-header35 .content h1 span {
color: #0095ff;
}
.cb-header35 .content p {
color: #fff;
font-size: 30px;
font-weight: 400;
}
.cb-header35 .content .btn {
padding-left: 30px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 30px;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
font-weight: bold;
font-size: 18px;
background-color: #0095ff;
}
.cb-header35 .content .btn:hover {
background-color: #000;
color: #fff;
} .cb-header36 {
height: 100vh;
width: 100%;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-color: #fff500 !important;
}
.cb-header36 .left {
padding-left: 80px;
}
.cb-header36 .left h1 {
font-size: 70px;
}
@media (max-width:456px) {
.cb-header36 .left h1 {
font-size: 45px;
}
}
.cb-header36 .left h1 a span {
color: #000;
text-decoration: none;
font-weight: 800;
text-transform: uppercase;
}
.cb-header36 .left h1 a span:hover {
text-decoration: underline;
text-decoration-color: black;
}
.cb-header36 .right {
padding: 0px;
}
.cb-header36 .right .blockquote {
color: #fff;
}
.cb-header36 .right .blockquote h3 {
color: #000000;
text-transform: capitalize;
}
.cb-header36 .right .blockquote h6 {
color: #fff;
}
.cb-header36 .right .blockquote h6 a {
color: #000000 !important;
} .cb-intro1 {
height: 100vh;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
width: 100%;
position: relative;
background-position: center center;
}
.cb-intro1:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002f4b, #dc4225);
opacity: .6;
}
.cb-intro1 .container {
position: relative;
}
.cb-intro1 h3 {
font-weight: 500;
width: 80%;
margin: 0 auto;
text-align: center;
font-size: 34px;
text-transform: uppercase;
}
.cb-intro1 p {
font-weight: 300;
width: 60%;
text-align: center;
margin: 40px auto;
font-size: 26px;
}
.cb-intro1 a {
color: #fff;
text-decoration: none;
margin-left: 10px;
}
.cb-intro1 #scrolldown {
bottom: 0;
margin-top: 80px;
height: 100px;
margin-left: -50px;
left: 50%;
text-align: center;
width: 100px;
}
.cb-intro1 #scrolldown span {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-name: scroll;
animation-name: scroll;
color: #fff;
margin: 0 auto;
position: absolute;
left: 7px;
}
.cb-intro1 .buttons {
text-align: center;
}
.cb-intro1 .buttons .btn1 {
border-radius: 2px !important;
background: rgba(237, 237, 237, 0.3);
padding: 12px 24px;
border: 1px solid #ededed;
color: #fff;
}
.cb-intro1 .buttons .btn2 {
border-radius: 2px !important;
background: rgba(237, 237, 237, 0.3);
padding: 12px 24px;
border: 1px solid #ededed;
color: #fff;
}
.cb-intro1 .buttons .btn1:hover {
background-color: #fff;
color: #000;
}
.cb-intro1 .buttons .btn2:hover {
background-color: #fff;
color: #000;
}
.cb-intro1 .mouse {
border: 2px solid #fff;
border-radius: 13px;
display: block;
height: 46px;
left: 50%;
margin: 10px 0 0 -13px;
position: absolute;
width: 26px;
}
.cb-intro1 .mouse span {
display: block;
font-size: 1.5em;
margin: 6px auto;
}
@-webkit-keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
}
@keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
}
.cb-intro2 {
background: #86cdf9; background: -moz-linear-gradient(top, #86cdf9 0%, #3498db 100%); background: -webkit-linear-gradient(top, #86cdf9 0%, #3498db 100%); background: linear-gradient(to bottom, #86cdf9 0%, #3498db 100%); filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#86cdf9', endColorstr='#3498db', GradientType=0); }
.cb-intro2 .content {
padding-top: 25px;
}
.cb-intro2 .content h3 {
color: #fff;
font-size: 60px;
font-weight: 700;
}
.cb-intro2 .content p {
color: #fff;
margin-top: 20px;
width: 100%;
}
.cb-intro2  .buttons {
padding-bottom: 10px;
}
.cb-intro2 .buttons .appstore {
padding-right: 5px;
}
.cb-intro2 .phone {
display: inline-block;
margin-top: -40px;
margin-bottom: -40px;
} .cb-intro3 {
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
color: #fff;
background-position: center center;
}
.cb-intro3 h3 {
text-transform: uppercase;
margin-top: 30px;
margin-bottom: 8px;
}
.cb-intro3 h5 {
font-weight: bold;
margin: 0;
margin-bottom: 8px;
}
.cb-intro3 h2 {
font-size: 42px;
font-weight: bold;
margin: 0;
margin-bottom: 8px;
}
.cb-intro3 p {
margin: 0px;
margin-bottom: 8px;
text-align: left;
}
.cb-intro3 .btn {
border-radius: 2px !important;
background: #425cbb;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #425cbb;
color: #fff;
}
.cb-intro3 .btn:hover {
border: 1px solid #425cbb;
color: #425cbb;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-intro3 .video {
}
.cb-intro3 .video .embed-responsive {
margin-top: 20px;
margin-bottom: 20px;
} .cb-intro4 {
width: 100%;
height: 40vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro4 .overlay {
background-color: rgba(0, 0, 0, 0.5) !important;
width: 100%;
}
.cb-intro4 .content h2 {
font-size: 40px;
font-weight: 600;
color: #fff;
text-transform: capitalize;
} .cb-intro5 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro5 .overlay {
background-color: rgba(0, 0, 0, 0);
width: 100%;
height: 100%;
}
.cb-intro5 h3 {
font-size: 42px;
font-weight: 800;
text-align: center;
text-transform: uppercase;
}
.cb-intro5 p {
font-size: 18px;
font-weight: 600;
text-align: center;
text-transform: uppercase;
width: 80%;
margin-top: 40px;
margin-bottom: 10px;
color: #fff;
}
.cb-intro5 .rectangle {
background-color: #fff;
padding: 3px;
border: 4px solid #282828;
}
.cb-intro5 .subscribe {
width: 75%;
}
.cb-intro5 .subscribe .form-control {
background-color: #282828;
color: #f5f5f5;
width: 45%;
margin: 25px auto;
text-transform: uppercase;
text-align: center;
}
.cb-intro5 .btn {
border-radius: 0;
padding: 10px 12px;
width: 45%;
display: block;
margin: 0 auto;
border: 1px solid #282828;
background-color: #425cbb;
color: #fff;
}
.cb-intro5 .btn:hover {
background-color: #fff;
color: #000;
}
@media (max-width: 968px) {
.cb-intro5 h3 {
font-size: 24px;
font-weight: 800;
line-height: 60px;
text-align: center;
text-transform: uppercase;
}
}
@media (max-width: 968px) {
.cb-intro5 .subscribe {
width: 100%;
}
} .cb-intro6 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro6 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
height: 100%;
}
.cb-intro6 .content {
width: 30%;
position: relative;
}
.cb-intro6 .content::before {
content: "";
display: block;
background-color: #fff;
width: 80px;
height: 4px;
position: absolute;
top: -15px;
}
.cb-intro6 .content::after {
content: "";
display: block;
background-color: #fff;
width: 80px;
height: 4px;
position: absolute;
bottom: -15px;
}
.cb-intro6 h3 {
color: #fff;
font-size: 42px;
text-transform: uppercase;
font-weight: 700;
}
.cb-intro6 p {
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
color: #ffffff;
}
.cb-intro6 .rectangle {
background-color: #f8e71c;
padding: 3px;
border: 4px solid #282828;
}
.cb-intro6 .button .btn {
margin-top: 40px;
text-transform: uppercase;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #b7b7b7;
color: #333;
background-color: #fff;
}
.cb-intro6 .button .btn:hover {
background-color: transparent;
color: #fff;
}
.cb-intro6 .button span {
margin-top: 20px;
color: #fff;
} .cb-intro7 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro7 .overlay {
background-color: rgba(0, 0, 0, 0.39);
width: 100%;
height: 100%;
}
.cb-intro7 .content {
background-color: #fff;
border-top: 4px solid #425cbb;
border-radius: 2px;
text-align: center;
padding: 40px;
}
.cb-intro7 .content h1 {
color: #000;
text-align: center;
font-size: 45px;
font-weight: 900;
}
.cb-intro7 .content .form-control {
border: 1px solid #000;
border-radius: 2px;
margin: 5px 0;
width: 100%;
padding-right: 28px;
}
.cb-intro7 .content input[type=number] {
padding-right: 10px !important;
}
.cb-intro7 .content .form-icon {
position: relative;
}
.cb-intro7 .content  .form-icon .fa {
color: #000;
font-size: 24px;
position: absolute;
top: 8px;
right: 8px;
}
.cb-intro7 .content .btn {
border: 1px solid #000;
color: #fff;
background-color: #000;
margin-top: 10px;
margin-right: 2px;
margin-bottom: 10px;
margin-left: 2px;
}
.cb-intro7 .content .btn:hover {
background-color: transparent;
color: #000;
}
.cb-intro7 .content p {
font-weight: 400;
font-size: 18px;
text-align: center;
margin: 10px;
}
.cb-intro7 .content .bottom {
}
.cb-intro7 .content .bottom .btn {
border: 1px solid #000;
color: #fff;
background-color: #000;
margin-top: 10px;
margin-right: 2px;
margin-bottom: 10px;
margin-left: 2px;
}
.cb-intro7 .content .bottom .btn:hover {
background-color: transparent;
color: #000;
}
.cb-intro7 .content .bottom p {
font-weight: 400;
font-size: 18px;
text-align: center;
margin: 10px;
} .cb-intro8 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro8 .overlay {
background-color: rgba(0, 0, 0, 0.39);
width: 100%;
height: 100%;
}
.cb-intro8 .content h3 {
color: #fff;
text-align: center;
}
.cb-intro8 .content h6 {
color: #fff;
text-align: center;
}
.cb-intro8 .sign-up {
width: 100%;
background-color: rgba(0, 0, 0, 0.66);
padding: 50px 20px 20px;
margin: 20px auto;
border-radius: 2px;
}
.cb-intro8 .form-control {
background-color: #fff;
border-radius: 6px;
}
.cb-intro8 .btn {
background-color: #425cbb;
color: #fff;
border: 1px solid #fff;
width: 100%;
padding-top: 10px;
padding-bottom: 10px;
}
.cb-intro8 .btn:hover {
background-color: transparent;
}
.cb-intro8 p {
font-size: 12px;
margin: 10px 0;
color: #fff;
text-align: center;
}
@media (max-width: 968px) {
.cb-intro8 .form-control {
margin-bottom: 10px;
}
.cb-intro8 .sign-up {
width: 80%;
}
} .cb-intro9 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro9 .overlay {
background-color: rgba(0, 0, 0, 0.33);
width: 100%;
height: 100%;
}
.cb-intro9 .col-overlay {
background-color: rgba(0, 0, 0, 0.56);
padding-top: 25px;
}
.cb-intro9 h3 {
color: #fff;
text-align: center;
}
.cb-intro9 .form-control {
background-color: rgba(24, 14, 0, 0.6);
width: 60%;
margin: 0 auto;
margin-bottom: 10px;
border: 1px solid #fff;
border-radius: 4px;
padding-left: 40px;
color: #fff;
}
.cb-intro9 .form-icon {
position: relative;
}
.cb-intro9 .form-icon .fa {
position: absolute;
left: 20%;
top: 10px;
margin-left: 8px;
font-size: 18px;
width: 30px;
text-align: center;
color: #fff;
}
.cb-intro9 .submit {
text-align: center;
}
.cb-intro9 .submit .btn {
background-color: #fff;
border: 1px solid #fff;
width: 60%;
margin: 20px 0;
color: #000;
}
.cb-intro9 .submit .btn:hover {
background-color: transparent;
border: 1px solid #503d24;
width: 60%;
margin: 20px 0;
color: #fff;
} .cb-intro10 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro10 .overlay {
background: rgba(52, 152, 219, 1);
background: -webkit-linear-gradient(left, rgba(52, 152, 219, 1) 0%, rgba(52, 152, 219, 1) 11%, rgba(99, 177, 81, 1) 100%);
background: -o-linear-gradient(left, rgba(52, 152, 219, 1) 0%, rgba(52, 152, 219, 1) 11%, rgba(99, 177, 81, 1) 100%);
background: linear-gradient(to right, rgba(52, 152, 219, 1) 0%, rgba(52, 152, 219, 1) 11%, rgba(99, 177, 81, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#3498db', endColorstr='#63b151', GradientType=1);
opacity: 0.90;
width: 100%;
height: 100%;
}
.cb-intro10 .content {
padding-top: 30px;
}
.cb-intro10 .content h3 {
text-align: center;
color: #ffffff;
}
.cb-intro10 .content h3 span {
color: #ffffff;
text-transform: uppercase;
font-weight: 700;
}
.cb-intro10 .content p {
text-align: center;
color: #ffffff;
}
.cb-intro10 .form-section {
width: 50%;
background-color: #fff;
padding: 20px;
border-radius: 2px;
}
.cb-intro10 .form-section p {
color: #282828;
font-weight: 400;
font-size: 24px;
text-align: center;
}
.cb-intro10 .form-section .form-control {
border-top: 1px solid #ccc!important;
padding: 10px 0;
margin: 10px 0;
border-radius: 0;
background: transparent;
border: none;
color: #282828;
outline: none;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
width: 100%;
padding-left: 10px;
padding-right: 10px;
}
.cb-intro10 .form-section .message {
height: 140px;
}
.cb-intro10 .form-section .btn {
background-color: #3498db;
color: #fff;
border: 1px solid #3498db;
width: 100%;
}
.cb-intro10 .form-section .btn:hover {
border: 1px solid #3498db;
color: #3498db;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (max-width: 968px) {
.cb-intro10 .form-section {
width: 100%;
}
}
@media (max-width: 399px) {
.cb-intro10 .form-section .message {
height: 100px;
}
} .cb-intro11 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
}
.cb-intro11 .overlay {
background-image: linear-gradient(to bottom right, #002f4b, #425cbb);
opacity: .6;
width: 100%;
height: 100%;
}
.cb-intro11 h3 {
font-weight: 900;
width: 90%;
text-align: center;
font-size: 7em;
text-transform: uppercase;
letter-spacing: 8px;
color: #ffffff;
}
.cb-intro11 #scrolldown {
margin-top: 80px;
text-align: center;
}
.cb-intro11 #scrolldown span {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-name: scroll;
animation-name: scroll;
color: #fff;
}
.cb-intro11 .mouse {
border: 2px solid #fff;
border-radius: 13px;
display: block;
height: 46px;
width: 26px;
}
.cb-intro11 .mouse span {
display: block;
font-size: 1.5em;
}
@-webkit-keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
}
@keyframes scroll {
0% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
100% {
opacity: 0;
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
}
@media (max-width: 605px) {
.cb-intro11 h3 {
width: 100%;
font-size: 3em;
}
} .cb-intro12 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro12 .overlay {
background-color: rgba(0, 0, 0, 0.23);
width: 100%;
height: 100%;
}
.cb-intro12 h3 {
font-size: 56px;
font-weight: 700;
color: #fff;
text-align: center;
}
.cb-intro12 p {
color: #fff;
text-align: center;
}
.cb-intro12 .watch-video {
}
.cb-intro12 .watch-video .btn {
color: #ffffff;
background-color: #007dff;
margin-top: 10px;
padding: 10px 20px;
}
.cb-intro12 .watch-video .btn:hover {
color: #000;
background-color: #fff;
}
.cb-intro12 .watch-video .btn span {
color: #fff;
}
.cb-intro12 .watch-video .btn:hover span {
color: #000;
}
.cb-intro12 .form-control {
background-color: #fff;
padding: 18px;
border-right: 1px solid #ccc;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
opacity: .9;
border-radius: 0;
}
.cb-intro12 .form-control:first-child {
border-left: 1px solid #ccc;
margin: 0px;
}
.cb-intro12 .form .btn {
border-radius: 0;
background-color: #007dff;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
}
.cb-intro12 .form .btn:hover {
color: #000;
background-color: #fff;
}
.cb-intro12 .modal-dialog {
}
.cb-intro12 .modal-dialog .modal-content {
border: none;
}
.cb-intro12 .modal-dialog .modal-content .modal-header {
background-color: #ffffff;
border: none;
}
.cb-intro12 .modal-dialog .modal-content .modal-header .close {
color: #000000;
}
.cb-intro12 .modal-dialog .modal-content .modal-body {
border-top: 0px solid;
background-color: #ffffff;
}
@media (max-width: 576px) {
.cb-intro12 .form {
margin-top: 50px;
}
} .cb-intro13 {
padding: 40px;
background-color: #425cbb;
background-position: center center;
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}
.cb-intro13 .content {
background-color: #fff;
padding: 20px;
}
.cb-intro13 h3 {
font-size: 48px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
color: #fff;
margin: 0;
margin-bottom: 20px;
}
.cb-intro13 h5 {
text-transform: uppercase;
font-weight: 700;
font-size: 24px;
}
.cb-intro13 p {
font-size: 12px;
font-weight: 400;
}
.cb-intro13 p.author {
color: #898989;
}
.cb-intro13 .btn {
border-radius: 0;
text-transform: uppercase;
color: #ffffff;
background-color: #000000;
}
.cb-intro13 .btn:hover {
color: #000000;
background-color: #ffffff;
border: 1px solid #000000;
} .cb-intro14 {
background-repeat: no-repeat;
background-size: cover;
padding: 100px 0 0 0;
color: #fff;
position: relative;
}
.cb-intro14 img {
width: 100%;
}
.cb-intro14 .overlay {
background-color: #3498db;
width: 100%;
height: 100%;
position: absolute;
top: 0;
opacity: .9;
}
.cb-intro14 .container {
position: relative;
}
.cb-intro14 .content {
padding: 20px 20px 20px 0;
}
.cb-intro14 .content h3 {
font-size: 48px;
font-weight: 700;
}
.cb-intro14 .content h5 {
font-size: 32px;
}
.cb-intro14 .content .buttons {
display: flex;
}
.cb-intro14 .content .buttons .or {
font-size: 20px;
font-weight: 700;
padding: 0 15px;
}
.cb-intro14 .content .buttons .btn1 {
border-radius: 4px !important;
background: #000;
border-radius: 40px;
padding: 10px 24px;
border: 1px solid #000;
color: #fff;
}
.cb-intro14 .content .buttons .btn1:hover {
background: transparent;
color: #000;
}
.cb-intro14 .content .buttons .btn2 {
border-radius: 4px !important;
background: transparent;
border-radius: 40px;
padding: 10px 24px;
border: 1px solid #000;
color: #000;
}
.cb-intro14 .content .buttons .btn2:hover {
background: #000;
color: #fff;
}
@media (max-width: 968px) {
.cb-intro14 .content .buttons .btn1 {
margin-bottom: 10px;
}
.cb-intro14 .content .buttons .btn2 {
margin-bottom: 10px;
}
} .cb-intro15 {
width: 100%;
height: 50vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro15 .overlay {
background-color: rgba(0, 0, 0, 0.31);
width: 100%;
height: 100%;
}
.cb-intro15 h3 {
color: #ffffff;
font-weight: 700;
font-size: 36px;
}
.cb-intro15 p {
color: #fff;
font-weight: 400;
font-size: 18px;
text-align: center;
width: 40%;
display: block;
margin: 0 auto;
}
@media (max-width: 390px) {
.cb-intro15 p {
width: 100%;
}
} .cb-intro16 {
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
color: #fff;
}
.cb-intro16 .overlay {
background-color: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100%;
}
.cb-intro16 h3 {
text-align: center;
width: 50%;
margin: 0 auto;
}
.cb-intro16 p {
font-size: 14px;
text-align: center;
width: 40%;
display: block;
margin: 20px auto;
}
.cb-intro16 .btn {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
}
.cb-intro16 .btn:hover {
border: 1px solid #c1a558;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-intro16 .modal {
background: transparent;
}
@media (max-width: 768px) {
.cb-intro16 h3 {
width: 90%;
}
.cb-intro16 p {
width: 80%;
}
} .cb-intro17 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro17 .overlay {
background-color: rgba(0, 0, 0, 0.27);
width: 100%;
height: 100%;
}
.cb-intro17 h3 {
text-align: center;
width: 50%;
margin: 0 auto;
color: #ffffff;
}
.cb-intro17 p {
font-size: 14px;
text-align: center;
width: 40%;
display: block;
margin: 20px auto;
color: #ffffff;
}
.cb-intro17 .button {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
.cb-intro17 .button .btn {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
text-align: center;
}
.cb-intro17 .button .btn:hover {
border: 1px solid #c1a558;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-intro17 .modal {
background: transparent;
}
.cb-intro17 .search-form {
width: 100%;
padding-top: 20px!important;
}
.cb-intro17 .form-control {
background-color: #fff;
padding: 18px;
height: auto;
width: 22%;
margin-right: 1%;
margin-left: 1%;
display: inline;
margin-top: 10px;
float: left;
border-right: 1px solid #ccc;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
opacity: .7;
border-radius: 16px;
}
.cb-intro17 .form-control:first-child {
border-left: 1px solid #ccc;
}
.cb-intro17 .search-form form .btn {
width: 22%;
margin-top: 10px;
padding: 18px 2px;
margin-right: 1%;
margin-left: 1%;
border-radius: 16px;
background: transparent;
border-radius: 20px;
border: 1px solid #fff;
color: #fff;
}
@media (max-width: 768px) {
.cb-intro17 .form-control {
width: 100%;
}
.cb-intro17 .search-form form .btn {
width: 100%;
}
.cb-intro17 h3 {
width: 100%;
}
.cb-intro17 p {
width: 100%;
}
} .cb-intro18 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
}
.cb-intro18 .overlay {
background-color: rgba(0, 0, 0, 0.27);
width: 100%;
height: 100%;
}
.cb-intro18 h3 {
text-transform: uppercase;
text-align: center;
font-size: 36px;
font-weight: 300;
color: #ffffff;
}
.cb-intro18 p {
width: 60%;
margin: 30px auto;
color: #ffffff;
text-align: center;
}
.cb-intro18 .btn {
background-color: transparent;
padding: 12px 24px;
border: 1px solid #000;
color: #fff;
}
.cb-intro18 .btn span {
color: #fff;
}
.cb-intro18 .btn:hover {
color: #fff;
background-color: #000;
}
.cb-intro18 .btn:hover span {
color: #fff;
} .cb-intro19 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro19 .overlay {
background-color: rgba(0, 0, 0, 0.14);
width: 100%;
height: 100%;
}
.cb-intro19 h3 {
text-transform: uppercase;
font-size: 46px;
font-weight: 300;
color: #fff;
}
.cb-intro19 p {
color: #fff;
font-size: 20px;
width: 50%;
}
@media (max-width: 767px) {
.cb-intro19 p {
width: 100%;
text-align: center;
}
} .cb-intro20 {
background-repeat: no-repeat;
background-size: cover;
padding: 200px 0;
color: #fff;
position: relative;
background-position: center center;
}
.cb-intro20:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #002f4b, #dc4225);
opacity: .6;
}
.cb-intro20 .container {
position: relative;
}
.cb-intro20 .light-box {
padding: 8px 20px;
background-color: #fff;
display: table;
color: #425cbb;
opacity: .9;
margin: 0 auto;
}
.cb-intro20 .light-box p {
font-size: 24px;
margin: 0;
}
.cb-intro20 .dark-box {
padding: 8px 20px;
display: table;
color: #fff;
opacity: .9;
margin: 0 auto;
background-color: #425cbb;
}
.cb-intro20 .dark-box p {
font-size: 24px;
margin: 0;
font-weight: 700;
} .cb-intro21 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro21 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
height: 100%;
}
.cb-intro21 .introduce h1 {
color: #ffffff;
text-align: center;
}
.cb-intro21 .introduce .dark-span {
font-weight: 700;
background-color: #b72f2f;
padding: 0 8px;
}
.cb-intro21 .introduce .cta {
height: 25%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.cb-intro21 .introduce .cta .btn1 {
border-radius: 2px;
padding: 8px 24px;
border: 1px solid #fff;
color: #fff;
background-color: transparent;
margin: 5px;
}
.cb-intro21 .introduce .cta .btn2 {
border-radius: 2px;
padding: 8px 24px;
border: 1px solid #fff;
color: #fff;
background-color: #b72f2f;
margin: 5px;
} .cb-intro22 {
width: 100%;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro22 .overlay {
background-color: rgba(0, 0, 0, 0.32);
width: 100%;
height: 100%;
}
.cb-intro22 .introduce {
width: 100%;
}
.cb-intro22 .introduce h1 {
text-transform: uppercase;
font-size: 42px;
margin: 0;
line-height: 1.2;
font-weight: 700;
color: #fff;
}
.cb-intro22 .introduce p {
margin-top: 25px;
margin-bottom: 50px;
width: 60%;
color: #fff;
}
.cb-intro22 .introduce .buttons {
display: flex;
}
.cb-intro22 .introduce .buttons .btn1 {
border-radius: 0;
padding: 14px 28px;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
margin-right: 20px;
margin-top: 20px;
border: 1px solid #ffb504;
color: #fff;
background-color: #ffb504;
}
.cb-intro22 .introduce .buttons .btn1:hover {
background-color: #282828;
color: #fff;
border-color: #fff;
}
.cb-intro22 .introduce .buttons .btn2 {
border-radius: 0;
padding: 14px 28px;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
margin-right: 20px;
margin-top: 20px;
border: 1px solid #fff;
color: #fff;
background-color: transparent;
}
.cb-intro22 .introduce .buttons .btn2:hover {
background-color: #282828;
color: #fff;
border-color: #fff;
}
@media (max-width: 323px) {
.cb-intro22 .introduce p {
width: 100%;
}
} .cb-intro23 {
width: 100%;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro23 .overlay {
background-color: rgba(241, 55, 55, 0.75);
width: 100%;
height: 100%;
}
.cb-intro23 .brand {
margin: 0;
font-size: 26px;
font-weight: 700;
color: #ffffff;
}
.cb-intro23 h1 {
color: #ffffff;
}
.cb-intro23 hr {
margin: 0;
margin-bottom: 80px;
width: 100%;
color: #ffffff;
background-color: rgba(255, 255, 255, 0.75);
}
.cb-intro23 .content {
margin-top: 10px;
margin-bottom: 10px;
margin-right: 20px;
}
.cb-intro23 .content .fa {
font-size: 62px;
color: #ffffff;
}
.cb-intro23 .content h2 {
font-weight: 700;
text-transform: uppercase;
margin: 15px 0 0 0;
font-size: 24px;
color: #ffffff;
}
@media (max-width: 465px) {
.cb-intro23 .icons {
display: none!important;
}
} .cb-intro24 {
width: 100%;
height: 100vh;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro24 .overlay {
background-color: rgba(0, 0, 0, 0.2);
width: 100%;
height: 100%;
}
.cb-intro24 h1 {
font-size: 94px;
font-weight: 900;
color: #fff;
line-height: 1;
text-transform: uppercase;
display: flex;
flex-direction: column;
width: 100%;
align-items: flex-end;
}
.cb-intro24 h1 span {
color: #1583c9;
}
.cb-intro24 p {
color: #1583c9;
font-weight: 600;
font-size: 15px;
display: flex;
flex-direction: column;
width: 100%;
align-items: flex-end;
}
.cb-intro24 a {
padding-right: 50px;
padding-left: 50px;
background: #1583c9;
font-size: 42px;
font-weight: 900;
color: #fff;
text-align: center;
line-height: 2.1;
margin-top: 30px;
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
}
.cb-intro24 h3 {
font-size: 23px;
font-weight: 900;
color: #fff;
display: flex;
flex-direction: column;
width: 100%;
align-items: flex-end;
}
@media (max-width: 640px) {
.cb-intro24 h1 {
align-items: center;
font-size: 60px;
justify-content: center;
}
.cb-intro24 p {
text-align: center;
align-items: center;
justify-content: center;
}
.cb-intro24 a {
text-align: center;
width: 100%;
}
.cb-intro24 h3 {
text-align: center;
align-items: center;
}
} .cb-intro25 {
width: 100%;
height: 100vh;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.cb-intro25 .overlay {
background-color: rgba(0, 0, 0, 0.48);
width: 100%;
height: 100%;
}
.cb-intro25 .content {
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-intro25 .content  h1 {
color: #ffffff;
font-size: 90px;
font-weight: 700;
margin-bottom: 40px;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
.cb-intro25 .content h1 span {
color: #1583c9;
}
.cb-intro25 .content ul {
padding: 0;
width: 300px;
margin-bottom: 40px;
list-style-type: none;
}
.cb-intro25 .content ul li {
color: #000000;
font-size: 17px;
height: 40px;
line-height: 40px;
font-weight: 400;
margin-top: 10px;
letter-spacing: 1px;
padding: 0 0 0 20px;
background: #ffffff;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
.cb-intro25 .content a {
color: #ffffff;
cursor: pointer;
font-size: 12px;
padding: 20px 40px;
line-height: 15px;
text-align: center;
background: #1583c9;
letter-spacing: 2px;
#fff-space: nowrap;
display: inline-block;
text-decoration: none;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
.cb-intro25 .content a:hover,
.cb-intro25 .content a:active {
color: #000000;
background: #ffffff;
}
@media only screen and (max-width: 337px) {
.cb-intro25 .content ul {
width: 200px;
overflow: hidden;
}
}
@media only screen and (max-width: 480px) {
.cb-intro25 .content h1 {
font-size: 40px;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-intro25 .content h1 {
font-size: 45px;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-intro25 .content h1 {
font-size: 50px;
}
} .cb-services1 {
background-color: #ffffff;
padding: 40px 0;
}
.cb-services1 .service-box {
padding: 10px 15px 0px;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
background-color: #2a2a2a;
height: 100%;
margin-top: 17px;
margin-bottom: 0px;
}
.cb-services1 .service-box:hover {
padding: 30px 15px;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-services1 .service-box h2 {
text-align: center;
color: #fff;
font-weight: 300;
margin-bottom: 30px;
}
.cb-services1 .service-box p {
text-align: center;
color: #b7b7b7;
font-weight: 300;
font-size: 16px;
margin-bottom: 30px;
}
.cb-services1 .service-box .include p {
text-align: center;
color: #fff;
font-weight: 300;
font-size: 16px;
margin-bottom: 5px;
}
.cb-services1 .service-box .include .fa {
font-size: 24px;
font-weight: 300;
} .cb-services2 {
background-color: #fff;
padding: 40px 0;
}
.cb-services2 .service-box {
padding: 30px 15px 30px 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
.cb-services2 .service-box:hover .fa {
color: #425cbb !important;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-services2 .service-box .fa {
font-size: 22px;
}
.cb-services2 .service-box p {
color: #898989;
font-weight: 300;
font-size: 12px;
margin-bottom: 30px;
}
.cb-services2 .service-box h6 {
color: #898989;
font-weight: 300;
font-size: 12px;
margin: 15px 0 5px 0;
}
.cb-services2 h1 {
color: #282828;
text-align: center;
text-transform: uppercase;
font-weight: 400;
margin-bottom: 40px;
}
.cb-services2 .service-box h2 {
font-weight: 400;
position: relative;
text-transform: uppercase;
font-size: 22px;
margin-top: 5px;
}
.cb-services2 .service-box h2::after {
content: "";
background-color: #425cbb;
display: block;
width: 20px;
height: 2px;
position: absolute;
left: -30px;
top: 50%;
} .cb-services3 {
padding: 40px 0;
}
.cb-services3 .services-box {
padding: 0 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.cb-services3 .services-box .icon {
width: 80px;
height: 80px;
border: 1px solid #898989;
border-radius: 80px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.cb-services3 .services-box .icon span {
font-size: 40px;
color: #898989;
}
.cb-services3 h3 {
font-size: 20px;
margin: 20px 0 15px 0;
text-align: center;
}
.cb-services3 p {
font-size: 12px;
font-weight: 200;
color: #898989;
text-align: center;
} .cb-services4 {
padding: 40px 0;
}
.cb-services4 .services-box {
padding: 10px 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
.cb-services4 .services-box .icon {
width: 80px;
height: 80px;
border: 1px solid #898989;
background: #000;
color: #fff;
border-radius: 80px;
display: flex;
align-items: center;
justify-content: center;
}
.cb-services4 .services-box .icon:hover {
background: #fff;
color: #000;
}
.cb-services4 .services-box .icon span {
font-size: 40px;
color: #fff;
}
.cb-services4 h3 {
font-size: 20px;
margin: 20px 0 15px 0;
}
.cb-services4 p {
font-size: 12px;
font-weight: 200;
color: #898989;
} .cb-services5 {
padding: 40px 0;
}
.cb-services5 .services-box {
padding: 0 20px;
text-align: center;
}
.cb-services5 .services-box .icon {
width: 80px;
height: 80px;
margin: 0 auto;
border: 1px solid #898989;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
display: flex;
align-items: center;
justify-content: center;
}
.cb-services5 .services-box .icon span {
font-size: 40px;
color: #898989;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
top: 0;
left: 50%;
margin-top: 20px;
margin-left: -35px;
margin-right: -35px;
width: 100%;
}
.cb-services5 h3 {
font-size: 20px;
margin: 25px 0 15px 0;
}
.cb-services5 p {
font-size: 12px;
font-weight: 200;
color: #898989;
margin-bottom: 30px;
} .cb-services6 {
padding: 40px 0 20px 0;
}
.cb-services6 .services-box {
border: 2px solid #425cbb;
margin-bottom: 30px;
overflow: hidden;
padding: 30px 90px 25px 20px;
position: relative;
}
.cb-services6 .services-box .icon {
border-color: transparent #425cbb transparent transparent;
border-style: solid;
border-width: 434px 150px 434px 0;
content: "";
height: 0;
position: absolute;
right: -60px;
top: 50%;
transform: translate(0px, -50%);
width: 0;
}
.cb-services6 .services-box .icon span {
font-size: 42px;
width: 40px;
color: #fff;
text-align: center;
position: absolute;
margin-top: -20px;
margin-left: 30px;
}
.cb-services6 h3 {
font-size: 20px;
margin: 20px 0 15px 0;
height: 24px;
overflow: hidden;
}
.cb-services6 p {
font-size: 12px;
font-weight: 200;
color: #898989;
overflow: hidden;
} .cb-services7 {
margin-top: 60px;
margin-bottom: 60px;
}
.cb-services7 .main {
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-services7 .main:hover {
background-color: rgba(0, 135, 255, 0.53);
color: #fff;
}
.cb-services7 .main .box {
width: 100%;
display: flex;
flex-direction: column;
}
.cb-services7 .main .box p {
font-size: 12px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
.cb-services7 .main .head {
align-items: center;
display: flex;
justify-content: center;
margin-top: 10px;
margin-bottom: 6px;
}
.cb-services7 .main .head i {
color: #0027ff;
}
.cb-services7 .main:hover .head i {
color: #fff;
}
.cb-services7 .main .body {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.cb-services7 .main .body h4 {
text-align: center;
} .cb-services8 {
width: 100%;
background-color: #000;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-position: center center;
background-attachment: fixed;
}
.cb-services8 .overlay {
background-color: rgba(0, 0, 0, 0.6);
width: 100%;
}
.cb-services8 .row.padding {
padding-top: 40px;
padding-bottom: 40px;
}
.cb-services8 .services-box {
padding: 20px;
text-align: center;
border-radius: 20px;
background-color: #1583c9;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-services8 .services-box:hover {
padding: 20px;
text-align: center;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
background-color: #000000;
}
.cb-services8 .services-box .icon {
width: 80px;
height: 80px;
border: 1px solid #f5f5f5;
border-radius: 80px;
color: #f5f5f5;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-services8 .services-box .icon span {
font-size: 40px;
color: #f5f5f5;
}
.cb-services8 h3 {
font-size: 20px;
margin: 20px 0 15px 0;
color: #f5f5f5;
}
.cb-services8 p {
font-size: 12px;
font-weight: 200;
color: #f5f5f5;
}
@media (max-width: 968px) {
.cb-services8 .services-box {
margin-bottom: 10px;
}
} .cb-services9 {
padding: 75px 0 40px 0;
background-color: #000;
background-position: center center;
background-attachment: scroll;
width: 100%;
height: 100%;
background-size: cover;
}
.cb-services9 .overlay {
width: 100%;
background-color: rgba(0, 0, 0, 0.0);
}
.cb-services9 .services-box {
padding: 0 20px;
text-align: center;
border-bottom: 1px solid #f5f5f5;
border-left: 1px solid #f5f5f5;
border-right: 1px solid #f5f5f5;
margin-bottom: 75px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-services9 .services-box::before {
content: "";
display: block;
height: 1px;
background-color: #f5f5f5;
position: absolute;
top: 0;
left: 15px;
width: 30%;
}
.cb-services9 .services-box::after {
content: "";
display: block;
height: 1px;
background-color: #f5f5f5;
position: absolute;
top: 0;
right: 15px;
width: 30%;
}
.cb-services9 .services-box .icon {
width: 40%;
height: 40%;
border-radius: 150px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
top: -20%;
}
.cb-services9 .services-box .icon span {
font-size: 40px;
color: #fff;
}
.cb-services9 h3 {
font-size: 20px;
color: #fff;
margin: 0;
padding: 30px 0 15px 0;
}
.cb-services9 p {
font-size: 12px;
font-weight: 200;
color: #fff;
}
.cb-services9 .title h1 {
font-size: 24px;
text-transform: uppercase;
text-align: center;
color: #fff;
margin: 0;
}
.cb-services9 .title p {
text-align: center;
color: #fff;
margin: 0;
margin-bottom: 50px;
} .cb-services10 {
text-align: center;
background: #FFF;
padding-top: 60px;
padding-bottom: 40px;
}
.cb-services10 .service-box {
padding-bottom: 20px;
}
.cb-services10 .service-box h3 {
font-weight: 700;
}
.cb-services10 .service-box .service10-heading {
margin-top: 10px;
color: #4e4d4d;
text-align: center;
} .cb-services11 {
text-align: left;
background: #fff;
padding-top: 60px;
padding-bottom: 20px;
}
.cb-services11 .service-box {
padding-bottom: 60px;
}
.cb-services11 .service-box .media-left {
padding-right: 10px;
display: flex;
align-items: flex-end;
justify-content: center;
padding-top: 8px;
}
.cb-services11 .service-box .media-left i {
color: #0d18ff;
}
.cb-services11 .service-box .media-body {
flex-direction: column;
align-items: flex-start;
justify-content: center;
display: flex;
}
.cb-services11 .service-box .media-body h4 {
margin: 0px;
font-weight: 700;
padding-bottom: 10px;
color: #000;
}
.cb-services11 .service-box .media-body p {
font-size: 14px;
color: #4a4a4a;
} .cb-services12 {
text-align: center;
background: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-services12 .overlay {
background-color: rgba(0, 0, 0, 0.11);
width: 100%;
}
.cb-services12 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-services12 .heading {
text-align: center;
padding-bottom: 60px;
}
.cb-services12 .heading h2 {
margin: 0px;
font-weight: 700;
padding-bottom: 10px;
color: #000;
}
.cb-services12 .heading p {
color: #000;
}
.cb-services12 .service-box {
padding-bottom: 0px;
}
.cb-services12 .service-box i {
width: 200px;
height: 200px;
border-radius: 100%;
display: inline-flex;
background: #1583c9;
color: #fff;
text-align: center;
line-height: 3.4;
transition: .3s;
align-items: center;
justify-content: center;
}
.cb-services12 .service-box:hover i {
transition: .4s;
background-color: #ffed00;
color: #000000;
}
.cb-services12 .service-box h3 {
color: #fff;
font-weight: 700;
margin-top: 10px;
margin-bottom: 25px;
} .cb-services13 {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.cb-services13 .overlay {
background-color: rgba(0, 0, 0, 0.11);
width: 100%;
}
.cb-services13 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-services13 .space {
margin-bottom: 20px;
}
.cb-services13 .service-box h3 {
margin: 0px;
font-weight: 700;
padding-bottom: 10px;
color: #fff;
}
.cb-services13 .service-box p {
color: #fff;
}
.cb-services13 .service-box {
width: 100%;
height: 100%;
display: inline-flex;
background-color: #1583c9;
color: #fff;
text-align: center;
line-height: 3.4;
transition: .3s;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 70px;
padding-bottom: 70px;
}
.cb-services13 .service-box:hover {
background-color: #ff00da;
color: #000;
}
.cb-services13 .service-box:hover h3 {
color: #000;
}
.cb-services13 .service-box:hover p {
color: #000;
} .cb-services14 {
text-align: center;
background: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-services14 .overlay {
background-color: rgba(0, 0, 0, 0.11);
width: 100%;
}
.cb-services14 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-services14 .service-box {
background: rgba(255, 255, 255, .9);
padding-top: 40px;
padding-right: 10px;
padding-bottom: 40px;
padding-left: 10px;
height: 100%;
width: 100%;
}
.cb-services14 .service-box:hover {
background: rgba(255, 255, 255, .7);
}
.cb-services14 .service-box i {
transition: .3s;
}
.cb-services14 .service-box:hover i {
color: #1583c9;
transition: .2s;
}
.cb-services14 .service-box h3 {
padding-top: 10px;
font-size: 28px;
text-align: center;
word-break: break-word;
}
@media (max-width: 968px) {
.cb-services14 .service-box h3 {
font-size: 20px;
}
} .cb-services15 {
background: #fff;
text-align: center;
padding-top: 60px;
padding-bottom: 40px;
}
.cb-services15 .service-box {
text-align: left;
position: relative;
padding-bottom: 30px;
}
.cb-services15 .service-box h2 {
font-weight: bold;
}
.cb-services15 .service-box i {
position: absolute;
font-size: 100px;
opacity: .2;
top: 30px;
right: 30px;
} .cb-services16 {
margin-top: 32px;
margin-bottom: 32px;
}
.cb-services16 .service-box {
border: 2px solid hsl(0, 0%, 27%);
color: hsl(0, 0%, 27%);
padding: 37px 18px;
text-align: center;
}
.cb-services16 .service-box .service-icon {
margin-bottom: 10px;
}
.cb-services16 .service-box .service-icon i {
position: relative;
bottom: 0;
color: hsl(0, 0%, 27%);
display: inline-block;
font-size: 46px;
transition: all 0.2s ease 0s;
}
.cb-services16 .service-box:hover i {
bottom: 5px;
}
.cb-services16 .service-box .service-content h3 {
font-size: 14px;
text-transform: uppercase;
font-weight: 600;
}
.cb-services16 .service-box .service-content p {
color: hsl(0, 0%, 60%);
}
.cb-services16 .service-box .service-content .line {
background: #000;
height: 2px;
margin: 22px auto;
opacity: 0.2;
width: 40px;
}
@media screen and (max-width: 990px) {
.cb-services16 .service-box {
margin-bottom: 20px;
}
} .cb-services17 {
padding-top: 80px;
padding-bottom: 80px;
}
.cb-services17 .service-box {
background: #fff;
text-align: center;
padding: 0 0 25px;
box-shadow: 0 2px 5px 0 #000;
border: 1px solid #000;
margin-top: 55px;
}
.cb-services17 .service-box .service-icon {
width: 130px;
height: 130px;
line-height: 144px;
border-radius: 50%;
background: #1583c9;
margin: -65px auto 0;
}
.cb-services17 .service-box .service-icon i {
color: #fff;
font-size: 55px;
}
.cb-services17 .service-box .service-content {
padding: 0 25px;
}
.cb-services17 .service-box .service-content h3 {
color: #1e2731;
font: bold 24px/40px 'arial';
text-transform: uppercase;
margin: 30px 0 10px;
}
.cb-services17 .service-box .service-content p {
font: lighter 13px/20px "verdana";
color: #A2A2A2;
margin: 0 0 20px;
}
.cb-services17 .service-box .read {
padding: 30px 0;
}
.cb-services17 .service-box .read a {
border: 1px solid #000;
padding: 9px 55px;
font: 600 14px/18px "arial";
color: #fff;
background-color: #1583c9;
text-transform: uppercase;
}
.cb-services17 .service-box .read a:hover {
color: #000;
text-decoration: none;
background: #fff;
}
@media screen and (max-width: 990px) {
.cb-services17 .service-box {
margin-top: 80px;
}
} .cb-services18 {
margin-top: 32px;
margin-bottom: 32px;
}
.cb-services18 .service-box {
border: 1px solid #4e4e4e;
text-align: center;
padding: 40px 0;
overflow: hidden;
position: relative;
z-index: 1;
transition: all 0.5s ease 0s;
}
.cb-services18 .service-box:before,
.cb-services18 .service-box:after {
content: "";
width: 200%;
height: 200%;
background: #1583c9;
position: absolute;
top: 160px;
left: 0;
z-index: -1;
transform: rotate(-18deg);
transition: all 0.5s ease 0s;
}
.cb-services18 .service-box:before {
background: #4e4e4e;
left: -120%;
transform: rotate(24deg);
}
.cb-services18 .service-box:hover:before {
transform: rotate(16deg);
}
.cb-services18 .service-box:hover:after {
background: #000;
transform: rotate(-10deg);
}
.cb-services18 .service-box .service-icon {
font-size: 60px;
color: #000;
line-height: 100px;
margin-bottom: 100px;
}
.cb-services18 .service-box .service-content {
color: #fff;
line-height: 25px;
padding: 0 20px 20px;
}
.cb-services18 .service-box .title {
font-size: 22px;
font-weight: 700;
margin-bottom: 10px;
}
.cb-services18 .service-box .description {
font-size: 14px;
}
.cb-services18 .service-box .read {
display: block;
width: 100%;
background: #fff;
font-size: 15px;
font-weight: 600;
color: #000;
padding: 10px;
border-left: 1px solid #000;
border-right: 1px solid #000;
}
.cb-services18 .service-box:hover .read {
border-color: #000;
color: #000;
}
@media only screen and (max-width: 990px) {
.cb-services18 .service-box {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 767px) {
.cb-services18 .service-box:before,
.cb-services18 .service-box:after {
top: 80px;
}
}
@media only screen and (max-width: 480px) {
.cb-services18 .service-box:before,
.cb-services18 .service-box:after {
top: 140px;
}
} .cb-services19 {
padding-top: 72px;
padding-bottom: 72px;
}
.cb-services19 .service-box {
border: 1px solid #ddd;
text-align: center;
border-radius: 15px;
padding: 25px;
position: relative;
transition: all 0.4s ease-in-out 0s;
}
.cb-services19 .service-box:hover {
transform: scale(1.05, 1.05);
}
.cb-services19 .service-box .service-icon {
width: 80px;
height: 80px;
line-height: 70px;
border-radius: 50%;
border: 3px solid #000;
font-size: 42px;
color: #000;
margin: 0 auto 30px;
position: relative;
transition: all 0.2s ease-out 0s;
}
.cb-services19 .service-box:hover .service-icon {
border-color: #1583c9;
}
.cb-services19 .service-box .service-icon i {
transform: rotate(0);
transition: all 0.2s ease-out 0s;
}
.cb-services19 .service-box:hover .service-icon i {
transform: rotate(360deg);
color: #1583c9;
}
.cb-services19 .service-box .title {
font-size: 20px;
font-weight: bold;
color: #4a4a4a;
line-height: 40px;
margin: 0 0 35px 0;
position: relative;
}
.cb-services19 .service-box .title:after {
content: "";
display: block;
width: 50px;
height: 4px;
background: #f1f1f1;
margin: 0 auto;
position: absolute;
bottom: -15px;
left: 0;
right: 0;
transition: all 0.2s ease-out 0s;
}
.cb-services19 .service-box:hover .title:after {
width: 100%;
}
.cb-services19 .service-box .description {
font-size: 12px;
color: #7a7a7a;
line-height: 24px;
margin-bottom: 20px;
}
.cb-services19 .service-box .read-more {
display: inline-block;
padding: 8px 22px;
background: #1583c9;
font-size: 14px;
font-weight: 500;
color: #fff;
text-transform: capitalize;
border-radius: 40px;
transform: scale(1);
transition: all 0.2s ease-out 0s;
}
.cb-services19 .service-box .read-more:hover {
transform: scale(1.1, 1.1);
}
.cb-services19 .service-box:hover .read-more {
background: #000;
}
@media only screen and (max-width: 990px) {
.cb-services19 .service-box {
margin-bottom: 40px;
}
} .cb-services20 {
width: 100%;
}
.cb-services20 .service-box {
text-align: center;
margin: 0 -15px;
}
.cb-services20 .service-box .image-1 {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
height: 256px;
}
.cb-services20 .service-box .image-2 {
height: 266px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-services20 .service-box .service-content {
position: relative;
background: #1583c9;
color: #fff;
padding: 60px 30px 30px;
}
.cb-services20 .service-box .service-icon {
display: block;
width: 70px;
height: 70px;
background: #fff;
border-radius: 10px;
position: absolute;
top: -35px;
left: 0;
right: 0;
margin: auto;
transform: rotate(45deg);
}
.cb-services20 .service-box .service-icon i {
font-size: 30px;
line-height: 70px;
color: #000;
transform: rotate(-45deg);
}
.cb-services20 .service-box .title {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
text-transform: uppercase;
}
.cb-services20 .service-box .description {
font-size: 14px;
line-height: 25px;
margin-bottom: 20px;
}
.cb-services20 .service-box .read-more {
display: inline-block;
padding: 7px 20px;
border: 1px solid #fff;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
color: #000;
background: #fff;
text-transform: capitalize;
transition: all 0.5s ease 0s;
}
.cb-services20 .service-box .read-more:hover {
color: #fff;
background: #1583c9;
text-decoration: none;
}
.cb-services20 .service-box.middle .service-content {
padding: 30px 30px 50px;
}
.cb-services20 .service-box.middle .service-icon {
bottom: -35px;
top: auto;
}
@media only screen and (max-width: 990px) {
.cb-services20 .service-box .title {
font-size: 17px;
}
}
@media only screen and (max-width: 767px) {
.cb-services20 .service-box {
margin: 0 0 30px 0;
}
} .cb-content1 {
background-color: #000000;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content1 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.cb-content1 h2 {
color: #fff;
font-size: 22px;
padding-top: 20px;
}
.cb-content1 p {
color: #fff;
font-size: 15px;
width: 50%;
padding-bottom: 30px;
}
@media (max-width:495px) {
.cb-content1 p {
width: 100%;
margin-left: 20px;
margin-right: 20px;
}
} .cb-content2 {
padding: 0px;
}
.cb-content2 .box {
padding: 64px 40px;
position: relative;
z-index: 1;
overflow: hidden;
min-height: 397px;
}
.cb-content2 .box.box1 {
background-color: #241d4f;
}
.cb-content2 .box.box2 {
background-color: #1583c9;
}
.cb-content2 .box.box3 {
background-color: #ffffff;
}
.cb-content2 .box.box1 h1 {
color: #ffffff;
font-weight: bold;
line-height: 1.5;
}
.cb-content2 .box.box2 h1 {
color: #000;
font-weight: bold;
line-height: 1.5;
}
.cb-content2 .box.box3 h1 {
color: #000;
font-weight: bold;
line-height: 1.5;
}
.cb-content2 .box.box1 p {
line-height: 1.7;
font-weight: normal;
color: #ffffff;
}
.cb-content2 .box.box2 p {
line-height: 1.7;
font-weight: normal;
color: #000;
}
.cb-content2 .box.box3 p {
line-height: 1.7;
font-weight: normal;
color: #000;
}
.cb-content2 .box.box1 .btn1 {
margin-top: 24px;
background-color: rgba(0, 0, 0, 0);
border-radius: 0;
border: 1px solid #fff;
}
.cb-content2 .box.box2 .btn2 {
margin-top: 24px;
background-color: rgba(0, 0, 0, 0);
border-radius: 0;
border: 1px solid #fff;
}
.cb-content2 .box.box3 .btn3 {
margin-top: 24px;
background-color: #1583c9;
border-radius: 0;
border: 1px solid black;
}
.cb-content2 .box.box1 .btn1:hover {
background-color: #ffffff;
color: #000000;
}
.cb-content2 .box.box2 .btn2:hover {
color: #000000;
background-color: #ffffff;
}
.cb-content2 .box.box3 .btn3:hover {
background-color: rgba(21, 131, 201, 0);
color: #000000;
}
.cb-content2 .no-pad {
padding: 0;
} .cb-content3 {
padding-top: 120px;
padding-bottom: 120px;
text-align: center;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content3 .box {
background: rgba(255, 255, 255, 0.8);
width: 100%;
padding: 40px;
border: 2px solid #363636;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-content3  .box h3 {
font-size: 30px;
font-weight: bold;
color: #000;
}
.cb-content3  .box h3 span {
border-bottom: 1px solid #898989;
padding-bottom: 10px;
}
.cb-content3 .box p {
margin-top: 3%;
margin-bottom: 2%;
}
.cb-content3  .box .btn {
letter-spacing: 1px;
color: #363636;
font-weight: bold;
border: 3px solid #363636;
padding: 10px;
display: inline-block;
margin-top: 20px;
transition: .3s;
text-decoration: none;
}
.cb-content3 .box .btn:hover {
color: #ff6445;
border-color: #ff6445;
} .cb-content4 {
padding: 40px 0;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content4 .box {
padding: 15px 20px;
background: #f5f5f5;
margin-bottom: 25px;
}
.cb-content4 .box:hover {
background: #425cbb;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content4 .box:hover:hover .icon {
background: #fff;
color: #282828;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content4 .box .icon {
width: 80px;
height: 80px;
border-radius: 80px;
float: left;
margin-right: 20px;
text-align: center;
line-height: 80px;
}
.cb-content4 .box h3 {
font-size: 18px;
text-transform: uppercase;
}
.cb-content4 p {
font-size: 12px;
font-weight: 200;
color: #898989;
overflow: hidden;
}
.cb-content4 .box:hover p {
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-content5 {
padding-left: 0;
padding-right: 0;
}
.cb-content5 .nopaddingnomargin {
padding: 0px;
margin: 0px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content5 .box {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content5 .content {
padding: 100px 30px;
width: 100%;
height: auto;
background-size: cover;
background-position: center center;
background-color: rgba(26, 35, 64, 0.82);
color: #fff;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.cb-content5 .content:hover {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
background-color: rgba(7, 34, 120, 0.66);
}
.cb-content5 h3 {
text-transform: uppercase;
color: #fff;
font-weight: bold;
margin-top: 10px;
}
.cb-content5 p {
font-size: 12px;
color: #FFF;
}
.cb-content5 .fa {
font-size: 28px;
color: #425cbb;
}
.cb-content5 a {
text-transform: uppercase;
text-decoration: none;
font-size: 1.5em;
color: #ffffff;
}
.cb-content5 a:hover {
color: #0037ff;
text-transform: uppercase;
font-weight: bold;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-content6 {
padding: 60px 0;
color: #282828;
}
.cb-content6 .title {
text-align: center;
width: 60%;
margin: 0 auto;
}
.cb-content6 .cover-image img {
max-width: 100%;
border-radius: 16px;
margin: 40px 0;
}
.cb-content6 .icon {
float: left;
height: 80px;
width: 40px;
color: #393939;
font-size: 36px;
margin-right: 20px;
}
.cb-content6 .icon .fa {
color: #393939;
}
.cb-content6 .after-icon {
overflow: hidden;
}
.cb-content6 .after-icon h4 {
font-size: 24px;
color: #393939;
}
.cb-content6 .after-icon p {
font-size: 12px;
color: #898989;
} .cb-content7 {
overflow: hidden;
}
.cb-content7  .nopaddingnomargin {
padding: 0px;
margin: 0px;
}
.cb-content7 .row {
margin: 0;
}
.cb-content7 .box {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content7 .content {
height: 100%;
min-height: 100px;
display: block;
background-size: cover;
background-position: center center;
}
.cb-content7 .box .content .fa {
font-size: 32px;
color: #fff;
float: left;
}
.cb-content7 .box .content .icon {
padding: 15px;
background: rgba(40, 40, 40, 0.1);
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
.cb-content7 .box .content .icon h3 {
color: #fff;
font-size: 18px;
text-transform: uppercase;
margin: 6px 0 6px 20px;
}
.cb-content7 .box .content.blue {
background-color: rgba(52, 152, 219, 0.8) !important;
}
.cb-content7 .box .content.blue p {
font-size: 12px;
color: #fff;
padding: 15px;
margin: 15px 0;
}
.cb-content7 .box .content.blue a {
font-size: 11px;
color: #fff;
text-decoration: none;
padding: 0 0 20px 15px;
display: block;
}
.cb-content7 .box .content.blue a:hover,
.cb-content7 .box .content.blue a:focus {
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-content8 {
padding: 40px 0;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content8 .overlay {
height: 100%;
background-color: rgba(0,0,0,0);
}
.cb-content8 .icon .fa {
float: left;
background-color: #ffffff;
border-radius: 2px;
padding: 15px;
font-size: 24px;
text-align: center;
min-width: 60px;
}
.cb-content8 .large {
font-size: 24px !important;
}
.cb-content8 ul {
list-style: none;
font-family: 'ABeeZee', sans-serif;
font-size: 16px;
color: #0082b3;
}
.cb-content8 li {
list-style-position: outside;
list-style-type: disc;
}
.cb-content8 .content {
overflow: hidden;
}
.cb-content8 span.blue {
color: #3498db;
}
.cb-content8 p {
overflow: hidden;
font-size: 18px;
padding: 0 25px;
color: #575757;
}
.cb-content8 h3 {
text-transform: uppercase;
margin-top: 0;
color: #0082b3;
} .cb-content9 {
padding: 0;
}
.cb-content9 .nopaddingnomargin {
padding: 0;
margin: 0;
}
.cb-content9 .row {
padding: 0;
margin: 0;
}
.cb-content9 .image {
height: auto;
width: 100%;
}
.cb-content9 .content {
padding-left: 30px;
padding-top: 20px;
padding-right: 30px;
padding-bottom: 30px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.cb-content9 .content.one {
}
.cb-content9 .content.two {
background-color: #000000;
}
.cb-content9 .content.three {
background-color: #cba118;
}
.cb-content9 .content h3 {
text-transform: uppercase;
font-size: 24px;
}
.cb-content9 .content.one  h3 {
}
.cb-content9 .content.two  h3 {
color: #ffffff;
}
.cb-content9 .content.three  h3 {
}
.cb-content9 .content p {
font-size: 14px;
}
.cb-content9 .content.one p {
}
.cb-content9 .content.two p {
color: #ffffff;
}
.cb-content9 .content.three p {
}
.cb-content9 .content a {
text-transform: uppercase;
text-decoration: none;
margin-bottom: 20px;
padding: 10px 20px 10px 20px;
border: 1px solid;
border-radius: 30px;
}
.cb-content9 .content.one a {
background-color: #000;
color: #fff;
}
.cb-content9 .content.two a {
color: #ffffff;
}
.cb-content9 .content.three a {
color: #000000;
}
.cb-content9 .content.one a:hover {
background-color: #fff;
color: #000;
}
.cb-content9 .content.two a:hover {
background-color: #fff;
color: #000;
}
.cb-content9 .content.three a:hover {
background-color: #fff;
color: #000;
} .cb-content10 {
overflow: hidden;
}
.cb-content10 .nopadding {
padding: 0px!important;
margin: 0px!important;
}
.cb-content10 .image {
width: 100%;
min-height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content10 .row .right {
padding: 30px;
background: #18a1f9;
}
.cb-content10 .right h2 {
font-size: 36px;
font-weight: 900;
color: #363636;
}
.cb-content10 .right .btn {
color: #fff;
font-weight: bold;
border: 3px solid #fff;
padding: 10px;
display: inline-block;
margin-top: 20px;
transition: .3s;
}
.cb-content10 .right .btn:hover {
border-color: #fff;
color: #fff;
transition: .3s;
} .cb-content11 {
overflow: hidden;
}
.cb-content11 .nopadding {
padding: 0px!important;
margin: 0px!important;
}
.cb-content11 .image {
width: 100%;
min-height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content11 .row .left {
padding: 30px;
background: #fff;
}
.cb-content11 .left h2 {
font-size: 36px;
font-weight: 900;
color: #363636;
}
.cb-content11 .left .btn {
color: #000;
font-weight: bold;
border: 3px solid #000;
padding: 10px;
display: inline-block;
margin-top: 20px;
transition: .3s;
}
.cb-content11 .left .btn:hover {
border-color: #000;
color: #000;
transition: .3s;
} .cb-content12 {
overflow: hidden;
}
.cb-content12 .row {
margin: 0;
padding: 0;
}
.cb-content12 .nopaddingnomargin {
margin: 0;
padding: 0;
}
.cb-content12 .image {
width: 100%;
min-height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content12 .content-center {
background: #425cbb;
padding: 30px;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-content12 .content-center h3 {
margin: 0;
margin-bottom: 20px;
color: #fff;
font-size: 24px;
}
.cb-content12 .content-center p {
color: #fff;
font-size: 12px;
}
.cb-content12 .content-right {
background: #282828;
padding: 30px;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.cb-content12 .content-right h3 {
margin: 20px 0 20px 0;
line-height: 40px;
color: #fff;
font-size: 24px;
text-transform: uppercase;
}
.cb-content12 .content-right p {
color: #fff;
font-size: 12px;
}
.cb-content12 .content-right .btn {
border-radius: 4px !important;
background: transparent;
border-radius: 40px;
padding: 10px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-content12 .content-right .btn:hover {
background: #fff;
color: #000;
}
@media (min-width: 0px) and (max-width: 481px) {
.cb-content12 .content-center,
.cb-content12 .content-right {
height: auto;
}
} .cb-content13 {
background-position: center center;
background-size: cover;
height: auto;
overflow: hidden;
}
.cb-content13 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.19);
}
.cb-content13 .row {
padding-top: 80px;
padding-bottom: 80px;
}
.cb-content13 .content {
min-height: 400px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-content13 .content h4 {
color: #fff;
text-transform: uppercase;
font-size: 18px;
}
.cb-content13 .content h3 {
color: #fff;
text-transform: uppercase;
font-size: 24px;
}
.cb-content13 .content h3 span {
color: #4700ff;
}
.cb-content13 .content p {
color: #fff;
text-transform: uppercase;
font-size: 12px;
}
.cb-content13 .image {
width: 100%;
position: absolute;
top: 90%;
}
.cb-content13 .image img {
width: 100%;
display: block;
margin-top: -90px;
position: absolute;
top: 0;
left: 0;
right: 0;
}
.cb-content13 .btn {
border-radius: 2px;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-content13 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (max-width: 990px) {
.cb-content13 .image img {
margin-top: -50px;
}
} .cb-content14 {
height: auto;
}
.cb-content14 .nopaddingnomargin {
margin: 0;
padding: 0;
}
.cb-content14 .row {
margin: 0;
padding: 0;
}
.cb-content14 .image {
height: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
min-height: 300px;
}
.cb-content14 .content {
padding: 80px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-content14 h3 {
font-size: 28px;
text-transform: uppercase;
font-weight: bold;
}
.cb-content14 p {
font-size: 14px;
line-height: 1.8em;
}
.cb-content14 .btn {
margin-top: 20px;
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #000;
color: #000;
}
.cb-content14 .btn:hover {
background-color: #000;
color: #fff;
} .cb-content15 {
height: auto;
}
.cb-content15 .nopaddingnomargin {
margin: 0;
padding: 0;
}
.cb-content15 .row {
margin: 0;
padding: 0;
}
.cb-content15 .image {
height: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
min-height: 300px;
}
.cb-content15 .content {
padding: 80px;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
}
.cb-content15 h3 {
font-size: 28px;
text-transform: uppercase;
font-weight: bold;
}
.cb-content15 p {
font-size: 14px;
line-height: 1.8em;
}
.cb-content15 .btn {
margin-top: 20px;
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #000;
color: #000;
}
.cb-content15 .btn:hover {
background-color: #000;
color: #fff;
} .cb-content16 {
background-color: #fff;
background-repeat: repeat;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 300px;
overflow: hidden;
}
.cb-content16 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.78);
}
.cb-content16 .content1 {
padding: 40px 20px 40px 80px;
min-height: 300px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-content16 .content2 {
padding: 40px 80px 40px 20px;
min-height: 300px;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
}
.cb-content16 h2 {
color: #fff;
font-size: 22px;
}
.cb-content16 p {
color: #fff;
font-size: 12px;
}
.cb-content16 p span {
color: #fff;
font-size: 12px;
} .cb-content17 {
overflow: hidden;
}
.cb-content17 .nopaddingnomargin {
margin: 0;
padding: 0;
}
.cb-content17 .content-top {
padding: 10px 25px;
background: #425cbb;
color: #fff;
}
.cb-content17 .content-top h1 {
margin-top: 0;
margin-bottom: 5px;
font-size: 24px;
text-transform: uppercase;
}
.cb-content17 .content-top p {
font-size: 12px;
}
.cb-content17 .content {
padding: 25px;
border: 1px solid #ededed;
}
.cb-content17 .content .icon {
float: left;
height: 100px;
margin-right: 15px;
}
.cb-content17 .content .icon .fa {
color: #425cbb;
font-size: 38px;
}
.cb-content17 .content h3 {
font-size: 22px;
text-transform: uppercase;
overflow: hidden;
margin: 0;
}
.cb-content17 .content p {
font-size: 12px;
overflow: hidden;
} .cb-content18 {
padding: 80px 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: #ffffff;
}
.cb-content18 .image img {
width: 100%;
}
.cb-content18 .title {
margin-top: 40px;
}
.cb-content18 .title h3 {
font-size: 26px;
}
.cb-content18 .title h4 {
font-size: 36px;
font-weight: bold;
}
.cb-content18 .icon {
width: 70px;
height: 70px;
border-radius: 150px;
border: 1px solid #3498db;
float: left;
margin-right: 20px;
}
.cb-content18 .icon .fa {
font-size: 36px;
margin-top: 18px;
margin-left: 16px;
text-align: center;
color: #3498db;
}
.cb-content18 .content {
padding-right: 10px;
cursor: pointer;
margin-top: 25px;
}
.cb-content18 .content p {
overflow: hidden;
}
.cb-content18 .content h6 {
text-transform: uppercase;
overflow: hidden;
font-size: 14px;
margin-top: 0;
}
.cb-content18 .content:hover .fa {
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content18 .content:hover .icon {
background-color: #3498db;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (min-width: 0px) and (max-width: 968px) {
.cb-content18 .image img {
display: block;
margin: 0px auto 0;
}
} .cb-content19 {
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
}
.cb-content19 .overlay {
height: 100;
background-color: rgba(0,0,0,0.4);
}
.cb-content19 .row {
margin-top: 40px;
padding-bottom: 20px;
}
.cb-content19 .title {
margin: 0px;
padding-top: 40px;
}
.cb-content19 .title h2 {
margin: 0;
font-size: 44px;
color: #ffffff;
}
.cb-content19 .title p {
margin: 0;
font-size: 12px;
color: #ffffff;
}
.cb-content19 p {
font-size: 14px;
color: #ffffff;
}
.cb-content19 .box {
padding: 10px;
text-align: center;
border-radius: 4px;
cursor: pointer;
}
.cb-content19 .box .fa {
color: #ffffff;
font-size: 82px;
}
.cb-content19 .box h4 {
margin: 10px 0;
font-weight: 400;
color: #ffffff;
}
.cb-content19 .box:hover {
background: rgba(50, 184, 218, 0.1);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.cb-content19 .box:hover h4 {
color: #3498db;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content19 .button {
text-align: center;
}
.cb-content19 .button .btn {
border-radius: 2px !important;
background: #3498db;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #3498db;
color: #fff !important;
}
.cb-content19 .button .btn:hover {
background: transparent;
} .cb-content20 {
padding: 40px 0;
}
.cb-content20 h2 {
font-size: 18px;
margin-bottom: 10px;
}
.cb-content20 p {
margin: 20px 0;
font-size: 12px;
}
.cb-content20 .btn {
border-radius: 2px !important;
background: #3498db;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #3498db;
color: #fff !important;
margin-bottom: 40px;
}
.cb-content20 .services {
position: relative;
}
.cb-content20 .service-icon {
float: left;
margin-right: 40px;
height: 75px;
width: 75px;
line-height: 75px;
text-align: center;
}
.cb-content20 .service-icon .fa {
background: #fff;
width: 36px;
height: 34px;
color: #3498db;
font-size: 28px;
line-height: 34px;
position: absolute;
top: 6px;
left: 35px;
z-index: 1;
border-radius: 2px;
}
.cb-content20 .service-icon::after,
.cb-content20 .service-icon::before {
border: 1px solid #f5f5f5;
border-radius: 5px;
content: "";
position: absolute;
z-index: 0;
}
.cb-content20 .service-icon:before {
top: 20px;
left: 15px;
width: 75px;
height: 34px;
}
.cb-content20 .service-icon:after {
left: 35px;
width: 35px;
height: 75px;
}
.cb-content20 .services:hover .service-icon .fa {
background: #3498db;
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content20 .services:hover h2 {
color: #3498db;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content20 .services:hover .service-icon::after,
.cb-content20 .services:hover .service-icon::before {
background: #3498db;
border: 1px solid #3498db;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content20 .services p {
overflow: hidden;
}
.cb-content20 .fa {
color: #fff;
font-size: 32px;
margin-top: 14px;
} .cb-content21 {
height: 300px;
background-position: center center;
background-attachment: scroll;
background-size: cover;
background-repeat: no-repeat;
}
.cb-content21 .overlay {
height: 100%;
background-color: rgba(0,0,0,0.7);
}
.cb-content21 .content {
padding-top: 40px;
padding-left: 20px;
padding-bottom: 40px;
padding-right: 20px;
}
.cb-content21 .content h3 {
font-size: 36px;
text-transform: uppercase;
margin: 0;
margin-bottom: 15px;
color: #fff;
}
.cb-content21 .content p {
color: #fff;
font-size: 18px;
}
.cb-content21 h4 {
color: #3498db;
font-size: 36px;
}
@media (max-width: 390px) {
.cb-content21 h4 {
font-size: 22px;
}
} .cb-content22 {
width: 100%;
overflow: hidden;
}
.cb-content22 .no-padding {
margin: 0;
padding: 0;
}
.cb-content22 .image {
height: 500px;
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content22 .text-wrapper {
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-content22 .text-wrapper h2 {
font-size: 34px;
font-weight: bold;
line-height: 1em;
text-transform: capitalize;
text-align: center;
}
.cb-content22 .text-wrapper p {
font-size: 18px;
text-align: center;
margin-top: 30px;
}
.cb-content22 .text-wrapper .btn {
margin-top: 40px;
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 20px 40px;
border: 1px solid #000;
color: #000;
}
.cb-content22 .text-wrapper .btn:hover {
background-color: #000;
color: #fff;
} .cb-content23 {
padding: 40px 0;
}
.cb-content23 h3 {
font-size: 24px;
}
.cb-content23 p {
font-size: 14px;
} .cb-content24 {
padding: 40px 0;
}
.cb-content24 h3 {
font-size: 35px;
margin-top: 0;
font-family: 'ABeeZee', sans-serif;
color: #3375a5;
}
.cb-content24 p {
font-size: 18px;
font-family: 'Catamaran', sans-serif;
} .cb-content25 {
height: auto;
overflow: hidden;
}
.cb-content25 .nopaddingnomargin {
padding: 0px;
margin: 0px;
}
.cb-content25 .image {
height: auto;
min-height: 200px;
display: flex;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content25 .box-large {
background-color: #f5f5f5;
}
.cb-content25 .box-large .content {
width: 100%;
padding: 25px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}
.cb-content25 .box-large .content h4 {
color: #425cbb;
font-size: 16px;
text-transform: uppercase;
margin-top: 40px;
}
.cb-content25 .box-large .content p {
font-size: 12px;
}
.cb-content25 .box-large .content .btn {
border-radius: 2px !important;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-content25 .box-small {
background-color: #f5f5f5;
overflow: hidden;
}
.cb-content25 .box-small h4 {
color: #425cbb;
font-size: 14px;
text-transform: uppercase;
margin-top: 40px;
}
.cb-content25 .box-small .content h3 {
font-size: 16px;
margin-top: 10px;
}
.cb-content25 .box-small .content p {
font-size: 12px;
}
.cb-content25 .box-small .content {
padding: 40px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.cb-content25 .box-small .content .btn {
border-radius: 2px !important;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-content25 .dark {
background: #282828;
color: #fff !important;
height: auto;
} .cb-content26 {
width: 100%;
overflow: hidden;
}
.cb-content26 .nopad {
padding: 0px;
margin: 0px;
}
.cb-content26 .image {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
min-height: 300px;
}
.cb-content26 .content1 {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 60px 40px 0px;
}
.cb-content26 .content2 {
padding: 40px 40px 40px;
}
.cb-content26 .content1 h1 {
font-size: 38px;
color: #000;
}
.cb-content26 .content2 h5 {
font-size: 24px;
color: #000;
}
.cb-content26 .content1 p {
font-size: 16px;
color: #000;
}
.cb-content26 .content2 p {
font-size: 16px;
color: #000;
}
.cb-content26 .content1 .btn {
color: #2c3e50;
background: none;
border: 2px solid #2c3e50;
}
.cb-content26 .content1 .btn:hover {
color: #ffffff;
background: #2c3e50;
}
.cb-content26 .content2 .btn {
color: #2c3e50;
background: none;
border: 2px solid #2c3e50;
}
.cb-content26 .content2 .btn:hover {
color: #ffffff;
background: #2c3e50;
} .cb-content27 {
height: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed;
}
.cb-content27 .box {
background: rgba(0, 0, 0, 0.6);
color: rgba(255, 255, 255, 0.85);
padding: 30px;
height: 100%;
display: flex;
align-items: flex-start;
justify-content: center;
flex-direction: column;
}
.cb-content27 .box ul {
padding: 0px;
margin-bottom: 8%;
list-style: none;
display: flex;
flex-direction: column;
}
.cb-content27 .box ul li {
font-size: 24px;
line-height: 2em;
}
.cb-content27 .box h2 {
font-size: 48px;
font-weight: bold;
margin-bottom: 10%;
}
.cb-content27 .box p {
font-size: 24px;
}
.cb-content27 .box .btn {
background-color: rgba(0, 0, 0, 0);
border: 2px solid #fff;
color: #fff;
}
.cb-content27 .box .btn:hover {
background-color: #fff;
border: 2px solid #000;
color: #000;
} .cb-content28 { background: #86cdf9; background: -moz-linear-gradient(top, #86cdf9 0%, #3498db 100%); background: -webkit-linear-gradient(top, #86cdf9 0%, #3498db 100%); background: linear-gradient(to bottom, #86cdf9 0%, #3498db 100%); filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#86cdf9', endColorstr='#3498db', GradientType=0); padding: 40px 0;
}
.cb-content28 .phone img {
width: 360px;
display: block;
margin: 0 auto;
}
.cb-content28 img {
width: 100%;
}
.cb-content28 h3 {
position: relative;
color: #fff;
margin-bottom: 25px;
}
.cb-content28 h3::after {
content: "";
display: block;
width: 40px;
height: 2px;
background-color: #3498db;
position: absolute;
top: 40px;
}
.cb-content28 p {
line-height: 1.5em;
color: #fff;
}
.cb-content28 .btn {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
margin-bottom: 20px;
}
.cb-content28 .btn:hover {
background-color: #fff;
color: #000!important;
} .cb-content29 {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
height: 100%;
}
.cb-content29 .overlay {
height: 100%;
background-color: rgba(187, 187, 187, 0.38);
}
.cb-content29 .padding {
margin-top: 100px;
margin-bottom: 100px;
}
.cb-content29 h2 {
font-size: 24px;
text-align: center;
margin-top: 80px;
margin-bottom: 80px;
margin-top: 0;
text-transform: uppercase;
}
.cb-content29 h2::after {
content: "";
background-color: #425cbb;
width: 40px;
height: 4px;
display: block;
position: absolute;
top: -10px;
left: 50%;
margin-left: -20px;
}
.cb-content29 img {
width: 80%;
display: block;
margin: 0 auto;
margin-bottom: 10px;
}
.cb-content29 .item {
margin-bottom: 40px;
cursor: pointer;
}
.cb-content29 .item .icon {
float: left;
}
.cb-content29 .item .icon .fa {
font-size: 48px;
margin-right: 15px;
}
.cb-content29 .item .content {
overflow: hidden;
}
.cb-content29 .item:hover .icon .fa {
color: #425cbb !important;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-content29 .item .content h3 {
margin: 0;
margin-bottom: 15px;
}
.cb-content29 .item .content p {
font-size: 12px;
color: #000;
} .cb-content30 {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content30 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.59);
}
.cb-content30 p {
color: #fff;
width: 60%;
text-align: center;
}
.cb-content30 .icon {
color: #fff;
padding: 40px;
} .cb-content31 {
padding: 30px 0;
}
.cb-content31 h1 {
color: #262525;
font-size: 38px;
line-height: 1.5;
font-weight: 600;
display: flex;
align-self: flex-start;
}
.cb-content31 p {
font-size: 18px;
line-height: 1.5;
}
.cb-content31 img {
max-height: 450px;
width: 100%;
}
.cb-content31 .btn {
color: #343232;
background-color: #ffffff;
border: 1px solid #000;
padding-top: 10px;
padding-left: 90px;
padding-bottom: 10px;
padding-right: 90px;
margin-bottom: 15px;
display: flex;
align-self: flex-start;
text-align: center;
margin-bottom: 15px;
}
.cb-content31 .btn:hover {
background-color: #000;
color: #fff;
} .cb-content32 {
padding: 30px 0;
background-color: #000000;
}
.cb-content32 h1 {
color: #ffffff;
font-size: 38px;
line-height: 1.5;
font-weight: 600;
display: flex;
align-self: flex-start;
}
.cb-content32 p {
font-size: 18px;
line-height: 1.5;
color: #fffdfd;
}
.cb-content32 img {
max-height: 450px;
width: 100%;
}
.cb-content32 .btn {
color: #343232;
background-color: #ffffff;
border: 1px solid #000;
padding-top: 10px;
padding-left: 90px;
padding-bottom: 10px;
padding-right: 90px;
margin-bottom: 15px;
display: flex;
align-self: flex-end;
text-align: center;
}
.cb-content32 .btn:hover {
background-color: #fff;
color: #000;
border-color: #fff;
} .cb-content33 {
padding: 30px 0;
min-height: 300px;
}
.cb-content33 h1 {
color: #262525;
font-size: 38px;
line-height: 1.5;
font-weight: 600;
}
.content33 p {
font-size: 18px;
line-height: 1.5;
} .cb-content34 {
background-color: #1145b7;
color: #f7f7f7;
}
.cb-content34 .no-padding {
padding: 0px;
margin: 0px;
}
.cb-content34 h2 {
text-transform: uppercase;
font-weight: 600;
font-size: 30px;
padding: 25px 25px 0 25px;
}
.cb-content34 p {
color: #fff;
font-size: 16px;
padding: 0px 25px 25px 25px;
}
.cb-content34 .carousel-item {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
min-height: 300px;
} .cb-content35 {
display: flex;
}
.cb-content35 .col {
width: 33.3%;
color: #ffffff;
background-color: #100f0f;
}
.cb-content35 p {
margin-bottom: 30px;
}
.cb-content35 .left {
display: flex;
flex-direction: column;
width: 33.4%;
background-color: #5a52cf;
}
.cb-content35 .left-image {
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
min-height: 506px;
}
.cb-content35 .left-content {
padding: 50px 50px 30px;
overflow: hidden;
color: #ffffff;
background-color: #5a52cf;
}
@media (max-width: 991px) {
.cb-content35 .left-image {
min-height: 400px;
background-position: center center;
}
.cb-content35 .left-content {
height: auto;
}
.cb-content35 .left-content .mid {
position: static;
transform: translateY(0);
}
}
.cb-content35 .middle {
padding: 30px 30px 30px;
width: 33.4%;
overflow: hidden;
}
.cb-content35 .right {
display: flex;
flex-direction: column;
justify-content: center;
width: 33.4%;
}
.cb-content35 .right-content {
padding: 50px 50px 20px;
border-bottom: solid 1px #565656;
transition: background .3s;
background-color: #5a52cf;
color: #f1f1f1;
height: 33.4%;
}
.cb-content35 .right-content:hover {
background-color: #000;
color: #fff;
}
.cb-content35 .right .right-content:last-child {
border-bottom: none;
}
@media (max-width: 991px) {
..cb-content35 {
flex-wrap: wrap;
}
.cb-content35 .left {
width: 100%;
}
.cb-content35 .middle,
.cb-content35 .right {
width: 100%;
}
}
@media (max-width: 768px) {
.cb-content35 p {
margin-bottom: 15px;
}
.cb-content35 .left-content,
.cb-content35 .middle-content,
.cb-content35 .right-content {
padding-top: 50px;
padding-bottom: 50px;
}
}
@media (max-width: 650px) {
.cb-content35 {
display: block;
}
.cb-content35 .col {
width: 100%;
}
.cb-content35 .middle {
height: auto;
}
.cb-content35 .middle-content .mid {
position: static;
transform: translateY(0);
}
}
@media (max-width: 800px) {
.cb-content35 {
padding-top: 0;
}
} .cb-content36 {
color: #fff;
position: relative;
overflow: hidden;
}
.cb-content36 .item {
width: 50%;
float: left;
min-height: 1px;
position: relative;
}
.cb-content36 .item {
background: #3e393f;
position: relative;
transition: all .3s ease-in-out;
}
.cb-content36 .item--dark {
background: #1583c9;
}
.cb-content36 .item:hover {
background: #e74c3c;
}
.cb-content36 .item:hover:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #fd0078;
}
.cb-content36 .inner {
float: left;
z-index: 2;
position: relative;
}
.cb-content36 .inner--left {
padding: 90px 170px 90px 30px;
text-align: right;
float: right;
}
.cb-content36 .inner--right {
padding: 90px 30px 90px 170px;
}
.cb-content36 h3 {
color: #fff;
text-transform: uppercase;
font-size: 18px;
font-weight: 600;
line-height: auto;
}
.cb-content36 .item p {
opacity: .5;
}
.cb-content36 .item:hover p {
opacity: 1;
}
.cb-content36 img {
position: absolute;
top: 50%;
left: 50%;
margin: -115px 0 0 -115px;
width: 250px;
height: 200px;
}
@media (max-width: 768px) {
.cb-content36 .item,
.cb-content36 .inner {
width: 100%;
}
.cb-content36 .inner--left {
text-align: left;
}
.cb-content36 .inner--left,
.cb-content36 .inner--right {
padding: 30px 15px;
}
.cb-content36 img {
display: none;
}
} .cb-content37 {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.cb-content37 .bg-image {
background: url(http://placehold.it/1280x1280);
background-position: center center;
background-size: cover;
}
.cb-content37 .item {
flex-basis: 33.333333%;
}
.cb-content37 .item .content {
padding: 65px;
display: flex;
flex-direction: row;
height: 50%;
}
.cb-content37 .item .content .content-child {
padding-left: 20px;
}
.cb-content37 .item .content .content-child h3 {
margin: 0;
padding: 0;
}
.cb-content37 .item .icon .fa {
font-size: 48px;
}
@media (max-width: 768px) {
.cb-content37 {
flex-direction: column;
}
.cb-content37 .bg-image {
padding: 100px;
}
} .cb-content38 {
padding: 60px 0;
}
.cb-content38 img {
max-width: 100%;
position: relative;
}
.cb-content38 .image-content::after {
content: "";
background-color: #3498db;
position: absolute;
top: 20px;
left: -5px;
width: 40px;
height: 4px;
}
.cb-content38 .content-box {
padding-left: 25px;
position: relative;
}
.cb-content38 .content-box .fa {
font-size: 36px;
color: #3498db;
position: absolute;
top: 0;
left: -15px;
}
@media (max-width: 768px) {
.cb-content38 .image-content::after {
display: none;
}
} .cb-content39 {
padding: 60px 0;
background-color: #fafafa;
}
.cb-content39 img {
max-width: 100%;
position: relative;
}
.cb-content39 .image-content::after {
content: "";
background-color: #3498db;
position: absolute;
top: 20px;
right: -5px;
width: 40px;
height: 4px;
}
.cb-content39 .content-box {
padding-left: 25px;
position: relative;
}
.cb-content39 .content-box .fa {
font-size: 36px;
color: #3498db;
position: absolute;
top: 0;
left: -10px;
}
@media (max-width: 768px) {
.cb-content39 .image-content::after {
display: none;
}
} .cb-content40 {
background-attachment: fixed;
background-size: cover;
background-position: center center;
}
.cb-content40 .overlay {
height: 100%;
background-color: rgba(79, 79, 79, 0.3);
}
.cb-content40 .row {
padding-top: 60px;
padding-bottom: 60px;
}
.cb-content40 h2 {
font-size: 42px;
color: #fff;
font-weight: 700;
text-transform: uppercase;
}
.cb-content40 h3 {
font-size: 26px;
color: #fff;
} .cb-content41 {
padding: 60px 0;
}
.cb-content41 .top-content {
text-align: center;
margin-bottom: 40px;
}
.cb-content41 .top-content h2 {
font-weight: 26px;
font-weight: 700;
text-transform: uppercase;
}
.cb-content41 .top-content h3 {
margin: 20px 0;
}
.cb-content41 img {
max-width: 100%;
max-height: 200px;
} .cb-content42 {
text-align: center;
color: #fff;
}
.cb-content42 .green-bg {
background-color: #62b151;
}
.cb-content42 .blue-bg {
background-color: #3498db;
}
.cb-content42 .orange-bg {
background-color: #fec107;
}
.cb-content42 .content {
padding: 60px 0;
width: 80%;
margin: 0 auto;
}
.cb-content42 .content h2 {
text-transform: uppercase;
}
.cb-content42 .content .btn {
margin-top: 15px;
border: 1px solid #fff;
background-color: transparent;
color: #fff;
}
.cb-content42 .content hr {
opacity: .2;
}
.cb-content42 .content .fa {
font-size: 48px;
}
.cb-content42 .content .btn .fa {
font-size: 14px;
margin-left: 8px;
}
.cb-content42 .btn:hover {
border-color: #fff;
background-color: #fff;
color: #282828;
transition: .5s ease all;
} .cb-content43 {
padding: 60px 0 40px 0;
text-align: center;
}
.cb-content43 .content {
padding-bottom: 25px;
}
.cb-content43 .content img {
width: 160px;
height: 160px;
border-radius: 50%;
margin-top: 20px;
background-size: cover;
background-position: center center;
}
.cb-content43 .content h2 {
font-weight: 700;
text-transform: uppercase;
font-size: 22px;
margin-top: 10px;
}
.cb-content43 .content p {
margin: 20px 0;
font-size: 14px;
}
.cb-content43 .content .btn {
border-radius: 24px !important;
border: 1px solid #000;
color: #000;
}
.cb-content43 .content .btn:hover {
background-color: #000;
color: #fff;
} .cb-content44 {
padding: 40px 0;
}
.cb-content44 h3 {
text-align: center;
margin-bottom: 40px;
} .cb-content45 {
padding: 60px 0;
}
.cb-content45 p {
font-size: 14px;
}
.cb-content45 .content img {
max-width: 100%;
}
.cb-content45 .title {
font-size: 16px;
color: #0094f1;
margin: 0;
}
.cb-content45 h3 {
font-weight: 700;
text-transform: uppercase;
margin-top: 5px;
margin-bottom: 5px;
}
.cb-content45 .btn {
color: #000000;
border-color: #0094f1;
border-radius: 0 !important;
}
.cb-content45 .btn:hover {
color: #fff;
background-color: #0094f1;
}
@media (max-width: 768px) {
.cb-content45 .btn {
margin-bottom: 15px;
}
} .cb-content46 {
padding: 60px 0;
border-top: 1px solid #f4f5f7;
}
.cb-content46 h3 {
font-size: 16px;
color: #0094f1;
margin: 0;
}
.cb-content46 h2 {
font-weight: 700;
text-transform: uppercase;
margin-bottom: 20px;
}
.cb-content46 img {
max-width: 100%;
border: 4px solid #0094f1;
}
.cb-content46 .content {
margin-bottom: 10px;
}
.cb-content46 .content h4 {
font-size: 16px;
font-weight: 700;
text-transform: uppercase;
position: relative;
padding-left: 14px;
}
.cb-content46 .content h4::before {
content: "";
background-color: #0094f1;
width: 8px;
height: 8px;
position: absolute;
top: 4px;
left: 0;
border-radius: 50%;
}
.cb-content46 .content p {
font-size: 14px;
} .cb-content47 {
background: #3B3B3B;
padding: 150px 0;
text-align: center;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-image: url(//www.krystalspa.ca/wp-content/themes/krystalspa/components/pg.chocka-blocks/images/wheel-1884981_1920.jpg);
}
.cb-content47 .content > h1 {
color: #fff;
font-size: 46px;
font-weight: 700;
margin: 0;
text-transform: uppercase;
}
.cb-content47 .content > h1 {
color: #fff;
font-size: 46px;
font-weight: 700;
margin: 0;
text-transform: uppercase;
}
.cb-content47 .content > h2 {
color: #fff;
font-size: 44px;
margin: 0;
padding-bottom: 30px;
}
.cb-content47 .content5-button > a {
background: #151515 none repeat scroll 0 0;
color: #fff;
font-size: 12px;
font-weight: 700;
padding: 15px 25px;
text-decoration: none;
text-transform: uppercase;
transition: all 0.3s ease 0s;
}
.cb-content47 .content5-button > a:hover {
background: #FCBF29 none repeat scroll 0 0;
}
@media (max-width: 768px) {
.cb-content47 .content > h1 {
font-size: 26px;
}
.cb-content47 .content > h2 {
font-size: 26px;
}
.cb-content47 {
background: #3b3b3b none repeat scroll 0 0;
margin-top: 125px;
padding: 60px 0;
text-align: center;
}
} .cb-content48 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-content48 img {
border-radius: 5px;
display: block;
height: auto;
max-width: 100%;
}
.cb-content48 .title {
margin-bottom: 30px;
}
.cb-content48 .title > img {
display: block;
height: auto;
max-width: 100%;
}
.cb-content48 .title > h1 {
color: #222222;
font-size: 28px;
font-weight: 700;
margin: 0 0 20px;
text-align: center;
}
.cb-content48 .title > p {
color: #777777;
font-size: 14px;
margin: 0 auto;
padding-bottom: 70px;
text-align: center;
width: 70%;
}
.cb-content48 .box {
text-align: center;
}
.cb-content48 h3 {
color: #222222;
font-size: 14px;
font-weight: 700;
margin: 0;
padding: 20px 0;
text-transform: uppercase;
}
.cb-content48 .box > p {
color: #777777;
}
@media (max-width: 768px) {
.cb-content48 .title > h1 {
font-size: 22px;
margin: 0 0 10px;
}
.cb-content48 {
padding-bottom: 60px;
padding-top: 50px;
}
.cb-content48 .title > p {
padding-bottom: 20px;
}
.cb-content48 .box {
text-align: center;
margin-bottom: 30px;
}
.cb-content48 img {
display: inline;
}
.cb-content48 h3 {
padding: 10px 0;
}
} .cb-content49 {
display: block;
}
.cb-content49 .box-1 {
background-color: #141414;
color: #fff;
text-align: center;
padding: 138px 81px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content49 .box-1 h4 {
color: #ffffff;
}
.cb-content49 .box-1 p {
color: #fff;
}
.cb-content49 .box-2 {
background-color: #fff;
color: #000000;
text-align: center;
padding: 138px 81px; background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-content49 .box-2 h4 {
color: #000000;
}
.cb-content49 .box-2 p {
color: #000000;
} .cb-content50 {
padding: 63px 3px;
}
.cb-content50 .bg-color.row {
background-color: #fafafa;
padding: 18px;
padding-bottom: 12px;
margin: 0px;
margin-top: 41px;
}
.cb-content50 .bg-color.row h4 {
color: #333333;
font-size: 20px;
}
.cb-content50 .bg-color.row p {
color: #666666;
font-size: 15px;
}
.cb-content50 .btn-load-more.col-md-12.text-right {
padding: 29px 14px;
}
.cb-content50 button.btn.btn-default.more-view {
background-color: #fdc716;
font-weight: 600;
box-shadow: none;
border: none;
}
@media screen and (max-width: 620px) {
.cb-content50  img {
margin: 0 auto;
width: 100%;
height: 180px;
}
} .cb-title1 {
padding-top: 20px;
padding-bottom: 20px;
}
.cb-title1 h1 {
font-size: 24px;
}
.cb-title1 h1::before {
content: "";
display: block;
height: 2px;
width: 40px;
background-color: #425cbb;
position: relative;
top: -4px;
margin: auto;
}
.cb-title1 h1::after {
content: "";
display: block;
height: 2px;
width: 60px;
background-color: #425cbb;
position: relative;
top: -40px;
margin: auto;
}
.cb-title1 p {
font-size: 17px;
} .cb-title2 {
padding-top: 40px;
}
.cb-title2 h1 {
font-size: 24px;
}
.cb-title2 h1:after {
content: "";
display: flex;
height: 2px;
width: 60px;
background-color: #0082b3;
position: relative;
bottom: 0;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
} .cb-title3 {
margin-bottom: 20px;
margin-top: 20px;
}
.cb-title3 h1 {
position: relative;
font-size: 32px;
text-rendering: optimizeLegibility;
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cb-title3 h1:after {
content: '';
position: absolute;
height: 6px;
width: 6px;
bottom: -3px;
left: 50%;
background-color: #232323;
border-radius: 50%;
} .cb-title4 {
margin-top: 30px;
margin-bottom: 30px;
}
.cb-title4 h1 {
position: relative;
display: inline-block;
margin-bottom: 20px;
margin-top: 0;
font-size: 34px;
text-rendering: optimizeLegibility;
padding: 10px;
}
.cb-title4 h1:before {
content: '';
position: absolute;
height: 20px;
width: 20px;
left: 0;
top: 0;
border-left: 2px solid #000;
border-top: 2px solid #000;
}
.cb-title4 h1:after {
content: '';
position: absolute;
height: 20px;
width: 20px;
right: 0;
bottom: 0;
border-right: 2px solid #000;
border-bottom: 2px solid #000;
} .cb-title5 {
padding-top: 50px;
padding-bottom: 50px;
background-color: #384b92;
}
.cb-title5 h1 {
margin-bottom: 20px;
margin-top: 20px;
font-size: 34px;
font-weight: 700;
text-rendering: optimizeLegibility;
padding: 10px;
color: #fff;
} .cb-title6 {
padding-top: 50px;
padding-bottom: 50px;
background-color: #000000;
}
.cb-title6 .wrap {
height: 100%;
width: 100%;
}
.cb-title6 .wrap .letter {
color: #fff;
font-size: 3em;
font-weight: lighter;
margin-right: 5px;
}
.cb-title6 .wrap .letter.letter-bold {
color: #2e4bcc;
}
.cb-title6 .wrap .letter-1 {
-webkit-animation-delay: .2s;
animation-delay: .2s;
}
.cb-title6 .wrap .letter-2 {
-webkit-animation-delay: .4s;
animation-delay: .4s;
}
.cb-title6 .wrap .letter-3 {
-webkit-animation-delay: .6s;
animation-delay: .6s;
}
.cb-title6 .wrap .letter-4 {
-webkit-animation-delay: .8s;
animation-delay: .8s;
}
.cb-title6 .wrap .letter-5 {
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.cb-title6 .wrap .letter-6 {
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
}
.cb-title6 .wrap .letter-7 {
-webkit-animation-delay: 1.4s;
animation-delay: 1.4s;
}
.cb-title6 .wrap .letter-8 {
-webkit-animation-delay: 1.6s;
animation-delay: 1.6s;
}
.cb-title6 .wrap .letter-9 {
-webkit-animation-delay: 1.8s;
animation-delay: 1.8s;
}
.cb-title6 .wrap .letter-10 {
-webkit-animation-delay: 2.0s;
animation-delay: 2.0s;
}
.cb-title6 .wrap .letter-11 {
-webkit-animation-delay: 2.2s;
animation-delay: 2.2s;
}
.cb-title6 .wrap .letter-12 {
-webkit-animation-delay: 2.4s;
animation-delay: 2.4s;
}
.cb-title6 .wrap .letter-13 {
-webkit-animation-delay: 2.6s;
animation-delay: 2.6s;
}
.cb-title6 .wrap .animated,
.letter {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-duration: 3.6s;
animation-duration: 3.6s;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
25% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
75% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
25% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
75% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.cb-title6 .fadeIn,
.letter {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
.cb-title6 .fadeIn,
.letter {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@media (max-width: 462px) {
.cb-title6 .wrap .letter {
font-size: 1.6em;
}
} .cb-title7 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-title7 h1 {
font-size: 2em;
color: #212121;
text-transform: uppercase;
position: relative;
font-weight: 700;
}
.cb-title7 h1:after {
content: '';
background: #0066b2;
height: 4px;
width: 9%;
position: absolute;
top: 46%;
left: -12%;
float: left;
}
.cb-title7 p {
font-size: 0.9em;
color: #585857;
letter-spacing: 8px;
} .cb-title8 {
width: 100%; background-color: #fff;
}
.cb-title8:hover .bg {
width: 100%;
}
.cb-title8 .bg {
width: 100%;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-title8 .inner {
mix-blend-mode: screen;
width: 100%;
background-color: #fff;
}
.cb-title8 h1 {
font-size: 50px;
letter-spacing: 5px;
color: #000;
} .cb-title9 {
padding-top: 50px;
padding-bottom: 30px;
}
.cb-title9 h2 {
font-size: 28px;
color: #000;
text-align: center;
display: table;
#fff-space: nowrap;
}
.cb-title9 h2:before {
border-top: 1px solid #000;
content: '';
display: table-cell;
position: relative;
top: 0.5em;
width: 35%;
right: 1.5%;
}
.cb-title9 h2:after {
border-top: 1px solid #000;
content: '';
display: table-cell;
position: relative;
top: 0.5em;
width: 35%;
left: 1.5%;
}
.cb-title9 h2:after {
border-top: 1px solid #000;
content: '';
display: table-cell;
position: relative;
top: 0.5em;
width: 35%;
left: 1.5%;
} .cb-title10 {
padding-top: 20px;
padding-bottom: 20px;
}
.cb-title10 .top {
position: absolute;
}
.cb-title10 .top h5 {
color: #f2a447;
}
.cb-title10 .top h2 {
font-size: 42px;
letter-spacing: -.03em;
color: #1c1e1f;
font-weight: 700;
}
.cb-title10 h3 {
font-size: 130px;
color: #ebebeb;
z-index: -1;
display: inline-flex;
}
@media (max-width: 727px) {
.cb-title10 h3 {
font-size: 90px;
}
}
@media (max-width: 394px) {
.cb-title10 h3 {
font-size: 50px;
}
.cb-title10 .top h2 {
font-size: 30px;
}
} .cb-title11 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-title11 .icon i {
font-size: 32px;
margin-right: 15px;
}
.cb-title11 .icon i:hover {
color: #0066ff;
}
.cb-title11 h2 {
position: relative;
color: #000;
margin: 0;
font-size: 32px;
line-height: 40px;
font-weight: 400;
border-left: 2px solid #e7e7e7;
display: inline-block;
padding-left: 15px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.cb-title11 h2 span {
font-size: 16px;
line-height: 18px;
font-weight: 400;
text-transform: capitalize;
display: block;
color: #6A6A6A;
} .cb-title12 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-title12 .icon:hover {
color: rgba(0,0,0,.5);
}
.cb-title12 .icon {
display: inline-block;
height: 24px;
width: 40px;
position: relative;
color: #fff;
background: none repeat scroll 0 0 #DAA520;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.cb-title12 .icon:before {
border-bottom: 10px solid #DAA520;
border-left: 20px solid rgba(0, 0, 0, 0);
border-right: 20px solid rgba(0, 0, 0, 0);
top: -10px;
content: "";
height: 0;
left: 0;
position: absolute;
width: 0;
}
.cb-title12 .icon:after {
border-top: 10px solid #DAA520;
border-left: 20px solid rgba(0, 0, 0, 0);
border-right: 20px solid rgba(0, 0, 0, 0);
bottom: -10px;
content: "";
height: 0;
left: 0;
position: absolute;
width: 0;
}
.cb-title12 .icon i {
font-size: 20px;
line-height: 24px;
}
.cb-title12 h2 {
position: relative;
font-weight: 700;
font-size: 32px;
line-height: 40px;
font-weight: 700;
text-transform: uppercase;
text-align: center;
margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
}
.cb-title12 h2:after {
content: '';
width: 150px;
left: 50%;
margin-left: -75px;
top: 50%;
height: 3px;
background: #dedede;
position: absolute;
}
.cb-title12 h2 span {
padding-top: 30px;
font-size: 18px;
font-weight: 300;
font-style: italic;
text-transform: capitalize;
display: block;
} .cb-title13 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-title13 h2 {
font-size: 30px;
font-weight: 700;
line-height: 24px;
text-transform: uppercase;
}
.cb-title13 h2 span {
color: #ff0000;
}
.cb-title13 h6 {
color: #7c7c7c;
font-size: 18px;
margin-top: 5px;
margin-bottom: 10px;
} .cb-title14 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-title14 h6 {
color: #0080ff;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
margin: 0 0 10px;
}
.cb-title14 h2 {
font-size: 40px;
line-height: 1.3;
}
.cb-title14 p {
color: #999;
} .cb-title15 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-title15 h2 {
font-size: 28px;
line-height: 1.3;
text-transform: uppercase;
font-weight: 800;
}
.cb-title15 p {
color: #999;
}
.cb-title15 i {
color: #5d5959;
} .cb-blog1 {
padding: 40px 0;
}
.cb-blog1 .btn {
margin-top: 20px;
border-radius: 2px;
background: #3498db;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #3498db;
color: #fff;
}
.cb-blog1 .btn:hover {
background-color: transparent;
color: #000;
border: 1px solid #000;
}
.cb-blog1 .post {
position: relative;
width: 31%;
margin-right: 3%;
display: inline;
float: left;
background: #f5f5f5;
}
.cb-blog1 .post-last {
margin-right: 0 !important;
}
.cb-blog1 .post .content {
padding: 20px;
}
.cb-blog1 .date {
background: #fff;
position: absolute;
top: 5%;
right: 7%;
padding: 3px 15px;
font-size: 8px;
letter-spacing: 0;
text-align: center;
font-weight: 800;
}
.cb-blog1 a {
color: #3489db;
text-decoration: none;
text-transform: uppercase;
}
.cb-blog1 a:hover {
color: #282828;
border-bottom: 1px solid #282828;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.cb-blog1 .date p.day {
font-size: 14px;
}
.cb-blog1 h3 {
font-size: 24px;
margin: 0;
margin-bottom: 40px;
}
.cb-blog1 .post h1 {
font-size: 18px;
line-height: 24px;
padding: 0;
margin: 0;
}
.cb-blog1 p {
padding: 0;
margin: 0;
font-size: 12px;
}
.cb-blog1 .post p.content {
padding: 15px 0 15px 0;
margin: 0;
}
.cb-blog1 img {
width: 100%;
} @media (max-width: 750px) {
.cb-blog1 .post {
width: 100%;
margin-right: 0;
margin-bottom: 25px;
}
.cb-blog1 .container {
padding: 0;
}
} .cb-blog2 {
padding: 40px 0;
}
.cb-blog2 .article-wrapper {
margin-bottom: 40px;
}
.cb-blog2 .blog-image img {
width: 100%;
}
.cb-blog2 .#fff-bg {
padding: 20px;
background: #f5f5f5;
box-sizing: border-box;
}
.cb-blog2 .#fff-bg .btn {
border-radius: 2px !important;
background: #3498db;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #3498db;
color: #fff !important;
}
.cb-blog2 .#fff-bg .btn:hover {
background: #fff;
color: #000 !important;
}
.cb-blog2 .blog-meta {
margin: 10px 0;
font-size: 11px;
}
.cb-blog2 .blog-title {
text-transform: uppercase;
font-size: 24px;
margin: 20px 0 10px 0;
text-align: left;
}
.cb-blog2 .blog-content p {
font-size: 12px;
}
.cb-blog2 .blog-tags {
margin-top: 30px;
}
.cb-blog2 .title {
margin-bottom: 40px;
}
.cb-blog2 .title p {
font-size: 12px;
text-align: center;
text-transform: uppercase;
}
.cb-blog2 h1 {
text-transform: uppercase;
text-align: center;
margin-bottom: 0;
font-size: 24px;
}
.cb-blog2 .blog-sidebar input[type="text"] {
width: 100%;
padding: 5px 7px;
border-radius: 2px;
border: 1px solid #f5f5f5;
}
.cb-blog2 .blog-sidebar .text-widget {
margin-top: 25px;
}
.cb-blog2 .blog-sidebar .text-widget p {
font-size: 12px;
}
.cb-blog2 .blog-sidebar h4 {
margin-top: 0;
text-transform: uppercase;
}
.cb-blog2 .blog-sidebar-latest {
margin-top: 25px;
}
.cb-blog2 .blog-sidebar-latest p {
font-size: 11px;
}
.cb-blog2 .blog-sidebar-latest img {
width: 100%;
}
.cb-blog2 .blog-sidebar-pages {
margin-top: 25px;
}
.cb-blog2 .blog-sidebar-pages .fa {
margin-right: 10px;
}
.cb-blog2 .blog-sidebar-pages a {
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
}
.cb-blog2 .blog-sidebar-pages a:hover {
color: #282828;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-blog2 .blog-sidebar-tags {
margin-top: 25px;
}
.cb-blog2 .blog-sidebar-tags a {
background: #3498db;
color: #fff;
text-decoration: none;
font-size: 12px;
padding: 7px;
margin: 0 10px 10px 0;
display: inline;
width: auto;
float: left;
}
.cb-blog2 .blog-pagi {
text-align: center;
}
.cb-blog2 .blog-pagi .pagination .active {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #3498db;
}
.cb-blog2 .blog-pagi .pagination li a {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #282828;
margin-left: 3px;
margin-right: 3px;
padding: 10px;
text-decoration: none;
}
.cb-blog2 .blog-pagi .pagination li a:hover {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #282828;
} .cb-blog3 {
padding: 40px 0;
}
.cb-blog3 .blog-image img {
width: 100%;
}
.cb-blog3 article {
margin-bottom: 40px;
}
.cb-blog3 .#fff-bg {
padding: 20px;
background: #f5f5f5;
box-sizing: border-box;
}
.cb-blog3 .#fff-bg .btn {
border-radius: 2px !important;
background: #3498db;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #3498db;
color: #fff !important;
}
.cb-blog3 .#fff-bg .btn:hover {
background: #fff;
color: #000 !important;
}
.cb-blog3 .blog-meta {
margin: 10px 0;
font-size: 11px;
}
.cb-blog3 .blog-title {
text-transform: uppercase;
font-size: 24px;
margin: 20px 0 10px 0;
text-align: left;
}
.cb-blog3 .blog-content p {
font-size: 12px;
}
.cb-blog3 .blog-tags {
margin-top: 30px;
}
.cb-blog3 .title {
margin-bottom: 40px;
}
.cb-blog3 .title p {
font-size: 12px;
text-align: center;
text-transform: uppercase;
}
.cb-blog3 h1 {
text-transform: uppercase;
text-align: center;
margin-bottom: 0;
font-size: 24px;
}
.cb-blog3 .blog-sidebar input[type="text"] {
width: 100%;
padding: 5px 7px;
border-radius: 2px;
border: 1px solid #f5f5f5;
}
.cb-blog3 .blog-sidebar .text-widget {
margin-top: 25px;
}
.cb-blog3 .blog-sidebar .text-widget p {
font-size: 12px;
}
.cb-blog3 .blog-sidebar h4 {
margin-top: 0;
text-transform: uppercase;
}
.cb-blog3 .blog-sidebar-latest {
margin-top: 25px;
}
.cb-blog3 .blog-sidebar-latest p {
font-size: 11px;
}
.cb-blog3 .blog-sidebar-latest img {
width: 100%;
margin-bottom: 5px;
}
.cb-blog3 .blog-sidebar-pages {
margin-top: 25px;
}
.cb-blog3 .blog-sidebar-pages .fa {
margin-right: 10px;
}
.cb-blog3 .blog-sidebar-pages a {
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
}
.cb-blog3 .blog-sidebar-pages a:hover {
color: #282828;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-blog3 .blog-sidebar-tags {
margin-top: 25px;
}
.cb-blog3 .blog-sidebar-tags a {
background: #3498db;
color: #fff;
text-decoration: none;
font-size: 12px;
padding: 7px;
margin: 0 10px 10px 0;
display: inline;
width: auto;
float: left;
}
.cb-blog3 .blog-pagi {
text-align: center;
}
.cb-blog3 .blog-pagi .pagination .active {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #3498db;
}
.cb-blog3 .blog-pagi .pagination li a {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #282828;
margin-left: 3px;
margin-right: 3px;
padding: 10px;
text-decoration: none;
}
.cb-blog3 .blog-pagi .pagination li a:hover {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #282828;
} .cb-blog4 {
padding: 40px 0;
}
.cb-blog4 .blog-image img {
width: 100%;
}
.cb-blog4 .mt40 {
margin-bottom: 40px;
}
.cb-blog4 .blog-meta {
margin: 10px 0;
font-size: 11px;
}
.cb-blog4 h1.blog-title {
text-transform: uppercase;
font-size: 24px;
margin: 20px 0 10px 0;
text-align: left;
}
.cb-blog4 .blog-content p {
font-size: 14px;
}
.cb-blog4 .blog-tags {
margin-top: 30px;
font-size: 12px;
}
.cb-blog4 .blog-tags a {
background: #3498db;
padding: 4px 8px;
color: #fff;
margin-right: 10px;
}
.cb-blog4 .title {
margin-bottom: 40px;
}
.cb-blog4 .title p {
font-size: 12px;
text-align: center;
text-transform: uppercase;
}
.cb-blog4 h1 {
text-transform: uppercase;
text-align: center;
margin-bottom: 0;
font-size: 24px;
}
.cb-blog4 .blog-sidebar input[type="text"] {
width: 100%;
padding: 5px 7px;
border-radius: 2px;
border: 1px solid #f5f5f5;
}
.cb-blog4 .blog-sidebar .text-widget {
margin-top: 25px;
}
.cb-blog4 .blog-sidebar .text-widget p {
font-size: 12px;
}
.cb-blog4 .blog-sidebar h4 {
margin-top: 0;
text-transform: uppercase;
}
.cb-blog4 .blog-sidebar-latest {
margin-top: 25px;
}
.cb-blog4 .blog-sidebar-latest p {
font-size: 11px;
}
.cb-blog4 .blog-sidebar-latest img {
width: 100%;
}
.cb-blog4 .blog-sidebar-pages {
margin-top: 25px;
}
.cb-blog4 .blog-sidebar-pages .fa {
margin-right: 10px;
}
.cb-blog4 .blog-sidebar-pages a {
font-size: 12px;
text-decoration: none;
text-transform: uppercase;
}
.cb-blog4 .blog-sidebar-pages a:hover {
color: #282828;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-blog4 .blog-sidebar-tags {
margin-top: 25px;
}
.cb-blog4 .blog-sidebar-tags a {
background: #3498db;
color: #fff;
text-decoration: none;
font-size: 12px;
padding: 7px;
margin: 0 10px 10px 0;
display: inline;
width: auto;
float: left;
}
.cb-blog4 .blog-pagi {
text-align: center;
}
.cb-blog4 .blog-pagi .pagination .active {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #3498db;
}
.cb-blog4 .blog-pagi .pagination li a {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #282828;
margin-left: 3px;
margin-right: 3px;
}
.cb-blog4 .blog-pagi .pagination li a:hover {
border-radius: 0;
border: 1px solid #f5f5f5;
color: #fff;
background: #282828;
}
.cb-blog4 .comment-list {
padding-bottom: 5px;
margin-bottom: 30px;
}
.cb-blog4 .comment-list h4 img {
width: 80px;
height: 80px;
margin-right: 20px;
float: left;
}
.cb-blog4 .comment-list h4 {
font-size: 20px;
}
.cb-blog4 .comment-list p {
overflow: hidden;
font-size: 12px;
}
.cb-blog4 .blog-comments .comment-post {
padding: 20px;
border: 1px solid #ededed;
}
.cb-blog4 .blog-comments textarea {
width: 100%;
border-radius: 0;
outline: none;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 1px solid #cccccc;
padding: 10px;
}
.cb-blog4 .comment-list .btn {
border-radius: 2px !important;
background: #3498db;
border-radius: 40px;
border: 1px solid #3498db;
color: #fff !important;
}
.cb-blog4 .comment-list .btn:hover {
border: 1px solid #3498db;
color: #3498db !important;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-blog4 .btn {
border-radius: 2px;
background: #3498db;
border-radius: 40px;
border: 1px solid #3498db;
color: #fff;
}
.cb-blog4 .btn:hover {
border: 1px solid #3498db;
color: #3498db !important;
background: transparent;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-team1 {
padding: 40px 0;
}
.cb-team1 .team-box {
padding: 20px;
text-align: center;
background: #3498db;
border-radius: 2px;
}
.cb-team1 .team-box .icon {
width: 120px;
height: 120px;
border: 1px solid #898989;
border-radius: 80px;
margin: 0 auto;
overflow: hidden;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team1 .team-box .icon span {
font-size: 40px;
color: #898989;
}
.cb-team1 h3 {
font-size: 20px;
}
.cb-team1 p {
font-size: 12px;
font-weight: 200;
color: #f5f5f5;
} .cb-team2 {
padding: 40px;
text-transform: uppercase;
}
.cb-team2 .team-box {
background: #fff;
padding: 20px;
margin-bottom: 30px;
}
.cb-team2 .team-box .team-image {
position: relative;
}
.cb-team2 .team-box .team-image img {
width: 100%;
}
.cb-team2 .team-box h4 {
font-size: 14px;
margin-bottom: 0;
}
.cb-team2 .team-box p {
font-size: 10px;
}
.cb-team2 span.imghover-effect-team {
width: 100%;
height: 100%;
background: #000;
position: absolute;
top: 0;
z-index: 19;
cursor: pointer;
opacity: 0;
overflow: hidden;
}
.cb-team2 .team-image:hover span.imghover-effect-team,
.team-image:hover .social-icons-team {
opacity: 0.9 !important;
transition: all 0.5s ease-in-out;
}
.cb-team2 .social-icons-team {
opacity: 0;
position: absolute;
text-align: center;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease 0s;
width: 100%;
z-index: 99;
}
.cb-team2 .social-icons-team .fa {
width: 18px;
color: #fff;
cursor: pointer;
font-size: 12px;
z-index: 99;
}
.cb-team2 .social-icons-team .fa:hover {
color: #425cbb;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
} .cb-team3 {
padding: 40px;
text-transform: uppercase;
}
.cb-team3 .team-box {
background: #fff;
padding: 20px;
margin-bottom: 30px;
}
.cb-team3 .team-box .team-image {
border-radius: 400px;
height: 200px;
width: 200px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
position: relative;
}
.cb-team3 .team-box .team-image img {
border-radius: 150px;
}
.cb-team3 .team-box h4 {
font-size: 14px;
margin-top: 10px;
}
.cb-team3 .team-box p {
font-size: 10px;
}
.cb-team3 span.imghover-effect-team {
width: 100%;
height: 100%;
z-index: 19;
cursor: pointer;
overflow: hidden;
border-radius: 400px;
}
.cb-team3 .team-image:hover span.imghover-effect-team,
.team-image:hover .social-icons-team {
opacity: 0.9 !important;
transition: all 0.5s ease-in-out;
}
.cb-team3 .social-icons-team {
opacity: 0;
position: absolute;
text-align: center;
top: 50%;
transform: translateY(-50%);
transition: all 0.3s ease 0s;
width: 100%;
z-index: 99;
}
.cb-team3 .social-icons-team .fa {
width: 18px;
color: #fff;
cursor: pointer;
font-size: 12px;
z-index: 99;
}
.cb-team3 .social-icons-team .fa:hover {
color: #425cbb;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.cb-team3 .title h3 {
font-size: 24px;
text-align: center;
margin: 0;
margin-bottom: 10px;
}
.cb-team3 .title p {
font-size: 12px;
text-align: center;
margin: 0;
margin-bottom: 20px;
} .cb-team4 {
padding: 40px;
border-top: 1px solid #f5f5f5;
text-transform: uppercase;
}
.cb-team4 .team-box {
background: #fff;
padding: 20px;
margin-bottom: 30px;
}
.cb-team4 .team-box .team-image {
position: relative;
overflow: hidden;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team4 .team-box .team-image img {
width: 100%;
height: 100%;
}
.cb-team4 .team-box h4 {
font-size: 14px;
margin: 0;
color: #fff;
}
.cb-team4 .team-box p {
font-size: 10px;
color: #fff;
}
.cb-team4 .social-icons .fa {
width: 18px;
color: #fff;
cursor: pointer;
font-size: 12px;
z-index: 99;
}
.cb-team4 .social-icons .fa:hover {
color: #282828;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.cb-team4 .content {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
background: #425cbb;
padding: 10px 0 20px 0;
}
.cb-team4 .content:hover {
height: 100px;
background: #000;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-team4 .title h3 {
font-size: 24px;
text-align: center;
margin: 0;
margin-bottom: 10px;
}
.cb-team4 .title p {
font-size: 12px;
text-align: center;
margin: 0;
margin-bottom: 20px;
} .cb-team5 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team5 .hoverbox {
text-align: center;
overflow: hidden;
position: relative;
transition: all 0.2s ease-out 0s;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team5 .hoverbox:after {
content: "";
display: block;
background: #18a1f9;
position: absolute;
top: 20px;
left: 20px;
bottom: 20px;
right: 20px;
opacity: 0;
transform: rotate3d(-1, 1, 0, 100deg);
transition: all 0.4s ease-in-out 0s;
}
.cb-team5 .hoverbox:hover:after {
opacity: 0.9;
transform: rotate3d(0, 0, 0, 0deg);
}
.cb-team5 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team5 .hoverbox .hoverbox-content {
position: absolute;
top: 45%;
left: 20px;
right: 20px;
opacity: 0;
z-index: 1;
-webkit-transform: translate(10%, -30%);
transform: translate(10%, -30%);
transition: all 0.2s ease-out 0s;
}
.cb-team5 .hoverbox:hover .hoverbox-content {
opacity: 1;
transform: translate(0%, -50%);
transition-delay: 0.2s;
}
.cb-team5 .hoverbox .title {
display: block;
font-size: 22px;
font-weight: 700;
color: #fff;
margin: 0 0 10px 0;
}
.cb-team5 .hoverbox .post {
display: block;
font-size: 15px;
color: #fff;
margin-bottom: 20px;
}
.cb-team5 .hoverbox .social {
padding: 0;
margin: 0;
list-style: none;
}
.cb-team5 .hoverbox .social li {
display: inline-block;
}
.cb-team5 .hoverbox .social li a {
display: block;
width: 35px;
height: 35px;
background: #fff;
border-radius: 50%;
font-size: 17px;
color: #1b1462;
line-height: 35px;
margin-right: 5px;
transition: all 0.4s ease-in-out 0s;
}
.cb-team5 .hoverbox .social li a:hover {
color: #f7f7b9;
background: #fff;
}
@media only screen and (max-width: 990px) {
.cb-team5 .hoverbox {
margin-bottom: 30px;
}
} .cb-team6 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team6 .hoverbox {
overflow: hidden;
position: relative;
transition: all 0.3s ease 0s;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
height: 300px;
}
.cb-team6 .hoverbox:hover {
transform: translateY(-8px);
}
.cb-team6 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team6 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
font-size: 16px;
color: #fff;
background: rgba(0, 0, 0, 0.6);
text-align: center;
padding-top: 40%;
opacity: 0;
position: absolute;
top: 0;
left: 0;
transition: all 0.6s ease 0s;
}
.cb-team6 .hoverbox:hover .hoverbox-content {
opacity: 1;
}
.cb-team6 .hoverbox .hoverbox-content:before,
.cb-team6 .hoverbox .hoverbox-content:after {
content: "";
position: absolute;
top: 20px;
left: 20px;
bottom: 20px;
right: 20px;
opacity: 0;
z-index: 1;
transform: scale(1.5);
transition: all 0.6s ease 0.2s;
}
.cb-team6 .hoverbox .hoverbox-content:before {
border-left: 1px solid rgba(255, 255, 255, 0.9);
border-right: 1px solid rgba(255, 255, 255, 0.9);
left: 30px;
right: 30px;
}
.cb-team6 .hoverbox .hoverbox-content:after {
border-top: 1px solid rgba(255, 255, 255, 0.9);
border-bottom: 1px solid rgba(255, 255, 255, 0.9);
top: 30px;
bottom: 30px;
}
.cb-team6 .hoverbox:hover .hoverbox-content:before,
.cb-team6 .hoverbox:hover .hoverbox-content:after {
opacity: 1;
transform: scale(1);
}
.cb-team6 .hoverbox .title {
font-size: 18px;
font-weight: 700;
color: #fff;
margin: 0 0 15px 0;
}
.cb-team6 .hoverbox-content .post {
display: block;
font-size: 15px;
color: #fff;
}
@media only screen and (max-width: 990px) {
.cb-team6 .hoverbox {
margin-bottom: 30px;
}
} .cb-team7 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team7 .hoverbox {
overflow: hidden;
position: relative;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team7 .hoverbox:after {
content: "";
width: 94%;
height: 94%;
background: rgba(108, 119, 176, 0.8);
position: absolute;
top: 3%;
left: 3%;
opacity: 0;
transform: scaleX(0);
transform-origin: right center 0;
transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s, visibility 0.6s ease 0s, opacity 0.35s ease 0s;
}
.cb-team7 .hoverbox:hover:after {
opacity: 1;
transform: scaleX(1);
transform-origin: left center 0;
transition: transform 0.5s cubic-bezier(1, 0, 0, 1) 0s;
}
.cb-team7 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team7 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
padding-top: 40%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.cb-team7 .hoverbox .title {
font-size: 19px;
font-weight: bold;
color: #fff;
text-align: center;
margin: 10px 0 5px;
transform: scale(1, 0);
}
.cb-team7 .hoverbox:hover .title {
transform: scale(1, 1);
transition: all 0.3s ease 0.5s;
}
.cb-team7 .hoverbox .post {
display: block;
font-size: 16px;
color: #fff;
text-align: center;
transform: scale(0, 1);
}
.cb-team7 .hoverbox:hover .post {
transform: scale(1, 1);
transition: all 0.3s ease 0.7s;
}
.cb-team7 .hoverbox .icon {
width: 100%;
list-style: none;
padding: 0;
margin: 0;
position: absolute;
bottom: 10px;
left: 0;
}
.cb-team7 .hoverbox .icon li {
display: inline-block;
position: relative;
opacity: 0;
}
.cb-team7 .hoverbox:hover .icon li {
opacity: 1;
transition: all 0.3s ease 0.7s;
}
.cb-team7 .hoverbox .icon li:first-child {
left: -20px;
}
.cb-team7 .hoverbox:hover .icon li:first-child {
left: 20px;
}
.cb-team7 .hoverbox .icon li:last-child {
float: right;
right: -20px;
}
.cb-team7 .hoverbox:hover .icon li:last-child {
right: 20px;
}
.cb-team7 .hoverbox .icon li a {
display: block;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 18px;
color: #fff;
}
@media only screen and (max-width: 990px) {
.cb-team7 .hoverbox {
margin-bottom: 30px;
}
} .cb-team8 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team8 .hoverbox {
text-align: center;
border-radius: 6px;
position: relative;
overflow: hidden;
}
.cb-team8 .hoverbox:after {
content: "";
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0) linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 1)) repeat scroll 0 0 / 100% 202%;
position: absolute;
top: 0;
left: 0;
transition: all 0.3s ease-in-out 0s;
}
.cb-team8 .hoverbox:hover:after {
background-position: 100% 100%;
}
.cb-team8 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team8 .hoverbox .hoverbox-content {
width: 100%;
position: absolute;
top: 38%;
left: 0;
z-index: 1;
transition: all 0.3s ease-in-out 0s;
}
.cb-team8 .hoverbox:hover .hoverbox-content {
top: 25%;
}
.cb-team8 .hoverbox .hoverbox-content i {
font-size: 28px;
color: #fff;
}
.cb-team8 .hoverbox .title {
font-size: 18px;
color: #fff;
padding: 10px;
margin: 10px 0 0;
}
.cb-team8 .hoverbox .description {
width: 100%;
font-size: 14px;
color: #fff;
padding: 0 30px;
position: absolute;
top: 35%;
left: 0;
opacity: 0;
z-index: 1;
transition: all 0.3s ease-in-out 0s;
}
.cb-team8 .hoverbox:hover .description {
opacity: 1;
top: 55%;
}
@media only screen and (max-width: 990px) {
.cb-team8 .hoverbox {
margin-bottom: 30px;
}
} .cb-team9 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team9 .hoverbox {
text-align: center;
overflow: hidden;
hoverbox-6-shadow: 0 0 5px #7e7d7d;
position: relative;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team9 .hoverbox:after {
content: "";
width: 100%;
height: 100%;
background: rgba(2, 162, 221, 0.9);
position: absolute;
top: 0;
left: 0;
opacity: 0;
transition: all 0.5s ease 0s;
}
.cb-team9 .hoverbox:hover:after {
opacity: 1;
}
.cb-team9 .hoverbox img {
width: 100%;
height: auto;
transition: all 1.5s ease 0s;
}
.cb-team9 .hoverbox:hover img {
transform: scale(1.2);
}
.cb-team9 .hoverbox .icon {
width: 100%;
height: 100%;
list-style: none;
padding: 0;
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.cb-team9 .hoverbox .icon li {
display: inline-block;
}
.cb-team9 .hoverbox .icon li a {
display: inline-block;
width: 45px;
height: 45px;
line-height: 45px;
border-radius: 50%;
position: absolute;
margin: 0 auto;
top: 50%;
border: 1px solid #fff;
font-size: 20px;
color: #fff;
opacity: 0;
transition: all 0.6s ease 0s;
}
.cb-team9 .hoverbox:hover .icon li a {
top: 30%;
opacity: 1;
}
.cb-team9 .hoverbox .icon li a:hover {
background: #fff;
color: #02a2dd;
}
.cb-team9 .hoverbox .icon li:first-child a {
left: -90%;
right: 0;
}
.cb-team9 .hoverbox:hover .icon li:first-child a {
left: -55px;
}
.cb-team9 .hoverbox .icon li:last-child a {
right: -90%;
left: 0;
}
.cb-team9 .hoverbox:hover .icon li:last-child a {
right: -55px;
}
.cb-team9 .hoverbox .hoverbox-content {
width: 100%;
padding: 20px 10px;
background: rgba(0, 0, 0, 0.1);
position: absolute;
bottom: -100px;
left: 0;
z-index: 1;
transition: all 0.6s ease 0s;
}
.cb-team9 .hoverbox:hover .hoverbox-content {
bottom: 0;
}
.cb-team9 .hoverbox .title {
font-size: 18px;
font-weight: bold;
color: #fff;
margin-top: 0;
}
.cb-team9 .hoverbox .post {
display: block;
font-size: 14px;
color: #fff;
}
@media only screen and (max-width: 990px) {
.cb-team9 .hoverbox {
margin-bottom: 30px;
}
} .cb-team10 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team10 .hoverbox {
text-align: center;
hoverbox-7-shadow: 0 0 5px #7e7d7d;
position: relative;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
height: 300px;
}
.cb-team10 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team10 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
transition: all 0.5s ease 0s;
}
.cb-team10 .hoverbox .hoverbox-content:before,
.cb-team10 .hoverbox .hoverbox-content:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
opacity: 0;
transform: scale(1.5);
transition: all 0.6s ease 0.3s;
}
.cb-team10 .hoverbox:hover .hoverbox-content {
background-color: #18a1f9;
}
.cb-team10 .hoverbox .hoverbox-content:before {
border-left: 1px solid #040404;
border-top: 1px solid #040404;
top: 19px;
left: 19px;
}
.cb-team10 .hoverbox .hoverbox-content:after {
border-bottom: 1px solid #040404;
border-right: 1px solid #040404;
bottom: 19px;
right: 19px;
}
.cb-team10 .hoverbox:hover .hoverbox-content:before,
.cb-team10 .hoverbox:hover .hoverbox-content:after {
opacity: 1;
transform: scale(1);
}
.cb-team10 .hoverbox .title {
font-size: 22px;
color: #000;
margin: 0;
position: relative;
top: 0;
opacity: 0;
transition: all 1s ease 0.01s;
}
.cb-team10 .hoverbox:hover .title {
top: 39%;
opacity: 1;
transition: all 0.5s cubic-bezier(1, -0.53, 0.405, 1.425) 0.01s;
}
.cb-team10 .hoverbox .title:after {
content: "";
width: 0;
height: 1px;
background: #040404;
position: absolute;
bottom: -8px;
left: 0;
right: 0;
margin: 0 auto;
transition: all 1s ease 0s;
}
.cb-team10 .hoverbox:hover .title:after {
width: 80%;
transition: all 1s ease 0.8s;
}
.cb-team10 .hoverbox .icon {
width: 100%;
list-style: none;
padding: 0;
margin: 0 auto;
position: absolute;
bottom: 0;
opacity: 0;
transition-duration: 0.6s;
transition-timing-function: cubic-bezier(1, -0.53, 0.405, 1.425);
transition-delay: 0.1s;
}
.cb-team10 .hoverbox:hover .icon {
bottom: 39%;
opacity: 1;
}
.cb-team10 .hoverbox .icon li {
display: inline-block;
}
.cb-team10 .hoverbox .icon li a {
display: block;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
font-size: 18px;
color: #000;
border: 1px solid #000;
margin-right: 5px;
transition: all 0.3s ease-in-out 0s;
}
.cb-team10 .hoverbox .icon li a:hover {
background: #000;
color: #fff;
}
@media only screen and (max-width: 990px) {
.cb-team10 .hoverbox {
margin-bottom: 30px;
}
} .cb-team11 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team11 .hoverbox {
text-align: center;
overflow: hidden;
position: relative;
transition: all 0.5s ease 0s;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team11 .hoverbox img {
width: 100%;
height: 100%;
position: relative;
bottom: 0;
z-index: 1;
transition: all 0.3s ease 0s;
}
.cb-team11 .hoverbox:hover img {
bottom: -110px;
}
.cb-team11 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
background: #527ead;
padding: 25px;
color: #e7f2ec;
position: absolute;
top: 0;
left: 0;
}
.cb-team11 .hoverbox .title {
font-size: 22px;
font-weight: 700;
text-transform: capitalize;
margin: 0 0 10px 0;
}
.cb-team11 .hoverbox .icon {
list-style: none;
padding: 0;
margin: 0;
}
.cb-team11 .hoverbox .icon li {
display: inline-block;
}
.cb-team11 .hoverbox .icon li a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
background: #83c5de;
font-size: 18px;
color: #fff;
transition: all 0.3s ease 0s;
}
.cb-team11 .hoverbox .icon li a:hover {
background: #527ead;
}
@media only screen and (max-width: 990px) {
.cb-team11 .hoverbox {
margin-bottom: 30px;
}
} .cb-team12 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team12 .hoverbox {
text-align: center;
overflow: hidden;
position: relative;
hoverbox-10-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team12 .hoverbox img {
width: 100%;
height: auto;
position: relative;
left: 0;
transition: all 0.3s ease 0s;
}
.cb-team12 .hoverbox:hover img {
left: 100%;
transform: scale(0.7) rotateZ(180deg);
}
.cb-team12 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
background: #696059;
position: absolute;
top: 0;
left: -100%;
transform: scale(0.7) rotateZ(180deg);
transition: all 0.3s ease 0s;
}
.cb-team12 .hoverbox:hover .hoverbox-content {
left: 0;
transform: scale(1) rotateZ(0deg);
}
.cb-team12 .hoverbox .title {
font-size: 21px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
border-bottom: 1px solid #fff;
padding-bottom: 20px;
margin-top: 40px;
}
.cb-team12 .hoverbox .description {
font-size: 14px;
font-style: italic;
color: #fff;
padding: 0 10px;
margin: 15px 0;
}
.cb-team12 .hoverbox .read-more {
display: block;
width: 100px;
padding: 7px 0;
background: #ecdfbd;
border-radius: 10px 0 10px 0;
font-size: 14px;
color: #484141;
text-transform: capitalize;
margin: 0 auto;
transition: all 0.3s ease 0s;
background-repeat: no-repeat;
}
.cb-team12 .hoverbox .read-more:hover {
border-radius: 0 10px 0 10px;
}
@media only screen and (max-width: 990px) {
.cb-team12 .hoverbox {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 360px) {
.cb-team12 .hoverbox .title {
margin-top: 10px;
padding-bottom: 8px;
}
} .cb-team13 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team13 .hoverbox {
text-align: center;
hoverbox-11-shadow: 0 0 5px #7e7d7d;
overflow: hidden;
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
height: 300px;
}
.cb-team13 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team13 .hoverbox .hoverbox-layer {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
-o-transition: all 0.3s linear 0.3s;
-moz-transition: all 0.3s linear 0.3s;
-ms-transition: all 0.3s linear 0.3s;
-webkit-transition: all 0.3s linear 0.3s;
transition: all 0.3s linear 0.3s;
}
.cb-team13 .hoverbox:hover .hoverbox-layer {
hoverbox-11-shadow: inset 0 0 25px 250px rgba(35, 31, 31, 0.7);
}
.cb-team13 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
background: transparent;
padding-top: 35px;
color: #fff;
position: absolute;
top: 0;
left: 0;
opacity: 0;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
-o-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
-webkit-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.cb-team13 .hoverbox:hover .hoverbox-content {
opacity: 1;
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
-moz-transition-delay: 0.5s;
-webkit-transition-delay: 0.5s;
-o-transition-delay: 0.5s;
-ms-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.cb-team13 .hoverbox .title {
font-size: 21px;
font-weight: 700;
text-transform: uppercase;
border-bottom: 1px solid #fff;
padding-bottom: 20px;
margin-top: 20px;
}
.cb-team13 .hoverbox .description {
font-size: 14px;
font-style: italic;
padding: 0 10px;
margin: 15px 0;
}
.cb-team13 .hoverbox .read-more {
display: block;
width: 120px;
padding: 10px 0;
background: #18a1f9;
border-radius: 5px;
font-size: 14px;
color: #fff;
text-transform: capitalize;
margin: 0 auto;
transition: all 0.3s ease 0s;
}
.cb-team13 .hoverbox .read-more:hover {
background: #c62020;
}
@media only screen and (max-width: 990px) {
.cb-team13 .hoverbox {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 479px) {
.cb-team13 .hoverbox .hoverbox-content {
padding-top: 0;
}
}
@media only screen and (max-width: 360px) {
.cb-team13 .hoverbox .title {
margin-top: 10px;
padding-bottom: 10px;
}
} .cb-team14 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team14 .hoverbox {
overflow: hidden;
position: relative;
hoverbox-13-shadow: 0 0 5px #a3a3a3;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team14 .hoverbox:before {
content: "";
width: 80%;
height: 220%;
background: #18a1f9;
position: absolute;
top: -50%;
left: -100%;
z-index: 1;
transform: rotate(25deg);
transform-origin: center top 0;
transition: all 0.5s ease 0s;
}
.cb-team14 .hoverbox:hover:before {
left: 10%;
}
.cb-team14 .hoverbox:after {
content: "";
width: 55%;
height: 175%;
background-color: rgba(0, 0, 0, 0.8);
position: absolute;
bottom: -1000%;
left: 53%;
transform: rotate(-33deg);
transform-origin: center bottom 0;
transition: all 0.8s ease 0s;
}
.cb-team14 .hoverbox:hover:after {
bottom: -70%;
}
.cb-team14 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team14 .hoverbox .hoverbox-content {
width: 100%;
position: absolute;
top: -100%;
left: 0;
color: #fff;
padding: 0 20px;
z-index: 2;
transition: all 1.1s ease 0s;
}
.cb-team14 .hoverbox:hover .hoverbox-content {
top: 30px;
}
.cb-team14 .hoverbox .title {
font-size: 24px;
margin: 0;
text-transform: capitalize;
}
.cb-team14 .hoverbox .post {
display: inline-block;
font-size: 14px;
text-transform: capitalize;
margin-top: 5px;
}
.cb-team14 .hoverbox .icon {
width: 100%;
list-style: none;
padding: 0 20px;
margin: 0;
position: absolute;
bottom: -100%;
left: 0;
z-index: 2;
transition: all 1.1s ease 0s;
}
.cb-team14 .hoverbox:hover .icon {
bottom: 25px;
}
.cb-team14 .hoverbox .icon li {
display: inline-block;
}
.cb-team14 .hoverbox .icon li a {
display: inline-block;
width: 35px;
height: 35px;
line-height: 35px;
background: #444;
border-radius: 50%;
margin: 0 3px;
font-size: 14px;
color: #fff;
text-align: center;
transition: all 0.5s ease 0s;
}
.cb-team14 .hoverbox .icon li a:hover {
background: #fff;
color: #ff402a;
}
@media only screen and (max-width: 990px) {
.cb-team14 .hoverbox {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 479px) {
.cb-team14 .hoverbox .title {
font-size: 20px;
}
} .cb-team15 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team15 .hoverbox {
background: #212121;
position: relative;
overflow: hidden;
color: #fff;
text-align: center;
hoverbox-14-shadow: 0 0 5px #555;
transition: all 0.55s ease;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team15 .hoverbox img {
width: 100%;
height: auto;
transition: all 0.55s ease;
}
.cb-team15 .hoverbox:hover img {
opacity: 0.5;
}
.cb-team15 .hoverbox .hoverbox-content {
padding: 5px 10px 10px;
position: absolute;
bottom: 25px;
right: 25px;
}
.cb-team15 .hoverbox .hoverbox-content:before,
.cb-team15 .hoverbox .hoverbox-content:after {
content: "";
width: 767px;
height: 2px;
position: absolute;
background: #fff;
-webkit-transition: all 0.55s ease;
transition: all 0.55s ease;
}
.cb-team15 .hoverbox .hoverbox-content:before {
top: 0;
left: 0;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.cb-team15 .hoverbox .hoverbox-content:after {
bottom: 0;
right: 0;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.cb-team15 .hoverbox .hoverbox-content-inner:before,
.cb-team15 .hoverbox .hoverbox-content-inner:after {
content: "";
width: 2px;
height: 767px;
position: absolute;
background: #fff;
-webkit-transition: all 0.55s ease;
transition: all 0.55s ease;
}
.cb-team15 .hoverbox .hoverbox-content-inner:before {
top: 0;
left: 0;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
.cb-team15 .hoverbox .hoverbox-content-inner:after {
bottom: 0;
right: 0;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.cb-team15 .hoverbox:hover .hoverbox-content:before,
.cb-team15 .hoverbox:hover .hoverbox-content:after,
.cb-team15 .hoverbox:hover .hoverbox-content-inner:before,
.cb-team15 .hoverbox:hover .hoverbox-content-inner:after {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.cb-team15 .hoverbox:hover .hoverbox-content:before,
.cb-team15 .hoverbox:hover .hoverbox-content:after {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.cb-team15 .hoverbox .title {
font-size: 24px;
font-weight: 400;
margin: 0;
text-transform: uppercase;
}
.cb-team15 .hoverbox .post {
display: block;
font-size: 16px;
font-weight: 700;
color: #434343;
padding: 5px 10px;
background: #fff;
text-transform: capitalize;
}
@media only screen and (max-width: 990px) {
.cb-team15 .hoverbox {
margin-bottom: 30px;
}
} .cb-team16 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team16 .hoverbox {
position: relative;
overflow: hidden;
hoverbox-15-shadow: 0 0 5px #808080;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team16 .hoverbox:before,
.cb-team16 .hoverbox:after {
content: "";
width: 0;
height: 0;
position: absolute;
opacity: 0;
z-index: 1;
transition: all 0.5s ease 0s;
}
.cb-team16 .hoverbox:before {
bottom: 5%;
left: 5%;
border-bottom: 2px solid #fff;
border-left: 2px solid #fff;
}
.cb-team16 .hoverbox:after {
top: 5%;
right: 5%;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}
.cb-team16 .hoverbox:hover:before,
.cb-team16 .hoverbox:hover:after {
opacity: 1;
width: 90%;
height: 90%;
}
.cb-team16 .hoverbox img {
width: 100%;
height: auto;
transform: scale(1);
transition: all 0.5s ease 0s;
}
.cb-team16 .hoverbox:hover img {
transform: scale(1.05);
}
.cb-team16 .hoverbox .hoverbox-content {
width: 100%;
position: absolute;
bottom: 10%;
left: 10%;
}
.cb-team16 .hoverbox .title,
.cb-team16 .hoverbox .post {
display: block;
font-size: 25px;
color: #fff;
line-height: 25px;
margin: 0;
position: absolute;
bottom: 0;
left: 0;
opacity: 1;
transition: all 0.5s ease 0s;
}
.cb-team16 .hoverbox:hover .title,
.cb-team16 .hoverbox .post {
opacity: 0;
}
.cb-team16 .hoverbox:hover .post {
opacity: 1;
}
@media only screen and (max-width: 990px) {
.cb-team16 .hoverbox {
margin-bottom: 20px;
}
} .cb-team17 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team17 .hoverbox {
text-align: center;
}
.cb-team17 .hoverbox .hoverbox_img {
position: relative;
overflow: hidden;
}
.cb-team17 .hoverbox .hoverbox_img:after {
content: "";
width: 100%;
height: 100%;
background-color: rgba(255,255,255,0.2);
position: absolute;
bottom: -100%;
left: 0;
transition: all 0.3s ease 0s;
}
.cb-team17 .hoverbox:hover .hoverbox_img:after {
bottom: 0;
}
.cb-team17 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team17 .hoverbox .social {
padding: 0 0 18px 0;
margin: 0;
list-style: none;
position: absolute;
top: -100%;
right: 10px;
background: #000;
border-radius: 0 0 20px 20px;
z-index: 1;
transition: all 0.3s ease 0s;
}
.cb-team17 .hoverbox:hover .social {
top: 0;
}
.cb-team17 .hoverbox .social li a {
display: block;
padding: 15px;
font-size: 15px;
color: #fff;
}
.cb-team17 .hoverbox:hover .social li a:hover {
color: #2a4284;
}
.cb-team17 .hoverbox .content {
padding: 20px 0;
background: #000;
}
.cb-team17 .hoverbox .content h3 {
font-size: 18px;
font-weight: bold;
color: #fff;
text-transform: capitalize;
margin: 0 0 20px;
position: relative;
}
.cb-team17 .hoverbox .content h3:before {
content: "";
width: 25px;
height: 1px;
background: #fff;
position: absolute;
bottom: -10px;
right: 50%;
margin-right: 9px;
transition-duration: 0.25s;
}
.cb-team17 .hoverbox .content h3:after {
content: "";
width: 25px;
height: 1px;
background: #fff;
position: absolute;
bottom: -10px;
left: 50%;
margin-left: 9px;
transition-duration: 0.25s;
}
.cb-team17 .hoverbox:hover .content h3:before,
.cb-team17  .hoverbox:hover .content h3:after {
width: 50px;
}
.cb-team17 .hoverbox .content span {
display: inline-block;
font-size: 15px;
color: #ffffff;
text-transform: capitalize;
font-weight: bold;
}
.cb-team17 .hoverbox .content span:before {
content: "";
display: block;
width: 7px;
height: 7px;
border-radius: 50%;
background: #fff;
margin: 0 auto;
position: relative;
top: -13px;
}
@media only screen and (max-width: 990px){
.cb-team17 .hoverbox {
margin-bottom: 30px;
}
} .cb-team18 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team18 .hoverbox {
text-align: center;
background: #000;
color: #fff;
overflow: hidden;
position: relative;
transition: all 0.35s ease 0s;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team18 .hoverbox:before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 100%;
background: #18a1f9;
opacity: 0.4;
transition: all 0.35s ease-in 0s;
}
.cb-team18 .hoverbox:hover:before {
right: 0;
transition: all 0.35s ease-out 0s;
}
.cb-team18 .hoverbox:after {
content: "";
position: absolute;
top: 50%;
left: 100%;
border-width: 200px 200px 200px 0;
border-style: solid;
border-color: transparent #000 transparent transparent;
opacity: 0.9;
transform: translateY(-50%);
transition: all 0.35s ease-out 0s;
}
.cb-team18 .hoverbox:hover:after {
left: 50%;
transition: all 0.35s ease-in 0.2s;
}
.cb-team18 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team18 .hoverbox:hover img {
opacity: 0.4;
}
.cb-team18 .hoverbox .hoverbox-content {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.cb-team18 .hoverbox .title,
.cb-team18 .hoverbox .post {
width: 100%;
padding: 0 20px;
margin: 0;
position: absolute;
top: 47%;
left: 0;
font-size: 22px;
font-weight: 700;
opacity: 0;
transform: translate(-25%, -50%);
transition: all 0.3s ease-out 0.2s;
}
.cb-team18 .hoverbox .post {
font-size: 15px;
transform: translate(-25%, 60%);
}
.cb-team18 .hoverbox:hover .title {
opacity: 1;
transform: translate(0, -50%);
transition-delay: 0.7s;
}
.cb-team18 .hoverbox:hover .post {
opacity: 1;
transform: translate(0, 60%);
transition-delay: 0.7s;
}
@media only screen and (max-width: 990px) {
.cb-team18 .hoverbox {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 767px) {
.cb-team18 .hoverbox:after {
border-width: 800px 800px 800px 0;
}
} .cb-team19 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team19 .hoverbox {
border: 4px solid #fff;
hoverbox-20-shadow: 0 0 10px #808080;
position: relative;
text-align: center;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
height: 300px;
}
.cb-team19 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team19 .hoverbox .over-layer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
background: rgba(0, 0, 0, 0.8);
transition: all 0.50s ease;
}
.cb-team19 .hoverbox:hover .over-layer {
opacity: 1;
}
.cb-team19 .hoverbox .post {
position: relative;
top: 35%;
color: #fff;
opacity: 0;
text-transform: uppercase;
text-decoration: none;
transition: all 0.50s ease 0s;
}
.cb-team19 .hoverbox:hover .over-layer .post {
opacity: 1;
top: 40%;
}
.cb-team19 .hoverbox .title {
position: relative;
bottom: -45%;
opacity: 0;
font-size: 18px;
color: #808080;
transition: all 0.50s ease 0.4s;
text-decoration: none;
}
.cb-team19 .hoverbox:hover .over-layer .title {
opacity: 1;
bottom: -40%;
}
.cb-team19 a {
text-decoration: none;
}
@media only screen and (max-width: 990px) {
.cb-team19 .hoverbox {
margin-bottom: 20px;
}
} .cb-team20 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-team20 .hoverbox {
position: relative;
overflow: hidden;
text-align: center;
height: 300px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-team20 .hoverbox:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.6);
opacity: 0;
transition: all 0.5s ease 0s;
}
.cb-team20 .hoverbox:hover:after {
opacity: 1;
}
.cb-team20 .hoverbox img {
width: 100%;
height: auto;
}
.cb-team20 .hoverbox .icon1,
.cb-team20 .hoverbox .icon2 {
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
margin-right: 20px;
background: #fff;
position: absolute;
top: 35%;
opacity: 0;
z-index: 2;
transition: all 0.5s ease 0s;
}
.cb-team20 .hoverbox .icon1 {
left: 15%;
}
.cb-team20 .hoverbox:hover .icon1 {
left: 30%;
opacity: 1;
}
.cb-team20 .hoverbox .icon2 {
right: 15%;
}
.cb-team20 .hoverbox:hover .icon2 {
right: 30%;
opacity: 1;
}
.cb-team20 .hoverbox .icon a {
display: block;
font-size: 22px;
color: #000;
}
.cb-team20 .hoverbox .hoverbox-content {
width: 100%;
background: #18a1f9;
position: absolute;
bottom: -100%;
left: 0;
padding: 15px 0;
color: #fff;
z-index: 2;
transition: all 0.5s ease 0s;
}
.cb-team20 .hoverbox:hover .hoverbox-content {
bottom: 0;
}
.cb-team20 .hoverbox .title {
font-size: 24px;
margin: 0;
}
.cb-team20 .hoverbox .post {
display: block;
font-size: 14px;
text-transform: capitalize;
margin-top: 5px;
}
@media only screen and (max-width: 990px) {
.cb-team20 .hoverbox {
margin-bottom: 30px;
}
}
@media only screen and (max-width: 480px) {
.cb-team20 .hoverbox:hover .icon1 {
left: 27%;
}
.cb-team20 .hoverbox:hover .icon2 {
right: 27%;
}
} .cb-skills1 {
width: 100%;
background: #fff;
padding: 40px;
position: relative;
}
.cb-skills1 h4 {
margin-top: 0;
}
.cb-skills1 p {
font-size: 13px;
font-weight: 200;
width: 90%;
color: #000;
}
.cb-skills1 img {
margin-top: 5px;
margin-bottom: 5px;
}
.cb-skills1 p.prog-para {
color: #000;
margin: 0;
}
.cb-skills1 .progress {
height: 8px;
width: 90%;
border-radius: 20px;
box-shadow: none;
overflow: hidden;
margin-top: 10px;
margin-bottom: 10px;
}
.cb-skills1 .progress-bar {
background: #425cbb;
position: relative;
border-radius: 20px;
} .cb-skills2 {
width: 100%;
background: #fff;
padding: 40px;
}
.cb-skills2 h2 {
}
.cb-skills2 h2 span {
color: #425cbb;
}
.cb-skills2 .progress-item {
background-color: #fff;
}
.cb-skills2 .progress-item span {
color: #000;
}
.cb-skills2 .progress-item h4 {
float: right;
color: #000;
}
.cb-skills2 .progress-item .progress-bar {
background-color: #425cbb;
} .cb-skills3 {
padding: 40px 0;
background-color: #282828;
}
.cb-skills3 h1 {
text-align: center;
font-size: 24px;
text-transform: uppercase;
margin-top: 0;
color: #fff;
}
.cb-skills3 .chart2 {
position: relative;
display: inline-block;
margin: 20px 10px;
color: #fff;
font-size: 14px;
text-align: center;
}
.cb-skills3 .chart2 canvas {
position: absolute;
top: 0;
left: 0;
} .cb-skills4 {
padding: 40px 0;
}
.cb-skills4 h1 {
text-align: center;
font-size: 24px;
text-transform: uppercase;
margin-top: 0;
}
.cb-skills4 .chart {
position: relative;
display: inline-block;
margin: 20px 10px;
color: #282828;
font-size: 14px;
text-align: center;
}
.cb-skills4 .chart canvas {
position: absolute;
top: 0;
left: 0;
} .cb-skills5 {
padding-top: 50px;
padding-bottom: 50px;
background-color: #fff;
text-align: center;
}
.cb-skills5 .counter {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.cb-skills5 .counter .counter-count {
-webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
-moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 1);
font-size: 40px;
background-color: #1583c9;
border-radius: 50%;
color: #ffffff;
text-align: center;
line-height: 172px;
height: 192px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
display: flex;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
width: 192px;
justify-content: center;
}
.cb-skills5 .counter .counter-count .counter-percent {
font-size: 40px;
color: #ffffff;
margin-left: 1px;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
}
.cb-skills5 .counter .counter-bottom {
font-size: 24px;
font-weight: 400;
color: #000000;
line-height: 34px;
display: flex;
justify-content: center;
} .cb-pricing1 {
padding-top: 30px;
padding-bottom: 30px;
}
.cb-pricing1 ul.pricing-table {
background: #fff;
border: 1px solid #ccc;
list-style: none;
margin: 0;
padding: 15px;
text-transform: uppercase;
margin-bottom: 15px;
}
.cb-pricing1 ul.pricing-table li {
text-align: center;
padding: 5px 0;
margin: 0;
color: #393939;
}
.cb-pricing1 ul.pricing-table li.first {
padding: 15px 0 5px 0;
}
.cb-pricing1 ul.pricing-table li.title {
font-size: 16px;
padding: 15px 0;
color: #282828;
}
.cb-pricing1 ul.pricing-table li.price {
color: #425cbb;
font-size: 58px;
font-weight: bold;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 0;
position: relative;
}
.cb-pricing1 ul.pricing-table li.price span.price-val {
position: absolute;
top: 3px;
font-size: 32px;
}
.cb-pricing1 ul.pricing-table li.price span.price-month {
color: #908b8b;
font-size: 10px;
}
.cb-pricing1 ul.pricing-table li span.dark {
color: #191818;
}
.cb-pricing1 ul.pricing-table .btn {
border-radius: 2px;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
margin-top: 15px;
text-align: center;
text-decoration: none;
}
.cb-pricing1 ul.pricing-table .btn:hover {
background: #425cbb;
color: #fff;
} .cb-pricing2 {
width: 100%;
height: 100%;
min-height: 350px;
background: no-repeat center center;
background-attachment: scroll;
background-color: #b7b7b7;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
position: relative;
padding: 40px 0;
}
.cb-pricing2 ul.pricing-table {
background: #fff;
border: 1px solid #ccc;
list-style: none;
margin: 0;
padding: 15px;
text-transform: uppercase;
margin-bottom: 15px;
}
.cb-pricing2 ul.pricing-table .btn {
margin-top: 15px;
text-align: center;
}
.cb-pricing2 ul.pricing-table li {
text-align: center;
padding: 5px 0;
margin: 0;
color: #393939;
}
.cb-pricing2 ul.pricing-table li.first {
padding: 15px 0 5px 0;
}
.cb-pricing2 ul.pricing-table li.title {
font-size: 16px;
padding: 15px 0;
color: #282828;
}
.cb-pricing2 ul.pricing-table li.price {
color: #425cbb;
font-size: 58px;
font-weight: bold;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 0;
position: relative;
}
.cb-pricing2 ul.pricing-table li.price span.price-val {
position: absolute;
top: 3px;
font-size: 32px;
}
.cb-pricing2 ul.pricing-table li.price span.price-month {
color: #908b8b;
font-size: 10px;
}
.cb-pricing2 ul.pricing-table li span.dark {
color: #191818;
}
.cb-pricing2 ul.pricing-table .btn {
border-radius: 2px;
background: transparent;
padding: 12px 24px;
border: 1px solid #425cbb;
color: #425cbb;
margin-top: 15px;
text-align: center;
text-decoration: none;
}
.cb-pricing2 ul.pricing-table .btn:hover {
background: #425cbb;
color: #fff;
} .cb-pricing3 {
padding: 40px 0 30px 0;
}
.cb-pricing3 .circle {
background: #ffffff;
width: 300px;
height: 300px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
text-align: center;
border: 8px solid #ededed;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-bottom: 10px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.cb-pricing3 .circle h4 {
margin: 0;
padding: 0;
font-size: 18px;
}
.cb-pricing3 .circle .fa {
font-size: 38px;
}
.cb-pricing3 .circle span.price-large {
font-size: 58px;
font-weight: bold;
}
.cb-pricing3 .price-small {
font-size: 20px;
}
.cb-pricing3 .circle:hover {
background: #282828;
color: #ffffff;
}
.cb-pricing3 p {
font-size: 12px;
}
.cb-pricing3 .btn {
border-radius: 2px !important;
background-color: #425cbb;
color: #fff;
border-radius: 40px;
padding: 6px 24px;
border: 1px solid #425cbb;
}
.cb-pricing3 .btn:hover {
background-color: transparent;
color: #fff;
border: 1px solid #fff;
}
.cb-pricing3 .nopdadding {
padding: 0px;
margin: 0px;
} .cb-pricing4 {
padding: 40px 0 30px 0;
}
.cb-pricing4 .rectangle {
background: #282828;
padding: 35px;
text-align: center;
width: 100%;
color: #fff;
border: 8px solid #ededed;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
margin-bottom: 10px;
margin: 0 auto;
}
.cb-pricing4 .rectangle h4 {
margin: 0;
padding: 0;
font-size: 18px;
}
.cb-pricing4 .rectangle .fa {
font-size: 38px;
}
.cb-pricing4 .rectangle span.price-large {
font-size: 58px;
font-weight: bold;
}
.cb-pricing4 .price-small {
font-size: 20px;
}
.cb-pricing4 .rectangle:hover {
background: #fff;
color: #282828;
}
.cb-pricing4 p {
font-size: 12px;
}
.cb-pricing4 .btn {
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-pricing4 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-pricing5 {
padding: 40px 0;
}
.cb-pricing5 .table {
margin-top: 15px;
width: 100%;
padding: 30px 10px;
border: 2px solid #282828;
}
.cb-pricing5 .long-table {
margin-top: 0;
padding: 40px 10px 50px 10px;
}
.cb-pricing5 h3 {
margin: 0;
font-size: 16px;
text-transform: uppercase;
text-align: center;
color: #425cbb;
}
.cb-pricing5 h2 {
margin: 0;
font-size: 36px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
color: #282828;
margin: 20px 0 15px 0;
}
.cb-pricing5 p {
margin: 0;
font-size: 12px;
text-align: center;
color: #898989;
font-weight: 300;
margin: 15px 0 35px 0;
}
.cb-pricing5 ul.table-content {
list-style: none;
text-align: center;
margin: 35px 0;
padding: 0;
font-size: 14px;
font-weight: 400;
color: #898989;
}
.cb-pricing5 .btn {
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-pricing5 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-pricing6 {
padding: 60px 0;
}
.cb-pricing6 .table {
width: 100%;
padding: 30px 10px;
border: 2px solid #282828;
}
.cb-pricing6 .table h3 {
margin: 0;
font-size: 16px;
text-transform: uppercase;
text-align: center;
color: #425cbb;
}
.cb-pricing6 .table h2 {
margin: 0;
font-size: 36px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
color: #282828;
margin: 20px 0 15px 0;
}
.cb-pricing6 .table p {
margin: 0;
font-size: 12px;
text-align: center;
color: #898989;
font-weight: 300;
margin: 15px 0 35px 0;
}
.cb-pricing6 h3 {
font-size: 18px;
}
.cb-pricing6 p {
font-size: 14px;
margin: 10px 0 20px 0;
}
.cb-pricing6 p b {
color: #000;
}
.cb-pricing6 .btn {
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-pricing6 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-pricing7 {
padding: 60px 0;
}
.cb-pricing7 .table {
width: 100%;
padding: 30px 10px;
border: 2px solid #f5f5f5;
background-color: #282828;
}
.cb-pricing7 .table h3 {
margin: 0;
font-size: 16px;
text-transform: uppercase;
text-align: center;
color: #425cbb;
}
.cb-pricing7 .table h2 {
margin: 0;
font-size: 36px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
color: #fff;
margin: 20px 0 15px 0;
}
.cb-pricing7 .table p {
margin: 0;
font-size: 12px;
text-align: center;
color: #898989;
font-weight: 300;
margin: 15px 0 35px 0;
}
.cb-pricing7 h3 {
font-size: 18px;
}
.cb-pricing7 p {
font-size: 14px;
margin: 10px 0 20px 0;
}
.cb-pricing7 p b {
color: #fff;
}
.cb-pricing7 .btn {
border-radius: 2px;
background: transparent;
border-radius: 40px;
padding: 8px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-pricing7 .btn:hover {
border: 1px solid #425cbb;
color: #fff;
background: #425cbb;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-pricing8 {
margin-top: 60px;
margin-bottom: 60px;
}
.cb-pricing8 .plan {
text-align: center;
margin-bottom: 35px;
background-color: rgba(0, 0, 0, 0.03);
padding: 35px;
-webkit-transition: all .25s ease;
transition: all .25s ease;
}
.cb-pricing8 h1 {
color: #666;
text-transform: uppercase;
font-weight: 700;
}
.cb-pricing8 h3 {
color: #999;
text-transform: uppercase;
font-weight: 400;
}
.cb-pricing8 .plan {
background: #fff;
overflow: hidden;
}
.cb-pricing8 .header .name {
font-size: 24px;
line-height: normal;
margin-bottom: 25px;
margin-top: 15px;
color: #999;
}
.cb-pricing8 .header .price {
color: #444;
}
.cb-pricing8 .header .value {
font-size: 75px;
line-height: 75px;
}
.cb-pricing8 .header .price sup {
font-size: 40px;
line-height: 40px;
top: 0px;
margin-right: -5px;
vertical-align: top;
}
.cb-pricing8 .body {
padding-top: 40px;
}
.cb-pricing8 .body ul {
padding-left: 0;
list-style: none;
font-size: 13px;
color: #999;
margin: 0;
}
.cb-pricing8 .body ul li + li {
border-top: 1px solid rgba(42, 42, 42, 0.05);
padding-top: 10px;
margin-top: 10px;
margin-left: -35px;
margin-right: -35px;
}
.cb-pricing8 .footer {
padding-top: 30px;
}
.cb-pricing8 .btn {
margin-right: -35px;
margin-left: -35px;
}
.cb-pricing8 .btn a {
display: inline-block;
padding: 8px 12px;
font-size: 13px;
min-width: 100%;
text-transform: uppercase;
color: #444;
text-decoration: none;
-webkit-transition: .3s all ease;
transition: .3s all ease;
border-width: 1px 0 1px 0;
border-style: solid;
border-color: rgba(42, 42, 42, 0.05);
}
.cb-pricing8 .plan:hover,
.cb-pricing8 .plan.featured {
-webkit-box-shadow: 10px 10px 28px 0px rgba(0, 0, 0, 0.2);
box-shadow: 10px 10px 28px 0px rgba(0, 0, 0, 0.2);
}
.cb-pricing8 .plan:hover .price,
.cb-pricing8 .featured .price {
color: #1583c9;
}
.cb-pricing8 .plan:hover .btn a,
.cb-pricing8 .featured .btn a {
color: #1583c9;
border-color: #1583c9;
}
.cb-pricing8 .plan:hover .btn a:hover {
background: #1583c9;
color: #fff;
} .cb-pricing9 {
margin-top: 60px;
margin-bottom: 60px;
}
.cb-pricing9 .price-list {
font-size: 14px;
line-height: 16px;
font-weight: 400;
margin: 0;
padding: 0 0 30px;
border: 1px solid #e5e7ea;
background: #f7f8fa;
transition: all 0.25s linear;
}
.cb-pricing9 .price-list.active,
.price-list:hover {
position: relative;
}
.cb-pricing9 .price-list.active:before,
.price-list:hover:before {
position: absolute;
content: "";
z-index: -1;
left: 0;
top: 0;
bottom: auto;
right: auto;
border-style: solid;
border-width: 48px 48px 0 0;
border-color: #1583c9 transparent transparent;
z-index: 2;
width: 0;
height: 0;
}
.cb-pricing9 .price-list.active:after,
.price-list:hover:after {
position: absolute;
content: "";
z-index: -1;
left: auto;
top: 0;
bottom: auto;
right: 0;
border-style: solid;
border-width: 0 48px 48px 0;
border-color: transparent #1583c9 transparent transparent;
z-index: 0;
width: 0;
height: 0;
}
.cb-pricing9 .price-btn {
font-size: 19px;
line-height: 21px;
color: #fff;
font-weight: 500;
border-radius: 4px;
display: inline-block;
vertical-align: middle;
padding: 18px 35px 15px;
background: #1583c9;
transition: all 0.25s linear;
}
.cb-pricing9 .price-btn .fa {
font-size: 21px;
line-height: 23px;
margin: 0 15px 0 0;
}
.cb-pricing9 .price-btn:hover {
background: #1c1c1c;
color: #fff;
}
.cb-pricing9 .price-list.price .price-btn {
font-size: 14px;
line-height: 16px;
padding: 12px 15px;
}
.cb-pricing9 .price-list li {
padding: 14px;
overflow: hidden;
border-top: 1px solid #e5e7ea;
transition: all 0.25s linear;
}
.cb-pricing9 .price-list li:first-child {
border-top: none;
}
.cb-pricing9 .price-list .border {
border: none;
}
.cb-pricing9 .price-list .price {
background: #1c1c1c;
padding: 44px 0 40px;
position: relative;
margin: 0 0 25px;
transition: all 0.25s linear;
}
.cb-pricing9 .price-list .price .title {
font-size: 25px;
line-height: 42px;
color: #1583c9;
font-weight: 700;
display: block;
margin: 0 0 8px;
}
.cb-pricing9 .price-list .price .txt {
font-size: 60px;
line-height: 60px;
font-weight: 700;
color: #fff;
margin: 0 0 25px;
display: block;
}
.cb-pricing9 .price-list .price .txt sup {
font-size: 30px;
top: -20px;
margin: 0 -9px 0 0;
}
.cb-pricing9 .price-list .price .txt2 {
font-size: 14px;
line-height: 16px;
font-weight: 700;
margin: 0 0 10px;
color: #fff;
transition: all 0.25s linear;
}
.cb-pricing9 .price-list .btns {
padding: 33px 0 0;
}
@media (max-width: 1023px) {
.cb-pricing9 .price-list.price {
margin: 0 0 30px;
}
.cb-pricing9 .price-btn {
padding: 15px 19px;
}
}
@media (max-width: 767px) {
.cb-pricing9 .price-list {
margin: 0 0 30px;
}
} .cb-pricing10 {
overflow: hidden;
background: #fff;
border-radius: 5px;
text-align: center;
margin-top: 60px;
margin-bottom: 60px;
}
.cb-pricing10 .header {
position: relative;
padding: 20px;
background: #1583c9;
}
.cb-pricing10 .title {
font-size: 15px;
text-transform: uppercase;
font-weight: 700;
position: relative;
background: #fff;
display: inline-block;
padding: 10px 40px;
border-radius: 50px;
bottom: -40px;
margin-top: -40px;
border: 1px solid;
}
.cb-pricing10 .header .amount {
color: #fff;
margin: 0;
font-size: 20px;
text-transform: capitalize;
}
.cb-pricing10 .price span {
font-size: 45px;
font-weight: 700;
display: block;
}
.cb-pricing10 .list {
padding: 30px 0 0;
}
.cb-pricing10 .list li {
color: #666;
position: relative;
text-transform: capitalize;
padding: 15px;
}
.cb-pricing10 .list li span {
background: #353535;
padding: 1px 12px;
border-radius: 5px;
float: right;
color: #fff;
text-transform: uppercase;
position: absolute;
right: 27px;
}
.cb-pricing10 .list li span::before {
position: absolute;
bottom: -1px;
left: -4px;
content: "";
border-left: 14px solid #353535;
border-right: 14px solid transparent;
border-top: 14px solid transparent;
}
.cb-pricing10 .list li:last-child {
margin: 0;
}
.cb-pricing10 .list li.cross {
opacity: 0.5;
}
.cb-pricing10 .list i {
font-size: 13px;
text-align: center;
margin-right: 10px;
}
.cb-pricing10 .table-bottom {
text-align: center;
background: #1583c9;
padding: 20px;
}
.cb-pricing10 .table-bottom a {
z-index: 1;
position: relative;
display: inline-block;
padding: 10px 40px;
background-color: #000;
color: #fff;
text-transform: capitalize;
text-decoration: none;
margin-bottom: 5px;
border-radius: 5px;
overflow: hidden;
font-size: 15px;
}
.cb-pricing10 i {
font-size: 16px;
margin-right: 10px;
}
.cb-pricing10 .table-bottom .text {
color: #fff;
margin: 0;
}
.cb-pricing10 .table-default .table-default {
margin-top: 30px;
}
.cb-pricing10 .table-default .table-default .title {
margin: 0;
font-weight: 700;
}
.cb-pricing10 .table-default .table-default .text {
font-weight: 400;
}
.cb-pricing10 .table-default .table-default .list,
.cb-pricing10 .table-default .table-default .list li {
list-style: none;
margin: 0;
padding: 0;
}
.cb-pricing10 .table-default .list li {
font-size: 14px;
font-weight: 400;
display: block;
cursor: pointer;
} .cb-testimonial1 {
padding-top: 60px;
padding-bottom: 60px;
}
.cb-testimonial1 ol {
background-color: transparent;
cursor: pointer;
}
.cb-testimonial1 ol li:active {
background-color: #000;
}
.cb-testimonial1 ol li {
background-color: #000;
border: 1px solid #000;
border-radius: 100%;
height: 8px;
width: 8px;
}
.cb-testimonial1 p {
width: 80%;
text-align: center;
font-size: 18px;
margin-top: 30px;
color: #322323;
}
.cb-testimonial1 .carousel-inner .item .testimonial-image {
height: 100px;
width: 100px;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
border-radius: 100%;
border: 1px solid;
object-fit: cover;
} .cb-testimonial2 {
padding-top: 30px;
padding-bottom: 30px;
background-color: #1d415b;
}
.cb-testimonial2 .carousel-inner {
width: 75%;
margin: auto;
}
.cb-testimonial2 .carousel-inner .item {
margin-bottom: 20px;
}
.cb-testimonial2 ol {
background-color: transparent;
cursor: pointer;
}
.cb-testimonial2 ol li:active {
background-color: #000;
}
.cb-testimonial2 ol li {
background-color: #000;
border: 1px solid #000;
border-radius: 100%;
height: 8px;
width: 8px;
}
.cb-testimonial2 .carousel-control {
top: 175px;
opacity: 1;
width: 40px;
bottom: auto;
height: 40px;
font-size: 10px;
cursor: pointer;
font-weight: 700;
overflow: hidden;
line-height: 38px;
text-shadow: none;
text-align: center;
position: absolute;
background: transparent;
border: 2px solid #ffffff;
text-transform: uppercase;
-webkit-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}
.cb-testimonial2 .carousel-control.left {
left: 7%;
right: auto;
color: #fff;
}
.cb-testimonial2 .carousel-control.right {
right: 7%;
left: auto;
color: #fff;
}
.cb-testimonial2 .carousel-control.left:hover,
.cb-testimonial2 .carousel-control.right:hover {
color: #000;
background: #fff;
border: 2px solid #fff;
}
.cb-testimonial2 .header {
top: 0;
left: 0;
bottom: 0;
width: 550px;
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.cb-testimonial2 .header h4 {
color: #ffffff;
font-size: 30px;
font-weight: 600;
position: relative;
letter-spacing: 1px;
text-transform: uppercase;
}
.cb-testimonial2 .slide {
width: 70%;
margin: auto;
text-align: center;
}
.cb-testimonial2 .slide img {
width: 80px;
height: 80px;
margin-left: auto;
margin-right: auto;
display: block;
color: #f2f2f2;
font-size: 18px;
line-height: 46px;
text-align: center;
position: relative;
object-fit: cover;
}
.cb-testimonial2 .slide p {
color: #ffffff;
font-size: 16px;
margin: 40px 0 20px 0;
}
.cb-testimonial2 .slide h4 {
color: #ffffff;
font-size: 24px;
font-weight: bold;
}
@media only screen and (max-width: 320px) {
.cb-testimonial2 .slide p {
font-size: 10px;
}
.cb-testimonial2 .slide h4 {
font-size: 14px;
}
}
@media (min-width: 321px) and (max-width: 479px) {
.cb-testimonial2 .slide p {
font-size: 10px;
}
.cb-testimonial2 .slide h4 {
font-size: 16px;
}
}
@media only screen and (max-width: 480px) {
.cb-testimonial2 .carousel-control {
display: none;
}
.cb-testimonial2 .header {
width: 95%;
}
.cb-testimonial2 .slide {
width: 98%;
padding: 5px;
}
.cb-testimonial2 .slide p {
font-size: 14px;
}
.cb-testimonial2 .slide h4 {
font-size: 18px;
}
}
@media (min-width: 481px) and (max-width: 767px) {
.cb-testimonial2 .carousel-control.left {
left: 2%;
}
.cb-testimonial2 .carousel-control.right {
right: 2%;
}
.cb-testimonial2 .header {
width: 95%;
}
.cb-testimonial2 .slide {
width: 98%;
padding: 5px;
}
.cb-testimonial2 .slide p {
font-size: 14px;
}
.cb-testimonial2 .slide h4 {
font-size: 18px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.cb-testimonial2 .carousel-control.left {
left: 5%;
}
.cb-testimonial2 .carousel-control.right {
right: 5%;
}
} .cb-testimonial3 {
overflow: hidden;
min-height: 300px;
position: relative;
}
.cb-testimonial3 .carousel-indicators {
left: 0;
bottom: 0;
margin: 0;
width: 100%;
font-size: 0;
height: 65px;
padding: 2px 0;
cursor: e-resize;
overflow-x: auto;
line-height: 90px;
overflow-y: hidden;
position: absolute;
text-align: center;
#fff-space: nowrap;
}
.cb-testimonial3 .carousel-indicators li {
padding: 0;
width: 35px;
height: 35px;
border: none;
text-indent: 0;
margin: 0 6px;
cursor: pointer;
display: inline-block;
background-color: transparent;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-testimonial3 .carousel-indicators .active {
padding: 0;
width: 35px;
height: 35px;
border: none;
margin: 0 6px;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-testimonial3 .carousel-indicators li img {
width: 100%;
display: block;
border: 1px solid #d7d7d7;
-webkit-transform: scale(1);
-moz-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.7s cubic-bezier(.39, .575, .565, 1);
-moz-transition: all 0.7s cubic-bezier(.39, .575, .565, 1);
transition: all 0.7s cubic-bezier(.39, .575, .565, 1);
}
.cb-testimonial3 .carousel-indicators .active img {
border-color: #1583c9;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
transform: scale(1.5);
}
.cb-testimonial3 .carousel-indicators::-webkit-scrollbar {
height: 3px;
}
.cb-testimonial3 .carousel-indicators::-webkit-scrollbar-thumb {
background: #eeeeee;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-testimonial3 .heading {
top: 0;
left: 0;
bottom: 0;
width: 550px;
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.cb-testimonial3 .heading h5 {
color: #000;
font-size: 35px;
font-weight: 900;
position: relative;
letter-spacing: 1px;
text-transform: uppercase;
}
.cb-testimonial3 .heading h5 span {
color: #1583c9;
margin: 0 10px;
position: relative;
}
.cb-testimonial3 .slide {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 70%;
margin: auto;
padding: 10px;
position: relative;
text-align: center;
}
.cb-testimonial3 .slide p {
color: #000;
font-size: 14px;
}
.cb-testimonial3 .slide h5 {
color: #1583c9;
font-size: 22px;
text-transform: uppercase;
font-weight: bold;
}
.cb-testimonial3 .slide h6 {
color: #1583c9;
font-size: 18px;
padding-bottom: 55px;
}
@media only screen and (max-width: 480px) {
.cb-testimonial3 .heading {
width: 95%;
margin: 20px auto;
}
.cb-testimonial3 .heading h5 {
font-size: 20px;
}
.cb-testimonial3 .slide {
width: 98%;
padding: 5px;
}
.cb-testimonial3 .slide p {
font-size: 12px;
}
.cb-testimonial3 .slide h5 a {
font-size: 16px;
}
.cb-testimonial3 .slide h6 a {
font-size: 14px;
}
}
@media (min-width: 481px) and (max-width: 767px) {
.cb-testimonial3 .heading {
width: 95%;
margin: 15px auto;
}
.cb-testimonial3 .slide {
width: 98%;
padding: 5px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.cb-testimonial3 .slide {
width: 98%;
padding: 5px;
}
}
@media (min-width: 992px) and (max-width: 1225px) {
.cb-testimonial3 .slide {
padding: 5px;
}
} .cb-testimonial4 {
padding: 40px;
background-color: #425cbb;
}
.cb-testimonial4 h2 {
font-size: 24px;
text-align: center;
text-transform: uppercase;
color: #fff;
margin: 0;
margin-bottom: 40px;
}
.cb-testimonial4 .box {
background-color: #282828;
padding: 20px 40px 40px 40px;
border-radius: 4px;
margin: 0 10px;
}
.cb-testimonial4 .arrow-down {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #282828;
margin-left: 30px;
}
.cb-testimonial4 .box p {
overflow: hidden;
color: #fff;
font-size: 12px;
}
.cb-testimonial4 .item h3 {
color: #fff;
margin-left: 10px;
font-size: 18px;
}
.cb-testimonial4 .item h6 {
color: #fff;
margin-left: 10px;
font-size: 12px;
color: #282828;
}
.cb-testimonial4 .box .icon {
float: left;
margin-right: 20px;
}
.cb-testimonial4 .box .icon img {
width: 100%;
max-width: 120px;
}
@media (min-width: 0px) and (max-width: 481px) {
.cb-testimonial4 .box .icon {
float: none;
margin-right: 0;
}
.cb-testimonial4 .box .icon img {
display: block;
margin: 0 auto;
}
.cb-testimonial4 .box p {
text-align: center;
}
} .cb-testimonial5 {
padding: 40px 0;
}
.cb-testimonial5 .image-content img {
max-width: 100%;
}
.cb-testimonial5 .image-content::after {
content: "";
background-color: #3498db;
position: absolute;
top: 20px;
right: -5px;
width: 40px;
height: 4px;
}
.cb-testimonial5 .testimonials {
display: flex;
flex-direction: column;
width: 100%;
max-width: 100%;
overflow: hidden;
position: relative;
}
.cb-testimonial5 .testimonials .item {
width: 100%;
padding: 0 15px;
box-sizing: border-box;
overflow: hidden;
}
.cb-testimonial5 .testimonials .item h3 {
margin-bottom: 20px;
}
.cb-testimonial5 .testimonials .item h4 {
margin-top: 20px;
font-size: 18px;
font-weight: 700;
}
.cb-testimonial5 .testimonials .item h5 {
font-size: 12px;
}
.cb-testimonial5 .carousel-indicators {
text-align: right;
}
.cb-testimonial5 ol li {
width: 12px;
height: 12px;
background-color: #3498db;
border-radius: 50%;
display: inline-flex;
margin: 0 5px;
border: 1px solid #3498db;
}
.cb-testimonial5 ol li:active {
background-color: 3498db!important;
}
@media (max-width: 768px) {
.cb-testimonial5 .image-content::after {
display: none;
}
}  .cb-media1 .media1-fs {
height: 589px;
margin: 0;
padding: 0;
}
.cb-media1 .col-media1 {
position: relative;
min-height: 1px;
width: 50%;
height: 589px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.cb-media1 .media1-inner {
height: 589px;
transform: translateY(0px);
}
.cb-media1 .media-1-wrap:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.cb-media1 .media1-wrap {
overflow: hidden;
margin: 0;
padding: 0;
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
top: 0;
left: 0;
}
.cb-media1 #media-1 {
position: relative;
width: 100%;
}
.cb-media1 #media-1 .container {
position: relative;
height: 100%;
}
.cb-media1 #media1-video {
width: 1136px;
height: 638px;
left: -230.64px;
top: -24.5px;
}
.cb-media1 .media1-wrap video {
position: relative;
z-index: 1;
width: 100%;
}
.cb-media1 .media1-overlay,
.cb-media1 .video-placeholder {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 5;
}
.cb-media1 .on-hover.i-overlay:hover {
opacity: 2;
}
.cb-media1 .media1-h2 {
color: #FFF;
text-align: center;
}
.cb-media1 .media1-center {
position: absolute;
top: 50%;
width: 100%;
margin-top: -30px;
opacity: 1.28997;
}
.cb-media1 .media1-overlay {
background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
.cb-media1 .media1 {
width: 100%;
margin: 0;
}
}
@media (max-width: 767px) {
.cb-media1 .media1 {
width: 100%!important;
}
} #cb-media2 {
position: relative;
overflow: hidden;
height: 100vh;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-media2 .overlay {
background-color: rgba(0, 0, 0, 0.5);
height: 100%;
}
.cb-media2 .media-wraper {
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.cb-media2 .bg-section {
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
.cb-media2 .caption-waper {
height: 100%;
position: absolute;
width: 100%;
z-index: 2;
}
.cb-media2 .caption-top {
z-index: 2;
}
.cb-media2 .content {
display: table;
height: 100%;
text-align: center;
width: 100%;
}
.cb-media2 .content-inner {
display: table-cell;
height: 100%;
vertical-align: middle;
}
.cb-media2 h5 {
letter-spacing: 1.5px;
color: #fff;
}
.cb-media2 h1 {
font-size: 70px;
margin-top: 40px;
margin-bottom: 40px;
font-weight: 400;
line-height: 1.1;
color: #fff;
}
.cb-media2 .inner {
position: relative;
padding: 200px 0;
}
.cb-media2 .inner h1 {
font-size: 54px;
margin-top: 30px;
}
@media (max-width: 1024px) {
.cb-media2 h1 {
letter-spacing: 0;
font-size: 46px;
}
}
@media (max-width: 767px) {
.cb-media2 h1 {
letter-spacing: 0;
font-size: 30px;
}
} .cb-social1 {
margin: 50px auto;
}
.cb-social1 a.social-1 {
margin: 30px auto;
max-width: 300px;
position: relative;
color: #fff;
display: block;
padding: 30px;
box-shadow: inset 0px 3px 0px 1px rgba(0, 0, 0, 0.1);
border-radius: 1px;
text-decoration: none;
}
.cb-social1 a.social-1 i {
color: #fff;
display: block;
font-size: 60px;
margin-bottom: 200px;
}
.cb-social1 a.social-1 span {
position: absolute;
left: 30px;
bottom: 30px;
font-size: 30px;
color: #fff;
line-height: 45x;
font-weight: 300;
}
.cb-social1 a.social-1 span b {
display: block;
margin-top: 10px;
font-size: 17px;
line-height: 32px;
font-weight: 400;
color: #fff;
}
.cb-social1 .bg-blue {
background-color: #0030b3;
}
.cb-social1 .bg-lblue {
background-color: #32c8de !important;
}
.cb-social1 .bg-dark-red {
background-color: #d51717;
}
.cb-social1 .bg-red {
background-color: #f75353 !important;
}
.cb-social1 .fa-facebook:before {
content: "\f09a";
} .cb-social2 {
background-color: #f4f5f7;
padding: 40px 0;
text-align: center;
}
.cb-social2 p {
margin: 0;
font-size: 22px;
text-transform: uppercase;
font-weight: 700;
color: #000;
}
.cb-social2 i {
color: #000;
}
.cb-social2 i:hover {
color: #004fff;
} .cb-social3 {
background-color: #e74c3c;
padding: 40px 0;
text-align: center;
}
.cb-social3 p {
margin: 0;
font-size: 18px;
text-transform: uppercase;
font-weight: 700;
color: #fff;
}
.cb-social3 i {
color: #fff;
}
.cb-social3 i:hover {
color: #000;
} .cb-social4 {
background-color: #fff;
text-align: center;
margin-top: 50px;
margin-bottom: 50px;
}
.cb-social4 .list-inline {
padding-left: 0;
margin-left: -5px;
list-style: none;
}
.cb-social4 .social-links li {
padding: 5px;
}
.cb-social4 .social-links li a {
display: block;
height: 50px;
width: 50px;
line-height: 48px;
font-size: 20px;
color: #000;
border: 2px solid #000;
border-radius: 50%;
text-align: center;
}
.cb-social4 .social-links li a:hover {
color: #fff;
background-color: #000;
border: 2px solid transparent;
} .cb-social5 {
background-color: #0095ff;
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
}
.cb-social5 .list-inline {
padding-left: 0;
margin-left: -5px;
list-style: none;
}
.cb-social5 .social-links li {
padding: 5px;
}
.cb-social5 .social-links li a {
display: block;
height: 50px;
width: 50px;
line-height: 48px;
font-size: 20px;
color: #fff;
border: 2px solid #fff;
border-radius: 50%;
text-align: center;
}
.cb-social5 .social-links li a:hover {
color: #0095ff;
background-color: #fff;
border: 2px solid transparent;
} .cb-social6 {
width: 100%;
overflow: hidden;
padding-top: 50px;
padding-bottom: 50px;
}
.cb-social6 .container {
width: 100%;
text-align: center;
margin: auto;
}
.cb-social6 .button {
display: inline-block;
height: 40px;
line-height: 40px;
padding-right: 30px;
padding-left: 70px;
position: relative;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
text-decoration: none;
text-transform: lowercase;
letter-spacing: 1px;
margin-bottom: 15px;
}
.cb-social6 .button:hover {
text-decoration: none;
color: #eeeaee;
}
.cb-social6 .button p {
font-size: 18px;
}
.cb-social6 .button span {
position: absolute;
left: 0;
width: 50px;
font-size: 20px;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-bottomleft: 5px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-right: 1px solid rgba(0, 0, 0, 0.15);
text-decoration: none;
}
.cb-social6 .button.twitter {
background: #00acee;
}
.cb-social6 .button.facebook {
background: #3b5998;
}
.cb-social6 .button.google-plus {
background: #db4a39;
}
.cb-social6 .button.linkedin {
background: #0e76a8;
}
.cb-social6 .button.youtube {
background: #c4302b;
}
.cb-social6 .button.github {
background: #171515;
}
.cb-social6 .button.android {
background: #a4c639;
}
.cb-social6 .button.skype {
background: #00aff0;
}
.cb-social6 .button.dropbox {
background: #3d9ae8;
}
.cb-social6 .button.foursquare {
background: #25a0ca;
}
.cb-social6 .button.apple {
background: #cdcdcd;
}
.cb-social6 .button.dribbble {
background: #ea4c89;
}
.cb-social6 .button.instagram {
background: #3f729b;
}
.cb-social6 .button.pinterest {
background: #c8232c;
}
.cb-social6 .button.stackexchange {
background: #ef8236;
}
.cb-social6 .button.flickr {
background: #ff0084;
}
.cb-social6 a:visited {
text-decoration: none;
color: #fff;
} .cb-social7 .social-nav {
padding: 20px;
list-style: none;
margin: -10px 0 0 -10px;
}
.cb-social7 .social-nav li {
float: left;
margin: 10px 0 0 10px;
list-style: none;
}
.cb-social7 .social-nav a {
display: inline-block;
float: left;
width: 48px;
height: 48px;
font-size: 20px;
color: #fff;
text-decoration: none;
cursor: pointer;
text-align: center;
line-height: 48px;
background: #000;
position: relative;
transition: all 0.5s;
-ms-transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}
.cb-social7 .social-nav a {
overflow: hidden;
font-size: 26px;
border-radius: 4px;
}
.cb-social7 .social-nav a:hover {
background: #fff;
text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4;
}
.cb-social7 .social-nav .twitter {
background: #00ACED;
text-shadow: 0px 0px #0087ba, 1px 1px #0087ba, 2px 2px #0087ba, 3px 3px #0087ba, 4px 4px #0087ba, 5px 5px #0087ba, 6px 6px #0087ba, 7px 7px #0087ba, 8px 8px #0087ba, 9px 9px #0087ba, 10px 10px #0087ba, 11px 11px #0087ba, 12px 12px #0087ba, 13px 13px #0087ba, 14px 14px #0087ba, 15px 15px #0087ba, 16px 16px #0087ba, 17px 17px #0087ba, 18px 18px #0087ba, 19px 19px #0087ba, 20px 20px #0087ba, 21px 21px #0087ba, 22px 22px #0087ba, 23px 23px #0087ba, 24px 24px #0087ba, 25px 25px #0087ba, 26px 26px #0087ba, 27px 27px #0087ba, 28px 28px #0087ba, 29px 29px #0087ba, 30px 30px #0087ba;
}
.cb-social7 .social-nav .twitter:hover {
color: #00ACED;
}
.cb-social7 .social-nav .facebook {
background: #3B579D;
text-shadow: 0px 0px #2d4278, 1px 1px #2d4278, 2px 2px #2d4278, 3px 3px #2d4278, 4px 4px #2d4278, 5px 5px #2d4278, 6px 6px #2d4278, 7px 7px #2d4278, 8px 8px #2d4278, 9px 9px #2d4278, 10px 10px #2d4278, 11px 11px #2d4278, 12px 12px #2d4278, 13px 13px #2d4278, 14px 14px #2d4278, 15px 15px #2d4278, 16px 16px #2d4278, 17px 17px #2d4278, 18px 18px #2d4278, 19px 19px #2d4278, 20px 20px #2d4278, 21px 21px #2d4278, 22px 22px #2d4278, 23px 23px #2d4278, 24px 24px #2d4278, 25px 25px #2d4278, 26px 26px #2d4278, 27px 27px #2d4278, 28px 28px #2d4278, 29px 29px #2d4278, 30px 30px #2d4278;
}
.cb-social7 .social-nav .facebook:hover {
color: #3B579D;
}
.cb-social7 .social-nav .google {
background: #DD4A3A;
text-shadow: 0px 0px #c23122, 1px 1px #c23122, 2px 2px #c23122, 3px 3px #c23122, 4px 4px #c23122, 5px 5px #c23122, 6px 6px #c23122, 7px 7px #c23122, 8px 8px #c23122, 9px 9px #c23122, 10px 10px #c23122, 11px 11px #c23122, 12px 12px #c23122, 13px 13px #c23122, 14px 14px #c23122, 15px 15px #c23122, 16px 16px #c23122, 17px 17px #c23122, 18px 18px #c23122, 19px 19px #c23122, 20px 20px #c23122, 21px 21px #c23122, 22px 22px #c23122, 23px 23px #c23122, 24px 24px #c23122, 25px 25px #c23122, 26px 26px #c23122, 27px 27px #c23122, 28px 28px #c23122, 29px 29px #c23122, 30px 30px #c23122;
}
.cb-social7 .social-nav .google:hover {
color: #DD4A3A;
}
.cb-social7 .social-nav .linkedin {
background: #007BB6;
text-shadow: 0px 0px #005983, 1px 1px #005983, 2px 2px #005983, 3px 3px #005983, 4px 4px #005983, 5px 5px #005983, 6px 6px #005983, 7px 7px #005983, 8px 8px #005983, 9px 9px #005983, 10px 10px #005983, 11px 11px #005983, 12px 12px #005983, 13px 13px #005983, 14px 14px #005983, 15px 15px #005983, 16px 16px #005983, 17px 17px #005983, 18px 18px #005983, 19px 19px #005983, 20px 20px #005983, 21px 21px #005983, 22px 22px #005983, 23px 23px #005983, 24px 24px #005983, 25px 25px #005983, 26px 26px #005983, 27px 27px #005983, 28px 28px #005983, 29px 29px #005983, 30px 30px #005983;
}
.cb-social7.social-nav .linkedin:hover {
color: #007BB6;
}
.cb-social7 .social-nav .pinterest {
background: #CB2026;
text-shadow: 0px 0px #9f191e, 1px 1px #9f191e, 2px 2px #9f191e, 3px 3px #9f191e, 4px 4px #9f191e, 5px 5px #9f191e, 6px 6px #9f191e, 7px 7px #9f191e, 8px 8px #9f191e, 9px 9px #9f191e, 10px 10px #9f191e, 11px 11px #9f191e, 12px 12px #9f191e, 13px 13px #9f191e, 14px 14px #9f191e, 15px 15px #9f191e, 16px 16px #9f191e, 17px 17px #9f191e, 18px 18px #9f191e, 19px 19px #9f191e, 20px 20px #9f191e, 21px 21px #9f191e, 22px 22px #9f191e, 23px 23px #9f191e, 24px 24px #9f191e, 25px 25px #9f191e, 26px 26px #9f191e, 27px 27px #9f191e, 28px 28px #9f191e, 29px 29px #9f191e, 30px 30px #9f191e;
}
.cb-social7 .social-nav .pinterest:hover {
color: #CB2026;
} .cb-social8 {
padding-top: 20px;
padding-bottom: 20px;
}
.cb-social8 .btn-social {
border-radius: 50%;
color: #ffffff !important;
display: inline-block;
height: 54px;
line-height: 54px;
margin: 8px 4px;
text-align: center;
text-decoration: none;
transition: background-color .3s;
webkit-transition: background-color .3s;
width: 54px;
font-size: 22px;
}
.cb-social8 .btn-social .fa,
.cb-social8 .btn-social i {
backface-visibility: hidden;
moz-backface-visibility: hidden;
ms-transform: scale(1);
o-transform: scale(1);
transform: scale(1);
transition: all .25s;
webkit-backface-visibility: hidden;
webkit-transform: scale(1);
webkit-transition: all .25s;
}
.cb-social8 .btn-social:hover,
.cb-social8 .btn-social:focus {
color: #fff;
outline: none;
text-decoration: none;
}
.cb-social8 .btn-social:hover .fa,
.cb-social8 .btn-social:focus .fa,
.cb-social8 .btn-social:hover i,
.cb-social8 .btn-social:focus i {
ms-transform: scale(1.3);
o-transform: scale(1.3);
transform: scale(1.3);
webkit-transform: scale(1.3);
}
.cb-social8 .btn-social.cb-social8 .btn-xs {
font-size: 9px;
height: 24px;
line-height: 13px;
margin: 6px 2px;
width: 24px;
}
.cb-social8 .btn-social.cb-social8 .btn-sm {
font-size: 13px;
height: 36px;
line-height: 18px;
margin: 6px 2px;
width: 36px;
}
.cb-social8 .btn-social.cb-social8 .btn-lg {
font-size: 22px;
height: 72px;
line-height: 40px;
margin: 10px 6px;
width: 72px;
}
.cb-social8 .btn-behance {
background-color: #1769ff;
}
.cb-social8 .btn-behance:hover {
background-color: #4a8aff;
}
.cb-social8 .btn-bitbucket {
background-color: #205081;
}
.cb-social8 .btn-bitbucket:hover {
background-color: #2a69aa;
}
.cb-social8 .btn-codepen {
background-color: #76daff;
}
.cb-social8 .btn-codepen:hover {
background-color: #a9e8ff;
}
.cb-social8 .btn-deviantart {
background-color: #4e6252;
}
.cb-social8 .btn-deviantart:hover {
background-color: #657e6a;
}
.cb-social8 .btn-digg {
background-color: #000;
}
.cb-social8 .btn-digg:hover {
background-color: #1a1a1a;
}
.cb-social8 .btn-dribbble {
background-color: #ea4c89;
}
.cb-social8 .btn-dribbble:hover {
background-color: #ef7aa7;
}
.cb-social8 .btn-dropbox {
background-color: #007ee5;
}
.cb-social8 .btn-dropbox:hover {
background-color: #1998ff;
}
.cb-social8 .btn-facebook {
background-color: #3b5998;
}
.cb-social8 .btn-facebook:hover {
background-color: #4c70ba;
}
.cb-social8 .btn-flickr {
background-color: #0063dc;
}
.cb-social8 .btn-flickr:hover {
background-color: #107cff;
}
.cb-social8 .btn-foursquare {
background-color: #ef4b78;
}
.cb-social8 .btn-foursquare:hover {
background-color: #f37a9b;
}
.cb-social8 .btn-github {
background-color: #4183c4;
}
.cb-social8 .btn-github:hover {
background-color: #689cd0;
}
.cb-social8 .btn-google-plus {
background-color: #dd4b39;
}
.cb-social8 .btn-google-plus:hover {
background-color: #e47365;
}
.cb-social8 .btn-instagram {
background-color: #3f729b;
}
.cb-social8 .btn-instagram:hover {
background-color: #548cb9;
}
.cb-social8 .btn-jsfiddle {
background-color: #4679bd;
}
.cb-social8 .btn-jsfiddle:hover {
background-color: #6c94ca;
}
.cb-social8 .btn-lastfm {
background-color: #e31b23;
}
.cb-social8 .btn-lastfm:hover {
background-color: #e9484e;
}
.cb-social8 .btn-linkedin {
background-color: #0976b4;
}
.cb-social8 .btn-linkedin:hover {
background-color: #0b96e5;
}
.cb-social8 .btn-paypal {
background-color: #253b80;
}
.cb-social8 .btn-paypal:hover {
background-color: #304da8;
}
.cb-social8 .btn-pinterest {
background-color: #cc2127;
}
.cb-social8 .btn-pinterest:hover {
background-color: #e04046;
}
.cb-social8 .btn-reddit {
background-color: #ff4500;
}
.cb-social8 .btn-reddit:hover {
background-color: #ff6a33;
}
.cb-social8 .btn-skype {
background-color: #00aff0;
}
.cb-social8 .btn-skype:hover {
background-color: #24c4ff;
}
.cb-social8 .btn-soundcloud {
background-color: #f80;
}
.cb-social8 .btn-soundcloud:hover {
background-color: #ffa033;
}
.cb-social8 .btn-stack-overflow {
background-color: #fe7a15;
}
.cb-social8 .btn-stack-overflow:hover {
background-color: #fe9748;
}
.cb-social8 .btn-steam {
background-color: #7da10e;
}
.cb-social8 .btn-steam:hover {
background-color: #a1d012;
}
.cb-social8 .btn-stumbleupon {
background-color: #eb4924;
}
.cb-social8 .btn-stumbleupon:hover {
background-color: #ef7053;
}
.cb-social8 .btn-trello {
background-color: #256a92;
}
.cb-social8 .btn-trello:hover {
background-color: #2f88bb;
}
.cb-social8 .btn-tumblr {
background-color: #35465c;
}
.cb-social8 .btn-tumblr:hover {
background-color: #485f7c;
}
.cb-social8 .btn-twitch {
background-color: #6441a5;
}
.cb-social8 .btn-twitch:hover {
background-color: #7e5bbe;
}
.cb-social8 .btn-twitter {
background-color: #55acee;
}
.cb-social8 .btn-twitter:hover {
background-color: #83c3f3;
}
.cb-social8 .btn-vimeo {
background-color: #1ab7ea;
}
.cb-social8 .btn-vimeo:hover {
background-color: #49c6ee;
}
.cb-social8 .btn-vine {
background-color: #00b488;
}
.cb-social8 .btn-vine:hover {
background-color: #00e7af;
}
.cb-social8 .btn-vk {
background-color: #45668e;
}
.cb-social8 .btn-vk:hover {
background-color: #587fae;
}
.cb-social8 .btn-wechat {
background-color: #98d11c;
}
.cb-social8 .btn-wechat:hover {
background-color: #afe53b;
}
.cb-social8 .btn-wordpress {
background-color: #21759b;
}
.cb-social8 .btn-wordpress:hover {
background-color: #2a95c5;
}
.cb-social8 .btn-xing {
background-color: #026466;
}
.cb-social8 .btn-xing:hover {
background-color: #039598;
}
.cb-social8 .btn-yahoo {
background-color: #400191;
}
.cb-social8 .btn-yahoo:hover {
background-color: #5601c4;
}
.cb-social8 .btn-yelp {
background-color: #af0606;
}
.cb-social8 .btn-yelp:hover {
background-color: #e00808;
}
.cb-social8 .btn-youtube {
background-color: #e52d27;
}
.cb-social8 .btn-youtube:hover {
background-color: #ea5955;
}
.cb-social8 .btn-email {
background-color: #44c456;
}
.cb-social8 .btn-email:hover {
background-color: #6bd079;
} .cb-social9 .social-tooltip {
margin: 30px 0;
padding: 25px;
font-size: 0;
width: 100%;
background: #fff;
text-align: center;
}
.cb-social9 .social-tooltip li {
display: inline-block;
list-style: outside none none;
padding: 0;
text-transform: uppercase;
margin-left: 0;
margin-top: 0;
margin-bottom: 0;
}
.cb-social9 .social-tooltip li:last-child {
margin: 0;
}
.cb-social9 .social-tooltip a {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
color: #fff;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 px;
width: 116px;
height: 31px;
text-decoration: none;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
-webkit-transition: all .15s ease;
transition: all .15s ease;
z-index: 2;
text-transform: uppercase;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.cb-social9 .social-tooltip a:hover {
color: #fff;
}
.cb-social9 .social-tooltip a:hover .tooltip {
display: block;
visibility: visible;
opacity: 1;
-webkit-transform: translate(0, -33px);
transform: translate(0, -33px);
}
.cb-social9 .social-tooltip a:active {
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}
.cb-social9 .social-tooltip .tooltip {
opacity: 0;
position: absolute;
top: 2px;
left: 50%;
z-index: 1;
-webkit-transition: all .15s ease;
transition: all .15s ease;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.cb-social9 .social-tooltip .tooltip span {
font-size: 10px;
font-weight: bold;
left: -50%;
line-height: 1;
padding: 6px 8px 5px;
position: relative;
text-transform: uppercase;
z-index: 1;
}
.cb-social9 .social-tooltip .tooltip span:after {
position: absolute;
content: " ";
width: 0;
height: 0;
top: 100%;
left: 50%;
margin-left: -8px;
border: 8px solid transparent;
}
.cb-social9 .social-tooltip .social-twitter {
background: #00abdc;
background: -webkit-linear-gradient(#00abdc, #00abdc);
background: linear-gradient(#00abdc, #00abdc);
border-bottom: 1px solid #00abdc;
}
.cb-social9 .social-tooltip .social-twitter:hover {
color: #fff;
text-shadow: 0px 1px 0px #00abdc;
}
.cb-social9 .social-tooltip .social-twitter span {
background: #00abdc;
background: -webkit-linear-gradient(#00abdc, #00abdc);
background: linear-gradient(#00abdc, #00abdc);
color: #fff;
}
.cb-social9 .social-tooltip .social-twitter span:after {
border-top-color: #00abdc;
}
.cb-social9 .social-tooltip .social-linkedin {
background: #286580;
background: -webkit-linear-gradient(#286580, #286580);
background: linear-gradient(#286580, #286580);
border-bottom: 1px solid #286580;
}
.cb-social9 .social-tooltip .social-linkedin:hover {
color: #fff;
text-shadow: 0px 1px 0px #286580;
}
.cb-social9 .social-tooltip .social-linkedin span {
background: #286580;
background: -webkit-linear-gradient(#286580, #286580);
background: linear-gradient(#286580, #286580);
color: #fff;
}
.cb-social9 .social-tooltip .social-linkedin span:after {
border-top-color: #286580;
}
.cb-social9 .social-tooltip .social-facebook {
background: #325c94;
background: -webkit-linear-gradient(#4562a0, #385693);
background: linear-gradient(#4562a0, #385693);
border-bottom: 1px solid #2f487c;
}
.cb-social9 .social-tooltip .social-facebook:hover {
color: #fff;
text-shadow: 0px 1px 0px #2f487c;
}
.cb-social9 .social-tooltip .social-facebook span {
background: #3b5a9b;
background: -webkit-linear-gradient(#5873aa, #3b5a9b);
background: linear-gradient(#5873aa, #3b5a9b);
color: #fff;
}
.cb-social9 .social-tooltip .social-facebook span:after {
border-top-color: #325c94;
}
.cb-social9 .social-tooltip .social-google-plus {
background: #ea4335;
background: -webkit-linear-gradient(#ea4335, #ea4335);
background: linear-gradient(#ea4335, #ea4335);
border-bottom: 1px solid #ea4335;
}
.cb-social9 .social-tooltip .social-google-plus:hover {
color: #fff;
text-shadow: 0px 1px 0px #ea4335;
}
.cb-social9 .social-tooltip .social-google-plus span {
background: #ea4335;
background: -webkit-linear-gradient(#ea4335, #ea4335);
background: linear-gradient(#ea4335, #ea4335);
color: #fff;
}
.cb-social9 .social-tooltip .social-google-plus span:after {
border-top-color: #ea4335;
}
.cb-social9 .social-tooltip i {
position: relative;
top: 1px;
font-size: 14px;
}
.cb-social9 .social-tooltip small {
font-size: 14px;
margin: 0 0 0 9px;
} .cb-social10 .social-bar {
position: fixed;
min-height: 200px;
width: 40px;
background: #fff;
right: 0;
z-index: 9;
top: 40%;
}
.cb-social10 .social-bar i {
font-size: 16px;
}
.cb-social10 .multipage {
background: #ee3046;
border: 2px #ee3046 solid;
color: #fff;
}
.cb-social10 .multipage:hover {
background: #fff;
border: 2px #fff solid;
color: #333;
}
.cb-social10 .facebook {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .facebook a {
color: #fff;
padding: 10px 16px;
background-color: #527aba;
display: inline-block;
transition: 0.5s ease;
}
.cb-social10 .twitter {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .twitter a {
color: #fff;
padding: 10px 16px;
background-color: #77cdf1;
display: inline-block;
text-align: center;
transition: 0.5s ease;
}
.cb-social10 .google {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .google a {
color: #fff;
padding: 10px 16px;
background-color: #fe322f;
display: inline-block;
transition: 0.5s ease;
text-align: center;
}
.cb-social10 .rss {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .rss a {
color: #fff;
padding: 10px 16px;
background-color: #fe8f19;
display: inline-block;
transition: 0.5s ease;
}
.cb-social10 .linkedin {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .linkedin a {
color: #fff;
padding: 10px 16px;
background-color: #157ecc;
display: inline-block;
transition: 0.5s ease;
}
.cb-social10 .youtube {
margin: 0 auto;
float: left;
margin-right: 4px;
}
.cb-social10 .youtube a {
color: #fff;
padding: 10px 16px;
background-color: #fe322f;
display: inline-block;
transition: 0.5s ease;
} .cb-download1 {
background-color: #3498db;
padding: 80px 0;
}
.cb-download1 a {
font-size: 36px;
text-transform: uppercase;
font-weight: 400;
text-decoration: none;
color: #fff;
}
.cb-download1 a:hover {
color: #f5f5f5;
} .cb-download2 {
padding: 80px 0;
position: relative;
color: #fff;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.cb-download2::before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-image: linear-gradient(to bottom right, #3498db, #425cbb);
opacity: .6;
}
.cb-download2 .container {
position: relative;
}
.cb-download2 .content {
text-align: center;
}
.cb-download2 .content h3 {
font-size: 32px;
position: relative;
}
.cb-download2 .content h3::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
background-color: #fff;
margin-left: -20px;
width: 40px;
height: 2px;
}
.cb-download2 .content p {
width: 80%;
margin: 40px auto;
}
.cb-download2 .btn-default-transparent {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
}
.cb-download2 .btn-default-transparent:hover {
border-color: #fff;
color: #fff;
background-color: #000;
}
.cb-download2 .btn-default {
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #b7b7b7;
color: #333;
background-color: #fff;
}
.cb-download2 .btn-default:hover {
border-color: #425cbb;
background-color: #425cbb;
} .cb-download3 {
padding: 40px 0;
position: relative;
color: #282828;
background-color: #fff;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-download3 h3 {
text-transform: uppercase;
font-size: 32px;
font-weight: 300;
}
.cb-download3 .content-left {
text-align: right;
}
.cb-download3 .btn-default-blue-tiny {
padding: 15px 20px;
border-radius: 46px;
border: 8px solid #f5f5f5;
background: #3498db;
border-radius: 40px;
color: #fff;
}
.cb-download3 .btn-default-blue-tiny:hover {
border: 8px solid #3498db;
background-color: transparent;
color: #000;
} .cb-download4 {
padding: 80px 0;
color: #fff;
background-color: #000000;
}
.cb-download4 .content {
text-align: center;
}
.cb-download4 .content h3 {
font-size: 32px;
margin-top: 0;
}
.cb-download4 .content p {
width: 80%;
margin: 40px auto;
}
.cb-download4 .btn-default {
color: #3498db;
margin: 0 10px;
color: #fff;
border: 1px solid #fff;
}
.cb-download4 .btn-default:hover {
border-color: #fff;
background-color: transparent;
color: #fff;
}
@media (max-width: 968px) {
.cb-download4 .btn {
margin-bottom: 10px;
}
} .cb-download5 {
padding: 40px 0 0 0;
text-align: center;
}
.cb-download5 .content {
margin-top: 80px;
}
.cb-download5 h3 {
font-size: 42px;
text-transform: uppercase;
font-weight: 700;
}
.cb-download5 h4 {
font-size: 24px;
font-weight: 300;
}
.cb-download5 .news {
margin-top: 120px;
margin-bottom: 15px;
}
.cb-download5 .form-control {
background-color: #fff;
border-radius: 2px;
width: 100%;
float: left;
}
.cb-download5 .btn {
margin-left: 1%;
background-color: #425cbb;
padding-top: 5px;
padding-left: 20px;
padding-right: 20px;
border: 1px solid #425cbb;
color: #fff;
} .cb-partner1 {
padding: 40px 0 50px 0;
background-color: #ededed;
}
.cb-partner1 h3 {
font-size: 22px;
margin-bottom: 40px;
opacity: .65;
}
.cb-partner1 img {
opacity: .65;
} .cb-partner2 {
text-align: center;
overflow: hidden;
padding-top: 50px;
padding-bottom: 50px;
}
.cb-partner2 p {
margin-bottom: 20px;
}
.cb-partner2 .partner {
}
.cb-partner2 img {
border-left: 1px solid #f4f5f7;
border-right: 1px solid #f4f5f7;
margin: 30px auto;
}
.cb-partner2 .partner::before {
content: "";
position: absolute;
top: 23px;
left: 50%;
background-color: rgba(231, 76, 60, 0.1);
width: 8px;
height: 8px;
border-radius: 50%;
}
.cb-partner2 .partner::after {
content: "";
position: absolute;
bottom: 23px;
right: 50%;
margin-right: -104.5px;
background-color: rgba(231, 76, 60, 0.1);
width: 8px;
height: 8px;
border-radius: 50%;
}
.cb-partner2 .partner:hover {
background-color: #f4f5f7;
transition: .5s ease all;
} .cb-partner3 {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-partner3 ol {
}
.cb-partner3 ol li {
color: #000;
background-color: #fff;
border: 1px solid #000;
border-radius: 100%;
height: 8px;
width: 8px;
}
.cb-partner3 ol li:active {
background-color: #000;
}
.cb-partner3 ol li:hover {
background-color: grey;
}
.cb-partner3 .carousel-inner .carousel-item {
}
.cb-partner3 .carousel-inner .carousel-item img {
border-left: 1px solid #f4f5f7;
border-right: 1px solid #f4f5f7;
margin: 30px auto;
} .cb-cta1 {
background-position: center center;
background-size: cover;
}
.cb-cta1 .overlay {
background-color: rgba(66, 92, 187, 0.81);
height: 100%;
}
.cb-cta1 .row {
padding-top: 125px;
padding-bottom: 125px;
}
.cb-cta1 h4 {
color: #fff;
text-align: center;
text-transform: uppercase;
font-size: 16px;
}
.cb-cta1 h3 {
color: #fff;
text-align: center;
text-transform: uppercase;
font-size: 32px;
}
.cb-cta1 .buttons {
margin-top: 30px;
}
.cb-cta1 .buttons .btn1 {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
text-decoration: none;
}
.cb-cta1 .buttons .btn1:hover {
color: #000;
background-color: #fff;
}
.cb-cta1 .buttons .btn2 {
background: transparent;
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #fff;
color: #fff;
text-decoration: none;
}
.cb-cta1 .buttons .btn2:hover {
color: #000;
background-color: #fff;
} .cb-cta2 {
background-color: #335695;
padding: 40px 0;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-cta2 h1 {
text-align: center;
color: #fff;
font-size: 22px;
text-transform: uppercase;
margin-top: 0;
}
.cb-cta2 h2 {
color: #fff;
font-size: 22px;
}
.cb-cta2 p {
color: #fff;
font-size: 12px;
}
.cb-cta2 p:first-child {
color: #fff;
font-size: 16px;
padding-left: 10px;
border-left: 2px solid #fff;
}
.cb-cta2 .btn {
background-color: transparent;
border: 1px solid #fff;
color: #fff;
}
.cb-cta2 .btn:hover {
background-color: #fff;
color: #000;
} .cb-cta3 {
background-color: #3498db;
padding: 40px 0;
}
.cb-cta3 h3 {
color: #fff;
}
.cb-cta3 .btn {
border: 1px solid #fff;
background-color: #fff;
color: #282828;
font-weight: 500;
text-transform: uppercase;
}
.cb-cta3 .btn:hover {
color: #fff;
background-color: #05436c;
border: 1px solid #05436c;
} .cb-cta4 {
background-color: #ffb504;
padding: 30px 0;
}
.cb-cta4 .content {
overflow: hidden;
}
.cb-cta4 .content h3 {
color: #fff;
font-weight: 500;
width: 80%;
}
.cb-cta4 .content .btn {
background-color: #282828;
color: #fff;
border-color: #282828;
border-radius: 0;
text-transform: uppercase;
font-weight: 700;
align-items: center;
display: flex;
}
.cb-cta4 .content .btn:hover {
color: #282828;
background-color: #fff;
} .cb-cta5 {
background-attachment: fixed;
background-position: center center;
background-size: cover;
position: relative;
}
.cb-cta5 .overlay {
background-color: rgba(0, 0, 0, 0.62);
width: 100%;
height: 100%;
}
.cb-cta5 .row {
padding-top: 80px;
padding-bottom: 80px;
}
.cb-cta5 h3 {
font-size: 16px;
color: #ffb504;
margin: 0;
}
.cb-cta5 h2 {
font-weight: 700;
text-transform: uppercase;
margin-top: 40px;
margin-bottom: 40px;
color: #fff;
}
.cb-cta5 .buttons {
margin-top: 20px;
}
.cb-cta5 .buttons .btn1 {
border-radius: 0;
border: 1px solid #fff;
padding: 14px 28px;
text-transform: uppercase;
font-weight: 700;
margin-right: 10px;
background-color: rgba(40, 40, 40, 0);
color: #fff;
border-color: #fff;
text-decoration: none;
}
.cb-cta5 .buttons .btn2 {
border-radius: 0;
padding: 14px 28px;
text-transform: uppercase;
font-weight: 700;
margin-left: 10px;
background-color: #ffb504;
color: #000;
border: 1px solid #000;
text-decoration: none;
}
.cb-cta5 .buttons .btn1:hover {
background-color: #282828;
color: #fff;
border-color: #fff;
}
.cb-cta5 .buttons .btn2:hover {
background-color: #282828;
color: #fff;
border-color: #fff;
} .cb-cta6 {
padding: 40px 0;
}
.cb-cta6 .btn {
border-radius: 40px;
padding: 12px 24px;
border: 1px solid #b7b7b7;
color: #000;
text-decoration: none;
}
.cb-cta6 .btn:hover {
background-color: #fff;
border-color: #e74c3c;
color: #e74c3c;
}
.cb-cta6 .icons {
margin-top: 10px;
}
.cb-cta6 .icons i {
font-size: 28px;
color: #e74c3c;
margin-left: 10px;
}
.cb-cta6 .icons i:hover {
color: #282828;
transition: .5s ease all;
} .cb-cta7 {
}
.cb-cta7 {
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.cb-cta7 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.62);
}
.cb-cta7 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-cta7  h3 {
font-size: 22px;
line-height: 32px;
color: #ffffff;
}
.cb-cta7  p {
margin: 5px 0 30px 0px;
color: #ffffff;
}
.cb-cta7 .btn {
display: inline-block;
padding: 20px 30px;
font-size: 16px;
text-decoration: none;
background-color: #0095ff;
color: #fff;
}
.cb-cta7 .btn:hover {
background-color: #000;
color: #fff;
} .cb-subscribe1 {
background-color: #282828;
padding: 80px 0;
}
.cb-subscribe1 h3 {
margin-top: 0;
margin-bottom: 30px;
color: #fff;
text-align: center;
}
.cb-subscribe1 .form-control {
background-color: #393939;
border: 2px solid #fff;
width: 60%;
border-radius: 0px;
margin: 0 auto;
}
.cb-subscribe1 .form-subscribe {
position: relative;
}
.cb-subscribe1 .btn {
position: absolute;
top: 2px;
right: 20%;
margin-right: 2px;
color: #ffffff;
border-radius: 0px !important;
border-left: 1px solid #fff;
}
.cb-subscribe1 .btn:hover {
background-color: #fff;
color: #000;
} .cb-subscribe2 {
background: #425cbb;
padding: 20px 0;
}
.cb-subscribe2 .icon {
float: left;
}
.cb-subscribe2 .fa {
color: #fff;
font-size: 32px;
margin-right: 15px;
line-height: 48px;
}
.cb-subscribe2 p {
font-size: 12px;
color: #fff;
overflow: hidden;
margin-bottom: 0;
}
.cb-subscribe2 h3 {
margin: 0;
font-size: 24px;
height: 28px;
color: #fff;
overflow: hidden;
}
.cb-subscribe2 .form-control {
background: #fff;
border-radius: 0px;
border: 1px solid #f5f5f5;
}
.cb-subscribe2 .btn {
color: #fff;
background-color: #000;
right: 15px;
padding: 10px 28px;
text-transform: uppercase;
border-radius: 0px;
border: 1px solid #000;
height: auto;
}
.cb-subscribe2 .btn:hover {
color: #000;
background-color: #fff;
border: 1px solid #000;
} .cb-subscribe3 {
background-color: #3498db;
padding: 60px 0;
}
.cb-subscribe3 h3 {
color: #fff;
margin: 0;
vertical-align: middle;
margin-top: 10px;
}
.cb-subscribe3 .form-control {
background-color: #05436c;
border-radius: 40px;
padding: 20px;
border: 0;
color: #fff;
outline: 0;
padding-right: 215px;
height: auto;
}
.cb-subscribe3 .btn-default {
background-color: #fff;
text-transform: uppercase;
position: absolute;
top: 0;
right: 15px;
padding: 19px 40px;
border-radius: 40px;
}
.cb-subscribe3 .btn-default:hover {
opacity: .9;
transition: .5s ease all;
}
.cb-subscribe3 .form-control::-webkit-input-placeholder {
color: #3498db;
}
.cb-subscribe3 .form-control::-moz-placeholder {
color: #3498db;
} .cb-subscribe3 .form-control:-ms-input-placeholder {
color: #3498db;
} .cb-subscribe3 .form-control input:-moz-placeholder {
color: #3498db;
}
@media (max-width: 768px) {
.cb-subscribe3 h3 {
margin-bottom: 10px;
text-align: center;
}
}
@media (max-width: 480px) {
.cb-subscribe3 {
padding: 60px 0 100px 0;
}
.cb-subscribe3 .btn-default {
top: 70px;
left: 18px;
}
.cb-subscribe3 .form-control {
padding-right: 15px;
}
} .cb-subscribe4 {
background: #000000;
overflow: hidden;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
position: relative;
background-position: center center;
}
.cb-subscribe4 .overlay {
background-color: rgba(0, 0, 0, 0.5) !important;
width: 100%;
height: 100%;
}
.cb-subscribe4 .row {
padding-top: 250px;
padding-bottom: 250px;
}
.cb-subscribe4 .form {
text-align: center;
}
.cb-subscribe4 .form h1 {
color: #ffffff;
font-size: 50px;
font-weight: 600;
text-transform: uppercase;
}
.cb-subscribe4 .form p {
color: #ffffff;
font-size: 18px;
font-weight: 400;
}
.cb-subscribe4 .form form {
padding: 0;
font-size: 0;
margin-top: 25px;
}
.cb-subscribe4 .form form input {
margin: 0;
width: 50%;
height: 50px;
border: none;
font-size: 15px;
padding: 0 20px;
}
.cb-subscribe4 .form form input:focus {
border: none;
outline: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-subscribe4 .form form button {
margin: 0;
width: 60px;
height: 50px;
border: none;
color: #ffffff;
font-size: 15px;
background: #0095ff;
}
.cb-subscribe4 .form form button:hover,
.cb-subscribe4 .form form button:active {
color: #0095ff;
background: #1a1a1a;
outline: none;
}
.cb-subscribe4 .form form input::-webkit-input-placeholder {
color: #666666;
font-weight: 400;
text-transform: capitalize;
} .cb-subscribe5 {
overflow: hidden;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.cb-subscribe5 .overlay {
background-color: rgba(0, 0, 0, 0.7) !important;
width: 100%;
height: 100%;
}
.cb-subscribe5 .padding {
padding-top: 150px;
padding-bottom: 150px;
}
.cb-subscribe5 .content h1 {
font-size: 42px;
font-weight: 300;
text-align: center;
color: #fff;
}
.cb-subscribe5 .content p {
font-size: 16px;
font-weight: 300;
line-height: 2em;
text-align: center;
color: #fff;
}
.cb-subscribe5 .content {
text-align: center;
margin-bottom: 70px;
}
.cb-subscribe5 .content .underline {
display: inline-block;
width: 160px;
height: 1px;
margin-top: 21px;
text-align: center;
border-top: 4px solid #0099e6;
}
.cb-subscribe5 .content span {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
background: transparent;
}
.cb-subscribe5 .contact {
}
.cb-subscribe5 .contact form {
text-align: center;
}
.cb-subscribe5 .contact input {
border: 1px solid #ffffff;
background: none;
color: #fff;
border-radius: 3px;
margin-right: 10px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
.cb-subscribe5 .contact fieldset {
background: transparent;
}
.cb-subscribe5 .contact .btn {
background: transparent;
color: #fff;
font-weight: 600;
font-size: 18px;
border-radius: 3px;
}
.cb-subscribe5 .contact .btn-send {
border: 1px solid #ffffff;
}
.cb-subscribe5 .contact .btn-send:hover {
background-color: #0095ff;
border-color: #0095ff;
} .cb-portfolio1 {
padding: 40px 0;
}
.cb-portfolio1 .filters {
text-align: center;
margin-bottom: 40px;
}
.cb-portfolio1 .filters .btn {
background-color: transparent;
color: #000;
border: 1px solid #000;
border-radius: 3px;
}
.cb-portfolio1 .filters .btn:hover {
background-color: #000;
color: #fff;
}
.cb-portfolio1 .filters .btn:active {
color: #fff;
background-color: blue;
border-color: blue;
}
.cb-portfolio1 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 33.33333333333333%;
-moz-column-width: 33.33333333333333%;
column-width: 33.33333333333333%;
} @media (max-width: 768px) {
.cb-portfolio1 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 100%;
-moz-column-width: 100%;
column-width: 100%;
}
.cb-portfolio1 .filters .btn {
margin-bottom: 10px;
}
}
.cb-portfolio1 .tile {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 350ms ease;
transition: all 350ms ease;
}
.cb-portfolio1 .tile:hover {
}
.cb-portfolio1 .scale-anm {
transform: scale(1);
}
.cb-portfolio1 .tile img {
max-width: 100%;
width: 100%;
height: 250px;
margin-bottom: 1rem;
object-fit: cover;
}
.cb-portfolio1 .title h3 {
text-transform: uppercase;
text-align: center;
font-size: 24px;
}
.cb-portfolio1 .title p {
text-align: center;
font-size: 12px;
margin-bottom: 40px;
} .cb-portfolio2 {
padding: 40px 0;
}
.cb-portfolio2 .filters {
text-align: center;
margin-bottom: 40px;
}
.cb-portfolio2 .filters .btn {
background-color: transparent;
color: #000;
border: 1px solid #000;
border-radius: 3px;
}
.cb-portfolio2 .filters .btn:hover {
background-color: #000;
color: #fff;
}
.cb-portfolio2 .filters .btn:active {
color: #fff;
background-color: blue;
border-color: blue;
}
.cb-portfolio2 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 25%;
-moz-column-width: 25%;
column-width: 25%;
} @media (max-width: 768px) {
.cb-portfolio2 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 100%;
-moz-column-width: 100%;
column-width: 100%;
}
.cb-portfolio2 .filters .btn {
margin-bottom: 10px;
}
}
.cb-portfolio2 .tile {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 350ms ease;
transition: all 350ms ease;
}
.cb-portfolio2 .tile:hover {
}
.cb-portfolio2 .scale-anm {
transform: scale(1);
}
.cb-portfolio2 .tile img {
max-width: 100%;
width: 100%;
height: 250px;
margin-bottom: 1rem;
object-fit: cover;
}
.cb-portfolio2 .title h3 {
text-transform: uppercase;
text-align: center;
font-size: 24px;
}
.cb-portfolio2 .title p {
text-align: center;
font-size: 12px;
margin-bottom: 40px;
} .cb-portfolio3 {
padding: 40px 0;
}
.cb-portfolio3 .filters {
text-align: center;
margin-bottom: 40px;
}
.cb-portfolio3 .filters .btn {
background-color: transparent;
color: #000;
border: 1px solid #000;
border-radius: 3px;
}
.cb-portfolio3 .filters .btn:hover {
background-color: #000;
color: #fff;
}
.cb-portfolio3 .filters .btn:active {
color: #fff;
background-color: blue;
border-color: blue;
}
.cb-portfolio3 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 50%;
-moz-column-width: 50%;
column-width: 50%;
} @media (max-width: 768px) {
.cb-portfolio3 #cb-portfolio {
margin: 1rem 0;
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
-webkit-column-gap: 1rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
-webkit-column-width: 100%;
-moz-column-width: 100%;
column-width: 100%;
}
.cb-portfolio3 .filters .btn {
margin-bottom: 10px;
}
}
.cb-portfolio3 .tile {
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transition: all 350ms ease;
transition: all 350ms ease;
}
.cb-portfolio3 .tile:hover {
}
.cb-portfolio3 .scale-anm {
transform: scale(1);
}
.cb-portfolio3 .tile img {
max-width: 100%;
width: 100%;
height: 400px;
margin-bottom: 1rem;
object-fit: cover;
}
.cb-portfolio3 .title h3 {
text-transform: uppercase;
text-align: center;
font-size: 24px;
}
.cb-portfolio3 .title p {
text-align: center;
font-size: 12px;
margin-bottom: 40px;
} .cb-portfolio4 {
padding: 60px 0;
background-color: #f4f5f7;
}
.cb-portfolio4 .intro h3 {
text-align: center;
margin-bottom: 40px;
}
.cb-portfolio4 .intro {
width: 60%;
text-align: center;
margin: 0 auto;
}
.cb-portfolio4 .nomargin {
margin: 0;
}
.cb-portfolio4 img {
max-width: 100%;
position: relative;
width: 100%;
object-fit: cover;
height: 200px;
}
.cb-portfolio4 .content {
position: relative;
}
.cb-portfolio4 .overlay {
position: absolute;
left: 0;
background-color: #282828;
width: 100%;
height: 100%;
z-index: 2;
opacity: 0;
text-decoration: none;
}
.cb-portfolio4 .row .col-md-4 {
margin: 15px 0;
}
.cb-portfolio4 .overlay span {
font-size: 48px;
font-weight: 700;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.cb-portfolio4 .content:hover .overlay {
opacity: .8;
transition: .5s ease all;
}
@media (max-width: 768px) {
.cb-portfolio4 .intro {
width: 100%;
}
}  .cb-gallery1 {
margin-top: 0px;
margin-bottom: 0px;
}
.cb-gallery1 .gallery1_header > h1,
.cb-gallery1 .gallery1_gal_btn > a,
.cb-gallery1 .gallery1_slide_txt > a,
.cb-gallery1 .gallery1_slide_txt > a > span {
margin: 0;
text-decoration: none;
text-shadow: none;
}
.cb-gallery1 .gallery1_gal {
padding: 25px 0;
}
.cb-gallery1 .gallery1_gal_main {
padding: 25px 200px;
}
.cb-gallery1 .gallery1_gal > .row {
margin: 0;
}
.cb-gallery1 .gallery1_gal > .row > div {
padding: 0;
}
.cb-gallery1 .gallery1_gal_container {
overflow: hidden;
position: relative;
}
.cb-gallery1 .gallery1_gal_img {
overflow: hidden;
position: relative;
}
.cb-gallery1 .gallery1_gal_img > img {
width: 100%;
margin: auto;
display: block;
height: 250px;
object-fit: cover;
}
.cb-gallery1 .gallery1_gal_btn {
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
visibility: hidden;
text-align: center;
position: absolute;
background: rgba(23, 108, 255, 0.45);
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0);
}
.cb-gallery1 .gallery1_gal_container:hover .gallery1_gal_btn {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.cb-gallery1 .gallery1_gal_btn > a {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 50px;
height: 50px;
margin: auto;
color: #ffffff;
font-size: 12px;
text-shadow: none;
line-height: 50px;
position: absolute;
background: #2b2b2b;
display: inline-block;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.cb-gallery1 .gallery1_gal_btn > a:nth-child(1) {
left: 51px;
}
.cb-gallery1 .gallery1_gal_btn > a:nth-child(2) {
right: 51px;
}
.cb-gallery1 .gallery1_gal_btn > a:hover {
color: #000;
background: #fff;
}
.cb-gallery1 .modal.fade.gallery1_img_001_mod_sld .modal-dialog {
opacity: 0;
visibility: hidden;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.cb-gallery1 .modal.show.gallery1_img_001_mod_sld .modal-dialog {
opacity: 1;
visibility: visible;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.cb-gallery1 .modal-backdrop {
background: transparent;
}
.cb-gallery1 .modal.gallery1_img_001_mod_sld.carousel {
position: fixed;
}
.cb-gallery1 .gallery1_img_001_mod_sld {
padding-left: 0 !important;
padding-right: 0 !important;
}
.cb-gallery1 .gallery1_img_001_mod_sld > .modal-dialog {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
margin: auto;
overflow-y: auto;
overflow-x: hidden;
position: absolute;
background: transparent;
}
@media (min-width: 1301px) {
.cb-gallery1 .gallery1_img_001_mod_sld > .modal-dialog {
width: 100%;
height: 100%;
margin: auto;
}
}
.cb-gallery1 .gallery1_img_001_mod_sld > .modal-dialog > .modal-content {
outline: 0;
width: 100%;
border: none;
margin: auto;
height: 100%;
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-gallery1 .gallery1_img_001_mod_sld > .modal-dialog::-webkit-scrollbar {
width: 2px;
}
.cb-gallery1 .gallery1_img_001_mod_sld > .modal-dialog::-webkit-scrollbar-thumb {
background: #8e8e8e;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-gallery1 a.gallery1_close {
top: 10px;
right: 10px;
width: 40px;
z-index: 10001;
height: 40px;
color: #fff;
font-size: 30px;
font-weight: bold;
line-height: 40px;
text-align: center;
position: absolute;
background: transparent;
text-decoration: none;
text-shadow: none;
text-transform: uppercase;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-gallery1 .gallery1_close:hover {
color: #fff;
background: transparent;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators {
left: 0;
right: 0;
top: 15px;
width: 50%;
padding: 0;
height: 20px;
margin: auto;
bottom: auto;
cursor: pointer;
overflow-x: auto;
text-align: left;
overflow-y: hidden;
white-space: nocontainer;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators li {
padding: 0;
width: 7px;
height: 7px;
border: none;
text-indent: 0;
margin: 5px 2px;
cursor: pointer;
overflow: hidden;
background: #ffffff;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators .active {
width: 7px;
height: 7px;
border: none;
text-indent: 0;
margin: 5px 2px;
background: #ff6a00;
}
.cb-gallery1 .carousel-inner > .item {
position: relative;
display: none;
-webkit-transition: .6s ease-in-out left;
-o-transition: .6s ease-in-out left;
transition: .6s ease-in-out left;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators::-webkit-scrollbar {
height: 2px;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators::-webkit-scrollbar-thumb {
background: #c0c0d3;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-gallery1 .gallery1_controls .carousel-control {
top: 45%;
opacity: 1;
width: 40px;
height: 40px;
z-index: 100;
color: #ffffff;
font-size: 30px;
cursor: pointer;
font-weight: 100;
overflow: hidden;
line-height: 40px;
text-shadow: none;
position: absolute;
background: transparent;
text-shadow: none;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-gallery1 .gallery1_controls .carousel-control.left {
left: 5%;
text-decoration: none;
}
.cb-gallery1 .gallery1_controls .carousel-control.right {
right: 5%;
left: auto;
text-decoration: none;
}
.cb-gallery1 .gallery1_controls .carousel-control:hover {
color: #176cff;
background: transparent;
}
.cb-gallery1 > .gallery1_slide_img {
padding: 50px 0 0 0;
}
.cb-gallery1 .gallery1_slide_img > img {
width: 100%;
margin: auto;
display: block;
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
height: 300px;
object-fit: cover;
}
.cb-gallery1 .gallery1_slide_txt {
width: 100%;
margin: auto;
padding: 15px 0;
}
.cb-gallery1 .gallery1_slide_txt > a {
color: #ffffff;
display: block;
font-weight: 300;
}
.cb-gallery1 .gallery1_slide_txt > a:nth-child(1) {
font-size: 18px;
margin-bottom: 5px;
letter-spacing: 1px;
text-transform: uppercase;
}
.cb-gallery1 .gallery1_slide_txt > a > span {
color: #8e8e8e;
margin-right: 5px;
}
.cb-gallery1 .gallery1_slide_txt > a:hover {
color: #176cff;
}
@media only screen and (max-width: 480px) {
.cb-gallery1 .gallery1_header {
width: 95%;
}
.cb-gallery1 .gallery1_header > h1 {
font-size: 20px;
}
.cb-gallery1 .gallery1_gal {
padding: 25px 0;
}
.cb-gallery1 .gallery1_gal_main {
padding: 25px;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators {
top: 50px;
width: 90%;
}
.cb-gallery1 .gallery1_controls .carousel-control {
top: 0;
}
.cb-gallery1 .gallery1_controls .carousel-control.left {
left: 15px;
right: auto;
}
.cb-gallery1 .gallery1_controls .carousel-control.right {
left: 66px;
right: auto;
}
.cb-gallery1 .gallery1_slide_img {
padding: 75px 0 0 0;
}
.cb-gallery1 .gallery1_slide_img > img {
width: 90%;
}
.cb-gallery1 .gallery1_slide_txt {
width: 90%;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-gallery1 .gallery1_header {
width: 75%;
}
.cb-gallery1 .gallery1_gal {
padding: 25px 50px;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators {
top: 50px;
width: 80%;
}
.cb-gallery1 .gallery1_controls .carousel-control {
top: 0;
}
.cb-gallery1 .gallery1_controls .carousel-control.left {
left: 15px;
right: auto;
}
.cb-gallery1 .gallery1_controls .carousel-control.right {
left: 66px;
right: auto;
}
.cb-gallery1 .gallery1_slide_img {
padding: 75px 0 0 0;
}
.cb-gallery1 .gallery1_slide_img > img {
width: 80%;
}
.cb-gallery1 .gallery1_slide_txt {
width: 80%;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-gallery1 .gallery1_header {
width: 60%;
}
.cb-gallery1 .gallery1_gal {
padding: 25px 100px;
}
.cb-gallery1 .gallery1_indicators .carousel-indicators {
top: 50px;
width: 70%;
}
.cb-gallery1 .gallery1_controls .carousel-control {
top: 0;
}
.cb-gallery1 .gallery1_controls .carousel-control.left {
left: 15px;
right: auto;
}
.cb-gallery1 .gallery1_controls .carousel-control.right {
left: 66px;
right: auto;
}
.cb-gallery1 .gallery1_slide_img {
padding: 75px 0 0 0;
}
.cb-gallery1 .gallery1_slide_img > img {
width: 70%;
}
.cb-gallery1 .gallery1_slide_txt {
width: 70%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.cb-gallery1 .gallery1_gal_main {
padding: 25px 50px;
}
}
@media (min-width: 992px) and (max-width: 1200px) {
.cb-gallery1 .gallery1_gal_main {
padding: 25px 150px;
}
}
.cb-gallery1 .gallery1_background_colour:before {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
content: "";
opacity: 0.9;
height: 100%;
margin: auto;
position: fixed;
background: #313131;
}
.cb-gallery1 .gallery1_easeOutInCubic .carousel-inner > .item {
-webkit-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
-moz-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
@media all and (transform-3d),
(-webkit-transform-3d) {
.cb-gallery1 .gallery1_easeOutInCubic .carousel-inner > .item {
-webkit-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
-moz-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
} .cb-gallery2 {
margin-top: 0;
margin-bottom: 0;
}
.cb-gallery2 .gallery2_container {
overflow: hidden;
padding: 0 0 20px 0;
}
.cb-gallery2 .gallery2_header {
margin: auto;
text-align: center;
padding: 50px 0 20px 0;
}
.cb-gallery2 .gallery2_header > h1 {
color: #313131;
font-size: 35px;
font-weight: 300;
text-transform: uppercase;
}
.cb-gallery2 .gallery2_header > h1,
.cb-gallery2 .gallery2_trig_btn > a,
.cb-gallery2 .gallery2_trig_txt > a,
.cb-gallery2 .gallery2_trig_txt > span {
margin: 0;
text-decoration: none;
text-shadow: none;
-webkit-font-smoothing: antialiased;
}
.cb-gallery2 .gallery2_trig {
padding: 25px 1px;
}
.cb-gallery2 .gallery2_trig_col_2 {
padding: 25px 200px;
}
.cb-gallery2 .gallery2_trig > .row {
margin: 0;
}
.cb-gallery2 .gallery2_trig > .row > div {
padding: 1px;
}
.cb-gallery2 .gallery2_trig_wrap {
overflow: hidden;
position: relative;
}
.cb-gallery2 .gallery2_trig_img {
overflow: hidden;
position: relative;
}
.cb-gallery2 .gallery2_trig_img > img {
width: 100%;
margin: auto;
display: block;
-webkit-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transition: all 250ms ease-out;
transition: all 250ms ease-out;
object-fit: cover;
height: 200px;
}
.cb-gallery2 .gallery2_trig_wrap:hover .gallery2_trig_img > img {
-webkit-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.cb-gallery2 .gallery2_trig_btn > a {
color: #176cff;
font-size: 13px;
margin-top: 5px;
font-weight: 600;
text-shadow: none;
padding: 7px 20px;
display: inline-block;
border: 2px solid #176cff;
text-transform: capitalize;
-webkit-font-smoothing: antialiased;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
}
.cb-gallery2 .gallery2_trig_btn > a:hover {
color: #ffffff;
background: #176cff;
}
.cb-gallery2 .gallery2_trig_btn > a:focus {
outline: none;
}
.cb-gallery2 .gallery2_trig_txt {
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
visibility: hidden;
text-align: center;
position: absolute;
padding: 15px 3px 3px 3px;
background: rgba(0, 0, 0, .8);
-webkit-transition: all 250ms ease-out;
transition: all 250ms ease-out;
}
.cb-gallery2 .gallery2_trig_txt_col_4 {
padding: 40px 5px 5px 5px;
}
.cb-gallery2 .gallery2_trig_txt_col_3 {
padding: 70px 10px 10px 10px;
}
.cb-gallery2 .gallery2_trig_txt_col_2 {
padding: 70px 10px 10px 10px;
}
.cb-gallery2 .gallery2_trig_wrap:hover .gallery2_trig_txt {
opacity: 1;
visibility: visible;
}
.cb-gallery2 .gallery2_trig_txt > a {
color: #ffffff;
display: block;
font-size: 14px;
font-weight: 600;
text-transform: capitalize;
-webkit-transition: color 0.5s cubic-bezier(.075, .82, .165, 1);
transition: color 0.5s cubic-bezier(.075, .82, .165, 1);
}
.cb-gallery2 .gallery2_trig_txt > a:hover {
color: #176cff;
}
.cb-gallery2 .gallery2_trig_txt > span {
color: #cccccc;
display: block;
font-size: 12px;
margin-top: 5px;
font-weight: 500;
text-transform: capitalize;
}
.cb-gallery2 .modal.fade.gallery2_video_mod_sld .modal-dialog {
opacity: 0;
visibility: hidden;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-transition: all 1s cubic-bezier(0.22, 0.81, 0.01, 0.99);
-o-transition: all 1s cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: all 1s cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-gallery2 .modal.in.gallery2_video_mod_sld .modal-dialog {
opacity: 1;
visibility: visible;
-webkit-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.cb-gallery2 .modal-backdrop {
background: transparent;
}
.cb-gallery2 .modal.gallery2_video_mod_sld.carousel {
position: fixed;
}
.cb-gallery2 .gallery2_video_mod_sld {
padding-left: 0 !important;
padding-right: 0 !important;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
margin: auto;
overflow-y: auto;
overflow-x: hidden;
position: absolute;
background: transparent;
}
@media (min-width: 768px) {
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog {
width: 97%;
height: 93%;
margin: auto;
max-width: 55rem;
}
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog > .modal-content {
outline: 0;
width: 100%;
border: none;
margin: auto;
height: 100%;
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-border-radius: 0;
border-radius: 0;
padding: 35px 60px;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog::-webkit-scrollbar {
width: 2px;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog::-webkit-scrollbar-thumb {
background: #8e8e8e;
-webkit-border-radius: 0;
border-radius: 0;
}
.cb-gallery2 a.gallery2_close {
top: 12px;
right: 40px;
width: 35px;
z-index: 100;
height: 35px;
color: #ffffff;
font-size: 16px;
font-weight: 100;
line-height: 30px;
text-align: center;
position: absolute;
background: #000000;
border: 3px solid #ffffff;
text-decoration: none;
text-shadow: none;
-webkit-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
-webkit-transition: all .6s cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: all .6s cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-gallery2 .gallery2_close:hover {
color: #ffffff;
background: #176cff;
}
.cb-gallery2 .gallery2_slide_txt > a,
.cb-gallery2 .gallery2_controls .carousel-control {
margin: 0;
text-decoration: none;
text-shadow: none;
-webkit-font-smoothing: antialiased;
}
.cb-gallery2 .gallery2_video_mod_sld .carousel-inner {
border: 3px solid #ffffff;
-webkit-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.cb-gallery2 .gallery2_video_mod_sld .carousel-inner,
.cb-gallery2 .gallery2_video_mod_sld .carousel-inner > .item {
overflow: hidden;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 45%;
opacity: 1;
width: 35px;
height: 35px;
z-index: 100;
color: #ffffff;
font-size: 35px;
cursor: pointer;
overflow: hidden;
line-height: 35px;
text-shadow: none;
position: absolute;
background: transparent;
text-transform: uppercase;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-gallery2 .gallery2_controls .carousel-control.left {
left: 0;
}
.cb-gallery2 .gallery2_controls .carousel-control.right {
right: 0;
left: auto;
}
.cb-gallery2 .gallery2_controls .carousel-control:hover {
color: #176cff;
background: transparent;
}
.cb-gallery2 .gallery2_video_lb {
height: 0;
overflow: hidden;
position: relative;
padding: 0 0 56.25% 0;
}
.cb-gallery2 .gallery2_video_lb > iframe {
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
outline: none;
position: absolute;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-gallery2 .gallery2_sldr_vid_002_image {
top: 0;
left: 0;
right: 0;
bottom: 0;
display: none;
position: absolute;
}
.cb-gallery2 .gallery2_sldr_vid_002_image > img {
width: 100%;
}
.cb-gallery2 .gallery2_slide_txt {
top: 0;
opacity: 0;
width: 100%;
padding: 2px 10px;
position: absolute;
visibility: hidden;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-gallery2 .gallery2_video_mod_sld .carousel-inner > .item:hover .gallery2_slide_txt {
opacity: 1;
visibility: visible;
}
.cb-gallery2 .gallery2_slide_txt > a {
color: #ffffff;
display: block;
font-size: 14px;
font-weight: 400;
letter-spacing: 1px;
text-transform: capitalize;
-webkit-transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
}
.cb-gallery2 .gallery2_slide_txt > a:hover {
color: #176cff;
}
@media only screen and (max-width: 480px) {
.cb-gallery2 .gallery2_header {
width: 95%;
}
.cb-gallery2 .gallery2_header > h1 {
font-size: 20px;
}
.cb-gallery2 .gallery2_trig {
padding: 25px;
}
.cb-gallery2 .gallery2_trig_col_2 {
padding: 25px;
}
.cb-gallery2 .gallery2_trig_txt {
padding: 10% 3px 3px 3px;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog > .modal-content {
padding: 50px 5px 5px 5px;
}
.cb-gallery2 a.gallery2_close {
top: 5px;
right: 5px;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 5px;
}
.cb-gallery2 .gallery2_controls .carousel-control.left {
left: 5px;
right: auto;
}
.cb-gallery2 .gallery2_controls .carousel-control.right {
left: 41px;
right: auto;
}
.cb-gallery2 .gallery2_sldr_vid_002_image {
display: block;
}
.cb-gallery2 .gallery2_slide_txt > a {
font-size: 10px;
}
}
@media (min-width: 481px) and (max-width: 600px) {
.cb-gallery2 .gallery2_header {
width: 75%;
}
.cb-gallery2 .gallery2_trig {
padding: 25px 50px;
}
.cb-gallery2 .gallery2_trig_txt {
padding: 15% 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt > a {
font-size: 18px;
}
.cb-gallery2 .gallery2_trig_txt > span {
font-size: 14px;
}
.cb-gallery2 a.gallery2_close {
top: 5px;
right: 5px;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog > .modal-content {
padding: 50px 5px 5px 5px;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 5px;
}
.cb-gallery2 .gallery2_controls .carousel-control.left {
left: 5px;
right: auto;
}
.cb-gallery2 .gallery2_controls .carousel-control.right {
left: 41px;
right: auto;
}
.cb-gallery2 .gallery2_sldr_vid_002_image {
display: block;
}
}
@media (min-width: 601px) and (max-width: 767px) {
.cb-gallery2 .gallery2_header {
width: 60%;
}
.cb-gallery2 .gallery2_trig {
padding: 25px 100px;
}
.cb-gallery2 .gallery2_trig_txt {
padding: 20% 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt > a {
font-size: 18px;
}
.cb-gallery2 .gallery2_trig_txt > span {
font-size: 14px;
}
.cb-gallery2 a.gallery2_close {
top: 5px;
right: 5px;
}
.cb-gallery2 .gallery2_video_mod_sld > .modal-dialog > .modal-content {
padding: 50px 15px 15px 15px;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 5px;
}
.cb-gallery2 .gallery2_controls .carousel-control.left {
left: 5px;
right: auto;
}
.cb-gallery2 .gallery2_controls .carousel-control.right {
left: 41px;
right: auto;
}
.cb-gallery2 .gallery2_sldr_vid_002_image {
display: block;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.cb-gallery2 .gallery2_trig_col_2 {
padding: 25px 50px;
}
.cb-gallery2 .gallery2_trig_txt {
padding: 10% 3px 3px 3px;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 25%;
}
.cb-gallery2 .gallery2_sldr_vid_002_image {
display: block;
}
}
@media (min-width: 992px) and (max-width: 1200px) {
.cb-gallery2 .gallery2_trig_col_2 {
padding: 25px 150px;
}
.cb-gallery2 .gallery2_trig_txt {
padding: 5% 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt_col_4 {
padding: 40px 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt_col_3 {
padding: 50px 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt_col_2 {
padding: 50px 3px 3px 3px;
}
.cb-gallery2 .gallery2_trig_txt > a {
font-size: 10px;
}
.cb-gallery2 .gallery2_trig_txt > span {
font-size: 10px;
}
.cb-gallery2 .gallery2_trig_btn > a {
font-size: 12px;
padding: 3px 10px;
}
.cb-gallery2 .gallery2_controls .carousel-control {
top: 35%;
}
}
.cb-gallery2 .gallery2_background:before {
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
content: "";
opacity: 0.9;
height: 100%;
margin: auto;
position: fixed;
background: #313131;
}
.cb-gallery2 .gallery2_swing .carousel-inner > .item {
-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
transition-timing-function: cubic-bezier(.02, .01, .47, 1);
}
@media all and (transform-3d),
(-webkit-transform-3d) {
.cb-gallery2 .gallery2_swing .carousel-inner > .item {
-webkit-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
-moz-transition-timing-function: cubic-bezier(.02, .01, .47, 1);
transition-timing-function: cubic-bezier(.02, .01, .47, 1);
}
} .cb-grid1 .box-pages {
padding-left: 1px!important;
}
.cb-grid1 .disable-mouse {
pointer-events: none;
}
.cb-grid1 .animate {
transform: translateX(0px)!important;
opacity: 1!important;
transition-duration: 0.2s;
}
.cb-grid1 .animate-hold {
transform: translateX(-20px);
opacity: 0;
transition-timing-function: ease-in-out;
}
.cb-grid1 .animate-opposite {
transform: translateX(0px)!important;
opacity: 1!important;
transition-duration: 0.2s;
}
.cb-grid1 .animate-hold-opposite {
transform: translateX(20px);
opacity: 0;
transition-timing-function: ease-in-out;
}
.cb-grid1 #box-area {
position: relative;
display: flex;
background-size: 100%;
background-position: 50%;
height: auto;
}
.cb-grid1 ul.box-pages {
margin: 0;
position: relative;
display: inline-block;
width: 100%;
}
.cb-grid1 .box-pages .box {
width: 33.333%;
float: left;
position: relative;
height: 46.5vh;
display: inline-flex;
text-align: center;
border: 1px solid #fff;
opacity: 1;
}
.cb-grid1 .box-info {
position: relative;
margin: auto;
color: #fff;
transition-duration: 0.5s;
width: 100%;
}
.cb-grid1 .box-background {
width: 100%;
height: 100%;
display: block;
position: absolute;
background-size: cover;
-webkit-filter: brightness(0.8);
-moz-filter: brightness(0.8);
-ms-filter: brightness(0.8);
-o-filter: brightness(0.8);
filter: brightness(0.8);
transition-duration: 0.2s;
-webkit-transition-timing-function: ease;
-moz-transition-timing-function: ease;
-ms-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
background-position: center center;
object-fit: cover;
}
.cb-grid1 .box-link {
position: absolute;
width: 100%;
height: 100%;
left: 0px;
}
.cb-grid1 .box-info h3 {
font-size: 24px;
width: auto;
margin: auto;
display: inline-table;
border-bottom: 2px solid #fff;
padding: 0px 20px;
}
.cb-grid1 #box-excerpt {
width: 90%;
margin: 0 auto;
}
.cb-grid1 ul.box-pages {
margin: 0;
padding-left: 0px!important;
}
@media only screen and (max-width: 1220px) {
.cb-grid1 .box-pages .box:nth-child(-n+3) {
border-bottom: 1px solid #fff;
}
.cb-grid1 .box-pages .box {
width: 50%;
border: 1px solid #fff!important;
}
.cb-grid1 .box-pages .box {
width: 100%;
}
} .cb-grid2 {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid2 .max-height {
height: 300px;
}
.cb-grid2 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid2 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid2 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
opacity: 0;
background-color: rgba(0,0,0,0.5);
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.cb-grid2 .hovereffect img {
display: block;
-webkit-transition: all .4s linear;
transition: all .4s linear;
overflow: hidden;
position: relative;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid2 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
background: rgba(0,0,0,0.6);
-webkit-transform: translatey(-100px);
-ms-transform: translatey(-100px);
transform: translatey(-100px);
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
padding: 10px;
}
.cb-grid2 .hovereffect a.info {
text-decoration: none;
display: inline-block;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
margin: 50px 0 0;
padding: 7px 14px;
}
.cb-grid2 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid2 .hovereffect:hover img {
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
.cb-grid2 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
}
.cb-grid2 .hovereffect:hover h2,
.cb-grid2 .hovereffect:hover a.info {
opacity: 1;
filter: alpha(opacity=100);
-ms-transform: translatey(0);
-webkit-transform: translatey(0);
transform: translatey(0);
}
.cb-grid2 .hovereffect:hover a.info {
-webkit-transition-delay: .2s;
transition-delay: .2s;
} .cb-grid3 {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid3 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid3 .max-height {
height: 300px;
}
.cb-grid3 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid3 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.6);
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translate(460px, -100px) rotate(180deg);
-ms-transform: translate(460px, -100px) rotate(180deg);
transform: translate(460px, -100px) rotate(180deg);
-webkit-transition: all 0.2s 0.4s ease-in-out;
transition: all 0.2s 0.4s ease-in-out;
}
.cb-grid3 .hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid3 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
}
.cb-grid3 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
-webkit-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.cb-grid3 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid3 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translate(0px, 0px);
-ms-transform: translate(0px, 0px);
transform: translate(0px, 0px);
}
.cb-grid3 .hovereffect:hover h2 {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.5s;
transition-delay: 0.5s;
}
.cb-grid3 .hovereffect:hover a.info {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
} .cb-grid4 {
overflow: hidden;
}
.cb-grid4 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid4 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid4 .max-height {
height: 300px;
}
.cb-grid4 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.cb-grid4 .hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid4 .hovereffect:hover img {
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
filter: grayscale(1) blur(3px);
-webkit-filter: grayscale(1) blur(3px);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.cb-grid4 .hovereffect h2 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
}
.cb-grid4 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.cb-grid4 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid4 .hovereffect a.info,
.cb-grid4 .hovereffect h2 {
-webkit-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
-webkit-transition: all 0.4s ease-in;
transition: all 0.4s ease-in;
opacity: 0;
filter: alpha(opacity=0);
color: #fff;
text-transform: uppercase;
}
.cb-grid4 .hovereffect:hover a.info,
.cb-grid4 .hovereffect:hover h2 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
} .cb-grid5 {
overflow: hidden;
}
.cb-grid5 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
}
.cb-grid5 .max-height {
height: 300px;
}
.cb-grid5 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid5 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
background-color: rgba(75,75,75,0.7);
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cb-grid5 .hovereffect:hover .overlay {
background-color: rgba(48, 152, 157, 0.4);
}
.cb-grid5 .hovereffect img {
display: block;
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid5 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
-webkit-transform: translateY(45px);
-ms-transform: translateY(45px);
transform: translateY(45px);
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cb-grid5 .hovereffect:hover h2 {
-webkit-transform: translateY(5px);
-ms-transform: translateY(5px);
transform: translateY(5px);
}
.cb-grid5 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
font-weight: normal;
margin: -52px 0 0 0;
padding: 62px 100px;
}
.cb-grid5 .hovereffect:hover a.info {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.cb-grid5 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
} .cb-grid6 {
overflow: hidden;
}
.cb-grid6 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid6 .max-height {
height: 300px;
}
.cb-grid6 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid6 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
background-color: rgba(75,75,75,0.7);
-webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
}
.cb-grid6 .hovereffect:hover .overlay {
background-color: rgba(48, 152, 157, 0.4);
}
.cb-grid6 .hovereffect img {
display: block;
position: relative;
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid6 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
margin-top: 10px;
background: rgba(0, 0, 0, 0.6);
-webkit-transform: translateY(45px);
-ms-transform: translateY(45px);
transform: translateY(45px);
-webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
}
.cb-grid6 .hovereffect:hover h2 {
-webkit-transform: translateY(5px);
-ms-transform: translateY(5px);
transform: translateY(5px);
}
.cb-grid6 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s  cubic-bezier(0.88,-0.99, 0, 1.81);
font-weight: normal;
margin: -52px 0 0 0;
padding: 62px 100px;
}
.cb-grid6 .hovereffect:hover a.info {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.cb-grid6 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
} .cb-grid7 {
overflow: hidden;
}
.cb-grid7 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid7 .max-height {
height: 300px;
}
.cb-grid7 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid7 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
opacity: 0;
filter: alpha(opacity=0);
background-color: rgba(0,0,0,0.5);
-webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
}
.cb-grid7 .hovereffect img {
display: block;
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
-webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
}
.cb-grid7 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
background: rgba(0,0,0,0.6);
-webkit-transform: translatey(-100px);
-ms-transform: translatey(-100px);
transform: translatey(-100px);
-webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
padding: 10px;
margin-top: 50px;
}
.cb-grid7 .hovereffect a.info {
text-decoration: none;
display: inline-block;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
margin: 50px 0 0;
padding: 7px 14px;
}
.cb-grid7 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid7 .hovereffect:hover img {
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid7 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
}
.cb-grid7 .hovereffect:hover h2,
.cb-grid7 .hovereffect:hover a.info {
opacity: 1;
filter: alpha(opacity=100);
-ms-transform: translatey(0);
-webkit-transform: translatey(0);
transform: translatey(0);
}
.cb-grid7 .hovereffect:hover a.info {
-webkit-transition-delay: .2s;
transition-delay: .2s;
} .cb-grid8 {
overflow: hidden;
}
.cb-grid8 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid8 .hovereffect:hover {
}
.cb-grid8 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid8 .max-height {
height: 300px;
}
.cb-grid8 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cb-grid8 .hovereffect:hover .overlay {
background-color: rgba(170,170,170,0.4);
}
.cb-grid8 .hovereffect h2,
.cb-grid8 .hovereffect img {
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.cb-grid8 .hovereffect img {
display: block;
position: relative;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
}
.cb-grid8 .hovereffect:hover h2 {
display: none;
}
.cb-grid8 .hovereffect:hover img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.cb-grid8 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
}
.cb-grid8 .hovereffect a.info {
display: inline-block;
text-decoration: none;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
background-color: transparent;
opacity: 0;
padding-top: 50%;
padding-bottom: 50%;
}
.cb-grid8 .hovereffect a.info {
filter: alpha(opacity=0);
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5);
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
font-weight: normal;
width: 85%;
}
.cb-grid8 .hovereffect:hover a.info {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
background-color: rgba(0,0,0,0.4);
display: flex;
align-items: center;
justify-content: center;
} .cb-grid9 {
overflow: hidden;
}
.cb-grid9 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid9 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid9 .max-height {
height: 300px;
}
.cb-grid9 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid9 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.cb-grid9 .hovereffect img {
display: block;
position: relative;
object-fit: cover;
height: 100%;
width: 100%;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
-webkit-transition: all 0.35s;
transition: all 0.35s;
}
.cb-grid9 .hovereffect:hover img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.7" /><feFuncG type="linear" slope="0.7" /><feFuncB type="linear" slope="0.7" /></feComponentTransfer></filter></svg>#filter');
filter: brightness(0.7);
-webkit-filter: brightness(0.7);
}
.cb-grid9 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
width: 100%;
}
.cb-grid9 .hovereffect:hover h2 {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}
.cb-grid9 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.cb-grid9 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid9 .hovereffect .rotate {
width: 100%;
height: 100%;
position: absolute;
}
.cb-grid9 .hovereffect h2,
.cb-grid9 .hovereffect hr {
}
.cb-grid9 .group1 {
position: absolute;
background-color: transparent;
margin: 0px;
padding: 0px;
}
.cb-grid9 .group1 {
top: 43%;
}
.cb-grid9 .hovereffect p {
width: 100%;
text-transform: none;
font-size: 15px;
line-height: 2;
}
.cb-grid9 .hovereffect p a {
color: #fff;
}
.cb-grid9 .hovereffect p a:hover,
.cb-grid9 .hovereffect p a:focus {
opacity: 0.6;
filter: alpha(opacity=60);
}
.cb-grid9 .hovereffect  a i {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
padding: 10px;
font-size: 20px;
}
.cb-grid9 .hovereffect:hover .group1 i:empty,
.cb-grid9 .hovereffect:hover .group2 i:empty {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0) scale(1);
opacity: 1;
filter: alpha(opacity=100);
} .cb-grid10 {
overflow: hidden;
}
.cb-grid10 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid10 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid10 .max-height {
height: 250px;
}
.cb-grid10 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid10 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.cb-grid10 .hovereffect img {
display: block;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid10 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
}
.cb-grid10 .hovereffect:hover h2 {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}
.cb-grid10 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.cb-grid10 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid10 .hovereffect h2,
.cb-grid10 .hovereffect p {
position: absolute;
top: 50%;
left: 50%;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
-webkit-transform-origin: 50%;
-ms-transform-origin: 50%;
transform-origin: 50%;
background-color: transparent;
margin: 0px;
padding: 0px;
}
.cb-grid10 .hovereffect .overlay:before {
position: absolute;
}
.cb-grid10 .hovereffect p {
width: 20%;
text-transform: none;
font-size: 15px;
line-height: 2;
}
.cb-grid10 .hovereffect p a {
color: #fff;
}
.cb-grid10 .hovereffect p a:hover,
.cb-grid10 .hovereffect p a:focus {
opacity: 0.6;
filter: alpha(opacity=60);
}
.cb-grid10 .hovereffect  a i {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
padding: 0px 5px;
}
.cb-grid10 .hovereffect p a:first-child i {
-webkit-transform: translate3d(-60px,-60px,0);
transform: translate3d(-60px,-60px,0);
}
.cb-grid10 .hovereffect p a:nth-child(2) i {
-webkit-transform: translate3d(60px,-60px,0);
transform: translate3d(60px,-60px,0);
}
.cb-grid10 .hovereffect p a:nth-child(3) i {
-webkit-transform: translate3d(-60px,60px,0);
transform: translate3d(-60px,60px,0);
}
.cb-grid10 .hovereffect p a:nth-child(4) i {
-webkit-transform: translate3d(60px,60px,0);
transform: translate3d(60px,60px,0);
}
.cb-grid10 .hovereffect:hover .overlay:before {
opacity: 1;
filter: alpha(opacity=100);
background-color: rgba(0,0,0,0.2);
-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-135deg) scale3d(1,1,1);
}
.cb-grid10 .hovereffect:hover p i:empty {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1;
filter: alpha(opacity=100);
} .cb-grid11 {
overflow: hidden;
}
.cb-grid11 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid11 .max-height {
height: 400px;
}
.cb-grid11 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid11 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.cb-grid11 .hovereffect img {
display: block;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid11 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
}
.cb-grid11 .hovereffect:hover h2 {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}
.cb-grid11 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.cb-grid11 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid11 .hovereffect hr {
width: 40%;
opacity: 0;
filter: alpha(opacity=0);
border: 1px solid #FFF;
}
.cb-grid11 .hovereffect  hr:nth-child(3) {
-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
}
.cb-grid11 .hovereffect  hr:nth-child(4) {
-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,180deg) scale3d(0,0,1);
transform: translate3d(-50%,-50%,0) rotate3d(0,0,1, 180deg) scale3d(0,0,1);
}
.cb-grid11 .hovereffect h2,
.hovereffect hr {
position: absolute;
top: 50%;
left: 50%;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
-webkit-transform-origin: 50%;
-ms-transform-origin: 50%;
transform-origin: 50%;
background-color: transparent;
margin: 0px;
}
.cb-grid11 .set1,
.cb-grid11 .set2 {
left: 50%;
position: absolute;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
-webkit-transform-origin: 50%;
-ms-transform-origin: 50%;
transform-origin: 50%;
background-color: transparent;
margin: 0px;
padding: 0px;
}
.cb-grid11 .set1 {
top: 40%;
}
.cb-grid11 .set2 {
top: 60%;
}
.cb-grid11 .hovereffect p {
width: 30%;
text-transform: none;
font-size: 15px;
line-height: 2;
}
.cb-grid11 .hovereffect p a {
color: #fff;
}
.cb-grid11 .hovereffect p a:hover,
.cb-grid11 .hovereffect p a:focus {
opacity: 0.6;
filter: alpha(opacity=60);
}
.cb-grid11 .hovereffect  a i {
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
padding: 10px;
font-size: 20px;
}
.cb-grid11 .set1 a:first-child i {
-webkit-transform: translate3d(-60px,-60px,0);
transform: translate3d(-60px,-60px,0);
}
.cb-grid11 .set1 a:nth-child(2) i {
-webkit-transform: translate3d(60px,-60px,0);
transform: translate3d(60px,-60px,0);
}
.cb-grid11 .set2 a:first-child i {
-webkit-transform: translate3d(-60px,60px,0);
transform: translate3d(-60px,60px,0);
}
.cb-grid11 .set2 a:nth-child(2) i {
-webkit-transform: translate3d(60px,60px,0);
transform: translate3d(60px,60px,0);
}
.cb-grid11 .hovereffect:hover hr:nth-child(3) {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
}
.cb-grid11 .hovereffect:hover hr:nth-child(4) {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
}
.cb-grid11 .hovereffect:hover .set1 i:empty,
.cb-grid11 .hovereffect:hover .set2 i:empty {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
opacity: 1;
filter: alpha(opacity=100);
} .cb-grid12 {
overflow: hidden;
}
.cb-grid12 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid12 .max-height {
height: 300px;
}
.cb-grid12 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid12 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
left: 0;
background-color: rgba(255, 255, 255, 0.7);
top: -200px;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.1s ease-out 0.5s;
transition: all 0.1s ease-out 0.5s;
}
.cb-grid12 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
top: 0px;
-webkit-transition-delay: 0s;
transition-delay: 0s;
}
.cb-grid12 .hovereffect img {
display: block;
position: relative;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid12 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
-webkit-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all ease-in-out 0.1s;
transition: all ease-in-out 0.1s;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.cb-grid12 .hovereffect:hover h2 {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.cb-grid12 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
margin: 80px 0 0 0;
background-color: transparent;
-webkit-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
color: #000;
border: 1px solid #000;
-webkit-transition: all ease-in-out 0.3s;
transition: all ease-in-out 0.3s;
}
.cb-grid12 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid12 .hovereffect:hover a.info {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
box-shadow: 0 0 5px #000;
color: #000;
border: 1px solid #000;
-webkit-transition-delay: 0.3s;
transition-delay: 0.3s;
} .cb-grid13 {
overflow: hidden;
}
.cb-grid13 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid13 .max-height {
height: 300px;
}
.cb-grid13 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid13 .hovereffect .overlay {
width: 100%;
position: absolute;
overflow: hidden;
left: 0;
top: auto;
bottom: 0;
padding: 1em;
height: 4.75em;
background-color: #000 !important;
color: #3c4a50;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.cb-grid13 .hovereffect img {
display: block;
position: relative;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid13 .hovereffect:hover img {
-webkit-transform: translate3d(0,-10%,0);
transform: translate3d(0,-10%,0);
width: 100%;
height: 100%;
}
.cb-grid13 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background: rgba(0, 0, 0, 0.6);
float: left;
margin: 0px;
display: inline-block;
}
.cb-grid13 .hovereffect a.info {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
text-transform: uppercase;
color: #fff;
border: 1px solid #fff;
margin: 50px 0 0 0;
background-color: transparent;
}
.cb-grid13 .hovereffect a.info:hover {
box-shadow: 0 0 5px #fff;
}
.cb-grid13 .hovereffect p.icon-links a {
float: right;
color: #3c4a50;
font-size: 1.4em;
}
.cb-grid13 .hovereffect:hover p.icon-links a:hover,
.cb-grid13 .hovereffect:hover p.icon-links a:focus {
color: #252d31;
}
.cb-grid13 .hovereffect h2,
.cb-grid13 .hovereffect p.icon-links a {
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,200%,0);
transform: translate3d(0,200%,0);
visibility: visible;
}
.cb-grid13 .hovereffect p.icon-links a span:before {
display: inline-block;
padding: 8px 10px;
speak: none;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.cb-grid13 .hovereffect:hover .overlay,
.cb-grid13 .hovereffect:hover h2,
.cb-grid13 .hovereffect:hover p.icon-links a {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.cb-grid13 .hovereffect:hover h2 {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
.cb-grid13 .hovereffect:hover p.icon-links a:nth-child(3) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.cb-grid13 .hovereffect:hover p.icon-links a:nth-child(2) {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
.cb-grid13 .hovereffect:hover p.icon-links a:first-child {
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
} .cb-grid14 {
overflow: hidden;
}
.cb-grid14 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid14 .max-height {
height: 300px;
}
.cb-grid14 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
background: -webkit-linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
background: linear-gradient(45deg, #ff89e9 0%,#05abe0 100%);
}
.cb-grid14 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
padding: 3em;
text-align: left;
}
.cb-grid14 .hovereffect img {
display: block;
position: relative;
max-width: none;
object-fit: cover;
height: 100%;
width: calc(100% + 60px);
-webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
transition: opacity 0.35s, transform 0.45s;
-webkit-transform: translate3d(-40px,0,0);
transform: translate3d(-40px,0,0);
}
.cb-grid14 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
position: relative;
font-size: 17px;
background-color: transparent;
padding: 15% 0 10px 0;
text-align: left;
}
.cb-grid14 .hovereffect .overlay:before {
position: absolute;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px;
border: 1px solid #fff;
content: '';
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
transition: opacity 0.35s, transform 0.45s;
-webkit-transform: translate3d(-20px,0,0);
transform: translate3d(-20px,0,0);
}
.cb-grid14 .hovereffect a,
.cb-grid14 .hovereffect p {
color: #FFF;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
transition: opacity 0.35s, transform 0.45s;
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0);
}
.cb-grid14 .hovereffect:hover img {
opacity: 0.6;
filter: alpha(opacity=60);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.cb-grid14 .hovereffect:hover .overlay:before,
.cb-grid14 .hovereffect:hover a,
.cb-grid14 .hovereffect:hover p {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
} .cb-grid15 {
overflow: hidden;
}
.cb-grid15 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid15 .max-height {
height: 300px;
}
.cb-grid15 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
background: #42b078;
}
.cb-grid15 .hovereffect .overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
padding: 50px 20px;
}
.cb-grid15 .hovereffect img {
display: block;
position: relative;
max-width: none;
width: calc(100% + 20px);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-10px,0,0);
transform: translate3d(-10px,0,0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
object-fit: cover;
height: 100%;
}
.cb-grid15 .hovereffect:hover img {
opacity: 0.4;
filter: alpha(opacity=40);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.cb-grid15 .hovereffect h2 {
text-transform: uppercase;
color: #fff;
text-align: center;
position: relative;
font-size: 17px;
overflow: hidden;
padding: 0.5em 0;
background-color: transparent;
}
.cb-grid15 .hovereffect h2:after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #fff;
content: '';
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(-100%,0,0);
transform: translate3d(-100%,0,0);
}
.cb-grid15 .hovereffect:hover h2:after {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.cb-grid15 .hovereffect a,
.cb-grid15 .hovereffect p {
color: #FFF;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
}
.cb-grid15 .hovereffect:hover a,
.cb-grid15 .hovereffect:hover p {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
} .cb-grid16 {
overflow: hidden;
}
.cb-grid16 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid16 .max-height {
height: 300px;
}
.cb-grid16 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid16 .hovereffect .overlay {
position: absolute;
overflow: hidden;
width: 80%;
height: 80%;
left: 10%;
top: 10%;
border-bottom: 1px solid #FFF;
border-top: 1px solid #FFF;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: scale(0,1);
-ms-transform: scale(0,1);
transform: scale(0,1);
}
.cb-grid16 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.cb-grid16 .hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.35s;
transition: all 0.35s;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid16 .hovereffect:hover img {
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
filter: brightness(0.6);
-webkit-filter: brightness(0.6);
}
.cb-grid16 .hovereffect h2 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 17px;
background-color: transparent;
color: #FFF;
padding: 1em 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0);
}
.cb-grid16 .hovereffect a,
.cb-grid16 .hovereffect p {
color: #FFF;
padding: 1em 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
.cb-grid16 .hovereffect:hover a,
.cb-grid16 .hovereffect:hover p,
.cb-grid16 .hovereffect:hover h2 {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
} .cb-grid17 {
overflow: hidden;
}
.cb-grid17 .nopadding {
padding: 0px;
margin: 0px;
overflow: hidden;
}
.cb-grid17 .max-height {
height: 300px;
}
.cb-grid17 .hovereffect {
width: 100%;
height: 100%;
float: left;
overflow: hidden;
position: relative;
text-align: center;
cursor: default;
}
.cb-grid17 .hovereffect .overlay {
position: absolute;
overflow: hidden;
opacity: 0;
filter: alpha(opacity=0);
width: 55%;
height: 81%;
left: 22%;
top: 10%;
border-radius: 80%;
border: 2px solid #FFF;
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(50%,50%,0);
transform: translate3d(50%,50%,0);
}
.cb-grid17 .hovereffect:hover .overlay {
background-color: rgba(0,0,0,0.3);
}
.cb-grid17 .hovereffect img {
display: block;
position: relative;
-webkit-transition: all 0.35s;
transition: all 0.35s;
object-fit: cover;
width: 100%;
height: 100%;
}
.cb-grid17 .hovereffect:hover img {
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.4" /><feFuncG type="linear" slope="1.4" /><feFuncB type="linear" slope="1.4" /></feComponentTransfer></filter></svg>#filter');
filter: brightness(1.4);
-webkit-filter: brightness(1.4);
}
.cb-grid17 .hovereffect h2 {
text-transform: uppercase;
text-align: center;
position: relative;
font-size: 17px;
padding: 10px;
background-color: transparent;
color: #FFF;
padding: 1em 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-150%,-400%,0);
transform: translate3d(-150%,-400%,0);
}
.cb-grid17 .hovereffect a,
.cb-grid17 .hovereffect p {
color: #FFF;
padding: 1em 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
transition: opacity 0.35s, transform 0.35s;
-webkit-transform: translate3d(-150%,-400%,0);
transform: translate3d(-150%,-400%,0);
}
.cb-grid17 .hovereffect:hover a,
.cb-grid17 .hovereffect:hover p,
.cb-grid17 .hovereffect:hover h2,
.cb-grid17 .hovereffect:hover .overlay {
opacity: 1;
filter: alpha(opacity=100);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}  .cb-accordion1 {
margin-top: 40px;
margin-bottom: 40px;
}
.cb-accordion1 .panel-heading a {
position: relative;
display: block;
text-decoration: none;
}
.cb-accordion1 .panel-title {
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
font-size: 12px;
}
.cb-accordion1 .panel-default > .panel-heading {
border: 0;
background: transparent;
border-radius: 0;
border-top: 1px solid #eee;
padding: 20px 15px;
}
.cb-accordion1 .panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #eee;
}
.cb-accordion1 .panel-heading a:after {
position: absolute;
content: "\f107";
top: 50%;
right: 0px;
margin-top: -5px;
font-family: "FontAwesome";
font-size: 11px;
line-height: 1;
}
.cb-accordion1 .panel-heading a.collapsed:after {
content: "\f105";
}
.cb-accordion1 .panel-group .panel + .panel {
margin-top: 0;
}
.cb-accordion1 .panel-group .panel {
border: 0;
border-radius: 0;
box-shadow: none;
}
.cb-accordion1 .panel-group .panel:last-child {
border-bottom: 1px solid #eee;
} .cb-accordion2 {
margin-top: 50px;
margin-bottom: 50px;
}
.cb-accordion2 .panel {
border: none;
box-shadow: none;
}
.cb-accordion2 .panel .fa {
padding-right: 5px !important;
}
.cb-accordion2 .panel-heading:hover,
.cb-accordion2 .panel-heading.active {
background-color: #176cff;
color: #fff;
}
.cb-accordion2 .panel-heading {
color: #333;
display: block;
position: relative;
padding: 0;
}
.cb-accordion2 .panel-heading.active {
color: #fff;
}
.cb-accordion2 .panel-title {
font-size: 18px;
font-weight: 400;
}
.cb-accordion2 .panel-title a {
padding: 18px 15px;
display: block;
text-decoration: none;
}
.cb-accordion2 .panel-title.active a {
color: #fff;
}
.cb-accordion2 .panel-heading:active,
.cb-accordion2 .panel-heading.active a,
.cb-accordion2 .panel-title a:hover {
color: #fff!important;
}
.cb-accordion2 .panel-heading .panel-title a:before {
font-family: FontAwesome;
content: "\f067";
position: absolute;
font-size: 12px;
position: absolute;
right: 20px;
top: 21px;
}
.cb-accordion2 .panel-heading.active .panel-title a:before {
content: "\f068";
}
.cb-accordion2 .panel-body {
padding: 20px;
border-width: 0 1px 1px 1px;
border-color: #ebebeb;
border-style: solid;
border-radius: 0 0 5px 5px;
}
.cb-accordion2 .panel-group .panel+.panel {
margin-top: 10px;
}  .cb-tab1 {
width: 100%;
}
.cb-tab1 #tab1 {
padding-top: 85px;
padding-bottom: 85px;
background-color: #eaedf4;
}
.cb-tab1 .tab-image-1 {
width: 100%;
}
.cb-tab1 .tab1-section {
padding-left: 0px;
padding-right: 0px;
}
.cb-tab1 .tab1 i {
display: inline-block;
margin-bottom: 10px;
color: #5db442;
font-size: 72px;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
.cb-tab1 .tab1 .col-sm-4:hover i {
color: #4ca368;
}
.cb-tab1 .tab1 h2 {
font-weight: 500;
}
.cb-tab1 .tab-1-wrap {
width: 100%;
margin: 0px;
}
.cb-tab1 .tab-section {
margin-left: -15px;
padding-left: 0;
overflow: hidden;
}
.cb-tab1 .tab-content {
background-color: #fff;
padding: 30px 45px;
min-height: 255px;
}
.cb-tab1 .tab-content h4 {
margin-bottom: 20px;
font-weight: 600;
color: #676767;
}
.cb-tab1 .nav-tabs.nav-justified > li > a {
border-radius: 0;
background-color: #176cff;
color: #fff;
font-size: 18px;
}
.cb-tab1 .nav-tabs.nav-justified > .active > a,
.cb-tab1 .nav-tabs.nav-justified > .active > a:hover,
.cb-tab1 .nav-tabs.nav-justified > .active > a:focus {
background-color: #fff;
color: #000;
} .cb-tab2 {
overflow: hidden;
padding-top: 50px;
padding-bottom: 50px;
}
.cb-tab2 .cb-tab-2-tab {
clear: both;
margin-bottom: 50px;
}
.cb-tab2 a:focus,
.cb-tab2 a:hover {
text-decoration: none;
outline: none;
}
.cb-tab-2 h1 {
font-weight: bold;
padding-top: 40px;
padding-bottom: 20px;
}
.cb-tab-2 p {
font-size: 17px;
}
.cb-tab2 ul {
list-style: none;
}
.cb-tab2 .cb-tab-2-tab .tab-list {
margin-top: 3%;
margin-bottom: 4%;
}
.cb-tab2 .cb-tab-2-tab .tab-list li a {
color: #000;
font-size: 16px;
font-weight: 600;
border-radius: 4px;
padding: 10px 20px;
}
.cb-tab2 .cb-tab-2-tab .tab-list li a:hover {
background-color: #f2f2f2;
}
.cb-tab2 .cb-tab-2-tab .tab-list li a.active,
.cb-tab2 .cb-tab-2-tab .tab-list li a.active:hover {
background-color: #176cff;
color: #fff;
display: inherit;
}
.cb-tab2 .cb-tab-2-tab .cb-tab-2-info {
background-color: #176cff;
color: #fff;
padding: 35px;
}
.cb-tab2 .cb-tab-2-info .tab-2-section {
margin-bottom: 25px;
}
.cb-tab2 .cb-tab-2-info .tab-2-section ul li {
margin-bottom: 8px;
padding-left: 20px;
position: relative;
}
.cb-tab2 .cb-tab-2-info .tab-2-section ul li:before {
background-color: #000;
}
.cb-tab2 .cb-tab-2-info .tab-2-section ul li span {
font-weight: 700;
margin-right: 5px;
}
.cb-tab2 .cb-tab-2-info .tab-2-section h4 {
font-weight: 700;
margin-bottom: 15px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.cb-tab2 .cb-tab-2-info .tab-2-section:hover h5 {
color: #000;
}
.cb-tab2 .tab-pane.active {
-moz-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-moz-animation-name: slidein;
-webkit-animation-name: slidein;
animation-name: slidein;
-moz-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-moz-animation-direction: alternate;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
.cb-tab2 #cb-tab-2_select {
appearance: none;
-moz-appearance: none; -webkit-appearance: none; background-repeat: no-repeat;
background-position: right 15px top 18px;
} .cb-tab3 {
background-color: #465056;
position: relative;
}
.cb-tab3 .nav-tabs {
border-bottom: 1px solid transparent;
}
.cb-tab3 a {
color: #fff;
text-decoration: none;
-webkit-transition: 300ms;
-moz-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
border-radius: 0px;
}
.cb-tab3 a:focus,
.cb-tab3 a:hover {
text-decoration: none;
outline: none;
background-color: transparent;
}
.cb-tab3 .cbtab3-tab.row .nav-tabs .nav-item.show .nav-link,
.cbtab3-tab.row  .nav-tabs .nav-link.active {
color: #fff;
background-color: #000;
border-radius: 0px;
}
.cb-tab3 .tab3-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); }
.cb-tab3 .cbtab3-tab .tab-list li a {
color: #fff;
font-size: 18px;
font-weight: 500;
z-index: 112;
background-color: blue;
margin: 0px;
padding: 12px;
border: none;
}
.cb-tab3 .cbtab3-tab .tab-content h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 30px;
color: #fff;
}
.cbtab3-tab .tab-content p {
margin-bottom: 25px;
color: #fff;
}
.cbtab3-tab .tab-content a {
color: #000;
font-size: 18px;
font-weight: 700;
}
.cbtab3-tab .tab-content a:hover {
color: #fff;
}
.cb-tab3 .cbtab3-tab h4 {
padding-top: 10px;
padding-bottom: 10px;
font-size: 20px;
font-weight: bold;
}
.cbtab3-tab .tab-list {
}
.cb-tab3 ul {
list-style: none;
}
.cb-tab3 .cbtab3-tab .tab-list li {
width: 100%;
}
.cb-tab3 .cbtab3-tab .tab-list li a i {
display: block;
font-size: 40px;
}
.cb-tab3 .cbtab3-tab .tab-content {
z-index: 112;
padding-left: 40px;
padding-top: 40px;
}
.cb-tab3 .cbtab3-tab .tab-content h1 {
font-size: 48px;
font-weight: 700;
margin-bottom: 30px;
}
.cb-tab3 .cbtab3-tab .tab-content p {
margin-bottom: 25px;
} .cb-tab4 {
margin-bottom: 40px;
}
.cb-tab4 .nav-tabs {
border-bottom: 1px solid #777;
}
.cb-tab4 .nav-tabs > li {
float: none;
font-size: 17px;
margin-bottom: -2px;
display: inline-block;
}
.cb-tab4 .nav > li > a {
padding: 12.5px 15px;
}
.cb-tab4 .nav-tabs > li > a {
position: relative;
z-index: 0;
display: block;
color: #777777;
text-decoration: none;
font-weight: 700;
margin-right: 0;
padding: 20px;
line-height: 1.5;
background-color: transparent;
border: none;
border-bottom: 2px solid transparent;
border-radius: 0;
}
.cb-tab4 .nav-tabs > li > a:focus {
background: transparent;
border: 0 !important;
}
.cb-tab4 .nav-tabs > li.active > a,
.cb-tab4 .nav-tabs > li.active > a:focus,
.cb-tab4 .nav-tabs > li.active > a:hover {
color: #176cff;
background: none;
border: none;
border-bottom: 2px solid #176cff !important;
-webkit-transition: 0s;
-moz-transition: 0s;
-o-transition: 0s;
transition: 0s;
}
.cb-tab4 .nav > li > a:hover {
background: none;
border: none;
}
.cb-tab4 .nav-pills.text-right > li {
float: right;
}
.cb-tab4 .nav.nav-pills a:hover {
color: #7c618a;
}
.cb-tab4 .tab-content {
padding-top: 30px;
} .cb-tabs5 {
padding-bottom: 60px;
}
.cb-tabs5 .nav-tabs {
border-bottom: 1px solid #eee;
}
.cb-tabs5 img {
width: 400px;
height: 300px;
object-fit: cover;
}
.cb-tabs5 a {
text-decoration: none;
}
.cb-tabs5 .nav-tabs > li.active > a,
.cb-tabs5 .nav-tabs > li.active > a:hover,
.cb-tabs5 .nav-tabs > li.active > a:focus {
border: 1px solid #eee;
border-bottom-color: transparent;
color: #777777;
}
.cb-tabs5 .nav-tabs + .tab-content {
border: 1px solid #eee;
border-top: 0;
padding: 20px 15px;
}
.cb-tabs5 .nav-tabs + .tab-content *:last-child {
margin-bottom: 0;
}
.cb-tabs5 .nav-text-tabs {
border-bottom: 2px solid #eeeeee;
list-style: none;
padding: 0;
margin: 0;
}
.cb-tabs5 .nav-text-tabs > li {
display: inline-block;
}
.cb-tabs5 .nav-text-tabs > li > a {
position: relative;
display: block;
padding: 10px 20px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
font-size: 12px;
color: #777777;
}
.cb-tabs5 .nav-text-tabs > li > a:after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: #176cff;
bottom: 10px;
opacity: 0;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
bottom: -2px;
left: 0;
}
.cb-tabs5 .nav-text-tabs > li.active > a {
color: #176cff;
}
.cb-tabs5 .nav-text-tabs > li.active > a:after {
opacity: 1;
}
.cb-tabs5 .nav-text-tabs + .tab-content {
padding: 20px 0;
}
@media (max-width: 527px) {
.cb-tabs5 .nav-text-tabs > li {
border-top: 1px solid #eee;
text-align: center;
display: block;
}
.cb-tabs5 .nav-text-tabs > li > a {
padding: 20px 15px;
}
.cb-tabs5 .nav-text-tabs > li > a:after {
content: none;
}
} .tab6 .tab6-style li a.active {
background-color: #3e4351;
color: #fff;
}
.tab6 {
width: 100%;
}
.tab6 .nopads {
padding-left: 0px;
padding-right: 0px;
}
.tab6 .tab6-style {
border-bottom: 0px;
}
.tab6 .tab6-style.cb-tab6 li {
width: 24.98%;
}
@media only screen and (max-width: 992px) {
.tab6 .tab6-style.cb-tab6 li {
width: 50%;
}
}
@media only screen and (max-width: 767px) {
.tab6 .tab6-style.cb-tab6 li {
width: 100%;
}
}
.tab6 .tab6-style li {
position: relative;
text-align: center;
background-color: #333743;
}
.tab6 .tab6-style li a {
font-size: 17px;
color: #fff;
background-color: #1c84ff;
padding: 20px 15px;
margin-right: 0px;
border: 0px;
border-radius: 0px;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
}
.tab6 .tab6-style li a i {
display: block;
font-size: 30px;
margin-bottom: 10px;
color: #fff;
}
.tab6 .tab6-style li a:hover,
.tab6-style li a:focus {
background-color: #3e4351;
color: #fff;
border-color: transparent;
}
.tab6 .tab6-style li.active > a {
border: 0px;
background-color: #176cff;
color: #fff;
}
.tab6 .tab6-style li.active > a:hover,
.tab6-style li.active > a:focus {
border: 0px;
background-color: #176cff;
color: #fff;
}
.tab6 .tab-content {
padding-left: 50px;
padding-right: 50px;
}
.tab6 .tab-content .tab-pane {
padding: 30px 0px;
} .cb-process1 {
padding-top: 60px;
padding-bottom: 60px;
overflow: hidden;
}
.cb-process1 .event {
padding-top: 40px;
}
.cb-process1 .event .vertical-line {
height: 100%;
width: 2px;
margin-top: 10px;
background-color: #000000;
}
.cb-process1 .event h2 {
}
.cb-process1 .event h5 {
}
.cb-process1 .event i {
font-size: 30px;
}
.cb-process1 .event p {
} .cb-process2 {
position: relative;
padding: 2em 0;
margin-top: 2em;
margin-bottom: 2em;
background-color: #3a6ee8;
}
.cb-process2::before {
content: '';
position: absolute;
top: 0;
left: 18px;
height: 100%;
width: 1px;
background: #f5f5f5;
}
.cb-process2 .block {
position: relative;
margin: 2em 0;
}
.cb-process2 .block:after {
content: "";
display: table;
clear: both;
}
.cb-process2 .block:first-child {
margin-top: 0;
}
.cb-process2 .block:last-child {
margin-bottom: 0;
}
.cb-process2 .content {
position: relative;
margin-left: 60px;
background-color: #000;
color: #fff;
border-radius: 0.25em;
padding: 1em;
}
.cb-process2 .content img,
.cb-process2 .content video,
.cb-process2 .content iframe {
margin-bottom: 25px;
width: 100%;
}
.cb-process2 .content:after {
content: "";
display: table;
clear: both;
}
.cb-process2 .content h2,
.cb-process2 .content h2 a {
font-size: 24px;
margin-top: 0px;
color: #fff;
}
.cb-process2 .content .more,
.cb-process2 .content .date {
display: inline-block;
}
.cb-process2 .content p {
text-align: justify;
margin: 1em 0;
}
.cb-process2 .content .more {
float: right;
padding: 3px 15px;
border: 1px solid #444;
color: #fff;
font-size: 12px;
text-decoration: none;
border-radius: 2px;
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
.cb-process2 .content .more:hover {
background: #444;
color: #fff;
}
.cb-process2 .content .date {
float: left;
padding: .8em 0;
opacity: .7;
}
.cb-process2 .content::before {
content: '';
position: absolute;
top: 16px;
right: 100%;
height: 0;
width: 0;
border: 10px solid transparent;
border-right: 10px solid #f5f5f5;
}
@media only screen and (min-width: 1170px) {
.cb-process2 {
margin-top: 3em;
margin-bottom: 3em;
}
.cb-process2::before {
left: 50%;
margin-left: -2px;
}
}
@media only screen and (min-width: 1170px) {
.cb-process2 .block {
margin: 4em 0;
}
.cb-process2 .block:first-child {
margin-top: 0;
}
.cb-process2 .block:last-child {
margin-bottom: 0;
}
}
.cb-process2 .icon {
position: absolute;
top: 0;
left: 0;
width: 45px;
height: 45px;
border-radius: 50%;
background: #fff;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.cb-process2 .icon i {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-size: 18px;
}
@media only screen and (min-width: 1170px) {
.cb-process2 .icon {
width: 70px;
height: 70px;
left: 50%;
margin-left: -35px;
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
}
.cb-process2 .icon i {
font-size: 24px;
}
}
@media only screen and (min-width: 1170px) {
.cb-process2 .content {
margin-left: 0;
padding: 1.6em;
width: 45%;
}
.cb-process2 .content::before {
top: 24px;
left: 100%;
border-color: transparent;
border-left-color: #f5f5f5;
}
.cb-process2 .content .more {
float: left;
}
.cb-process2 .content .date {
position: absolute;
width: 100%;
left: 122%;
top: 6px;
}
.cb-process2 .block:nth-child(even) .content {
float: right;
}
.cb-process2 .block:nth-child(even) .content::before {
top: 24px;
left: auto;
right: 100%;
border-color: transparent;
border-right-color: #f5f5f5;
}
.cb-process2 .block:nth-child(even) .content .more {
float: right;
}
.cb-process2 .block:nth-child(even) .content .date {
left: auto;
right: 122%;
text-align: right;
}
} .cb-contact1 {
padding: 80px 0;
overflow: hidden;
}
.cb-contact1 h3 {
text-transform: uppercase;
text-align: center;
margin-top: 15px;
}
.cb-contact1 .nomargin {
margin: 0;
padding: 0;
}
.cb-contact1 h3::after {
content: "";
display: block;
width: 40px;
height: 2px;
background-color: #425cbb;
margin: 0 auto;
margin-top: 10px;
}
.cb-contact1 h6 {
color: #425cbb;
text-transform: uppercase;
text-align: center;
}
.cb-contact1 form {
margin-top: 30px;
}
.cb-contact1 .form-control {
background-color: #f5f5f5;
border-radius: 2px;
margin-bottom: 25px;
border: 1px solid #ededed;
color: #898989;
}
.cb-contact1 .textarea {
min-height: 100px;
}
.cb-contact1 .btn {
border-radius: 4px;
background: transparent;
border-radius: 40px;
padding: 10px 24px;
border: 1px solid #425cbb;
color: #425cbb;
}
.cb-contact1 .btn:hover {
background-color: #425cbb;
color: #fff;
}
.cb-contact1 .box {
text-align: center;
margin-bottom: 40px;
}
.cb-contact1 .box p {
margin: 0;
text-transform: uppercase;
font-size: 12px;
}
.contact1 .box h6 {
margin: 10px 0 25px 0;
text-transform: none;
font-weight: bold;
font-size: 12px;
color: #282828;
}
.cb-contact1 .box .fa {
font-size: 24px;
color: #425cbb;
} .cb-contact2 {
background-position: center center;
background-attachment: fixed;
background-size: cover;
}
.cb-contact2 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
}
.cb-contact2 .nomargin {
padding: 0;
margin: 0;
}
.cb-contact2 .padding {
padding-top: 50px;
padding-bottom: 50px;
}
.cb-contact2 h3 {
text-transform: uppercase;
text-align: center;
margin-top: 15px;
color: #fff;
}
.cb-contact2 h3::after {
content: "";
display: block;
width: 40px;
height: 2px;
background-color: #425cbb;
margin: 0 auto;
margin-top: 10px;
}
.cb-contact2 h6 {
color: #425cbb;
text-transform: uppercase;
text-align: center;
}
.cb-contact2 .form-control {
background-color: #282828;
border-radius: 2px;
margin-bottom: 25px;
border: 2px solid #425cbb;
color: #f5f5f5;
}
.cb-contact2 .textarea {
min-height: 100px;
}
.cb-contact2 .btn {
background-color: #000;
color: #fff;
width: 100%;
padding-top: 10px;
padding-bottom: 10px;
border: 1px solid #425cbb;
} .cb-contact3 {
padding: 60px 0;
background-position: center center;
background-attachment: scroll;
background-size: cover;
position: relative;
}
.cb-contact3:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #000;
opacity: .9;
}
.cb-contact3 .container {
position: relative;
}
.cb-contact3 .nopadding {
padding: 0;
margin: 0;
}
.cb-contact3 .contact-box {
background-color: #fff;
border-radius: 4px;
padding: 20px;
}
.cb-contact3 h3 {
text-transform: uppercase;
text-align: center;
margin-top: 15px;
margin-bottom: 15px;
color: #fff;
}
.cb-contact3 h3::after {
content: "";
display: block;
width: 40px;
height: 2px;
background-color: #3498db;
margin: 0 auto;
margin-top: 10px;
}
.cb-contact3 .form-control {
background-color: #f5f5f5;
border-radius: 2px;
margin-bottom: 25px;
border: 1px solid #ccc;
color: #282828;
}
.cb-contact3 .textarea {
min-height: 100px;
}
.cb-contact3 .btn {
border: 2px solid #fff;
color: #fff;
background-color: transparent;
width: 100%;
}
.cb-contact3 .btn:hover {
background-color: #fff;
color: #000;
}
.cb-contact3 .content h2,
.cb-contact3 .content p {
color: #fff;
}
.cb-contact3 .content .box {
margin-top: 25px;
}
.cb-contact3 .content .box .fa {
float: left;
width: 30px;
height: 30px;
margin-top: 11px;
color: #FFF;
}
.cb-contact3 .content .box p,
.cb-contact3 .content .box h6 {
overflow: hidden;
margin: 0;
}
.cb-contact3 .content .box h6 {
margin-bottom: 20px;
color: #fff;
} .cb-contact4 {
padding: 60px 0;
}
.cb-contact4 .nopadding {
padding: 0px;
margin: 0px;
}
.cb-contact4 h3 {
text-align: center;
width: 40%;
margin: 0 auto 60px auto;
}
.cb-contact4 p {
font-size: 14px;
}
.cb-contact4 h4 {
margin-bottom: 10px;
margin-top: 0;
}
.cb-contact4 .form-control {
background-color: rgba(52, 152, 219, 0.1);
margin-bottom: 15px;
box-sizing: border-box;
border-radius: 4px;
}
.cb-contact4 .btn-default {
border-radius: 6px;
border: 1px solid #05436c;
background-color: #05436c;
color: #fff;
font-weight: 500;
text-transform: uppercase;
}
.cb-contact4 .btn-default:hover {
color: #05436c;
background-color: #fff;
border: 1px solid #05436c;
}
.cb-contact4 .contact-info {
display: flex;
flex-direction: row;
margin-bottom: 10px;
margin-top: 40px;
}
.cb-contact4 .contact-info .fa {
display: flex;
align-self: center;
font-size: 24px;
color: #3498db;
margin-right: 10px;
}
.cb-contact4 .contact-left {
padding-left: 0;
}
.cb-contact4 .contact-right {
padding-right: 0;
}
@media (max-width: 768px) {
.cb-contact4 .form-control {
width: 100%;
}
.cb-contact4 .contact-right,
.cb-contact4 .contact-left {
padding: 0;
}
.cb-contact4 h3 {
width: 100%;
}
} .cb-contact5 {
padding: 60px;
background-color: #282828;
color: #fff;
}
.cb-contact5 .icon {
float: left;
width: 48px;
height: 48px;
border: 1px solid #fff;
border-radius: 50%;
text-align: center;
}
.cb-contact5 .icon:hover {
background-color: #ffb504;
transition: .5s ease all;
}
.cb-contact5 .icon .fa {
font-size: 24px;
line-height: 1.9;
}
.cb-contact5 .content {
padding-left: 15px;
}
.cb-contact5 .content h5 {
margin: 0;
font-weight: 700;
text-transform: uppercase;
}
.cb-contact5 .content h6 {
line-height: 1.4;
} .cb-contact6 {
overflow: hidden;
height: 100vh;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.cb-contact6 iframe {
z-index: -1;
}
.cb-contact6 .overlay {
height: 100%;
background-color: rgba(0, 0, 0, 0.19);
}
.cb-contact6 .contact-form {
padding: 20px;
overflow: hidden;
text-align: center;
-webkit-box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 1);
box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 1);
background-color: rgba(255, 255, 255, 0.88);
}
.cb-contact6 .contact-form form .form-group {
padding: 0 3px;
margin-top: 20px;
}
.cb-contact6 .contact-form .nopadding {
padding: 0px;
margin: 0px;
}
.cb-contact6 .contact-form h3 {
color: #000000;
font-size: 20px;
margin-bottom: 20px;
text-shadow: none;
text-align: center;
letter-spacing: 2px;
font-weight: 800;
text-transform: uppercase;
-webkit-font-smoothing: antialiased;
}
.cb-contact6 .contact-form p {
color: #000;
text-shadow: none;
margin: 0 0 25px 0;
letter-spacing: 3px;
font-weight: 300;
-webkit-font-smoothing: antialiased;
}
.cb-contact6 .contact-form p a {
color: #fff;
text-transform: capitalize;
}
.cb-contact6 .contact-form textarea.form-control {
border: none;
color: #000000;
background-color: transparent;
letter-spacing: 1px;
border-bottom: 1px solid #0a0a0a;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 0;
}
.cb-contact6 .contact-form form button {
border: none;
outline: none;
color: #000;
box-shadow: none;
border-radius: 0;
width: 100%;
letter-spacing: 1px;
display: inline-block;
border-color: #000000;
background: transparent;
text-transform: capitalize;
border-bottom: 1px solid #000000;
-webkit-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-contact6 .contact-form form button:hover {
outline: none;
color: ##000000;
background: transparent;
border: 1px solid #000000;
}
.cb-contact6 .contact-form form div input {
margin-top: 20px;
border: none;
color: #000000;
background-color: transparent;
letter-spacing: 1px;
border-bottom: 1px solid #0a0a0a;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
border-radius: 0;
-webkit-border-radius: 0;
}
.cb-contact6 .contact-form form div input:focus {
border: none;
outline: none;
border-bottom: 1px solid ##000000;
-webkit-box-shadow: none;
box-shadow: none;
}
.cb-contact6 .contact-form form div input::-webkit-input-placeholder {
color: #000000;
text-transform: capitalize;
}
.cb-contact6 .contact-form form div textarea::-webkit-input-placeholder {
color: #000000;
text-transform: capitalize;
}
.cb-contact6 .contact-form form div input::-moz-placeholder {
color: #000000;
text-transform: capitalize;
}
.cb-contact6 .contact-form form div input:-ms-input-placeholder {
color: #000000;
text-transform: capitalize;
}
.cb-contact6 .contact-form form div input:-moz-placeholder {
color: #000000;
text-transform: capitalize;
}
.cb-contact6 .contact-form form div input:focus::-webkit-input-placeholder {
color: ##000000;
}
.cb-contact6 .contact-form form div input:focus::-moz-placeholder {
color: ##000000;
}
.cb-contact6 .contact-form form div input:focus:-ms-input-placeholder {
color: ##000000;
}
.cb-contact6 .contact-form form div input:focus:-moz-placeholder {
color: ##000000;
} .cb-contact7 {
overflow: hidden;
}
.cb-contact7 h1 {
margin-top: 20px;
margin-bottom: 20px;
font-weight: 700;
font-size: 40px;
text-transform: capitalize;
}
.cb-contact7 h3 {
font-size: 20px;
text-transform: lowercase;
font-style: italic;
}
.cb-contact7 .form {
margin-top: 50px;
margin-bottom: 100px;
overflow: hidden;
border: 5px solid #548ce9;
border-radius: 10%;
padding: 30px 30px 30px 30px;
}
.cb-contact7 .form form {
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
margin-bottom: 20px;
}
.cb-contact7 .form .form-control {
background: transparent;
border: 1px solid #c7c7c7;
margin-top: 25px;
margin-bottom: 25px;
}
.cb-contact7 .form .btn-default {
background-color: #548ce9;
color: #fff;
border-radius: 0;
}
.cb-contact7 .form .btn-default:hover {
background-color: #000;
color: #fff;
border-radius: 0;
}
.cb-contact7 .bottom {
background-color: #f5f5f5;
}
.cb-contact7 .bottom h2 {
margin-top: 20px;
margin-bottom: 50px;
}
.cb-contact7 .bottom p {
font-size: 17px;
}
.cb-contact7 .bottom a {
color: #000;
text-decoration: none;
}
.cb-contact7 .bottom i {
margin-right: 5px;
}
@media only screen and (max-width: 420px) {
.cb-contact7 .form {
border: 5px solid #548ce9;
border-radius: 0%;
padding: 10px 10px 10px 10px;
}
} .cb-contact8 {
width: 100%;
}
.cb-contact8 .map {
width: 100%;
height: 100%;
}
.cb-contact8 .nopadding {
padding: 0 !important;
margin: 0 !important;
}
.cb-contact8 .form {
padding-left: 30px;
padding-top: 30px;
}
.cb-contact8 .form h1 {
display: block;
text-transform: uppercase;
font-weight: 600;
padding-left: 0;
padding-bottom: 0;
font-size: 30px;
line-height: 30px;
}
.cb-contact8 .form h1:after {
display: block;
content: '';
margin-top: 20px;
width: 80px;
height: 5px;
background-color: #333333;
}
.cb-contact8 .form form .form-bordered {
padding: 10px 20px;
font-size: 13px;
font-weight: 400;
border: 2px solid #ccc;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
color: #5f6272;
-webkit-transition: all .1s linear;
-moz-transition: all .1s linear;
-ms-transition: all .1s linear;
-o-transition: all .1s linear;
transition: all .1s linear;
}
.cb-contact8 .form form .button {
margin-top: 30px;
margin-bottom: 30px;
background-color: #000;
color: #fff;
border: none;
padding: 5px 20px 5px 20px;
float: right;
font-size: 18px;
text-transform: capitalize;
}
@media only screen and (max-width: 420px) {
.cb-contact8 .form {
padding-left: 0 !important;
}
} .cb-contact9 {
width: 100%;
margin-top: -10px;
margin-bottom: -10px;
}
.cb-contact9 .nopadding {
padding: 0 !important;
margin: 0 !important;
} .cb-contact10 {
width: 100%;
}
.cb-contact10 .nopadding {
padding: 0 !important;
margin: 0 !important;
}
.cb-contact10 .first-box {
padding: 10px;
background: #1583c9;
color: #fff;
}
.cb-contact10 .second-box {
padding: 10px;
background: #1583c9;
color: #fff;
}
.cb-contact10 .third-box {
padding: 10px;
background: #1583c9;
color: #fff;
}
.cb-contact10 .fourth-box {
padding: 10px;
background: #1583c9;
color: #fff;
}
.cb-contact10 h1 {
font-size: 50px;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
}
.cb-contact10 h3 {
font-weight: bold;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
}
.cb-contact10 p {
font-size: 20px;
text-shadow: rgb(13, 115, 188) 1px 1px, rgb(13, 115, 188) 2px 2px, rgb(13, 115, 188) 3px 3px, rgb(13, 115, 188) 4px 4px, rgb(13, 115, 188) 5px 5px, rgb(13, 115, 188) 6px 6px, rgb(13, 115, 188) 7px 7px, rgb(13, 115, 188) 8px 8px, rgb(13, 115, 188) 9px 9px, rgb(13, 115, 188) 10px 10px, rgb(13, 115, 188) 11px 11px, rgb(13, 115, 188) 12px 12px, rgb(13, 116, 189) 13px 13px, rgb(13, 116, 189) 14px 14px, rgb(13, 116, 189) 15px 15px, rgb(13, 116, 189) 16px 16px, rgb(13, 117, 191) 17px 17px, rgb(13, 117, 191) 18px 18px, rgb(13, 117, 191) 19px 19px, rgb(13, 118, 192) 20px 20px, rgb(13, 118, 192) 21px 21px, rgb(14, 119, 194) 21px 21px, rgb(14, 120, 196) 22px 22px, rgb(14, 121, 197) 23px 23px, rgb(14, 122, 199) 24px 24px, rgb(14, 123, 201) 25px 25px, rgb(14, 124, 203) 26px 26px, rgb(14, 125, 204) 27px 27px, rgb(14, 126, 206) 28px 28px, rgb(15, 127, 208) 29px 29px, rgb(15, 128, 209) 30px 30px;
} .cb-page404-1 {
background-color: #425cbb;
width: 100%;
height: 100%;
width: 100%;
min-height: 650px;
opacity: 0.9;
padding: 20px 0 80px 0;
}
.cb-page404-1 h1 {
text-align: center;
font-size: 15vw;
color: #fff;
margin-top: 6vw;
}
.cb-page404-1 p {
text-align: center;
font-size: 3vw;
color: #fff;
margin-top: 6vw;
}
.cb-page404-1 .image-404 img {
display: block;
margin: 0 auto;
margin-top: 150px;
}
.cb-page404-1 .btn {
background-color: transparent;
color: #fff;
border: 2px solid #fff;
border-radius: 20px;
}
.cb-page404-1 .btn:hover {
background-color: #fff;
color: #000;
} .cb-page404-2 {
width: 100%;
height: 100vh;
overflow: hidden;
background-color: #241d4f;
}
.cb-page404-2 .content {
text-align: center;
}
.cb-page404-2 .content .logo {
color: #fff;
margin-bottom: 50px;
}
.cb-page404-2 .content h2 {
font-size: 40px;
line-height: 34px;
font-weight: 400;
color: #fff;
}
.cb-page404-2 .content p {
font-size: 15px;
line-height: 34px;
font-weight: 400;
font-style: italic;
color: #fff;
}
.cb-page404-2 .content h1 {
font-size: 70px;
line-height: 80px;
font-weight: 800;
color: #fff;
padding: 32px 0 72px;
text-transform: uppercase;
}
@media (max-width: 559px) {
.cb-page404-2 .content h1 {
font-size: 35px;
}
}
@media (max-width: 415px) {
.cb-page404-2 .content h1 {
font-size: 25px;
}
}
.cb-page404-2 .content a {
padding: 9px 30px 9px 30px;
background-color: transparent;
border: 1px solid #fff;
color: #000;
}
.cb-page404-2 .content a:hover {
background-color: #fff;
color: #000;
} .cb-pagelogin1 {
background-color: #425cbb;
width: 100%;
height: 100%;
width: 100%;
opacity: 0.9;
}
.cb-pagelogin1 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-pagelogin1 .login {
padding-top: 70px;
display: table;
margin: 0 auto !important;
text-align: center;
}
.cb-pagelogin1 .login h3 {
color: #fff;
}
.cb-pagelogin1 .login .btn {
background-color: transparent;
color: #fff;
width: 100%;
border: 1px solid #fff;
}
.cb-pagelogin1 .login .btn:hover {
background-color: #fff;
color: #000;
}
.cb-pagelogin1 .form-control {
border: 1px solid #f5f5f5;
width: auto;
min-width: 100px;
border-radius: 2px;
background-color: rgba(231, 76, 60, 0.2);
color: #f5f5f5;
text-align: center;
margin-bottom: 10px;
}
.cb-pagelogin1 .form-control::-webkit-input-placeholder {
color: #f5f5f5;
}
.cb-pagelogin1 .form-control::-moz-placeholder {
color: #f5f5f5;
} .cb-pagelogin1 .form-control:-ms-input-placeholder {
color: #f5f5f5;
} .cb-pagelogin1 .form-control input:-moz-placeholder {
color: #f5f5f5;
} .cb-pageregister1 {
background-color: #425cbb;
width: 100%;
height: 100%;
width: 100%;
opacity: 0.9;
}
.cb-pageregister1 .row {
padding-top: 100px;
padding-bottom: 100px;
}
.cb-pageregister1 .login {
display: table;
margin: 0 auto !important;
text-align: center;
}
.cb-pageregister1 .login h3 {
color: #fff;
}
.cb-pageregister1 .login .btn {
background-color: transparent;
color: #fff;
width: 100%;
border: 1px solid #fff;
}
.cb-pageregister1 .login .btn:hover {
background-color: #fff;
color: #000;
}
.cb-pageregister1 .form-control {
border: 1px solid #f5f5f5;
width: auto;
min-width: 100px;
border-radius: 2px;
background-color: rgba(231, 76, 60, 0.2);
color: #f5f5f5;
text-align: center;
margin-bottom: 10px;
}
.cb-pageregister1 .form-control::-webkit-input-placeholder {
color: #f5f5f5;
}
.cb-pageregister1 .form-control::-moz-placeholder {
color: #f5f5f5;
} .cb-pageregister1 .form-control:-ms-input-placeholder {
color: #f5f5f5;
} .cb-pageregister1 .form-control input:-moz-placeholder {
color: #f5f5f5;
} .cb-pageloginregister1 {
padding: 40px 0;
}
.cb-pageloginregister1 .lr-box {
border: 1px solid #ededed;
padding: 25px;
background: #fff;
}
.cb-pageloginregister1 .btn1 {
background-color: #0654ff;
color: #ffffff;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border: 1px solid #fff;
}
.cb-pageloginregister1 .btn1:hover {
color: #000;
background-color: #fff;
border: 1px solid #000;
}
.cb-pageloginregister1 .btn2 {
background-color: #fff;
color: #000;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border: 1px solid #000;
}
.cb-pageloginregister1 .btn2:hover {
background-color: #0654ff;
color: #ffffff;
}
.cb-pageloginregister1 p {
font-size: 12px;
}
.cb-pageloginregister1 a {
color: #425cbb;
}
.cb-pageloginregister1 p.info {
padding: 10px 15px;
background-color: #425cbb;
color: #fff;
border-radius: 2px;
}
.cb-pageloginregister1 .form-control {
background-color: #fff;
border: 1px solid #425cbb;
width: 100%;
border-radius: 2px;
margin: 0 auto;
color: #282828;
} .cb-form4 .register {
padding-top: 135px;
padding-bottom: 135px;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: #648fae;
}
.cb-form4 .login-wrap {
padding: 30px;
box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.55);
background-color: rgba(255, 255, 255, 0.86);
}
.cb-form4 .register .txt {
color: #353535;
display: block;
text-align: left;
font-size: 14px;
font-weight: 600;
margin-top: 28px;
}
.cb-form4 .register .btn {
margin-top: 30px;
border-radius: 2px;
padding: 10px;
font-size: 14px;
font-weight: 600;
letter-spacing: .8px;
text-shadow: none;
border: none;
text-transform: uppercase;
background-color: #1583c9;
}
.cb-form4 .register .btn {
background-color: #000;
color: #fff;
}
.cb-form4 h1 {
display: block;
text-transform: uppercase;
font-weight: 600;
padding-left: 0;
padding-bottom: 0;
font-size: 30px;
line-height: 30px;
}
.cb-form4 h1:after {
display: block;
content: '';
margin-top: 20px;
margin-left: 5px;
width: 80px;
height: 5px;
background-color: #333333;
}
.cb-form4 input {
border-radius: 0;
background: transparent;
border: 1px solid #949494;
color: #282828;
outline: none;
box-shadow: none !important;
width: 100%;
font-size: 14px;
padding: 10px;
} .cb-form5 {
padding-top: 50px;
}
.cb-form5 .nav-tabs {
border: none !important;
padding-top: 20px;
}
.cb-form5 li {
position: relative;
text-align: center;
background-color: #fff;
border: none!important;
width: 50%;
}
.cb-form5 li a {
font-size: 18px;
text-transform: uppercase;
line-height: 1.2;
color: #000;
background-color: #fff;
padding: 20px 15px;
margin-right: 0px;
border-bottom: 1px solid #eee;
text-decoration: none;
}
.cb-form5 li a:hover,
.cb-form5 li a:focus {
background-color: #fff;
color: #000;
border-top: none;
border-right: none;
border-left: none;
border-bottom: 1px solid #0095ff;
}
.cb-form5 li.active a {
background-color: #fff;
color: #000;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid #000;
text-decoration: none;
}
.cb-form5 li.active a:hover,
.cb-form5 li.active a:focus {
background-color: #fff;
color: #000;
border-top: none;
border-right: none;
border-left: none;
border-bottom: 1px solid #0095ff;
}
.cb-form5 .form {
margin: 50px 30px 50px 30px;
background-color: #fff;
}
.cb-form5 .form .nopad {
margin: 0 !important;
padding: 0 !important;
}
.cb-form5 .form .margin {
margin-top: 50px;
margin-bottom: 10px;
}
.cb-form5 .form input {
border: none;
padding: 20px;
font-size: 14px;
width: 100%;
}
.cb-form5 .form .input-group {
background-color: #eeeeee;
padding: 20px;
margin-bottom: 20px;
}
.cb-form5 .form .btn {
border-radius: 0;
color: #fff;
background-color: #4682b4;
font-size: 14px;
text-transform: uppercase;
line-height: 1.786;
text-align: center;
width: 100%;
}
.cb-form5 .form .fa-facebook-official {
color: #fff;
background-color: #215b9a;
font-size: 32px;
border-color: #215b9a;
border-radius: 0;
width: 100%;
text-align: center;
}
.cb-form5 .form .fa-twitter-square {
color: #fff;
background-color: #00adf2;
font-size: 32px;
border-color: #00adf2;
border-radius: 0;
width: 100%;
text-align: center;
}
.cb-form5 .form .fa-google-plus-square {
color: #fff;
background-color: #df4a36;
font-size: 32px;
border-color: #df4a36;
border-radius: 0;
width: 100%;
text-align: center;
}
.cb-form5 .form p a {
font-size: 14px;
color: rgb(129, 129, 129);
line-height: 1.2;
text-align: left;
text-decoration: none;
}
.cb-form5 .form .form-footer {
margin-bottom: 70px;
} .cb-footer1 ul {
list-style: none;
list-style-type: none;
margin: 0px;
padding: 0px;
}
.cb-footer1 ul li {
line-height: 22px;
}
.cb-footer1 ul li a {
font-size: 14px;
}
.cb-footer1 .navbar-brand {
padding: 0px;
height: auto;
} .cb-footer1 {
padding-top: 80px;
padding-bottom: 80px;
width: 100%;
background: #282828;
color: #fff;
}
.cb-footer1 h3 {
color: #393939;
background: #f5f5f5;
padding: 9px;
margin: 0;
font-weight: 800;
font-size: 16px;
text-transform: uppercase;
}
.cb-footer1 .mt20 {
margin-top: 20px;
}
.cb-footer1 p {
color: #f5f5f5;
line-height: 18px;
font-size: 12px;
}
.cb-footer1 .fa {
margin-right: 10px;
}
.cb-footer1 a {
color: #fff;
text-decoration: none;
}
.cb-footer1 a:hover {
color: #f5f5f5;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
} .cb-footer2 {
text-transform: uppercase;
padding: 20px 10px;
text-align: center;
color: #fff;
background: #425cbb;
}
.cb-footer2 p {
margin: 0;
} .cb-footer3 {
text-transform: uppercase;
font-size: 18px;
padding: 15px 10px;
background: #282828;
text-align: center;
color: #fff;
}
.cb-footer3 p {
margin: 0;
font-size: 14px;
}
.cb-footer3 .fa {
color: #425cbb;
} .cb-footer4 {
padding: 80px 40px;
background: #282828;
color: #fff;
}
.cb-footer4 .row.verticaldivide [class*='col-']:not(:last-child):after {
background: #f5f5f5;
width: 1px;
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
right: 0;
min-height: 70px;
}
.cb-footer4 h3 {
color: #fff;
margin: 0;
font-size: 24px;
margin-bottom: 20px;
}
.cb-footer4 p {
color: #f5f5f5;
line-height: 18px;
font-size: 12px;
margin-top: 20px;
}
.cb-footer4 a {
color: #fff;
}
.cb-footer4 a:hover {
color: #f5f5f5;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-footer4 .form-control {
background-color: #393939;
border: 1px solid #898989;
width: 100%;
border-radius: 2px;
margin: 0 auto;
color: #f5f5f5;
}
.cb-footer4 .form-subscribe {
position: relative;
}
.cb-footer4 .btn {
margin-right: 2px;
background-color: rgba(64, 152, 255, 0.98);
}
.cb-footer4 #footer-rights4 {
padding: 25px 10px;
background: #282828;
border-top: 1px solid #393939;
text-align: center;
color: #fff;
} .cb-footer5 {
padding: 80px 40px;
background: #fff;
color: #282828;
}
.cb-footer5 h3 {
color: #fff;
background: #282828;
padding: 9px;
margin-bottom: 20px;
font-weight: 800;
font-size: 16px;
text-transform: uppercase;
}
.cb-footer5 p {
color: #282828;
line-height: 18px;
font-size: 12px;
}
.cb-footer5 .fa {
margin-right: 10px;
}
.cb-footer5 img {
margin-bottom: 20px;
}
.cb-footer5 a {
color: #282828;
text-decoration: none;
}
.cb-footer5 a:hover {
color: #393939;
margin-left: 5px;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-footer5 #footer-rights5 {
padding: 25px 10px;
background: #f5f5f5;
text-align: center;
border-top: 1px solid #282828;
color: #282828;
} .cb-footer6 {
padding: 40px 0;
background: #fff;
color: #282828;
border-top: 1px solid #ccc;
}
.cb-footer6 ul {
text-align: center;
}
.cb-footer6 ul li {
margin-top: 10px;
margin-bottom: 10px;
}
.cb-footer6 a {
color: #282828;
text-transform: uppercase;
font-size: 20px;
font-weight: 600;
text-decoration: none;
}
.cb-footer6 a:hover {
color: #898989;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-footer6 .subscribe {
position: relative;
width: 35%;
margin: 40px auto;
}
.cb-footer6 .subscribe .form-control {
background-color: #f5f5f5;
border-radius: 0px;
border: 1px solid #ccc;
padding-right: 40px;
}
.cb-footer6 .subscribe .icon .fa {
font-size: 24px;
color: #ccc;
}
.cb-footer6 .subscribe .icon {
background-color: #000;
padding: 4px;
}
.cb-footer6 .social-icons {
text-align: center;
}
.cb-footer6 .social-icons .fa {
font-size: 25px;
color: #000;
}
.cb-footer6 .social-icons a {
margin: 0 15px;
}
.cb-footer6 .fa:hover {
color: #fff;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (max-width: 768px) {
.cb-footer6 .subscribe {
width: 85%;
}
} .cb-footer7 {
padding: 40px 0;
background: #282828;
color: #fff;
}
.cb-footer7 ul {
text-align: center;
}
.cb-footer7 a {
color: #fff;
text-transform: uppercase;
font-size: 14px;
font-weight: 400;
text-decoration: none;
margin: 0 8px;
}
.cb-footer7 a:hover {
color: #898989;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-footer7 .subscribe {
position: relative;
width: 35%;
margin: 40px auto;
margin-bottom: 0;
}
.cb-footer7 .subscribe .form-control {
background-color: #f5f5f5;
border-radius: 4px;
border: 1px solid #898989;
padding-right: 40px;
}
.cb-footer7 .subscribe .icon .fa {
font-size: 24px;
color: #ccc;
}
.cb-footer7 .subscribe .icon {
position: absolute;
top: 8px;
right: 4px;
}
.cb-footer7 .social-icons {
text-align: center;
margin-bottom: 40px;
}
.cb-footer7 .social-icons .fa {
font-size: 20px;
color: #ccc;
}
.cb-footer7 .social-icons a {
margin: 0 15px;
}
.cb-footer7 .fa:hover {
color: #898989 !important;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (max-width: 768px) {
.cb-footer7 .subscribe {
width: 85%;
}
} .cb-footer8 {
padding: 40px 0;
background: #fff;
color: #282828;
border-top: 1px solid #ccc;
}
.cb-footer8 ul {
text-align: center;
}
.cb-footer8 a {
color: #282828;
text-transform: uppercase;
font-size: 14px;
font-weight: 400;
text-decoration: none;
margin: 0 8px;
}
.cb-footer8 ul li a:first-child {
margin-left: 0;
}
.cb-footer8 a:hover {
color: #898989;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.cb-footer8 .content {
float: left;
}
.cb-footer8 .content p {
font-weight: 600;
color: #000;
}
.cb-footer8 .social-icons {
float: right;
margin-top: 12px;
}
.cb-footer8 .social-icons .fa {
font-size: 20px;
padding-top: 10px;
text-align: center;
color: #ccc;
width: 40px;
height: 40px;
background-color: #898989;
border-radius: 40px;
}
.cb-footer8 .social-icons a {
margin: 0 15px;
}
.cb-footer8 .fa:hover {
color: #282828 !important;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (max-width: 1000px) {
.cb-footer8 .social-icons {
float: none;
text-align: center;
margin: 0;
margin-bottom: 10px;
}
.cb-footer8 .content {
float: none;
text-align: center;
}
} .cb-basic1 {
padding: 40px 0;
}
.cb-basic1 p {
font-size: 12px;
}
.cb-basic1 h3 {
font-size: 22px;
} .cb-basic2 {
background: #282828;
color: #fff;
padding: 40px 0;
border: none;
}
.cb-basic2 p {
font-size: 12px;
}
.cb-basic2 h3 {
font-size: 22px;
} .cb-basic3 {
background: #425cbb;
color: #fff;
padding: 40px 0;
}
.cb-basic3 p {
font-size: 12px;
}
.cb-basic3 h3 {
font-size: 22px;
}