1239 lines
24 KiB
CSS
1239 lines
24 KiB
CSS
/********** Template CSS **********/
|
|
:root {
|
|
/* --primary: #AB7442; */
|
|
--primary: #C22126;
|
|
--light: #F5F5F5;
|
|
--dark: #353535;
|
|
}
|
|
|
|
.fw-medium {
|
|
font-weight: 500 !important;
|
|
}
|
|
|
|
.fw-bold {
|
|
font-weight: 700 !important;
|
|
}
|
|
|
|
.fw-black {
|
|
font-weight: 900 !important;
|
|
}
|
|
|
|
.back-to-top {
|
|
position: fixed;
|
|
display: none;
|
|
right: 45px;
|
|
bottom: 45px;
|
|
z-index: 99;
|
|
}
|
|
|
|
|
|
/*** Spinner ***/
|
|
#spinner {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: opacity .5s ease-out, visibility 0s linear .5s;
|
|
z-index: 99999;
|
|
}
|
|
|
|
#spinner.show {
|
|
transition: opacity .5s ease-out, visibility 0s linear 0s;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
/*** Button ***/
|
|
.btn {
|
|
font-weight: 500;
|
|
transition: .5s;
|
|
}
|
|
|
|
.btn.btn-primary,
|
|
.btn.btn-secondary {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.btn-square {
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
|
|
.btn-sm-square {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
.btn-lg-square {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
.btn-square,
|
|
.btn-sm-square,
|
|
.btn-lg-square {
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/*** Navbar ***/
|
|
.navbar .dropdown-toggle::after {
|
|
border: none;
|
|
content: "\f107";
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 900;
|
|
vertical-align: middle;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 30px;
|
|
padding: 25px 0;
|
|
color: #FFFFFF;
|
|
font-size: 15px;
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
outline: none;
|
|
}
|
|
|
|
.navbar-light .navbar-nav .nav-link:hover,
|
|
.navbar-light .navbar-nav .nav-link.active {
|
|
color: var(--primary);
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 0;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.navbar-light .navbar-nav {
|
|
border-top: 1px solid #EEEEEE;
|
|
}
|
|
}
|
|
|
|
.navbar-light .navbar-brand,
|
|
.navbar-light a.btn {
|
|
font-weight: 600;
|
|
height: 75px;
|
|
}
|
|
|
|
.navbar-light .navbar-nav .nav-link {
|
|
color: var(--dark);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navbar-light.sticky-top {
|
|
top: -100px;
|
|
transition: .5s;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.navbar .nav-item .dropdown-menu {
|
|
display: block;
|
|
border: none;
|
|
margin-top: 0;
|
|
top: 150%;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .5s;
|
|
}
|
|
|
|
.navbar .nav-item:hover .dropdown-menu {
|
|
top: 100%;
|
|
visibility: visible;
|
|
transition: .5s;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
|
|
/*** Header ***/
|
|
@media (max-width: 768px) {
|
|
.header-carousel .owl-carousel-item {
|
|
position: relative;
|
|
min-height: 500px;
|
|
}
|
|
|
|
.header-carousel .owl-carousel-item img {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.header-carousel .owl-carousel-item h5,
|
|
.header-carousel .owl-carousel-item p {
|
|
font-size: 14px !important;
|
|
font-weight: 400 !important;
|
|
}
|
|
|
|
.header-carousel .owl-carousel-item h1 {
|
|
font-size: 30px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.header-carousel .owl-nav {
|
|
position: absolute;
|
|
width: 200px;
|
|
height: 45px;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header-carousel .owl-nav .owl-prev,
|
|
.header-carousel .owl-nav .owl-next {
|
|
width: 45px;
|
|
height: 45px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #FFFFFF;
|
|
background: transparent;
|
|
border: 1px solid #FFFFFF;
|
|
font-size: 22px;
|
|
transition: .5s;
|
|
}
|
|
|
|
.header-carousel .owl-nav .owl-prev:hover,
|
|
.header-carousel .owl-nav .owl-next:hover {
|
|
background: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.header-carousel .owl-dots {
|
|
position: absolute;
|
|
height: 45px;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.header-carousel .owl-dot {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin: 0 5px;
|
|
width: 15px;
|
|
height: 15px;
|
|
background: transparent;
|
|
border: 1px solid #FFFFFF;
|
|
transition: .5s;
|
|
}
|
|
|
|
.header-carousel .owl-dot::after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 5px;
|
|
height: 5px;
|
|
top: 4px;
|
|
left: 4px;
|
|
background: transparent;
|
|
border: 1px solid #FFFFFF;
|
|
}
|
|
|
|
.header-carousel .owl-dot.active {
|
|
background: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.page-header {
|
|
background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/library.jpeg) center center no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
color: var(--light);
|
|
}
|
|
|
|
|
|
/*** Section Title ***/
|
|
.section-title h1 {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 0 60px;
|
|
}
|
|
|
|
.section-title.text-start h1 {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.section-title h1::before,
|
|
.section-title h1::after {
|
|
position: absolute;
|
|
content: "";
|
|
width: 45px;
|
|
height: 5px;
|
|
bottom: 0;
|
|
background: var(--dark);
|
|
}
|
|
|
|
.section-title h1::before {
|
|
left: 0;
|
|
}
|
|
|
|
.section-title h1::after {
|
|
right: 0;
|
|
}
|
|
|
|
.section-title.text-start h1::before {
|
|
display: none;
|
|
}
|
|
|
|
.padding-large {
|
|
padding: 12px 0px !important;
|
|
}
|
|
|
|
/*** About ***/
|
|
.about-intro-text {
|
|
text-align: left;
|
|
}
|
|
@media (min-width: 992px) {
|
|
.container.about {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.about-text {
|
|
padding-right: calc(((100% - 960px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.about-text {
|
|
padding-right: calc(((100% - 1140px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1400px) {
|
|
.about-text {
|
|
/* padding-right: calc(((100% - 1320px) / 2) + .75rem); */
|
|
}
|
|
}
|
|
|
|
|
|
/*** Service ***/
|
|
.service-item img {
|
|
transition: .5s;
|
|
}
|
|
|
|
.service-item:hover img {
|
|
/* transform: scale(1.1); */
|
|
}
|
|
|
|
|
|
/*** Feature ***/
|
|
@media (min-width: 992px) {
|
|
.container.feature {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.feature-text {
|
|
padding-left: calc(((100% - 960px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.feature-text {
|
|
padding-left: calc(((100% - 1140px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1400px) {
|
|
.feature-text {
|
|
padding-left: calc(((100% - 1320px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
|
|
/*** Project Portfolio ***/
|
|
#portfolio-flters li {
|
|
display: inline-block;
|
|
font-weight: 500;
|
|
color: var(--dark);
|
|
cursor: pointer;
|
|
transition: .5s;
|
|
border-bottom: 2px solid transparent;
|
|
}
|
|
|
|
#portfolio-flters li:hover,
|
|
#portfolio-flters li.active {
|
|
color: var(--primary);
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.portfolio-item img {
|
|
transition: .5s;
|
|
}
|
|
|
|
.portfolio-item:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.portfolio-item .portfolio-overlay {
|
|
position: absolute;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 0;
|
|
height: 0;
|
|
bottom: 0;
|
|
left: 50%;
|
|
background: rgba(53, 53, 53, .7);
|
|
transition: .5s;
|
|
}
|
|
|
|
.portfolio-item:hover .portfolio-overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
}
|
|
|
|
.portfolio-item .portfolio-overlay .btn {
|
|
opacity: 0;
|
|
}
|
|
|
|
.portfolio-item:hover .portfolio-overlay .btn {
|
|
opacity: 1;
|
|
}
|
|
|
|
|
|
/*** Quote ***/
|
|
@media (min-width: 992px) {
|
|
.container.quote {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.quote-text {
|
|
padding-right: calc(((100% - 960px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.quote-text {
|
|
padding-right: calc(((100% - 1140px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1400px) {
|
|
.quote-text {
|
|
padding-right: calc(((100% - 1320px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
|
|
/*** Team ***/
|
|
.team-item img {
|
|
transition: .5s;
|
|
}
|
|
|
|
.team-item:hover img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.team-item .team-social {
|
|
position: absolute;
|
|
width: 38px;
|
|
top: 50%;
|
|
left: -38px;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #FFFFFF;
|
|
transition: .5s;
|
|
}
|
|
|
|
.team-item .team-social .btn {
|
|
color: var(--primary);
|
|
background: #FFFFFF;
|
|
}
|
|
|
|
.team-item .team-social .btn:hover {
|
|
color: #FFFFFF;
|
|
background: var(--primary);
|
|
}
|
|
|
|
.team-item:hover .team-social {
|
|
left: 0;
|
|
}
|
|
|
|
|
|
/*** Testimonial ***/
|
|
.testimonial-carousel::before {
|
|
position: absolute;
|
|
content: "";
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 0;
|
|
background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.testimonial-carousel::after {
|
|
position: absolute;
|
|
content: "";
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
width: 0;
|
|
background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
|
|
z-index: 1;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.testimonial-carousel::before,
|
|
.testimonial-carousel::after {
|
|
width: 200px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.testimonial-carousel::before,
|
|
.testimonial-carousel::after {
|
|
width: 300px;
|
|
}
|
|
}
|
|
|
|
.testimonial-carousel .owl-item .testimonial-text {
|
|
border: 5px solid var(--light);
|
|
transform: scale(.8);
|
|
transition: .5s;
|
|
}
|
|
|
|
.testimonial-carousel .owl-item.center .testimonial-text {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.testimonial-carousel .owl-nav {
|
|
position: absolute;
|
|
width: 350px;
|
|
top: 10px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
opacity: 0;
|
|
transition: .5s;
|
|
z-index: 1;
|
|
}
|
|
|
|
.testimonial-carousel:hover .owl-nav {
|
|
width: 300px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.testimonial-carousel .owl-nav .owl-prev,
|
|
.testimonial-carousel .owl-nav .owl-next {
|
|
position: relative;
|
|
color: var(--primary);
|
|
font-size: 45px;
|
|
transition: .5s;
|
|
}
|
|
|
|
.testimonial-carousel .owl-nav .owl-prev:hover,
|
|
.testimonial-carousel .owl-nav .owl-next:hover {
|
|
color: var(--dark);
|
|
}
|
|
|
|
|
|
/*** Contact ***/
|
|
@media (min-width: 992px) {
|
|
.container.contact {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.contact-text {
|
|
padding-left: calc(((100% - 960px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.contact-text {
|
|
padding-left: calc(((100% - 1140px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1400px) {
|
|
.contact-text {
|
|
padding-left: calc(((100% - 1320px) / 2) + .75rem);
|
|
}
|
|
}
|
|
|
|
|
|
/*** Footer ***/
|
|
.footer {
|
|
background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.footer .btn.btn-social {
|
|
margin-right: 5px;
|
|
width: 35px;
|
|
height: 35px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--light);
|
|
border: 1px solid #FFFFFF;
|
|
transition: .3s;
|
|
}
|
|
|
|
.footer .btn.btn-social:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.footer .btn.btn-link {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
padding: 0;
|
|
text-align: left;
|
|
color: #FFFFFF;
|
|
font-size: 15px;
|
|
font-weight: normal;
|
|
text-transform: capitalize;
|
|
transition: .3s;
|
|
}
|
|
|
|
.footer .btn.btn-link::before {
|
|
position: relative;
|
|
content: "\f105";
|
|
font-family: "Font Awesome 5 Free";
|
|
font-weight: 900;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.footer .btn.btn-link:hover {
|
|
color: var(--primary);
|
|
letter-spacing: 1px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.footer .copyright {
|
|
padding: 25px 0;
|
|
font-size: 15px;
|
|
border-top: 1px solid rgba(256, 256, 256, .1);
|
|
}
|
|
|
|
.footer .copyright a {
|
|
color: var(--light);
|
|
}
|
|
|
|
.footer .copyright a:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
/* Accordion */
|
|
/* Style the buttons that are used to open and close the accordion panel */
|
|
.accordion {
|
|
background-color: #FFCC01;
|
|
color: #000;
|
|
cursor: pointer;
|
|
padding: 18px;
|
|
width: 100%;
|
|
border: none;
|
|
text-align: left;
|
|
outline: none;
|
|
font-size: 15px;
|
|
transition: 0.4s;
|
|
margin-bottom: 10px; /* Adds gap between each accordion */
|
|
border-radius: 10px; /* Adds border radius */
|
|
font-weight: 700;
|
|
}
|
|
|
|
.accordion-container .active, .accordion:hover {
|
|
/* background-color: #ccc; */
|
|
}
|
|
|
|
.accordion:after {
|
|
/* content: '\002B'; */
|
|
color: #777;
|
|
font-weight: bold;
|
|
float: right;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.active:after {
|
|
/* content: "\2212"; */
|
|
}
|
|
|
|
.panel {
|
|
padding: 0 18px;
|
|
/* background-color: white; */
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height 0.2s ease-out;
|
|
border-radius: 0 0 10px 10px; /* Adds border radius to the bottom of the panel */
|
|
}
|
|
|
|
/* // CUSTOM BUTTON // */
|
|
.custom-button-container {
|
|
display: flex; /* Use Flexbox for horizontal alignment */
|
|
justify-content: flex-start; /* Align buttons to the left */
|
|
flex-wrap: wrap; /* Allow wrapping on smaller screens */
|
|
}
|
|
|
|
.custom-button-container .slider-btn {
|
|
margin: 10px; /* Space around each button */
|
|
}
|
|
|
|
.custom-button-container .btn {
|
|
background-color: #C22126; /* Button color */
|
|
color: white; /* Text color */
|
|
padding: 10px 20px; /* Padding inside the button */
|
|
border: none; /* Remove border */
|
|
border-radius: 5px; /* Rounded corners */
|
|
text-decoration: none; /* Remove underline from link */
|
|
font-size: 16px; /* Font size */
|
|
transition: background-color 0.3s ease; /* Smooth background change */
|
|
}
|
|
|
|
.custom-button-container .btn:hover {
|
|
background-color: #A71C20; /* Darker shade on hover */
|
|
}
|
|
|
|
|
|
.home-slider-wrapper {
|
|
/* height: 600px; */
|
|
overflow: hidden;
|
|
}
|
|
|
|
.home-slider-wrapper .owl-carousel .owl-item img {
|
|
height: 600px;
|
|
object-fit: cover;
|
|
}
|
|
.service-item-wrapper .service-item {
|
|
border: 5px solid #f5f5f5 ;
|
|
}
|
|
|
|
.service-item-wrapper .service-item .service-image {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 25px 0 15px 0;
|
|
}
|
|
.service-item-wrapper .service-item img {
|
|
height: 150px;
|
|
}
|
|
.service-item-wrapper .service-item .service-para {
|
|
min-height: 68px;
|
|
}
|
|
|
|
|
|
.logo-main {
|
|
width: 250px;
|
|
}
|
|
|
|
.story-image {
|
|
width: 50%;
|
|
float: right;
|
|
margin: 15px;
|
|
}
|
|
.or-style {
|
|
text-align: center;
|
|
padding: 10px 10px;
|
|
position: relative;
|
|
max-width: 350px;
|
|
}
|
|
|
|
.or-style:before {
|
|
position: absolute;
|
|
content: "";
|
|
width: 100%;
|
|
height: 1px ;
|
|
background-color: grey;
|
|
left: 0;
|
|
top: 45%;
|
|
z-index: 0;
|
|
}
|
|
.or-style span {
|
|
background-color: white;
|
|
padding: 5px 10px;
|
|
display: inline-block;
|
|
position: relative;
|
|
z-index: 1;
|
|
left: 0;
|
|
}
|
|
|
|
@media only screen and (max-width: 1280px) {
|
|
.service-item-wrapper .service-item h4 {
|
|
font-size: 16px;
|
|
}
|
|
.service-item-wrapper .service-item .service-para {
|
|
font-size: 0.8rem;
|
|
}
|
|
.service-item-wrapper .service-item img {
|
|
height: 100px;
|
|
}
|
|
.apply-link {
|
|
padding-left: 1rem !important;
|
|
font-size: 13px;
|
|
padding-right: 1rem !important;
|
|
height: initial !important;
|
|
padding-bottom: 1.5rem !important;
|
|
}
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 10px;
|
|
/* font-size: 11px; */
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1175px) {
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 10px;
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1085px) {
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 10px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 1080px) {
|
|
.navbar-light .navbar-nav .nav-link {
|
|
margin-right: 10px;
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 991px) {
|
|
.service-area {
|
|
padding-bottom: 0!important;
|
|
}
|
|
.home-slider-wrapper {
|
|
padding-bottom: 0!important;
|
|
}
|
|
.header-carousel .owl-nav {
|
|
bottom: 0px;
|
|
}
|
|
.header-carousel .owl-dots {
|
|
bottom: 7px;
|
|
}
|
|
.header-carousel .owl-nav .owl-prev, .header-carousel .owl-nav .owl-next {
|
|
width: 25px;
|
|
height: 25px;
|
|
font-size: 15px;
|
|
}
|
|
.logo-main {
|
|
width: 150px;
|
|
}
|
|
.header-carousel .owl-carousel-item {
|
|
min-height: 250px;
|
|
}
|
|
.header-carousel .owl-carousel-item h1 {
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
}
|
|
.home-slider-wrapper .owl-carousel .owl-item img {
|
|
height: 250px !important;
|
|
object-fit: cover;
|
|
}
|
|
.video-section {
|
|
margin-bottom: 0!important;
|
|
}
|
|
.story-image {
|
|
width: 100%;
|
|
float: none;
|
|
margin: 0 0 20px 0;
|
|
}
|
|
.pad-btm-0 {
|
|
padding-bottom: 0!important;
|
|
}
|
|
.mar-btm-0 {
|
|
margin-bottom: 0!important;
|
|
}
|
|
.sidebar {
|
|
width: 100%!important;
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
gap: 10px;
|
|
padding: 0px 10px 30px 10px!important;
|
|
}
|
|
.sidebar a{
|
|
/* width: 50% !important; */
|
|
font-size: 12px;
|
|
min-width: initial !important;
|
|
padding: 10px 5px !important;
|
|
margin: 0 0!important;
|
|
|
|
}
|
|
#sidebar-page {
|
|
display: block!important;
|
|
}
|
|
}
|
|
@media only screen and (max-width: 767px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.emergency-box-style {
|
|
padding-bottom: 4px !important;
|
|
background-color: #ffc107 !important;
|
|
border: 1px solid #ffc107 !important;
|
|
}
|
|
|
|
|
|
/* form styling */
|
|
.registration-form .form-control {
|
|
|
|
display: block;
|
|
width: 100%;
|
|
height: calc(1.5em + 1.125rem + 4px);
|
|
padding: 0.5625rem 1.125rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #515d6d;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 2px solid #c22126;
|
|
border-radius: 0.3125rem;
|
|
box-shadow: none;
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
|
|
}
|
|
.registration-form .checkbox{float:left; margin-right:20px}
|
|
.registration-form .control-label {
|
|
color: #000;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/*file uploader*/
|
|
|
|
/*----------multiple-file-upload-----------*/
|
|
.input-group.file-caption-main {
|
|
display: none;
|
|
}
|
|
|
|
.close.fileinput-remove {
|
|
display: none;
|
|
}
|
|
|
|
.file-drop-zone {
|
|
margin: 0px;
|
|
border: 1px solid #fff;
|
|
background-color: #fff;
|
|
padding: 0px;
|
|
display: contents;
|
|
}
|
|
|
|
.file-drop-zone.clickable:hover {
|
|
border-color: #fff;
|
|
}
|
|
|
|
.file-drop-zone .file-preview-thumbnails {
|
|
display: inline;
|
|
}
|
|
|
|
.file-drop-zone-title {
|
|
padding: 15px;
|
|
height: 120px;
|
|
width: 120px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.file-input-ajax-new {
|
|
display: flex;
|
|
}
|
|
.file-input{
|
|
display:flex
|
|
}
|
|
|
|
.file-input.theme-fas {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
|
|
.file-preview {
|
|
padding: 0px;
|
|
border: none;
|
|
display: inline;
|
|
}
|
|
|
|
.file-drop-zone-title {
|
|
display: none;
|
|
}
|
|
|
|
.file-footer-caption {
|
|
display: none !important;
|
|
}
|
|
|
|
.kv-file-upload {
|
|
display: none;
|
|
}
|
|
|
|
.file-upload-indicator {
|
|
display: none;
|
|
}
|
|
|
|
.file-drag-handle.drag-handle-init.text-info {
|
|
display: none;
|
|
}
|
|
|
|
.krajee-default.file-preview-frame .kv-file-content {
|
|
width: 90px;
|
|
height: 90px;
|
|
display: flex;
|
|
text-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.krajee-default.file-preview-frame {
|
|
background-color: #fff;
|
|
margin: 3px;
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.krajee-default.file-preview-frame:not(.file-preview-error):hover {
|
|
box-shadow: none;
|
|
border-color: #ed3237;
|
|
}
|
|
|
|
.krajee-default.file-preview-frame:not(.file-preview-error):hover .file-preview-image {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.krajee-default.file-preview-frame {
|
|
box-shadow: none;
|
|
border-color: #fff;
|
|
max-width: 150px;
|
|
margin: 5px;
|
|
padding: 0px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.file-thumbnail-footer,
|
|
.file-actions {
|
|
width: 20px;
|
|
height: 20px !important;
|
|
position: absolute !important;
|
|
top: 3px;
|
|
right: 3px;
|
|
}
|
|
|
|
.kv-file-remove:focus,
|
|
.kv-file-remove:active {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.kv-file-remove {
|
|
border-radius: 50%;
|
|
z-index: 1;
|
|
right: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
text-align: center;
|
|
color: #fff;
|
|
background-color: #ed3237;
|
|
border: 1px solid #ed3237;
|
|
padding: 2px 6px;
|
|
font-size: 11px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.kv-file-remove:hover {
|
|
border-color: #fdeff0;
|
|
background-color: #fdeff0;
|
|
color: #ed1924;
|
|
}
|
|
|
|
.kv-preview-data.file-preview-video {
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
}
|
|
|
|
.btn-outline-secondary.focus, .btn-outline-secondary:focus {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.btn-toggleheader,
|
|
.btn-fullscreen,
|
|
.btn-borderless {
|
|
display: none;
|
|
}
|
|
|
|
.btn-kv.btn-close {
|
|
color: #fff;
|
|
border: none;
|
|
background-color: #ed3237;
|
|
font-size: 11px;
|
|
width: 18px;
|
|
height: 18px;
|
|
text-align: center;
|
|
padding: 0px;
|
|
}
|
|
|
|
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
|
|
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
|
|
.show > .btn-outline-secondary.dropdown-toggle:focus {
|
|
background-color: rgba(255,255,255,0.8);
|
|
color: #000;
|
|
box-shadow: none;
|
|
color: #ed3237;
|
|
}
|
|
|
|
.kv-file-content .file-preview-image {
|
|
width: 90px !important;
|
|
height: 90px !important;
|
|
max-width: 90px !important;
|
|
max-height: 90px !important;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.btn-danger.btn-file {
|
|
padding: 0px;
|
|
height: 95px;
|
|
width: 95px;
|
|
display: inline-block;
|
|
margin: 5px;
|
|
border-color: #fdeff0;
|
|
background-color: #fdeff0;
|
|
color: #ed1924;
|
|
border-radius: 15px;
|
|
padding-top: 30px;
|
|
transition: 0.5s;
|
|
}
|
|
|
|
.btn-danger.btn-file:active,
|
|
.btn-danger.btn-file:hover {
|
|
background-color: #fde3e5;
|
|
color: #ed1924;
|
|
border-color: #fdeff0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.btn-secondary.btn-file i {
|
|
font-size: 22px;
|
|
display:block
|
|
}
|
|
|
|
|
|
@media (max-width: 350px) {
|
|
.krajee-default.file-preview-frame:not([data-template=audio]) .kv-file-content {
|
|
width: 90px;
|
|
}
|
|
}
|
|
.bg-diffrent {
|
|
border: 1px dashed #c22126;
|
|
border-radius: 6px;
|
|
background: #f7f7f7;
|
|
}
|
|
.file-preview {
|
|
|
|
border:0 !important
|
|
|
|
}
|
|
.krajee-default.file-preview-frame .kv-file-content {
|
|
width: 92px !important;
|
|
height: 94px !important;
|
|
}
|
|
.btn-file {
|
|
overflow: hidden;
|
|
margin: 10px;
|
|
}
|
|
@media(max-width:768px){
|
|
.registration-form .control-label {
|
|
color: #000;
|
|
font-size: 13px;
|
|
|
|
}
|
|
.custom-gutter {
|
|
margin-left: -8px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
.custom-gutter [class*='col-'] {
|
|
padding-left: 1px;
|
|
padding-right: 1px;
|
|
}
|
|
}
|
|
.form-control:focus {
|
|
border-color: #bf1e23;
|
|
outline: 0;
|
|
box-shadow: 0 0 0 .2rem rgb(255 0 0 / 25%);
|
|
}
|
|
.form-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
label {
|
|
display: inline-block;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.hd-line-height {
|
|
line-height: 1.45;
|
|
border-radius: 0.3125rem !important;
|
|
}
|
|
.btn-secondary.btn-file {
|
|
border-radius: 0.3125rem!important;
|
|
}
|
|
|
|
.submit-form-btn {
|
|
display: block;
|
|
margin: 50px 0;
|
|
padding: 13px 34px;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
outline: none;
|
|
border: 0;
|
|
background-color: #c22126;
|
|
background-clip: padding-box;
|
|
border-radius: 3px;
|
|
/* box-shadow: 0 4px 0 #2C81BA; */
|
|
opacity: 1;
|
|
transition: transform 0.2s ease-out, opacity 0.2s ease-out;
|
|
}
|
|
.submit-form-btn:hover {
|
|
background-color: #ffc107;
|
|
}
|
|
.submit-form-btn:active, .submit-form-btn.enter-press, .submit-form-btn.overlay {
|
|
margin: 20px 0 0px 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.number-list-style {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.number-list {
|
|
background-color: #ffc107;
|
|
color: black;
|
|
border-radius: 50px;
|
|
width: 40px;
|
|
height: 40px;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 32px 0 0 15px;
|
|
}
|
|
|
|
.accordion-bbtn-style {
|
|
display: inline-block; width: 100%; max-width: 150px; margin-top: 10px; border-radius: 5px; padding: 20px 20px; background-color: #C22126;
|
|
color: #ffffff;
|
|
}
|
|
.accordion-bbtn-style:hover,
|
|
.accordion-bbtn-style:focus {
|
|
background-color: #ffc107;
|
|
color: #ffffff;
|
|
outline: none;
|
|
box-shadow: none;
|
|
} |