:root{
	--roboto: 'Roboto', sans-serif;

	--black: #281B05;
	--red: #991C20;
	--grey: #F5F5F5;
}

body{
	background: var(--grey);
	font-family: var(--roboto);
	margin: auto;
}

div.header-container{
	width: 100%;
	margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.logo{
	position: absolute;
	left: 20px;
	top: 15px;
}

.logo img{
	width: 40px;
}

.menu{
    position: absolute;

    right: 15px;
    top: 15px;
}

.menu img{
    width: 30px;
    height: auto;
    display: block;
}

div.sidebar-wrapper{
    background: var(--grey);
    width: 100vw;
    position: fixed;
    top: 0;
    bottom: 0;
    left:0;
    visibility: hidden;
    opacity: 0;
    transition: .8s;

    z-index: 100;
    
}

div.sidebar-wrapper.shown{
    visibility: visible;
    opacity: 1;
}

div.sidebar-container{  
    background: var(--red);

    position: fixed;
    top: 0;
    bottom: 0;

    width: 720px;
    height: 100vh;

    padding-top: 30px;
    padding-left: 50px;

    transition: all 0.5 ease;
}


div.close img{
    width: 3%;

}

.close img:hover{
    cursor: pointer;
}

div.sidebar-contents{
    min-height: 35%;
    padding-top: 60px;
    margin-right: 50px;

    position: relative;
}

div.sidebar-contents li{
    display: block;
    padding: 15px;
}

div.sidebar-contents a{
    text-decoration: none;

    color: var(--grey);
}

div.sidebar-contents a:hover{
    color: black;
}

div.sidebar-contents span{
    text-align: right;
    position: absolute;

    bottom: 0px;
    right: 0px;
}

.navigation{
    grid-column: 2/4;
}

.navigation ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    padding-top: 40px;

}

.navigation li{
    float: left;
}

.navigation li a{
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #cccccc;
}

.navigation li a:hover{
    color: white;
}


.hero{
	max-width: auto;
	grid-column: 1/4;
}

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

.wrapper {
  display: table;
  width:100%;
  height:100%;
}

.wrapper-inner {
  display: table-cell;
  vertical-align:middle;
  width:100%;
  height:100%;
}

#scroll-down {
    display: block;
    position: relative;
    padding-top: 110px;
  text-align:center;
}
.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 38px;
}
.arrow-down:after {
    content: '';
    display: block;
    margin: 0px;
    padding: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    behavior: url(-ms-transform.htc);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
#scroll-title {
  display: block;
  text-transform: uppercase;
  color: white;

  font-size:14px;
  font-weight:bold;
  letter-spacing:.1em;
}
#scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 90px;
    background: white;
    content: ' ';
}
@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.wrapper {
	grid-column: 1/4;
	text-align: center;

	margin-top: -210px;
}

.stats-container{
    width: 100%;
    margin: auto ;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    row-gap: 15px;

    padding-left: 35px;
    padding-right: 35px;
}

.welcome{
    margin-top: 30px;
    margin-bottom: 30px;
    grid-column: 1/3;
    text-align: center;
    line-height: 0.7;
}

.welcome h1{
    color: var(--red);
    font-size: 25px;
}

.welcome h2{
    font-size: 20px;
}

.welcome p{
    font-style: italic;
    font-size: 14px;
    margin-top: 1px;

}

.stats{
    text-align: center;
    margin-top: -10px;
}

span.num{
    font-weight: 600;
    font-size: 25px;
    color: var(--red);
}

.stats p{
    font-size: 12px;
}

.services-container{
    width: 100%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;

    align-items: center;
    text-align: center;
}

.services-container h2{
    padding-bottom: 30px;
    color: var(--red);
    text-align: center;
}

.design,
.project,
.site{
    margin-bottom: 45px;
}

.design img,
.project img,
.site img{
    width: 35%;
}

.design h3,
.project h3,
.site h3{
    font-weight: 500;
    color: var(--red);
    font-size: 15px;
}

.project{
	padding-left: -20px;
	padding-right: -20px;
}

.info-container{
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;

    margin-bottom: 50px;
}

.info-container button{
    height: 24px;
    width: 160px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 12px;

    background-color: var(--red);
    color: white;
    border: none;
    border-radius: 4px;
}

.info-container button:hover{
    text-decoration: underline;
}

div.footer-wrapper{
	background-color: var(--red);
	padding: 40px;
}

div.email img.email-hover,
div.instagram img.ig-hover{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	display: none;
}

.email:hover .email-hover,
.instagram:hover .ig-hover{
	display: inline;
}

/* about us page */

.vision-container{
	text-align: justify;
    text-align-last: center;
	margin-top: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding-left: 35px;
    padding-right: 35px;
}

.vision-container h1{
	color: var(--red);
}

.vision-container p{
	line-height: 1.5;
    font-size: 14px;
}

.mission-container{
	width: 100%;
	margin: auto;

	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    padding-left: 35px;
    padding-right: 35px;
}

.mission{
	grid-column: 1/4;
	text-align: center;
	margin-top: 25px;
}

.mission h1{
	color: var(--red);
}

.mission p{
    font-size: 14px;
    line-height: 1.5;
}

.mission-1{
	text-align: center;
	margin-top: 25px;
	margin-bottom: 30px;
}

.mission-1 img{
	width: 70px;
}

.mission-1 p{
    font-size: 14px;
    line-height: 1.5;
}

/* services page */

.hero-wrapper{
    margin-top: 100px;
}

.hero-wrapper img{
	width: 100%;
}


.services-1-container{
	text-align: justify;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	

	margin-top: 30px;
    padding-left: 45px;
    padding-right: 45px;
}

.services-1{
    margin-top: 15px;
}

.services-1-text {
	margin-top: -15px;
}

.services-1 h1{
	color: var(--red);
	font-size: 65px;
	margin-top: 0;
}

.services-1-text h2{
	color: var(--red);
	font-size: 22px;
	margin-top: -40px;
}

.services-1-text p{
	line-height: 1.5;
    font-size: 14px;

}

.services-1-text b{
	color: var(--red);
}



.services-button button:hover{
    text-decoration: underline;
}

/* projects page */

.recent-projects-wrapper{
	text-align: center;
	margin-top: 80px;
}

.recent-projects-wrapper h1{
	color: var(--red);
	font-size: 22px;
}

.project-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 25px;
    margin-bottom: 25px;
    row-gap: 25px;
    justify-items: center;

    padding-left: 35px;
    padding-right: 35px;
}

.project-1-container {
    height: 250px;
    width: 300px !important;
    overflow: hidden;
    position: relative;
}

.project-1 {
    display: flex;
    width: calc(300px * 3);
    height: 100%;
    position: absolute;
    animation: slide 12s ease infinite;
}

.project-1 img {
    width: 300px !important;
    height: 100%;
    object-fit: cover;
}

.project-container h2{
	color: var(--red);
	font-size: 15px;
}

@keyframes slide {
  	0%, 20% { margin-left: 0px; } /* Stay on the first image */
    30%, 50% { margin-left: -300px; } /* Move to and stay on the second image */
    60%, 80% { margin-left: -600px; } /* Move to and stay on the third image */
    90%, 100% { margin-left: 0px; } /* Loop back to the first image */
}

/* Contact Us page */

.contact-wrapper {
  width: 100%;
  height: 100%;

  margin-top: 65px;
}

.contact-wrapper h1{
	color: var(--red);
	text-align: center;
	margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  position: relative;

  padding-left: 35px;
  padding-right: 35px;

}

.form-horizontal {

  width: 300px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea.form-control {
  resize: none;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 300px;
  background-color: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s ease-in-out;
  text-align: center;
}

.send-text {
  display: block;
  letter-spacing: 2px;
}

.send-text:hover{
	font-weight: bold;
}

.google-map{
    margin-top: 25px;
    margin-bottom: 25px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .navigation {
        display: none; 
    }

    .navigation-2{
        display: none;
    }

    .menu {
        display: block;
    }

    .sidebar-wrapper {
        visibility: visible;
        opacity: 1;
    }

    /* footer */

     div.footer-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }

    .address p {
        text-align: center;
        color: white;
        line-height: 1.5;
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: 400;
    }

    .footer-logo {
        width: 65px;
    }

    div.footer-logo img {
        width: 100%;
    }

    div.social-media {
        position: relative;
    }

    div.social-icons {
        display: flex;
        justify-content: center;
        position: relative;
    }

    div.email img,
    div.instagram img {
        width: 45px;
    }

    div.email,
    div.instagram {
        position: relative;
        display: inline-block;
    }

    /*about page */

    .about-wrapper{
    margin-top: 50px;
}

    .about-container{
        width: 100%;
        margin: auto;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .about-container img{
        width: 100%;
    }

    .about-info{
        text-align: justify;
        text-align-last: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-left: 35px;
        padding-right: 35px;
    }

    .about-info h1{
        color: var(--red);
    }

    .about-info p{
        line-height: 1.5;
        font-size: 14px;
    }

    /*services page*/

    .services-button{
    width: 100px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 25px;
    margin-bottom: 25px;

    }

    .services-button button{
        height: 24px;
        width: 190px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 12px;

        background-color: var(--red);
        color: white;
        border: none;
        border-radius: 4px;

    }

    /*projects page*/

    div.project-container h2{
    color: var(--red);
    font-size: 16px;

    text-align: center;
    }



}

@media only screen and (min-width: 768px) and (max-width:991px){
    .hero-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

    .navigation {
        display: block; 
        grid-column: 1/2;
        justify-self: center;
    }



    .menu {
        display: none; 
    }

    .sidebar-wrapper {
        visibility: hidden;
        opacity: 0;
    }

    .logo img{
        width: 70px;
        left: 35px;
        top: 30px;
    }

    .stats-container{
    width: 100%;
    margin: auto ;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

    .welcome{
        margin-top: 60px;
        margin-bottom: 100px;
        grid-column: 1/5;
        text-align: center;
        line-height: 0.7;
    }

    .welcome h1{
        color: var(--red);
        font-size: 30px;
    }

    .welcome h2{
        font-size: 23px;
    }

    .welcome p{
        font-style: italic;
        margin-top: 1px;
    }

    .stats{
        text-align: center;
    }

    span.num{
        font-weight: 600;
        font-size: 65px;
        color: var(--red);
    }

    .services-container{
        width: 100%;
        margin: auto;
        margin-top: 70px;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        text-align: center;
    }

    .services-container h2{
        grid-column: 1/4;
        padding-bottom: 50px;
        color: var(--red);
    }

    .design,
    .project,
    .site{
        margin-left: 45px;
        margin-right: 50px;
    }

    .design img,
    .project img,
    .site img{
        width: 65%;
    }

    .design h3,
    .project h3,
    .site h3{
        font-size: 18px;
        font-weight: 500;
        color: var(--red);
    }

    .info-container{
        display: flex;
        justify-content: center;
        margin: auto;
        width: 100%;

        margin-bottom: 50px;
    }

    .info-container button{
        height: 34px;
        width: 200px;
        cursor: pointer;
        font-size: 14px;
        text-align: center;
        text-decoration: none;

        background-color: var(--red);
        color: white;
        border: none;
        border-radius: 4px;
    }

    /* footer */

    div.footer-wrapper {
        background-color: var(--red);
        padding: 40px;
    }

    div.footer-container {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 4fr 2fr;
    }

    .address {
        margin-left: -100px;
    }

    .address p {
        color: white;
        line-height: 1.5;
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: 400;
    }

    .footer-logo{
        display: flex;
        align-items: center;
    }

    div.footer-logo img {
        width: 30%;
        text-align: center;
    }

    div.social-media {
        text-align: center;
        margin-top: -50px;
        position: relative;
    }

    div.social-icons {
        display: flex;
        justify-content: center;
        position: relative;
        right: -18px;
        margin-top: 60px;
    }

    div.email img,
    div.instagram img {
        width: 45px;
    }

    div.email,
    div.instagram {
        position: relative;
        display: inline-block;
    }

    /* navigation 2 */

    div.header-container{
    width: 100%;
    margin: auto;

    position: relative;
    }

    .navigation-2 {
        display: flex;
        justify-content: center;
    }

    .navigation-2 ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: absolute;
        padding-top: 40px;
    }

    .navigation-2 li a {
        display: block;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        color: var(--red);
    }

    .navigation-2 li a:hover {
        color: black;
    }

    /* about us page */

    .about-wrapper{
    margin-top: 150px;
    }

    div.about-container{
    width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

    .image-container{
        width: 100%;
        max-width: 70%;
        height: 600px;
        overflow: hidden;
        margin-left: 85px;

        display: flex;
        justify-content: center;
    }

    .image-container img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

    .about-info{
        text-align: justify;
        margin-right: 85px;

    }

    .about-info h1{
    color: var(--red);
    }

    .about-info p{
        line-height: 1.5;
    }

    /*services page*/

    .services-1-text p{
    line-height: 1.5;
    font-size: 15px;

}

    .services-button{
    width: 100px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 25px;
    margin-bottom: 25px;

    }

    .services-button button{
        height: 26px;
        width: 220px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 14px;

        background-color: var(--red);
        color: white;
        border: none;
        border-radius: 4px;

    }

    /*projects page*/

    .recent-projects-wrapper{
    text-align: center;
    margin-top: 120px;
}

.project-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px;
    margin-bottom: 25px;
    row-gap: 25px;
    justify-items: center;
    padding-left: 35px;
    padding-right: 35px;
    }

    .project-1-container {
        height: 250px;
        width: 350px !important;
        overflow: hidden;
        position: relative;
    }

    .project-1 {
        display: flex;
        width: calc(350px * 3);
        height: 100%;
        position: absolute;
        animation: slide 12s ease infinite;
    }

    .project-1 img {
        width: 350px !important;
        height: 100% !important;
        object-fit: cover;
    }

    @keyframes slide {
        0%, 20% { margin-left: 0px; } /* Stay on the first image */
        30%, 50% { margin-left: -350px; } /* Move to and stay on the second image */
        60%, 80% { margin-left: -700px; } /* Move to and stay on the third image */
        90%, 100% { margin-left: 0px; } /* Loop back to the first image */
    }

    /*contact page*/

    .contact-wrapper {
      width: 100%;
      height: 100%;

      margin-top: 125px;
      margin-bottom: 50px;
    }

    .contact-wrapper h1{
        color: var(--red);
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin: auto;
      position: relative;
      max-width: 840px;

      column-gap: 25px;
    }

    .form-horizontal {
      width: 360px;

    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .send-button {
      margin-top: 15px;
      height: 34px;
      width: 360px;
      background-color: var(--red);
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all .2s ease-in-out;
      text-align: center;
    }

    .google-map iframe {
        width: 400px;
        height: 370px;
    }






}

@media only screen and (min-width: 992px){
    .navigation {
        display: block; 
    }

    .menu {
        display: none; 
    }

    .sidebar-wrapper {
        visibility: hidden;
        opacity: 0;
    }

    .logo img{
        width: 70px;
        left: 35px;
        top: 30px;
    }

    .stats-container{
    width: 100%;
    margin: auto ;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

    .welcome{
        margin-top: 60px;
        margin-bottom: 100px;
        grid-column: 1/5;
        text-align: center;
        line-height: 0.7;
    }

    .welcome h1{
        color: var(--red);
        font-size: 30px;
    }

    .welcome h2{
        font-size: 23px;
    }

    .welcome p{
        font-style: italic;
        margin-top: 1px;
    }

    .stats{
        text-align: center;
    }

    span.num{
        font-weight: 600;
        font-size: 65px;
        color: var(--red);
    }

    .services-container{
        width: 100%;
        margin: auto;
        margin-top: 70px;

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        text-align: center;
    }

    .services-container h2{
        grid-column: 1/4;
        padding-bottom: 50px;
        color: var(--red);
    }

    .design,
    .project,
    .site{
        margin-left: 45px;
        margin-right: 50px;
    }

    .design img,
    .project img,
    .site img{
        width: 65%;
    }

    .design h3,
    .project h3,
    .site h3{
        font-size: 18px;
        font-weight: 500;
        color: var(--red);
    }

    .info-container{
        display: flex;
        justify-content: center;
        margin: auto;
        width: 100%;

        margin-bottom: 50px;
    }

    .info-container button{
        height: 34px;
        width: 200px;
        cursor: pointer;
        font-size: 14px;
        text-align: center;
        text-decoration: none;

        background-color: var(--red);
        color: white;
        border: none;
        border-radius: 4px;
    }

    /* footer */

    div.footer-wrapper {
        background-color: var(--red);
        padding: 40px;
    }

    div.footer-container {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 4fr 2fr;
    }

    .address {
        margin-left: ;
    }

    .address p {
        color: white;
        line-height: 1.5;
        letter-spacing: 1px;
        font-size: 14px;
        font-weight: 400;
    }

    div.footer-logo img {
        width: 35%;
        text-align: center;
    }

    div.social-media {
        text-align: center;
        margin-top: -50px;
        position: relative;
    }

    div.social-icons {
        display: flex;
        justify-content: center;
        position: relative;
        right: -18px;
        margin-top: 60px;
    }

    div.email img,
    div.instagram img {
        width: 45px;
    }

    div.email,
    div.instagram {
        position: relative;
        display: inline-block;
    }

    /* navigation 2 */

    .navigation-2 {
        display: flex;
        justify-content: center;
    }

    .navigation-2 ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        position: absolute;
        padding-top: 40px;
    }

    .navigation-2 li {
        float: left;
    }

    .navigation-2 li a {
        display: block;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        color: var(--red);
    }

    .navigation-2 li a:hover {
        color: black;
    }

    /* about us page */

    .about-wrapper{
    margin-top: 150px;
    }

    div.about-container{
    width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

    .image-container{
        width: 100%;
        max-width: 80%;
        height: 500px;
        overflow: hidden;
        margin-left: 85px;

        display: flex;
        justify-content: center;
    }

    .image-container img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

    .about-info{
        text-align: justify;
        margin-right: 85px;

    }

    .about-info h1{
    color: var(--red);
    }

    .about-info p{
        line-height: 1.5;
    }

    /*services page*/

    .services-1-text p{
    line-height: 1.5;
    font-size: 16px;

}

    .services-button{
    width: 100px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 25px;
    margin-bottom: 25px;

    }

    .services-button button{
        height: 30px;
        width: 260px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        font-size: 15px;

        background-color: var(--red);
        color: white;
        border: none;
        border-radius: 4px;

    }

    /*projects page*/

    .recent-projects-wrapper{
    text-align: center;
    margin-top: 125px;
    }

    .recent-projects-wrapper h1{
        color: var(--red);
        font-size: 30px;
    }

.project-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    column-gap: 25px;
    justify-items: center;

    margin-top: 50px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
    }

    .project-1-container {
        display: grid;
        height: 450px !important;
        width: 565px !important;
        overflow: hidden;
        position: relative;
    }

    .project-1 {
        display: flex;
        width: calc(565px * 3);
        height: 100%;
        position: absolute;
        animation: slide 12s ease infinite;
    }

    .project-1 img {
        width: 565px !important;
        height: 100% !important;
        object-fit: cover;
    }

    .project-container h2{
        color: var(--red);
        font-size: 20px;
    }

    @keyframes slide {
        0%, 20% { margin-left: 0px; } /* Stay on the first image */
        30%, 50% { margin-left: -565px; } /* Move to and stay on the second image */
        60%, 80% { margin-left: -1130px; } /* Move to and stay on the third image */
        90%, 100% { margin-left: 0px; } /* Loop back to the first image */
    }

    /*contact page*/

    .contact-wrapper {
      width: 100%;
      height: 100%;

      margin-top: 125px;
      margin-bottom: 50px;
    }

    .contact-wrapper h1{
        color: var(--red);
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin: auto;
      position: relative;
      max-width: 840px;
      column-gap: 40px;
    }

    .form-horizontal {
      width: 400px;

    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .send-button {
      margin-top: 15px;
      height: 34px;
      width: 400px;
      background-color: var(--red);
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all .2s ease-in-out;
      text-align: center;
    }

    .send-text {
      display: block;
      letter-spacing: 2px;
    }

    .send-text:hover{
        font-weight: bold;
    }

    .google-map iframe {
        width: 400px;
        height: 370px;
    }




}


