body{
    background: #FEFFFA;
    color: #0D0D0D;
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
}

footer{
    margin-top: 100px;
    display: flex;
    position: absolute;
    margin-bottom: 25px;
}

h1{
    font-size: 20px;
    padding-left: 40px;
}

h2{
    font-size: 60px;
}


header{
    width: 100%;
    height: 30vh;
    background-size: cover;
    background-position: center;
}

.nav-links{
    padding: 10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 300px;
    display: block;
    float: left;
    padding-left: none;
    
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}


nav ul li a{
    color: #1C1F15;
    text-decoration: none;
    font-size: 24px;
    position: relative;
    
}


nav ul li a::after{
    content: '';
    width: 0;
    height: 2.5px;
    background: #D9564A;
    position: absolute;
    left: 0; 
    bottom: -5px;
    transition: 0.5s;
    
}

nav ul li a:hover::after{
    width: 99%;
}

.header-text{
    margin-top: 4px;
    font-size: 30px;
}

.header-text h1{
    font-size: 26px;
    margin-top: 20px;
}


/**.ABOUT**/

#about{
    padding-left: 10px;
    padding-top: 150px;
    
}
#about-head{
    display: flex;
    justify-content: flex-start;
    margin-left: -50px;
}


.row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about-1{
    flex-basis: 40%
}

.about-1 img{
    width: 100%;
    border-radius: 5px;
	border-top-left-radius: 225px;
	border-bottom-right-radius: 225px;
	margin-left: 50px;
}

.about-2{
    flex-basis: 45%;
}

.about-head{
    font-size: 60px;
    font-weight:600;
    color: #1C1F15;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px, 0;
}

.tab-contents ul li span{
    color: #D9564A;
    font-size: 14px;
}

/**.contact**/
.contact-1{
    flex-basis: 40%;
    padding-left: 20px;
	justify-content: center;
}

.contact-1 i{
    font-size: 50px;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    color: #D9564A;
}

.contact-1 p{
    margin-top: 30px;
}

.contact-1 p i{
    color: #D9564A;
    margin-right: 15px;
    font-size: 25px;
}


.contact-2 img{
    width: 100%;
    border-radius: 15px;
}

.contact-2{
    flex-basis: 60%;
}

.contact-head{
    font-size: 60px;
    font-weight:600;
    color: #1C1F15;
    margin-top: 150px;
}


.scroll-up {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.scroll-up.hidden {
  opacity: 0;
}


/**WORK**/
.content{
    display:flex;
    box-sizing: border-box;
    
}

.images{
    flex-basis: 55%;
    padding-right: 20px;
    max-width: 55%
}

#work-head{
    margin-left: 65px;
    margin-top: 150px;
}






/**FOR CAROUSEL**/
.swiper-container {
  display: flex;
  flex-direction: column;
  align-items:center;
  max-width: 1000px; /* Adjust as needed */
  margin: 0 auto;
  position: relative;
}



.swiper-wrapper {
  display: flex;
  justify-content: flex-start;
}

.swiper-slide {
  flex-basis: 100%;
  margin-bottom: 50px; /* Add spacing between slides */
}

.swiper-slide img {
  max-width: 100%;
  border-radius: 35px;
}

.text-container {
  flex-basis: calc(60% - 40px); /* Adjust the percentage as needed */
  padding: 20px;
}

.text-container h3 {
  font-size: 24px;
}

.text-container p {
  font-size: 16px;
  color: #1C1F15;
}

.swiper-button-next,
.swiper-button-prev {
  align-self: flex-start;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}


.work-head{
    margin-left: 100px;
    font-size: 60px;
    font-weight:600;
    color: #1C1F15;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}


/**IGNORE THIS SECTION -- USE FOR NOTES ONLY.


.container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 400px;
}
    

.container > div:nth-child(3){
    grid-column: 1/3;
    grid-row: 1;
}


**/

nav.fa-sharp fa-solid{
    display: none;
}


/*For Big Screens Only!*/
@media screen and (min-width: 650px)    {
    body{
       
    }
    
}
/*For Small Screens Only!*/
@media screen and (max-width: 649px)    {
    .header-text{
        font-size: 30px;
    }
    
    .header-text h1{
        font-size: 30px;
    }
    
    #work-head{
        margin-left: auto;
    }
}