@import url('https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html 
{
  scroll-behavior: smooth;
}


.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none; 
}



/*------------------- CHAT BOT ---------------------*/


#bot
{
    position: fixed;
    top: 85%;
    right:1%;
    z-index: 30;
    font-size: 40px;
    cursor: pointer;
}

.chatBot
{   
    position: sticky;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: #343a40;
    padding: 10px;
    color: orange;
    border-radius:100px;
}

.chatBot:hover
{
    background-color: dodgerblue;
}

.chatBot:active
{
    background-color: aqua;
}

.chatbot-tooltip
{
    color: orange;
}
/*---------------------- nav  ----------------------*/

body
{
    font-family: sans-serif;
}


#navbar
{
    position: sticky;
    top: 0;
    z-index: 100;
}

.bg-nav
{
    background-color: #343a40; !important
}

.nav-active
{
    color: chocolate;
}

ul
{
    list-style-type: none;
}

.navbar-toggler
{
    outline: none !important;
    border-style: none; !important
}

.nav-links
{
    align-content: center;
    padding-bottom: 50px;
    font-family: Bebas Neue;
}

.nav-links a
{
    -moz-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
}

.nav-links a:hover
{
    padding-left: 30px;
}

.nav-links li a
{
    font-size: 60px;
    color: aliceblue;
    text-decoration: none; !important
}


.logo a
{
    -moz-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: padding-left 0.2s ease-in-out, color 0.2s ease-in-out;
    
    color: white;
    font-family: Bevan;
    font-size: 35px;
    text-decoration: none; !important
}

.logo a:hover
{
    padding-left: 10px;
}


.navbar-toggler
{
    -moz-transition: padding-right 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: padding-right 0.2s ease-in-out, color 0.2s ease-in-out;
	-o-transition: padding-right 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: padding-right 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: padding-right 0.2s ease-in-out, color 0.2s ease-in-out;
}

.navbar-toggler:hover
{
    padding-right: 20px;
}

.top-bars
{
    color: white;
    font-size: 25px;
}



/* --------------------- Carousel ------------------------ */

.carousel-inner img {
    width: 100%;
}


.bg-trans
{
    background-color: transparent; !important;
}

.carouselPad
{
    padding: 0px;
}

#banner
{
    
}

@media (min-width: 300px)
.d-md-block {
    display: block!important;
}


.carousel-header
{
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
	transition: clip-path 0.4s;
    font-family: Staatliches;
    color: #343a40;
    background-color: white;
    margin-left: 350px;
    margin-right: 350px;
    margin-bottom: 60px;
    padding: 10px 0px 10px;
}



.carousel-head:hover .carousel-header
{
    font-kerning: normal;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.carousel-quote
{
    font-family: Roboto;
    color: #343a40;
    background-color: white;
    font-size: 20px;
    padding: 10px;
    margin-bottom: 80px;
    margin-left: 60px;
    margin-right: 60px;
}



/* ---------------------- Content ------------------------- */



#content-home
{
    padding-top: 50px;
    padding-bottom: 50px;
}

.content-title
{
    font-family: Bungee;
    padding-top: 10px;
    padding-bottom: 40px;
}
.content-text
{
    font-family: Roboto;
    font-weight: 300;
    margin-top: 10px;
    margin-left: 200px;
    margin-right: 200px;
}

@media only screen and (max-width: 600px) 
{
    .content-text 
    {
        margin-left: 100px;
        margin-right: 100px;
    }
}

.content-logo
{
    background-color: #343a40;
    align-content: center;
    clip-path: circle(50% at 50% 50%);
}

.content-logo img
{
    width: 100%;
}

.anchor
{
    color: orange;
}

.anchor:hover
{
    color: chocolate;
    text-decoration: none; !important
}

/* ---------------------- How it works ------------------------- */



#how-it-works
{
    padding-top: 50px;
    padding-bottom: 40px;
    background-color: #343a40;
    color:white;
}

.section-title
{
    color: white;
    font-family: Bungee;
    text-align: center;
    padding-bottom: 30px;
}

.timeline-chars
{
    text-align: center;
    margin-bottom: 30px;
}

.timeline-text
{
    padding: 10px;
    font-family: Roboto;
}

.timeline-head
{
    text-align: center;
    font-family: Bungee;
    font-weight: 500;
    font-size: 30px;
}

.blob
{
    font-size: 60px;
    background-color: orange;
    padding: 18px;
    min-width: 60px;
}


/* ---------------------- Testimonies --------------------------- */

#testimonies
{
    padding: 20px 0px 30px;
}

.black
{
    color: #343a40;
}


/*------------------------------------------------*/

.img-circle
{
    clip-path: circle(50% at 50% 50%);
    background-color:orange;
    padding: 5px;
}
.shadow-effect 
{
    background: #fff;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	border:1px solid #ECECEC;
	box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}
customers-testimonials .shadow-effect p 
{
    font-size: 17px;
	line-height: 1.5;
	margin: 0 0 17px 0;
    font-weight: 300;
}

.testimonial-name 
{
    font-family: Bevan;
    margin: -17px auto 0;
    display: table;
	width: auto;
	background: #343a40;
	padding: 9px 35px;
	text-align: center;
	color: #fff;
	box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
}

#customers-testimonials .item {
    text-align: justify;
	padding: 50px;
    margin-bottom:80px;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
	max-width: 90px;
    margin: 0 auto 17px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span 
{
    background: #343a40;
	transform: translate3d(0px, -50%, 0px) scale(0.7);	
}
        
#customers-testimonials.owl-carousel .owl-dots
{
    display: inline-block;
    width: 100%;
    text-align: center;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot
{
    display: inline-block;    
}
		
#customers-testimonials.owl-carousel .owl-dots .owl-dot span 
{
    outline: none !important;
	background: #343a40;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
}

.testimonial
{
    font-family: Roboto;
}


/* ----------------------footeer ------------------- */



#footer
{
    padding: 30px 0px 10px;
    color: white;
    background-color: #343a40;
    font-family: Roboto;
}

.footer-link
{
    padding-top: 7px;
}

.footer-contact
{
    padding-top: 7px;
}

.link
{
    color: orange;
}

.link:hover
{
    color:orangered;
    text-decoration: none: !important
}

.line
{
    text-align: center;
}

.email a
{
    color: orange;
}

.email a:hover
{
    color: orangered;
    text-decoration: none; !important
}

.line::before
{
    content: '';
    background-color: white;
    height: 3px;
    width: 500px;;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    display: block;
}

.links a
{
    color: white;
    font-family: Roboto;
    font-size: 20px;
}

.links a:hover
{
    color: orange;
    text-decoration: none; !important
}

.copyright
{
    padding-top: 10px;
}