
html, body{
    scroll-behavior: smooth;
    background-image: repeating-linear-gradient( 150deg, lavender, #fff 1px, #fff 25px);
}

a{
    text-decoration: none;
}

.navbar{
    transition: all 500ms ease-in;
}

.navbar ul{
	display: flex;
    list-style-type: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar .dropdown ul {
    flex-direction:column;
    position: absolute;
    left: 14px;
    top: calc(100% + 1px);
    margin: 0;
    padding: 0;
    z-index: 9;
    display: none;
    background: lavender;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown:hover ul{
    display:flex;
    border-radius:10px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    color: aliceblue;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 10px;
    border: 1px solid transparent;
    text-shadow: -1px -1px 3px darkblue;
}

.navbar > li a:hover{
   color: cyan;
   text-shadow:1px 1px 5px cornflowerblue;
   border-color: cyan;
}

.navbar .dropdown ul li{
    width: 100%;
}

.navbar .dropdown ul li:hover a{
    background-color:cornflowerblue;
}

.mobile-nav-toggle{
    display:none;
}

.mobile-nav-toggle.bi-x{
    color:#fff;
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

#header{
    background-image: linear-gradient(350deg, lavender, #262e95, lavender);
    border-bottom: 3px solid #7b7bc1;
    box-shadow: 0 0 8px 2px #7b7bc1;
    position:fixed;
    z-index:9;
    top: 0;
    left: 0;
    right: 0;
}

#header .logo a {
    color: cornflowerblue;
    font-weight: 700;
    text-shadow: -1px -1px 1px #54585f6e;
    filter: drop-shadow(2px 3px 3px darkblue);
}

#header .logo a:hover {
    filter: drop-shadow(2px 3px 3px darkviolet);
    color: dodgerblue;
}

#header .navbar{
    padding:0;
}

.mobile-nav-toggle {
    font-size:26px;
}

main#main {
    margin-top: 100px;
}

main > section {
    margin-bottom: 50px;
}

#slide .carousel, #slide .carousel-item {
    height:550px;
}

#about .content{
    font-size: 0.8rem;
}

#about .content h3{
    font-size: 1.3rem;
}

#gallery .card{
    border:none;
}

.card .card-shadow{
    box-shadow: 0 0 10px 0 #333;
}

.contact .info{
	display: flex;
    flex-direction: column;
    align-items: stretch;
	padding: 20px;
}

.contact .info i {
    font-size: 20px;
    color: aliceblue;
    width: 40px;
    height: 40px;
    background: dodgerblue;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.contact .info .location{
    display: flex;
    flex-direction: column;
    gap: 10px;
	border-top:3px solid cornflowerblue;
	border-bottom:3px solid cornflowerblue;
	box-shadow: 0 0 20px 0 midnightblue;
    flex:1;
	padding: 20px;
	background-color: aliceblue;
}

.contact .email-form{
	display: flex;
    flex-direction: column;
    align-items: stretch;
	padding: 20px;
}

.contact .email-form form{
	border-top:3px solid cornflowerblue;
	border-bottom:3px solid cornflowerblue;
	box-shadow: 0 0 20px 0 midnightblue;
    flex:1;
	padding: 20px;
	background-color: aliceblue;
}

.contact .location > div {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact .location > div p {
    font-size: 16px;
    margin-bottom:0;
    flex:1;
}

.clients-slider{
	height:100px;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	width:auto;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 80%;
	object-fit: cover;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 150px;
    border-top: 1px solid cornflowerblue;
    display: block;
    margin: auto;
    margin-top: 10px;
    box-shadow: 0 0px 7px 1px cornflowerblue;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

#footer{
	background-image: radial-gradient(#262e95, lavender);
	color:#fff;
	text-align:center;
	padding:15px 0;
}

.credits {
    font-size: 10px;
    padding: 5px;
}

.credits a {
    color: cyan;
    font-variant: petite-caps;
    letter-spacing: 1px;
}

.credits a:hover {
    color: salmon;
}

.back-to-top{
	display:none;
	position: fixed;
    bottom: 50px;
    right: 30px;
    width: 40px;
    font-size: 36px;
    color: #fff;
    line-height: 40px;
    height: 40px;
    background-color: cornflowerblue;
    border-radius: 40%;
    opacity: .7;
    text-align: center;
}

.back-to-top:hover{
    opacity: 1;
}

@media (max-width:991px){
    .mobile-nav-toggle {
        display:block;
    }
    .navbar ul{
        display:none;
    }
    .navbar-mobile ul{
        display:flex;
    }
}