/*--
<!-- GTcms :: GT Web Framework-->
--*/

:root {
    --color1: #0d42ff;
    --color2: #ffff00;
    --color3: var(--color1);
}

:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}
body {
  font-family: "Open Sans",sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
  -webkit-text-size-adjust: 100%;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: "Jost",sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #011A41;
  color:var(--color3);
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}
a {
    color: var(--color1);
    color: var(--color1);
    text-decoration: none;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

a:hover {
    color: var(--color1);
    color: var(--color2);
    text-decoration: none;
}


/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--color1);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        /*background: #FFFFFF;*/
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color1);
    border: 10px solid var(--color1);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
	padding-top: 0;
	padding-bottom: 0;
    background: url(../images/header.jpg) top left no-repeat;
	background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../images/header.jpg) center center no-repeat;
	background: linear-gradient(rgba(var(--color1rgb),.8), rgba(var(--color2rgb),.5)), url(../images/header.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    background: linear-gradient(rgba(var(--color1rgb), .95), rgba(var(--color2rgb), .95)), url(../images/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--color1);
    border-color: var(--color1) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--color1) !important;
    background: var(--color1);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
	z-index: 1;
}
.project-item .project-img img {
	border: 1px solid var(--color2);
}
.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    left: 2rem;
    border: 1px solid var(--color1);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    /*z-index: -1;*/
    transition: .5s;
}
.project-item .project-title.pttl2 {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 2rem;
    border: 1px solid var(--color1);
    border-radius: 8px;
    display: grid;
    align-items: flex-end;
    padding: 8px;
    z-index: 1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--color1);
    border-color: var(--color1);
}

.project-item .project-title h4 {
	min-height: 48px;
    transition: .5s;
}
.project-item .project-title.pttl2 h4 {
	min-height: auto;
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}
.project-item:hover .project-title span {
    color: #eeeeee;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--color1);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 2rem;
    bottom: 0;
    left: 2rem;
    padding: 15px;
    border: 1px solid var(--light);
	border: 1px solid var(--color1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /*transition: .5s;*/
    z-index: 1;
}

.team-item:hover .team-text {
    /*background: var(--color2);*/
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color2);
    border-color: var(--color2);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--color1);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--color1);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--color1);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--color1);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--color1);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.80)) var(--color1);
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--color1);
}

/*--xtraStyles--*/

footer .copy-right-gtcren {
    background: #eaeaea;
}

@media(max-width:767px) {
    p.copyright span {
        display: block;
    }
}

.hide {
    display: none !important;
}

.map hr {
    margin-top: .5rem;
    margin-bottom: .2rem;
}

.sptn {
    display: none !important;
}

.error {
    display: none;
    padding: 10px;
    margin: 0 0 5px 0;
    color: #D8000C;
    font-size: 1em;
    background-color: #FFBABA;
}

.success {
    display: none;
    padding: 10px;
    color: #044406;
    font-size: 1em;
    background-color: #B7FBB9;
}

.error img {
    vertical-align: top;
}

.txtcenter {
    text-align: center;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 2%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 38px;
    border: none;
    text-indent: 100%;
}

#toTopHover {
    width: 32px;
    height: 38px;
    display: block;
    overflow: hidden;
    float: right;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    right: 10px;
}

.scrollicon {
    position: absolute;
    top: 0;
    width: 32px;
    height: 38px;
    text-indent: 0;
    /*background:#b2b2b2;
	background:rgba(178,178,178,0.7);*/
    padding: 5px 2px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

.scrollicon:hover {
    background: rgba(51, 51, 51, 0.5);
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    border-radius: 5px;
}

.scrollicon:hover i {
    text-shadow: 1px 1px 0px #000;
}

.scrollicon i {
    color: var(--color1);
    font-size: 1.8rem;
    text-shadow: 0px 0px 8px #000;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}

.pgntr .pagination {
    display: inline-flex;
    margin-bottom: 5px;
}

.page-item.active .page-link {
    background-color: var(--color1);
    border-color: #666;
    color: #fff;
}

.page-link {
    background-color: transparent;
    color: var(--color1);
    text-decoration: none;
    margin: 0px;
    border-radius: 0.0rem;
    padding: 11px 25px;
    border-color: #888;
}

.page-link:hover {
    color: #000;
    background-color: var(--color2);
    border-color: #888;
}

.page-item.disabled .page-link {
    background-color: #eee;
    border-color: #888;
}

.pgul ul {
    list-style: none;
    padding: 0;
    padding-left: 10px;
    margin-top: 10px;
}

.pgul ul li {
    font-size: 1.3rem;
    line-height: 1.5em;
    padding-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    list-style-type: none;
    list-style: none;
    /*display: table-row;*/
    display: flex;
    transition: all 0.3s ease-in;
}

.pgul ul li:before {
    content: "\f0a4";
    font-family: 'Font Awesome 5 Free';
    width: 1.3em;
    color: var(--color1);
    font-weight: 900;
    margin-right: 10px;
    /*display: table-cell;*/
    display: flex;
    transition: all 0.3s ease-in;
}

.pgul ul li:hover:before {
    color: var(--color2);
    transition: all 0.3s ease-in;
}

[style*="--aspect-ratio"]>img {
    width: 100%;
}

[style*="--aspect-ratio"]>img {
    height: auto;
}

@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"]>img,
    [style*="--aspect-ratio"]> :first-child {
        position: absolute;
        top: 0;
        left: 0;
        /*height: 100%;*/
    }
}

img.contain-fit {
    object-fit: contain;
    height: 100%;
}

.ttllogo {
    max-height: 80px;
    transition: .5s;
    /*padding: 5px;*/
	padding: 1px 3px;
    background: #fff;
    border-radius: 5px;
	max-width: calc(100% - 40px);
}

.bg-color1,
.btn-color1 {
    background: var(--color1);
    border-color: var(--color1);
    color: var(--color3);
	box-shadow: #fff 4px 4px 0 0,var(--color1) 4px 4px 0 1px;
	padding: 8px 30px;
}

.bg-color2,
.btn-color2 {
    background: var(--color2);
    border-color: var(--color2);
    color: var(--color3);
	box-shadow: #fff 4px 4px 0 0,var(--color2) 4px 4px 0 1px;
	padding: 8px 30px;
}
.btn-color1:hover {
    background: linear-gradient(to top, rgba(255, 255, 255, .65), rgba(255, 255, 255, .65)) var(--color1);
}
.btn-color2:hover {
    background: linear-gradient(to top, rgba(255, 255, 255, .65), rgba(255, 255, 255, .65)) var(--color2);
}
.bg-color1-light {
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
}

.bg-color2-light {
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color2);
}

.bg-color1-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)) var(--color1);
}

.text-color1 {
    color: var(--color1);
}

.text-color2 {
    color: var(--color2);
}

.text-color3 {
    color: var(--color3);
}

.border-color1 {
    border-color: var(--color1) !important;
}

.border-color2 {
    border-color: var(--color2) !important;
}

.wcbx {
    font-size: 1.2rem;
    text-align: justify;
    letter-spacing: .7px;
}

.navbar-light .navbar-toggler-icon {
	background-image: none;
}
.border-bottom-color1{
	border-bottom: 3px solid var(--color1);
}
.border-bottom-color2{
	border-bottom: 3px solid var(--color2);
}
.border-bottom-color1-light{
	border-bottom: 3px solid rgba(var(--color1rgb),.5);
}
.border-bottom-color2-light{
	border-bottom: 3px solid rgba(var(--color2rgb),.5);
}
.social-btns i{
	font-size:1.4rem;
}
.footer .address span {
  display: inline-grid;
}
.carousel-caption .maintxt{
	text-shadow: 2px 2px 1px var(--color1);
	text-shadow: 1px 1px 2px #fff, 2px 2px 1px var(--color1), 3px 3px 5px #000;
}
.vehirowimgbx1 img {
  width: 400px;
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}
#vehiclesinfo .vehinfobx .column {
    width: 50%;
    border: 1px solid #ccc;
    border: 1px solid rgba(var(--color1rgb), .3);
    margin: 1px 0;
    margin: 0;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    color: #333;
    padding: 5px;
    align-items: center;
    display: grid;
	border-radius: 10px;
	border-radius: 0px;
	overflow: hidden;
    /*background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color2);*/
}

#vehiclesinfo .vehinfobx .column:nth-child(odd) {
    /*border-right: 2px solid #ddd;
	background: linear-gradient(to top,rgba(255,255,255,.85),rgba(255,255,255,.85)) var(--color1);*/
}
.page-header--:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(127, 127, 127, 0.5);
	background-image: radial-gradient(black 33%, transparent 33%);
	background-size: 2px 2px;
}
.mainbc a{
	color:#eee;
}
.fs-5rem {
	font-size:5rem;
}
.service-item img, .pgimg {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1.77;
}
.srvbx .item-boxes- {
  box-shadow: 0px 0px 1px #666;
  padding: 0px;
  height: 100%;
  display: grid;
  border-radius: 10px;
  outline: 1px solid var(--color1);
  outline-offset: -4px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color2);
  position: relative;
  overflow: hidden;
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
}
.srvbx .item-boxes .mainttl {
	font-size:1.2rem;
}
.srvbx .item-boxes img {
  border-radius: 10px;
  border-top-left-radius: 50px;
}
.srvbx .item-boxes .project-title {
	border-bottom-right-radius: 50px;
}
#tourpkg .item-boxes .pglst img {
  width: 100%;
  object-fit: contain;
}
a.text-hover-light:hover, .project-item:hover a.text-hover-light{
	color:#eee;
}
.pb-4rem{
	padding-bottom: 4rem !important;
}
.pb-5rem{
	padding-bottom: 5rem !important;
}
.sticky-top {
  top: -100px;
  transition: .5s;
}
.card-img img {
	border-radius: 8px;
	overflow: hidden;
}
.text-justify{
	text-align:justify;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--color1);
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--color3);
  background-color: var(--color2);
}
.wwdimg{
	width: 48px;
	aspect-ratio: 1;
}
.carousel-indicators [data-bs-target]{
	border-radius: 5px;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	background-clip: initial;
}
.carousel-indicators .active {
  background: var(--color1);
}
.dropdown-item {
	padding: .5rem 1rem;
	white-space: normal;
	min-width: 300px;	
}

.radin {
  --bar-color: var(--color1);
  --background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #e0e0e0);
  display: flex;
  background-color: rgba(255, 255, 255, 0.85);
}

.radin > label {
  flex: 1;
  display: flex;
  border: 1px solid #ddd;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 40%, #e0e0e0);
}

.radin > label > input[type="radio"] {
  width: 0;
  height: 0;
  margin: 0;
  display: none;
}

.radin > label > span {
  padding: .8rem;
  width: 100%;
  text-align: center;
  transition: 0.5s;
  border-bottom: 4px solid rgba(0,0,0,0);
  cursor: pointer;
}

.radin > label > input[type="radio"]:checked + span {
  background: var(--background);
  border-color: var(--bar-color);
}
input:not([type='submit']):not([type='checkbox']), .form-control:not([type='submit']):not([type='checkbox']) {
	padding: .8rem;
	display: block;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #555;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(var(--color1rgb),.4);
	appearance: none;
	border-radius: 0;
	transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}
#cf_container .form-group, #cfcontainer .form-group {
  padding-bottom: 20px;
}
.form-control:focus, input:focus, .form-check-input:focus{
	outline:1px solid var(--color1);
	box-shadow:none;
}
.ui-datepicker .ui-datepicker-header {
	background: rgba(var(--color1rgb),.7);
	background: linear-gradient(to bottom, rgba(var(--color1rgb),1) 0%, rgba(var(--color2rgb),1) 100%);
	background: linear-gradient(to bottom, rgba(var(--color1rgb),.3) 0%,rgba(var(--color1rgb),.5) 24%,rgba(var(--color1rgb),.8) 50%,rgba(var(--color1rgb),.5) 79%,rgba(var(--color1rgb),.3) 100%);
	color: #efefef;
}
.ui-widget.ui-datepicker.ui-widget-content {
  border: 1px solid rgba(var(--color1rgb),.7);
  background: linear-gradient(to top, rgba(255, 255, 255, .55), rgba(255, 255, 255, .90)) var(--color1);
}
.multiselect-container {
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)) var(--color1);
}
.multiselect-container input[type="checkbox"] {
	accent-color: var(--color2);
	transform: scale(1.5);
}
.multiselect-container.show .multiselect-option:focus, .multiselect-container.show .multiselect-option:hover, .multiselect-container.show .multiselect-option.active:not(.multiselect-active-item-fallback) {
    background-color: var(--color2) !important;
	color: #fff;
}
.multiselect-container.show .multiselect-option:focus input[type="checkbox"], .multiselect-container.show .multiselect-option:hover input[type="checkbox"], .multiselect-container.show .multiselect-option.active:not(.multiselect-active-item-fallback) input[type="checkbox"] {
	accent-color: var(--color1);
	background-color: var(--color1);
}
#cfcontainer .fa {
	color: var(--color1);
	padding-bottom: 10px;
}
.footer .btn-link {
  text-decoration: none;
}
button.multiselect {
	text-align:left !important;
}
.tags .team-item {
  padding: 0;
}






@media (max-width: 1280.98px) {
	.ttllogo {
		max-width: 100%;
	}
	a.logo{
		width:calc(100% - 80px);
	}
	.navbar-toggler:focus {
	  box-shadow: 0 0 0 .05rem var(--color1);
	}
#enquiry #cfcontainer .radin label, #enquiry #cfcontainer .radin  {
  display: grid;
  width: 100%;
}
.project-item.fldrv .project-title.pttl2 {
  position: relative;
  top: -20px;
}
.project-item.fldrv {
	padding-bottom: 0 !important;
}
}