/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

body
{
	  font-family: "Poppins", sans-serif;
	  overflow-x:hidden;
	  margin:0px;
}

.shadow-sm 
{
    box-shadow: none !important;
}

.dropdown 
{
  position: relative;
  display: inline-block;
}

.dropdown-content
 {
  display: none;
    position: absolute;
    background-color: #fff;
    min-width: 78.5rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 30px 20px;
    left: -414px;
}

.dropdown-content a:hover
 {
	 background-color: #ddd;
}

.dropdown:hover .dropdown-content 
{
	display: block !important;
}

.dropdown-content img
{
	width:130%;
}

.dropdown-content .menu-box
{
	padding:10px;
	border-radius:10px;
}

.dropdown-content .menu-box:hover
{
	background:#eee;
}

.dropdown-content h4 
{
    letter-spacing: .2px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #055194;
	padding:0px 10px;
}

.dropdown-content h5 
 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #494949;
    margin-top: 0px;
    margin-bottom: 0px;
}

.dropdown-content p 
 {
    font-family: "Lexend Deca", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #494949;
    margin-top: 0px;
    margin-bottom: 0px;
}

.dropdown-content-pad
{
	padding-top:5px;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}



.top-bar
{
    font-family: "Roboto", sans-serif !important;
	padding:5px 0px;
}

.top-bar small
{
	color:#fff !important;
	font-size:0.95rem;
}

.top-bar span
{
	color:#8acff6;
}

.top-bar-right
{
	text-align:right;
}

.fa-envelope
{
	margin-left:10px;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover 
{
	background-color:#055194 !important;
	border:1px solid #055194 !important;
}

.btn-secondary:hover 
{
	background-color:#055194 !important;
	border:1px solid #055194 !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
	font-family: "Roboto", sans-serif;
    position: relative;
    margin-left: 20px;
	margin-right:20px;
    padding: 38px 0;
    color: #4e4e4e;
    font-size: 1.125rem;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link 
{
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .show>.nav-link 
{
    color:#055194 !important;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: #055194 !important;
    border-color: #055194 !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark 
	{
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
		background:#f7f7f7;
		padding-top:5px !important;
		padding-bottom:5px !important;
		box-shadow: 0 2px 4px -2px #1018280f,0 4px 8px -2px #1018281a;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    /*.navbar-dark .navbar-nav .nav-link::before 
	{
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background:#f6d34a;
        transition: .5s;
    }*/

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

.bg-dark 
{
    background-color:#202c5a !important;
}

.bg-dark i
{
    margin-right:3px;
	font-size:0.8rem;
}


.navbar .btn-primary
{
	background-color:#45bc69;
	border:1px solid #45bc69;
	color:#fff;
	margin-left:50px !important;
}
















/*** Carousel ***/
.carousel-caption 
{
    top: 0;
    left: 100px;
    bottom: 0;
    z-index: 1;
	text-align:left;
}

#header-carousel h1
{
	  font-family: "Oswald", sans-serif;
	  text-transform:uppercase;
	  font-size:4rem;
}

#header-carousel h5
{
  font-family: "Poppins", sans-serif;
  font-weight: 400 !important;
  font-size: 1.3rem;
  line-height:2rem;
  margin-bottom:30px !important;
}

 .first-btn 
{
    color: #fff !important;
    background-color: #3c973f !important;
    border-color: #3c973f !important;
	padding:10px 30px !important;
	font-family: "Poppins", sans-serif;
	font-weight:500 !important;
}

 .second-btn
{
	padding:10px 30px !important;
	font-family: "Poppins", sans-serif;
	font-weight:500 !important;
	background-color:#f6d34a !important;
	border:1px solid #f6d34a !important;
	color:#333;
	box-shadow: inset 0 0 0 50px transparent;
}

#header-carousel .second-btn:hover 
{
    box-shadow: inset 0 0 0 0 #3c973f !important;
	color:#fff !important;
}



@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

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


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.container
{
	width: 100%;
    max-width: 80rem;
}

.banner-sec
{
	padding:80px 0px 60px;
	position:relative;
}

.banner-sec h2
{
	letter-spacing: .2px;
    margin-top: 30px;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
	color:#055194;
}

.banner-sec p
{
    font-family: "Lexend Deca", sans-serif;
	font-size:1.27rem;
	line-height:1.8rem;
	font-weight:400;
	color:#494949;
	margin-top:20px;
	margin-bottom:40px;
}

.banner-sec-box
{
	padding-top: 30px;
    padding-bottom: 30px;
	background-color:#F9F9F9;
	display:inline-block;
	width:21%;
	margin-right:9px;
	text-align:center;
	margin-top:0px;
	margin-bottom:50px;
}

.banner-sec h5
{
    font-family: "Lexend Deca", sans-serif;
	font-size:1rem;
	line-height:1.3rem;
	font-weight:400;
	color:#494949;
	margin-top:10px;
}

.banner-bt
{
	background-color: #45bc69;
	border:1px solid #45bc69;
    color: #ffffff;
	padding:10px 35px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	font-size:1.1rem;
}

.services-banner .banner-bt, .banner-sec .banner-bt
{
	padding:10px 110px;
}

.banner-bt:hover
{
	background-color: #055194;
	border:1px solid #055194;
}

.banner-bt-hover:hover
{
	border:1px solid #fff;
}

.banner-sec-right
 {
    animation: marqueeTop 60s linear infinite;
	position:relative;
}

.banner-sec-right img
{
	margin-bottom:40px;
}

.marquee-wrapper
{
  text-align:center;
}
.marquee-wrapper .container
{
  overflow:hidden;
}
.marquee-inner span
{
}
.marquee-wrapper .marquee-block
{
  width: 100%;
  height: 650px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  float:left;
}
.marquee-inner
{
  display: block;
  height: auto;
  width:100%;
  position: absolute;
}
.marquee-inner.to-left
{
  animation: marqueeTop 60s linear infinite;
}
.marquee-inner.to-right
{
  animation: marqueeBottom 60s linear infinite;
}
.marquee-item
{
  width: 100%;
  height: auto;
  display: block;
  transition: all .2s ease-out;
}
@keyframes marqueeTop{
  0% {
    top: 0;
  }
  100% {
    top: -250%;
  }
}
@keyframes marqueeBottom{
  0% { 
    top: -100%; 
  }
  100% {
   top: 0; 
  }
}
.about-sec2-left2 .banner-bt:hover, .home-sec2-left .banner-bt:hover, .our-services-sec2-left .banner-bt:hover, .about-sec2-left .banner-bt:hover, .about-sec2-left2 .banner-bt:hover
{
	background-color: transparent !important;
	border:1px solid #fff !important;
}

.banner-sec-right
{
	padding-left:20px;
}

.banner-below-sec
{
   background: #0168b0;
   padding: 70px 0px;
   text-align:center;
}

.banner-below-sec h4
{
    font-family: Poppins, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;	
	color:#fff;
	margin-top:0px;
	margin-bottom:5px;
	text-align:center;
	letter-spacing: .2px;
}

.banner-below-sec h5
{
	font-family: "Roboto", sans-serif;
    font-size: 3rem;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0px;	
	color:#fff;
	margin:0px;
}

.banner-below-sec p
{
	font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;	
	color:#fff;
	margin-top:15px;
	margin-bottom:0px;
}

.banner-below-sec-left
{
	text-align:right;
}

.home-sec1 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
	text-align:center;
}

.home-sec1 h6 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 0px;
	text-align:center;
}

.sub-heading
{
	letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2rem !important;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
	text-align:center;
}

.home-sec1-inner-banner
{
	background-image:url(../img/wastea-seychelles-home-sec1-inner-banner.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:95px 40px 110px;
	margin-top: 40px;
    margin-bottom: 0px;
}

.home-sec1-inner-banner h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
	text-align:left;
}

.home-sec1-inner-banner p 
{
    font-size: 1.2rem !important;
    line-height: 1.5rem;
    color: #fff !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
    height: auto !important;
}

.white-bt
{
	background-color: #fff;
    border: 1px solid #fff;
    color: #055194;
    padding: 10px 30px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
}

.home-sec1-inner
{
	padding:20px;
	padding-bottom:40px;
	box-shadow:0px 0px 10px 0px #d2d2d2;
	margin-top:60px;
	margin-bottom:60px;
}

.owl-carousel.owl-drag .owl-item
{
	padding:10px;
	margin-right:10px !important; 
}

.home-sec1 h4
{
	font-family: "Poppins", sans-serif;
	font-size:1.3rem;
	line-height:1.8rem;
	font-weight:700;
	margin-top:20px;
	margin-bottom:0px;
	color:#00416d;
}

.home-sec1 p
{
    font-family: "Roboto", sans-serif;
	font-size:1.01rem;
	line-height:1.5rem;
	font-weight:500;
	color:#363636;
	margin-top:10px;
    margin-bottom:20px;
	height: 100px;
}

.home-sec1 h5
{
	margin-top:10px;
    margin-bottom:0px;
}

.home-sec1 h5 a
{
	font-family: "Poppins", sans-serif;
	font-size:1rem;
	line-height:1.6rem;
	font-weight:500;
	color:#2c944b;
	border:1px solid #2c944b;
	padding:7px 12px;
}

.home-sec1 h5 a:hover
{
	background-color:#45bc69;
	border:1px solid #45bc69;
	color:#fff;
}


.wrapper{
    width: 100%;
    display: flex;
    animation: slide 16s infinite;
}
@keyframes slide{
    0%{
        transform: translateX(0);
    }
    25%{
        transform: translateX(0);
    }
    30%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    55%{
        transform: translateX(-200%);
    }
    75%{
        transform: translateX(-200%);
    }
    80%{
        transform: translateX(-300%);
    }
    100%{
        transform: translateX(-300%);
    }
}



.owl-carousel
{
	position:relative;
}

.owl-carousel .owl-nav button.owl-next 
{
    color: #055194 !important;
    border: none;
    padding: 0 !important;
    top: 45%;
    right: -50px;
    position: absolute;
    font-size: 35px !important;
	line-height:38px !important;
}

.owl-carousel .owl-nav button.owl-prev
 {
    color: #055194 !important;
    border: none;
    padding: 0 !important;
    top: 45%;
    left: -50px;
    position: absolute;
    font-size: 35px !important;
    line-height:38px !important;
}

.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover 
{
	background-color:transparent;
}

.owl-carousel .owl-nav i 
{
	font-weight:600 !important;
}

.owl-nav button
{
	height:40px;
	width:40px;
	margin-top:20px;
}


.home-sec2
{
}

.home-sec2-left
{
	background-color:#055194;
	padding:100px 80px 100px 60px;
}

.home-sec2 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.home-sec2 p
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
}

.text-weight
{
font-weight:600;
}

.home-sec2-right
{
    background-image:url(../img/wastea-seychelles-home-sec2-img.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	padding:80px 0px !important;
}

.home-sec3
{
	padding:100px 0px;
	text-align:center;
}

.home-sec3-inner 
{
	border: 2px solid lightgrey;
    background-color: #fff;
    border-radius: 1.25rem;
    flex: 1;
    padding: 2.7rem 1.8rem;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 12px 16px -4px #10182814, 0 4px 6px -2px #10182808;
	margin-bottom:30px;
}

.vl 
{
    border-left: 2px solid #75d481;
    height: 130px;
    position: absolute;
    right: -5%;
    margin-left: -3px;
    top: 34%;
}

.home-sec3 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
}

.home-sec3 h6 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 70px;
}

.home-sec3 h4 
{
    letter-spacing: .2px;
    margin-top: 0px;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: #055194;
}

.home-sec3 p
{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 0px;
	height:140px;
}

.home-sec3 hr
{
	width:50px;
	margin:auto;
	border-top: 2px solid #363636;
	opacity:1;
}


.home-sec4
{
    background-image:url(../img/wastea-seychelles-home-sec4-bg.jpg);
	background-size:cover;
	background-repeat:no-repeat;
    padding:100px 0px !important;
	text-align:center;
}

.home-sec4 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
	margin-bottom:30px;
}

.home-sec4 p
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
}

.home-sec5
{
    background-color:#055194;
	padding:70px 0px !important;
	text-align:center;
}

.home-sec5 h4 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
	margin-bottom:30px;
}

.footer-sec
{
	margin:80px 0px 60px 0px;
}

.footer-sec h4
 {
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #055194;
    margin-bottom: 20px;
}

.footer-sec p
{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 500;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 15px;
}

.footer-sec p a
{
    color: #363636;
}

.footer-sec p a:hover
{
	color: #45bc69;
}

.footer-sec ul li, .footer-sec ul li a 
{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 500;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 5px;
	list-style:none;
}

.footer-sec ul
{
	padding:0px;
}

.footer-sec ul li a:hover 
{
    color: #45bc69;
}

.copyright-sec
{
	background-color:#055194;
    padding:10px 0px;
}

.copyright-sec p 
{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin: 0px;
}

.copyright-sec p a
{
color:#45bc69 !important;
}

.copyright-sec p a:hover
{
	text-decoration:underline;
}

.copyright-sec-right
{
	text-align:right;
}


.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

/* our services */

.services-banner
{
	background-image:url(../img/wastea-seychelles-our-services-banner.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:80px 0px;
	height:460px;
}

.services-banner h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
}

.services-banner p 
{
    font-family: "Lexend Deca", sans-serif;
    font-size: 1.3rem;
    line-height: 1.9rem;
    font-weight: 400;
    color: #171717;
    margin-top: 20px;
    margin-bottom: 40px;
}

.service-sec1 h6
{
   padding:0px 140px;
   margin-bottom:30px;
}

.service-sec1 .home-sec1-inner
 {
    margin-top: 40px;
    margin-bottom: 0px;
}

.service-sec2
{
	background-image:url(../img/wastea-seychelles-our-services-sec2.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:80px 0px;
	text-align:center;
}

.service-sec2 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.service-sec2 h6 
{
    font-family: "Lexend Deca", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 40px;
}

.our-services-sec2-bg1
{
	background-image:url(../img/wastea-seychelles-our-services-img1.jpg) !important;
}

.our-services-sec2-bg2
{
	background-image:url(../img/wastea-seychelles-our-services-img2.jpg) !important;
}

.our-services-sec2-left
{
	padding:100px 70px !important;
}

.service-sec3
{
	background-image:url(../img/wastea-seychelles-our-services-sec3.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:80px 0px;
	text-align:center;
}

.service-sec3 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.service-sec3 h6 
{
    font-family: "Lexend Deca", sans-serif;
    font-size: 1.1rem;
    line-height: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 40px;
}

.skip-service-banner
{
	background-image:url(../img/wastea-seychelles-skip-service-banner.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:80px 0px;
}

.skip-services-sec1
{
	margin:80px 0px;
}

.skip-services-sec1 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
}

.skip-services-sec1 h6 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: #363636;
    margin-top: 10px;
    margin-bottom: 0px;
}

.skip-services-sec1 p
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 20px;
}

.skip-services-sec1 img
{
	margin-top:40px;
	border-radius:30px;
}

.skip-service-sec1-list
{
	padding: 0px 0px;
	margin-bottom:30px;
}

.skip-service-sec1-list li 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 10px;
    list-style: none;
}

.skip-service-sec1-list li img 
{
    width: 25px;
    margin-right: 2px;
	margin-top:0px;
}

.skip-service-sec2
{
	padding:100px 0px;
	background-color:#f2eee4;
}

.skip-service-sec2 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
}

.skip-service-sec2 p 
 {
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 400;
    color: #363636;
    margin-top: 30px;
    margin-bottom: 30px;
}

.skip-service-sec2 ul
{
	padding:0px 0px;
}

.skip-service-sec2 ul li 
 {
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 15px;
	list-style:none;
}

.skip-service-sec2 ul li img
{
	width:25px;
	margin-right:2px;
}

.skip-service-sec2 img 
{
	border-radius: 30px;
}

.skip-service-sec3 .container
{
	width:100%;
	max-width: 100%;
    padding: 0px 30px;
}

.skip-service-sec3 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
    text-align: center;
}

.skip-service-sec3 h6 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 0px;
    text-align: center;
}

.skip-service-sec3 h6
{
	margin-bottom:50px;
}

.skip-service-sec3-inner img
{
	border-radius:20px;
}

.skip-service-sec3-inner-text
{
	position:absolute;
	bottom:0px;
    background-color: rgba(255, 255, 255, 0.6);
    color: rgb(0, 65, 109);
	padding:30px 20px 20px 20px;
	backdrop-filter: blur(14px);
    color: #00416d;
    background-color: #fffc;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
	
	height: 7rem;
    width: 94.2%;
    vertical-align: middle;
	margin:0px;
	transition: all .8s ease-in-out;
}

.skip-service-sec3-inner:hover .skip-service-sec3-inner-text
{
	height: 8rem;
	background-color: rgb(0, 65, 109, 0.6);
}

.skip-service-sec3-inner:hover .skip-service-sec3-inner-text h4, .skip-service-sec3-inner:hover .skip-service-sec3-inner-text h5 i

{
	color:#fff;
}

.skip-service-sec3-inner:hover .skip-service-sec3-inner-text h5
{
	border:1px solid #fff;
}

.skip-service-sec3-inner
{
  width: 100%;
  height:auto;
  overflow: hidden;

}

.skip-service-sec3-inner img
{
  width: 110%;
  transition: all .8s ease-in-out;
}

.skip-service-sec3-inner:hover img
{
  transform: scale(1.2);
  border-radius:20px;
}

.skip-service-sec3-inner:hover 
{
  border-radius:20px;
}


.skip-service-sec3 h4
{
	font-size:1.2rem;
	line-height:1.5rem;
	margin:0px;
	vertical-align: middle;
	position:relative;
	color: #00416d;
	font-weight:700;
	font-family: "Poppins", sans-serif;
}

.skip-service-sec3 h5
{
	border-radius:50px;
	padding:9px 10px 10px 12px;
	border:1px solid #055194;
	width:40px;
	height:40px;
	font-size:1.2rem;
	line-height:1.2rem;
	margin:0px;
	vertical-align: middle;
	position:relative;
}

.skip-service-sec3 i 
{
	color: #00416d;
}

.skip-service-sec3 .owl-carousel .owl-nav button.owl-prev 
{
    top: 45%;
    left: -40px;
    font-size: 50px !important;
    line-height: 50px !important;
}

.skip-service-sec3 .owl-carousel .owl-nav button.owl-next 
{
    top: 45%;
    right: -40px;
    font-size: 50px !important;
    line-height: 50px !important;
}


.liquid-service-banner
{
	background-image:url(../img/wastea-seychelles-liquid-service-banner.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:80px 0px;
}

.liquid-service-sec2
{
	background-image:url(../img/wastea-seychelles-liquid-service-sec2-bg.jpg);
	background-size:cover;
	background-repeat:no-repeat;
}

.unblocking-service-banner
{
	background-image:url(../img/wastea-seychelles-unblocking-service-banner.jpg);	
}

.unblocking-services-sec1-left, .unblocking-service-sec2-left
{
	padding-right:60px;
}

.unblocking-service-sec2
{
	background-color:#f2eee4;	
}

.unblocking-service-sec2-left img
{
	border-radius:30px;
}

.unblocking-service-sec3
{
	background-image:url(../img/wastea-seychelles-unblocking-service-sec3-bg.jpg);	
	background-size:cover;
	background-repeat:no-repeat;
	padding:120px 0px;
	text-align:center;
}

.unblocking-service-sec3 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.unblocking-service-sec3 p
 {
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.7rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 30px;
}

.collection-oil-banner
{
	background-image:url(../img/wastea-seychelles-collection-of-oil-banner.jpg);	
}

.collection-oil-sec2
{
	text-align:center;
    background-image:url(../img/wastea-seychelles-collection-of-oil-sec2-bg.jpg);	
	background-size:cover;
	background-repeat:no-repeat;
}

.collection-oil-sec2 p 
{
	font-size: 1.125rem;
    line-height: 1.7rem;
}

.high-water-pressure-cleaning-banner
{
	background-image:url(../img/wastea-seychelles-high-water-pressure-cleaning-banner.jpg);	
}

.commercial-refuse-collection-banner
{
	background-image:url(../img/wastea-seychelles-commercial-refuse-collection-banner.jpg);
}

.right-space
{
	padding-left:50px;
}

.right-space img 
{
	margin-top:0px;
}

.cleaning-services-banner
{
	background-image:url(../img/wastea-seychelles-cleaning-services-banner.jpg);
}

.cleaning-services-sec1
{
	background-image:url(../img/wastea-seychelles-cleaning-services-sec1-bg.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	margin:0px;
	padding:80px 0px;
}

.cleaning-services-sec2 h2
{
	
}

.sanitizer-service-banner
{
    background-image:url(../img/wastea-seychelles-sanitizer-and-disinfection-service-banner.jpg);
}

.about-banner
{
	background-image:url(../img/wastea-seychelles-about-us-banner.jpg);
}

.about-sec2 .row
{
	--bs-gutter-x:0px;
}

.about-sec2-left
{
	background-color:#0168b0;
	padding:80px 70px;
}

.about-sec2-left2
{
	background-color:#45bc69;
}

.about-sec2-right
{
    background-image:url(../img/wastea-seychelles-about-us-sec2-img1.jpg);
	background-size:cover;
	background-repeat:no-repeat;
}

.about-sec2-right2
{
    background-image:url(../img/wastea-seychelles-about-us-sec2-img2.jpg);
	background-size:cover;
	background-repeat:no-repeat;
}

.about-sec2 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.about-sec2 h6
{
    font-family: "Roboto", sans-serif;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-sec2 p 
{
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 15px;
}

.about-sec4
{
	margin:80px 0px;
}

.about-sec4 h5 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #45bc69;
    margin-top: 0px;
    margin-bottom: 5px;
}

.about-sec4 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
}

.about-sec4 h6 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 20px;
    margin-bottom: 30px;
	padding-right:50px;
}

.about-sec4-left
{
	margin-top:160px;
}

.about-sec5
{
	background-image:url(../img/wastea-seychelles-about-us-sec5-bg.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	padding:120px 0px;
}

.about-sec5 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 40px;
    font-family: Poppins, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.home-bt
 {
    background-color: #45bc69;
    border: 1px solid #45bc69;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
}

.home-bt:hover, .home-bt2:hover
 {
    background-color: #00416d;
    border: 1px solid #00416d;
    color: #ffffff;
 }

.home-bt2
 {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 50px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
	margin-left:20px;
}

.contact-banner
{
	background-image:url(../img/wastea-seychells-contact-banner.jpg);
}

.contact-sec1
{
	padding: 100px 0px;
    background-color: #f2eee4;
}

.contact-sec1 h5
 {
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7rem;
    font-weight: 500;
    color: #494949;
    margin-top: 0px;
    margin-bottom: 40px;
	letter-spacing:5px;
}

.contact-sec1 p 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.7rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 50px;
}

.contact-sec1 h4
{
    font-family: Poppins, sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 20px;
}

.contact-sec1 img
{
	border-radius:20px;
}

.contact-sec2
{
	margin:100px 0px;
}

.contact-sec2 h2 
{
    letter-spacing: .2px;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
	text-align:center;
}

.contact-sec2 p 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
    color: #363636;
    margin-top: 0px;
    margin-bottom: 80px;
    text-align:center;
}

.contact-sec2 label
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
	margin-bottom:10px;
}

.contact-sec2 input[type="file"]::file-selector-button
 {
	background-color:#055194;
	border: 1px solid #055194;
	color:#fff;
	padding:7px 20px;
}


.contact-sec2 input[type="text"], .contact-sec2 textarea 
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
	margin-top: 0px;
    margin-bottom: 30px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #b4b3b3;
    border-radius: 0px;
    padding: 10px 0px;
}

.contact-sec2 input[type="text"]::placeholder, .contact-sec2 textarea::placeholder 
{
    color: #363636;	
}

.contact-sec2 input[type="text"]:focus, .contact-sec2 textarea:focus, .contact-sec2 select:focus
{
	outline:none;
}

.contact-sec2 select
{
    font-family: "Roboto", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #363636;
	margin-top: 0px;
    margin-bottom: 30px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #b4b3b3;
    border-radius: 0px;
    padding: 10px 0px;
}

.contact-sec2 textarea
{
	height:150px;
}

.con-bt 
{
    background-color: #45bc69;
    border: 1px solid #45bc69;
    color: #ffffff;
    padding: 10px 80px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
}

.jobs-banner
{
	background-image:url(../img/wastea-seychells-jobs-banner.jpg);
}

.jobs-sec1 h4 
{
    letter-spacing: .2px;
    margin-top: 60px;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #055194;
	text-transform:uppercase;
	letter-spacing:1.5px;
}

.jobs-sec2
{
    background-color:#f2eee4;
    margin:0px;
    padding:100px 0px;
}

.jobs-sec2 select
{
	margin-top: 28px;
}

.products-banner
{
	 background-image:url(../img/wastea-seychelles-products-banner.jpg);
}

.products-sec1
{
	
}

.products-sec1 h4
{
    height: 60px;
}

.products-sec1 p 
{
    height: 135px;
}

.products-pad
{
	padding-right:40px;
}

.products-pad img
{
	margin-top:0px;
}




 
 .carousel{position:relative}
 
 .carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}
 
 .carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}
 
 
 