/* ==================
*** Large Width **** 
================= */

@media screen and (max-width: 1000px) {
    nav .container .fa-bars,
    nav .container .fa-x {
        display: block;
    }
    nav .container .nav-menu .nav-close {
        display: flex;
    }
	nav .nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
        width: 325px;
		background: white;
		z-index: 100;
		flex-direction: column;
		align-items: flex-start;
		grid-gap: 0;
		padding-left: 24px;
		padding-top: 60px;
		transition: all .3s ease;
	}
	nav .nav-menu.show {
		right: 0;
	}
	nav .nav-menu > li .dropdown-menu {
		top: 0;
		overflow-y: auto;
		max-height: 100vh;
		left: 100%;	
		transition: all .3s ease;
	}
	nav .nav-menu > li .dropdown-menu.show {
		left: 0;
	}
	nav .nav-menu > li:hover .dropdown-menu {
		max-height: 100vh;
	}
	nav .nav-menu > li > a .bx {
		transform: rotate(-90deg);
	}
	nav .nav-menu > li:hover > a .bx {
		transform: rotate(-90deg);
	}
	nav .nav-menu > li .dropdown-menu .left-section .dropdown-close {
		display: inline-block;
	}
	nav .toggle-navbar {
		display: block;
		transition-delay: .3s;
	}
	nav .toggle-navbar.hide {
		opacity: 0;
		pointer-events: none;
		transition-delay: 0s;
	}
}

@media screen and (max-width: 950px) {
	/* Mission & Vision Card */
    .container-2 .wrapper .card {
		height: max-content;
	}
}

/* ==================
*** Medium Width **** 
================= */

@media screen and (max-width: 870px) {
	/* Carousel */
	.carousel {
		height: 60vh;
	}
	.carousel .wrapper .description h3 {
		width: 90%;
	}

	/* Swiper */
	.swiper .swiper-wrapper .swiper-slide .slides .slider-body {
        width: 100%;
    }
    .swiper .swiper-wrapper .swiper-slide .slides .slider-body h1 {
        font-size: 25px;
        text-wrap: wrap;
    }
    .swiper .swiper-wrapper .swiper-slide .slides .slider-body p {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 25px;
    }

	/* Services Card */
	.container-1 .wrapper {
		padding: 35px 8px;
	}
	.container-1 .wrapper .card {
		width: 100%;
	}
	.container-1 .wrapper .card .description {
		padding: 15px 15px;
	}
	.container-1 .wrapper .card .description h1 {
		margin-bottom: 10px;
	}
	.container-1 .wrapper .card .description p {
		font-size: 15px;
		margin-bottom: 25px;
	}
	.container-1 .wrapper .card .description .actions button {
		height: 35px;
		width: 130px;
	}

	/* Inner Page */
	.services-container .wrapper .card .details {
		padding: 0 5px;
	}
}

/* ==================
*** Small Width **** 
================= */

@media screen and (max-width: 650px) {
	/* Services Card */
	.container-1 .wrapper .card {
		height: 100%;
		width: 400px;
		display: flex;
		flex-direction: column;
	}
	.container-1 .wrapper .card .img-header {
		width: 100%;
	}
	.container-1 .wrapper .card .description {
		width: 100%;
	}
    
	/* Mission & Vision */
	.container-2 .wrapper {
		display: flex;
		flex-direction: column;
		padding: 0 15px;
	}

	/* Inner Page */
	.services-container .wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.services-container .wrapper .card {
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		margin-bottom: 70px;
	}
	.services-container .wrapper .card .img-header {
		width: 100%;
		margin-bottom: 25px;
	}
	.services-container .wrapper .card .details {
		width: 100%;
	}
	.services-container .inquiry-btn {
		display: flex;
		justify-content: center;
	}

	/* Inquiry Form */
	.inquiry-container .wrapper {
		padding: 35px 15px;
	}
	.inquiry-container .wrapper form {
		height: 100%;
		width: 100%;
		padding: 25px 15px;
	}

	/* Footer */
	.footer .col .about {
		width: 100%;
	}
}

@media screen and (max-width: 470px) {
	/* Navbar */
    nav .container .brand {
        height: 65px;
        width: 160px;
    }
    nav .container .brand img {
        height: 100%;
        width: 100%;
    }

	/* Services Card */
	.container-1 .wrapper {
		padding: 35px 15px;
	}
	.container-1 .wrapper .card {
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
	}
}