:root{
    --background-color:#FFFEFF;
    --surface-color:#1e1e1e;
    --primary-color:#4274B1;
    --secondary-color:#;
    --on-background-color:#000000;
    --on-surface-color:#FFFFFF;
    --on-primary-color:#FFFFFF;
    --on-secundary-color:#;

    --height-navbar:15vh;

    --main-font: 'Roboto', sans-serif; 

    --px-36:36px;
    --px-35:35px;
    --px-48:48px;
    --px-64:64px;
    --px-72:72px;
    --px-96:96px;
    --px-144:144px;

    --font-light:300;
    --font-medium:400;
    --font-regular: 500;
    --font-bold: 700;
}

@media screen and (max-width:700px){
	:root{
		--smallest-font-size: 16px;
	}
}

@media screen and (max-width:1700px){
    :root{
        --px-36:30px;
        --px-48:42px;
    }
}

@media screen and (max-width:1500px){
    :root{
        --px-36:26px;
        --px-48:38px;
    }
}

@media screen and (max-width:1000px){
    :root{
        --px-35:30px;
        --px-72:61px;
        --px-96:75px;
    }
}

@media screen and (max-width:541px){
    :root{
        --px-35:20px;
        --px-72:40px;
        --px-96:50px;
        --px-48:26px;
    }
}

@media screen and (max-width:414px){
    :root{
        --px-96:65px;
    }
}

@media screen and (max-width:360px){
    :root{
        --px-72:32px;
    }
}

@media screen and (max-width:280px){
    :root{
        --px-35:16px;
        --px-72:24px;
        --px-96:40px;
    }
}


html{
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body{
    background-color: var(--background-color);
    line-height: 1.5;
    font-family: var(--main-font);
    margin: 0px;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

p{
	margin: 0;
}

h1, h2, h3{
	margin: 0px !important;
}
/* Classes */

#main{
	min-height: 100vh;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
    background-position: center;
    background-size: cover;
    position: relative;
}

/* NavBar */
.navbar{
	position: fixed;
	display:flex;
	justify-content: space-around;
	align-items: center;
	font-weight: 300;
	letter-spacing: 2px;
	width:100%;
	height: var(--height-navbar);
	box-sizing: border-box;
	background-color: none;
	z-index:3;
    box-shadow: 0px;
    transition: background-color .2s ease;
    transition: box-shadow .2s ease;
}

.logo{
	width: 85%;
	cursor: pointer;
	margin: 20px 0;
}

.cont-logoname{
	display: flex;
	flex-direction: row;
	align-items: center;
}

.name-navbar{
	font-size: var(--px-48);
	margin-left: 20px;
	padding-right: 10px;
	border-right: 2px solid var(--on-surface-color);
    font-weight: var(--font-bold);
    color: var(--on-surface-color);
}

.number-navbar{
	font-size: var(--px-36);
	color: rgba(255, 255, 255, 0.884);
	margin-left: 10px;
    font-weight: var(--font-light);
}

.nav-links li{
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}

.nav-links li:last-child{
	margin-right: 0px;
}
.nav-links li a{
	text-decoration: none;
	color: var(--on-surface-color);
	font-size: var(--px-36);
	font-weight: 300;
	line-height: 30px;
	font-style: normal;
}

.burger{
    display: none;
}

.burger div{
	width: 25px;
	height: 3px;
	background-color:var(--on-surface-color);
	margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 1300px){
	.nav-links{
		position: fixed;
		right: 0px;
		height: calc(100vh - var(--height-navbar));
		top: calc(var(--height-navbar) + 3px);
		background-color: #ffffff;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		justify-content: space-around;
		width: 50%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
		z-index:10;
	}
	.nav-links li{
		opacity: 0;
		margin:0;
	}

	.nav-links li a{
		text-align: center;
        color: var(--on-background-color);
	}
	.burger{
		display: block;
	}

	.nav-menu p{
		display: none;
	}

	.nav-links li:last-child{
		margin-bottom: 50px;
	}

}

@media (max-width:1000px){
    .name-navbar{
        border-right: 0px !important;
    }

    .number-navbar{
        display: none;
    }
}
@media (max-width: 539px){
	.name-navbar{
		display:  none;
	}

}

@media (max-width:414px){
    .home{
        padding: 0px 50px;
    }

    .home h1{
        text-align: center;
    }
}

@media screen and (max-width:280px){
    .home{
        padding: 0px 30px;
    }
}

.nav-active{
	transform: translateX(0%);
}

@media (max-width:400px){
    .nav-links li a{
        font-size: 16px;
    }
}

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
	opacity: 0;
}

.toggle .line3{
	transform: rotate(45deg) translate(-5px,-6px);
}

.navbar-active{
    background-color: var(--background-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.navbar-active .name-navbar{
    color: var(--on-background-color);
    border-right: 2px solid var(--on-background-color);
}

.navbar-active .number-navbar{
    color: var(--on-background-color);
}

.navbar-active .burger div{
    background-color: var(--on-background-color);
}

.navbar-active .nav-links li a{
    color: var(--on-background-color);
}

/* Scrolling Effect */

.scrolling-active.navbar{
    background-color: var(--background-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.scrolling-active .name-navbar{
    color: var(--on-background-color);
    border-right: 2px solid var(--on-background-color);
}

.scrolling-active .number-navbar{
    color: var(--on-background-color);
}

.scrolling-active .burger div{
    background-color: var(--on-background-color);
}

.scrolling-active .nav-links li a{
    color: var(--on-background-color);
}

@media (max-width:1000px){

    .scrolling-active .name-navbar{
        border-right: 0px ;
    }
}

/* Home */

.home{
    padding-top: var(--height-navbar);
	width: 100%;
	height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}

.home h1{
    font-size: var(--px-96);
    color: var(--on-surface-color);
    font-weight: var(--font-bold);
    line-height: 60px;
}

.home p{
    font-size: var(--px-72);
    color: var(--on-surface-color);
    font-weight: var(--font-regular);
}

.home a{
    font-size: var(--px-35);
    color: var(--on-surface-color);
    font-weight: var(--font-light);
    padding: 10px 30px;
    border: 3px solid var(--on-surface-color);
    border-radius: 30px;
    transition: 0.3s ease-in;
}

.home a:hover{
    transition: 0.3s ease-in;
    cursor: pointer;
    transform: translatey(-10px);
}

.home2{
    padding-top: var(--height-navbar);
	width: 100%;
	height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: flex-start;
    padding-left: 100px;
}

.home2 h1{
    font-size: 92px;
    color: var(--on-surface-color);
    font-weight: var(--font-regular);
}

.home2 p{
    font-size: 35px;
    color: var(--on-surface-color);
    font-weight: var(--font-light);
    margin-bottom: 20px;
}

.home2 a{
    font-size: 25px;
    color: var(--on-surface-color);
    font-weight: var(--font-light);
    padding: 10px 30px;
    border: 3px solid var(--on-surface-color);
    border-radius: 30px;
    transition: 0.3s ease-in;
}

.home2 a:hover{
    transition: 0.3s ease-in;
    cursor: pointer;
    transform: translatey(-10px);
}

@media (max-width:1000px){
    .home2 h1{
        font-size: 80px;
    }
    
    .home2 p{
        font-size: 25px;
    }
    
    .home2 a{
        font-size: 20px;
    }
}

@media (max-width:767px){
    .home2{
        padding-left: 50px;
    }

    .home2 h1{
        font-size: 60px;
    }
    
    .home2 p{
        font-size: 20px;
    }
    
    .home2 a{
        font-size: 18px;
    }
}

@media (max-width:500px){
    .home2{
        padding-left: 30px;
    }

    .home2 h1{
        font-size: 40px;
    }
    
    .home2 p{
        font-size: 18px;
        padding-right: 30px;
    }
    
    .home2 a{
        font-size: 18px;
    }
}

/* Choose */

.chooseus{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-title{
    font-size: 70px !important;
    margin-bottom: 30px;
}

.chooseus p{
    font-size: 40px;
    font-weight: var(--font-light);
    padding:0 200px;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width:1200px){
    .chooseus p{
        font-size: 35px;
        padding:0 100px;
    }
}

@media (max-width:800px){
    .chooseus p{
        padding:0 50px;
    }
}

@media (max-width:600px){
    .about-title{
        font-size: 45px !important;
    }

    .chooseus p{
        font-size: 25px;
    }
}

@media (max-width:390px){
    .about-title{
        font-size: 35px !important;
    }

    .chooseus p{
        font-size: 20px;
    }

    .chooseus p{
        padding:0 30px;
    }
}
/* Services */

#services{
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-title{
    width: auto;
    color: var(--on-background-color);
    font-size: 64px;
    font-weight: var(--font-regular);
    text-align: center;
    margin-top: 20px;
}

.service-title::after {
    display: block;
    content: '';
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 20%;
}

.service-title{
    position: relative;  
}

.services-container{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 30px 0;
}

.service-item{
    width:33.3%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color:white;
    margin-right: 56px;
	border: 3px solid var(--primary-color);
}

.service-item:last-child{
    margin-right: 0px;
}

.service-item img{
    width: 30%;
    margin-top: 50px;
    margin-bottom: 30px;
}

.service-item h2{
    font-size: 50px;
    color: black;
    margin-bottom: 20px;
    line-height: 56px;
    font-weight: var(--font-regular);
}

.service-item p{
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    line-height: 34px;
    padding:0 70px;
    font-weight: var(--font-light);
}

@media (max-width:1700px){
    .service-item h2{
        font-size: 40px;
        padding: 0 20px;
    }
    .service-item p{
        font-size: 26px;
    }
}

@media (max-width:1400px){
    .service-item h2{
        font-size: 30px;
    }
    .service-item p{
        font-size: 22px;
    }
}

@media (max-width:1130px){
    .services-container{
        flex-direction: column;
        align-items: center;
    }

    .service-item{
        width: 80%;
        margin-right: 0px;
    }

    .service-item h2{
        font-size: 50px;
    }
    .service-item p{
        font-size: 42px;
    }
}

@media (max-width:541px){
    .service-title{
        font-size: 50px;
    }

    .service-item h2{
        font-size: 35px;
    }
    .service-item p{
        font-size: 27px;
    }
}

@media (max-width:414px){

    .service-title{
        width: 100%;
        font-size: 40px;
    }

    .service-item{
        width: 90%;
    }

    .service-item h2{
        font-size: 30px;
    }
    .service-item p{
        font-size: 22px;
        padding: 0 30px;
    }
}

@media (max-width:380px){
    .service-title{
        width: 100%;
        font-size: 35px;
    }

    .service-item h2{
        font-size: 25px;
    }
    .service-item p{
        font-size: 17px;
    }
}

@media (max-width:300px){
    .service-item h2{
        font-size: 20px;
    }
    .service-item p{
        font-size: 15px;
    }
}

.team-item{
    padding: 100px 0px;
}

.team-item h2{
    font-size: 55px;
    font-weight: bold;
    text-align: center;
}

.team-item p{
    font-size: 35px;
    font-weight: var(--font-regular);
    margin-bottom: 10px;
    margin-top: 50px;
}

.team-item p:last-child{
    font-size: 30px;
    font-weight: var(--font-light);
    padding: 0;
}

@media (max-width:1400px){
    .team-item h2{
        font-size: 50px;
    }
    
    .team-item p{
        font-size: 30px;
    }
    
    .team-item p:last-child{
        font-size: 25px;
    }
}

@media (max-width:1130px){
    .team-item{
        margin-bottom: 40px;
        width: 60% !important;
    }

    .team-item h2{
        font-size: 55px;
    }
    
    .team-item p{
        font-size: 35px;
    }
    
    .team-item p:last-child{
        font-size: 30px;
    }
}

@media (max-width:780px){
    .team-item{
        width: 80% !important;
    }
}

@media (max-width:560px){
    .team-item{
        width: 90% !important;
    }
}

@media (max-width:460px){
    .team-item h2{
        font-size: 45px;
    }
    
    .team-item p{
        font-size: 25px;
    }
    
    .team-item p:last-child{
        font-size: 20px;
    }
}

@media (max-width:360px){
    .team-item{
        padding: 50px 0px;
    }

    .team-item p:last-child{
        font-size: 16px;
    }
}

@media (max-width:300px){
    .team-item h2{
        font-size: 35px;
    }
    
    .team-item p{
        font-size: 20px;
    }
    
    .team-item p:last-child{
        font-size: 16px;
    }
}


/* Banners */

#banners-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.slider-right{
    width: 90%;
	display: flex;
	flex-direction: row;
    height: auto;
    margin-bottom: 40px;
}

.slider-right .banner-info{
    padding-left: 60px;
}

.slider-left{
    width: 90%;
    height: auto;
	display: flex;
	flex-direction: row-reverse;
    margin-bottom: 40px;
}

.slider-left .banner-info{
    padding-right: 60px;
}

.img-container{
	width: 50%;
	display: flex;
    align-items: center;
}

.img-container img{
	width: 100%;
}

.banner-info{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-info h2{
    font-size: 65px;
    font-weight: var(--font-bold);
}

.banner-info p{
    font-size: 45px;
    font-weight: var(--font-light);
    margin-bottom: 30px;
}

.banner-info a{
    font-size: 45px;
    font-weight: var(--font-regular);
    color: var(--on-background-color);
}

.banner-info a:hover{
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width:1700px){
    .banner-info h2{
        font-size: 50px;
    }
    
    .banner-info p{
        font-size: 30px;
    }
}

@media (max-width:1230px){
    .banner-info h2{
        font-size: 40px;
    }
    
    .banner-info p{
        font-size: 25px;
    }
}

@media (max-width:800px){
    .slider-right{
        flex-direction: column;
    }
    
    .slider-right .banner-info{
        padding-left: 0px;
    }
    
    .slider-left{
        flex-direction: column;
    }
    
    .slider-left .banner-info{
        padding-right: 0px;
    }
    
    .img-container{
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-info{
        width: 100%;
        padding-right: 30px !important;
    }

    .banner-info h2{
        font-size: 50px;
    }
    
    .banner-info p{
        font-size: 30px;
    }
}

@media (max-width:535px){
    .banner-info h2{
        font-size: 40px;
    }
    
    .banner-info p{
        font-size: 25px;
    }

    .banner-info a{
        font-size: 30px;
    }
}

@media (max-width:415px){
    .banner-info h2{
        font-size: 30px;
    }
    
    .banner-info p{
        font-size: 20px;
    }

}

@media (max-width:325px){
    .banner-info h2{
        font-size: 23px;
    }
    
    .banner-info p{
        font-size: 18px;
    }

    .banner-info a{
        font-size: 25px;
    }
}

/* Testimonials */

#testi{
	height: 70vh;
	overflow:hidden;
	position: relative;
}

#testi .slide{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-color: #f1f1f1;
	background-size: cover;
	background-position: center;
	z-index:1; 
	display:none;
	padding:0 15px;
	animation: slide 0s ease;
}
#testi .slide.active{
	display: flex;
	align-items: center;
    flex-direction: column;
}
@keyframes slide{
	0%{
		transform:scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}

#testi .controls .prev,
#testi .controls .next{
 position: absolute;
 z-index:2;
 top:50%;
 margin: 0 50px;
 margin-top: -20px;
 color:var(--on-background-color);
 text-align: center;
 line-height: 40px;
 font-size:100px;
 cursor:pointer;
}

#testi .controls .prev:hover,
#testi .controls .next:hover{
	color: var(--primary-color);
}

#testi .controls .prev{
 left:0;
}
#testi .controls .next{
 right:0;
}

#testi .indicator{
	position: absolute;
	left:47%;
	bottom:20px;
	z-index: 2;
	transform: translateX(-50%);
}

#testi .indicator div{
	display: inline-block;
	width:30px;
	height: 30px;
	color: #C4C4C4;
    font-size: 4px;
    background-color: #C4C4C4;
	border-radius:50%;
	text-align: center;
	line-height: 25px;
	margin:0 3px;
}

#testi .indicator div.active{
    background-color: var(--primary-color);
    color: var(--primary-color);
}

.testimonial-item{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.testi-servi{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.testi-servi img{
    width: 40%;
}

.testi-servi h2{
    margin-top: 20px;
    font-size: 72px;
    font-weight: var(--font-light);
}

.testi-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.testi-info p{
    font-size: 72px;
    font-weight: var(--font-medium);
}

.testi-info .testi-text{
    font-size: 50px;
    font-weight: var(--font-light);
    padding-right: 50px;
}

.testi-info h3{
    font-size: 50px;
    font-weight: var(--font-regular);
    padding-bottom: 20px;
}

.testi-info h3::after {
    display: block;
    content: '';
    width: 30%;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.testi-info h3{
    position: relative;  
}

@media (max-width:1750px){
    .testi-info p{
        font-size: 60px;
    }
    
    .testi-info .testi-text{
        font-size: 40px;
    }
    
    .testi-info h3{
        font-size: 40px;
    }
}

@media (max-width:1400px){
    .testi-info p{
        font-size: 45px;
    }
    
    .testi-info .testi-text{
        font-size: 30px;
    }
    
    .testi-info h3{
        font-size: 30px;
    }
}

@media (max-width:1200px){
    .testi-info p{
        font-size: 35px;
    }
    
    .testi-info .testi-text{
        font-size: 25px;
    }
    
    .testi-info h3{
        font-size: 25px;
    }

    .testi-servi h2{
        font-size: 60px;
    }
}

@media (min-height:1360px){
    #testi{
        height: 40vh;
    }
}

@media (max-width:800px){
    .testimonial-item{
        width: 75%;
        flex-direction: column;
        justify-content: center;
    }

    .testi-servi{
        width: 100%;
    }
    
    .testi-servi img{
        width: 30%;
    }

    .testi-info{
        width: 90%;
    }

    .testi-info .testi-text{
        padding-right: 0px;
    }
}

@media (max-width:540px){

    .testi-info{
        height: 50%;
        padding-top: 30px;
    }

    .testi-servi img{
        width: 25%;
    }
    
    .testi-servi h2{
        font-size: 30px;
    }

    .testi-info p{
        font-size: 25px;
    }
    
    .testi-info .testi-text{
        font-size: 18px;
    }
    
    .testi-info h3{
        font-size: 18px;
    }

    #testi .controls .prev,
    #testi .controls .next{
        font-size:60px;
        margin: 0 20px;
    }

}

@media (max-width:375px){
    .testi-servi img{
        width: 35%;
    }
    
    .testi-info p{
        font-size: 22px;
    }
    
    .testi-info .testi-text{
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .testi-info h3{
        font-size: 17px;
    }

    #testi .indicator{
        bottom:10px;
    }

    #testi .indicator div{
        width:20px;
	    height: 20px;
    }
}

@media (max-width:360px){
    .testi-info p{
        font-size: 20px;
    }
    
    .testi-info .testi-text{
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .testi-info h3{
        font-size: 15px;
    }

    #testi .controls .prev,
    #testi .controls .next{
        font-size:40px;
        margin: 0 20px;
    }
}

@media (max-width:320px){
    .testi-info p{
        font-size: 20px;
    }
    
    .testi-info .testi-text{
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .testi-info h3{
        font-size: 12px;
    }

    #testi .indicator div{
        width:15px;
	    height: 15px;
    }
}

/* INFORMATION */
#information{
	width: 100%;
	height: 80vh;
	display: flex;
	flex-direction: row;

}


.map{
	height: 100%;
	width: 60%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info2{
	height: 100%;
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.address-con{
	border-bottom: 2px solid var(--primary-color);
	width: 90%;
	margin-bottom: 12px;
}

.address-con h2{
	font-size: 60px;
}

.address-con p{
	font-size: 50px;
	color: var(--on-background-color);
	margin-bottom: 20px;
}

.call-con{
	width: 90%;
	margin-bottom: 20px;
}

.call-con h2{
	font-size: 60px;
}

.call-con p{
	font-size: 50px;
	color: var(--on-background-color);
    margin-bottom: 40px;
}

.info2 .btn{
	font-size: 40px;
    color: var(--on-background-color);
    font-weight: var(--font-light);
    padding: 20px 60px;
    border: 3px solid var(--on-background-color);
    border-radius: 30px;
    background-color: var(--background-color);
    width: 60%;
    text-align: center;
    transition: 0.3s ease-in;
}

.info2 .btn:hover{
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: 0.3s ease-in;
    transform: translatey(-10px);
}

@media (max-width:1600px){
    .address-con h2{
        font-size: 45px;
    }
    
    .address-con p{
        font-size: 35px;
    } 

    .call-con h2{
        font-size: 45px;
    }
    
    .call-con p{
        font-size: 35px;
        margin-bottom: 20px;
    }  

    .info2 .btn{
        font-size: 30px;
        color: var(--on-background-color);
        font-weight: var(--font-light);
        padding: 20px 60px;
        border: 3px solid var(--on-background-color);
        border-radius: 30px;
        background-color: var(--background-color);
        width: 60%;
    }

}

@media (max-height:1370px) and (max-width:1024px){
	#information{
		height: 50vh;
	}

    .info2 .btn{
        width: 80%;
    }

}

@media screen and (max-width:1000px){
	#information{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: auto;
		padding: 50px;
	}

	.address-con{
		width: 100%;
	}

	.map{
		width: 100%;
		height: 50%;
	}

	.map iframe{
		width: 100% !important;
		height: 500px !important;
	}
	.info2{
		width: 100%;
		height: 50%;
		margin-top: 20px;
	}
}

@media screen and (max-width:500px){
    .address-con h2{
        font-size: 40px;
    }
    
    .address-con p{
        font-size: 30px;
    } 

    .call-con h2{
        font-size: 40px;
    }
    
    .call-con p{
        font-size: 30px;
        margin-bottom: 20px;
    }  

    .info2 .btn{
        font-size: 25px;
        width: 90%;
    }
}
@media screen and (max-width:420px){
	.map iframe{
		height: 300px !important;
	}
}

@media screen and (max-width:360px){
	.info2 .btn{
        font-size: 25px;
        width: 100%;
    }
}

@media screen and (max-width:320px){
	.map iframe{
		height: 200px !important;
	}
    .address-con h2{
        font-size: 35px;
    }
    
    .address-con p{
        font-size: 25px;
    } 

    .call-con h2{
        font-size: 35px;
    }
    
    .call-con p{
        font-size: 25px;
        margin-bottom: 20px;
    }  

    .info2 .btn{
        font-size: 25px;
        padding: 15px 30px;
    }
}

@media screen and (max-width:280px){
	#information{
		padding:  30px;
	}
	.socialcontainer a{
		font-size: 20px;
	}
}

#footer{
	height: auto;
	background-color: black; /*var(--primary-color);*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 30px;
}

#footer div{
	color: var(--on-primary-color);
	font-size: 30px;
	margin-bottom: 10px;
	text-align: center;
}

#footer div a{
	color: #97989A;
}

#footer div a:hover{
	cursor: pointer;
	color: var(--on-primary-color);
}
#footer div:last-child{
	margin-bottom: 0px;
}

.part2{
    padding: 0px 300px;
}

@media (max-width:1650px){

    #footer div{
        font-size: 20px;
    }
    
    .part2{
        padding: 0px 150px;
    }
}

@media (max-width:1000px){
    #footer div{
        font-size: 16px;
    }

    .part2{
        padding: 0px 50px;
    }
}

@media (max-width:414px){
    .part2{
        padding: 0px 20px;
    }
}

.contact-bar{
    background-color: var(--background-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.contact-bar .name-navbar{
    color: var(--on-background-color);
    border-right: 2px solid var(--on-background-color);
}

.contact-bar .number-navbar{
    color: var(--on-background-color);
}

.contact-bar .burger div{
    background-color: var(--on-background-color);
}

.contact-bar .nav-links li a{
    color: var(--on-background-color);
}

.contact-container{
    padding-top: var(--height-navbar);
	width: 100%;
	height: 100vh;
	display: flex;
    flex-direction: row;
}

.contact-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
}

.info-item-container{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 40%;
}

.info-item{
    display: flex;
    flex-direction: row;
    height: auto;
    width: 100%;
    margin-bottom: 30px;
    align-items: center;
}

.info-item i{
    font-size: 50px;
    margin-right:20px;
}

.info-item p{
    font-size: 25px;
}

.map-contact{
    height: 60%;
    width: 70%;
}

.contact-form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 50%;
}

.row{
    width: 80%;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}

.row-item{
    width: 50%;
    margin-right: 20px;
}

.row-item p{
    font-size: 35px;
    font-weight: var(--font-light);
    margin-bottom: 5px;
}

.textb{
    width: 100%;
    border:1px solid var(--on-background-color);
    border-radius: 10px;
    height: 40px;
    outline: none;
    padding: 12px 20px;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: var(--font-light);
}

.textb:focus{
    border:1px solid var(--primary-color);
}

select{
    width: 100%;
    border:1px solid var(--on-background-color);
    border-radius: 10px;
    height: 40px;
    outline: none;
    padding: 0 20px;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: var(--font-light);
}

select:focus{
    border:1px solid var(--primary-color);
    font-size: 16px;
}

.message-item{
    width: 100%;
}

.message-item p{
    font-size: 35px;
    font-weight: var(--font-light);
    margin-bottom: 5px;
}

textarea{
    width: calc(80% - 20px);
    border:1px solid var(--on-background-color);
    border-radius: 10px;
    height: 150px;
    outline: none;
    font-family: var(--main-font);
    font-size: 16px;
    font-weight: var(--font-light);
    padding: 12px 20px;
}

textarea:focus{
    border:1px solid var(--primary-color);
}

.btn{
    font-size: 25px;
    border-radius: 10px;
    border:1px solid var(--on-background-color);
    margin-top: 20px;
    background-color: var(--background-color);
    padding: 10px 25px;
    transition: 0.3s ease-in;
    font-weight: var(--font-light);
}

.btn:hover{
    transform: translateY(-10px);
    transition: 0.3s ease-in;
}

@media (max-width:1024px){
    .contact-container{
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .contact-info{
        align-items: flex-start;
        width: 80%;
    }

    .info-item-container{
        width: 100%;
        justify-content: flex-end;
        margin-top: 50px;
    }

    .map-contact{
        height: 60vh;
        width: 100%;
    }

    .contact-form{
        margin-bottom: 40px;
        height: auto;
        width: 80%;
    }

    .row{
        width: 100%;
    }

    .row-item:last-child{
        margin-right: 0px;
    }

    textarea{
        width: 100%;
    }
}

@media (max-width:500px){
    .info-item p{
        font-size: 18px;
    }

    .message-item p{
        font-size: 30px;
    }

    .row-item p{
        font-size: 30px;
    }

    .row{
        flex-direction: column;
    }

    .row-item{
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width:330px){
    .info-item p{
        font-size: 16px;
    }

    .message-item p{
        font-size: 23px;
    }

    .row-item p{
        font-size: 23px;
    }

    .info-item i{
        font-size: 40px;
    }

    .btn{
        font-size: 20px;
    }
}

@media (max-width:300px){
    .info-item p{
        font-size: 14px;
    }

    .info-item i{
        font-size: 30px;
    }

}