*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family :'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} 

body{
    cursor: pointer;
}

nav{
    width: 100%; 
    height: 70px;
    background-color: white;
    box-shadow: 3px 4px 5px 5px whitesmoke;
    padding-left: 120px;
    padding-right: 100px;
    position: fixed;
}

.navigation{
    width: 100%;
    padding-top: 20px;
    margin-left: 100px;
    display: flex;
    margin: auto;
}

nav .navigation .logo img{
    width: 30%;
}

nav .navigation .nav-links{
    display: flex;
}

nav .navigation .nav-links .nav-links-1{
    display: flex;
    margin-left: -300px;
    margin-top: 10px;
}

nav .navigation .nav-links .nav-links-1 li{
    list-style-type: none;
}

nav .navigation .nav-links .nav-links-1 li a{
    text-decoration: none;
    padding-left: 30px;
    color: black;
}

nav .navigation .nav-links .nav-links-1 li a:hover{
    color: black;
    text-decoration: underline;
    transition: ease-in 0.1s;
}

nav .navigation .nav-links .nav-links-2{
    display: flex;
    margin-left: 100px;
    margin-top: 10px;
}

nav .navigation .nav-links .nav-links-2 li{
    list-style-type: none;
}

nav .navigation .nav-links .nav-links-2 li a{
    text-decoration: none;
    color: black;
    padding-right: 20px;
}

nav .navigation .nav-links .nav-links-2 button{
    color: black;
    background-color: #EBEBEB;
    border-style: none;
    height: 40px;
    width: 130px;
    border-radius: 5px;
    margin-top: -10px;
    margin-right: 15px;
}

nav .navigation .nav-links .nav-links-2 li a:hover{
    color: black;
    text-decoration: underline;
    transition: ease-in 0.1s;
}

nav .navigation .nav-links .nav-links-2 i{
    display: none;
    margin-left: 20px;
    margin-top: -8px;
    font-size: 35px;
}
nav .navigation .nav-links .nav-links-2 p{
    display: flex;
}

nav .navigation .nav-links .nav-links-2 img{
    width: 40px;
    margin-top: -10px;
}

nav .navigation .nav-links .nav-links-2 select{
    margin-left: 20px;
}

 /* Css for the first section */

 .Section-1{
    padding-top: 100px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-right: 1%;
 }

.Section-1 .side-left {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
    margin-left: 5%;
}

 .Section-1 .side-left h2{
    font-size: 59px;
    font-weight: 500;
    padding-top: 30px;
 }

 .Section-1 .side-left h4{
    font-size: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #606060;
    font-weight: 100;
 }

 .Section-1 .side-left .d{
    display: flex;
 }

 .Section-1 .side-left .d p{
    display: flex;
    color: #C1C1C1;
    padding-left: 30px;
    padding-top: 15px;
    font-family :'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
    font-size: 13px;
 }

 .Section-1 .side-left .d button{
    border: none;
    border-radius: 5px;
    background-color: blue;
    height: 50px;
    width: 150px;
    color: white;
 }

 .Section-1 .side-left .d button:hover{
    background-color: darkblue;
 }


.Section-1 .side-right {
    width: 90%;
    height: 65vh;
    position: relative;
    overflow: hidden;
    margin: auto;
}

@import url('https://fonts.googleapis.com/css?family=Oswald:400,700');

:root {
  --level-one: translateZ(3rem);
  --level-two: translateZ(6rem);
  --level-three: translateZ(9rem);
  
  --fw-normal: 400;
  --fw-bold: 700;
  
  --clr: #b7c9e5;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

.Section-1 .side-right .card {
  width: 480px;
  text-align: center;
}

.Section-1 .side-right .card__content {
  text-align: center;
  position: relative;
  padding: 15em 5em;
  transition: transform 3s;
  background: pink;
  transform-style: preserve-3d;
  border-radius: 10px;
}

.Section-1 .side-right .card:hover .card__content {
  transform: rotateY(.5turn);
}

.Section-1 .side-right .card__front,
.Section-1 .side-right .card__back {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5em 3em;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  display: grid;
  align-content: center;
}

.Section-1 .side-right .card__front {
  /* background-color: var(--clr); */
  background-image: url(./IMAGES/Dark-aesthetic-anime-boy.webp);
  background-size: contain;
  background-repeat: no-repeat;
  /* background-blend-mode: overlay; */
  color: #333;
  text-align: center;
  border-radius: 10px;
}

.Section-1 .side-right .card__front::before {
  content: '';
  position: absolute;
  --spacer: 1em;
  top: var(--spacer);
  bottom: var(--spacer);
  left: var(--spacer);
  right: var(--spacer);
  border: 3px solid black;
  transform: var(--level-one);
}

.Section-1 .side-right .card__title {
  font-size: 3.5rem;
  transform: var(--level-three);
  order: 2;
  text-transform: uppercase;
}

.Section-1 .side-right .card__subtitle {
  transform: var(--level-two);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .75rem;
  font-weight: var(--fw-bold);
  opacity: .7;
}

.Section-1 .side-right .card__body {
  transform: var(--level-two);
  font-weight: var(fw-normal);
  font-size: 1.5rem;
  line-height: 1.6;
}

.Section-1 .side-right .card__back {
  transform: rotateY(.5turn);
  color: var(--clr);
  background: black;
  border-radius: 10px;
}

.Section-5{
    display: flex;
    width: 100%;
    overflow: scroll;
    background-color: whitesmoke;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.Section-5 img{
    width: 40%;
    padding-left: 20px;
    padding-right: 18px;
}

.Section-6{
    background-image: url(./IMAGES/Section-6.png);
    height: 600px;
    width: 100%;
    margin-bottom: 100px;
}

.Section-8{
    border-style: solid;
    border-color: whitesmoke;
    border-width: 1px;
    height: 800px;
    width: 70%;
    margin: auto;
    margin-bottom: 50px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fffdfc;
}

.Section-8 img{
    width: 50%;
    height: 650px;
    border-radius: 10px;
    position: absolute;
    backface-visibility: hidden;
    transition: 1s;
    box-shadow: 10px 10px 5px gray;
}

.Section-8 img:nth-child(2){
    transform: rotateY(180deg);
    box-shadow: 10px 10px 5px gray;

}

.Section-8:hover img:nth-child(2){
    transform: rotateY(0deg);
    box-shadow: 10px 10px 5px gray;

}

.Section-8:hover img:nth-child(1){
    transform: rotateY(-180deg);
    box-shadow: 10px 10px 5px gray;
}
 /* Css for the Section 10 */

.Section-10{
    padding-left: 100px;
    padding-right: 100px;
    background-color: #FBEBF1;
    padding-top: 20px;
}

.Section-10 .left {
      width: 100%;
      height: 50vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
}

.Section-10 .left img {
    width: 100%;
    box-shadow: 5px 5px 10px gray;
}

.Section-10 .right {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    padding-left: 5%;
}

.Section-10 .right h6{
    color: orange;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 100;
    padding-top: 30%;
    padding-bottom: 20px;
}

.Section-10 .right h3{
    padding-top: 3%;
    padding-bottom: 20px;
    font-weight: 500;
    font-size: 37px;
}

.Section-10 .right p{
    color: #606060;
    font-size: 18px;
    font-weight: 100;
}

.Section-11{
}

.Section-11 .left {
    width: 100%;
    height: 10vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-left: 80px;
    font-size: 20px;
}

.Section-11 .right {
  width: 100%;
  height: 10vh;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.Section-11 .right img{
    width: 25%;
    padding-top: 100px;
}

.Section-12{
    border-style: solid;
    border-width: 0.5px;
    border-color: transparent;
    border-bottom-color :#606060;
    margin-left: 100px;
    margin-right: 100px;
    padding-bottom: 130px;
}

.Section-12 img{
    width: 28%;
    border-radius: 50%;
    margin-bottom: 30px;
}

.Section-12 h4{
    font-size: 20px;
    padding-bottom: 20px;
}

.Section-12 h6{
    font-weight: 100;
    font-size: 15px;
    padding-bottom: 20px;
    color: #606060;
}

.Section-12 p{
    font-size: 18px;
}

.Section-12 .left {
    width: 100%;
    height: 10vh;
    position: relative;
    overflow: hidden;
}

.Section-12 .middle {
    width: 100%;
    height: 10vh;
    position: relative;
    overflow: hidden;
}

.Section-12 .right {
  width: 100%;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.Section-13{
    margin-top: 150px;
    margin-left: 100px;
    font-size: 30px;
    font-weight: 400;
}

.Section-14{
    padding-top: 50px;
    margin-left: 150px;
    margin-right: 30px;
}

.Section-14 img{
    width: 500px;
    height: 250px;
    padding-right: 50px;
}

.Section-14 .left {
    width: 40%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: white;
    padding-top: 30px;
    margin-right: 100px;
    padding-left: 28px;
}

.Section-14 .left:hover {
    background-color: white;
    box-shadow: 3px 4px 10px 20px whitesmoke;
}

.Section-14 .left span{
    display: flex;
    padding-bottom: 20px;
}

.Section-14 .left span h6{
    color: blue;
    font-weight: 100;
    font-size: 13px;
    padding-top: 30px;
}

.Section-14 .left span p{
    color:#606060;
    font-weight: 100;
    font-size: 12px;
    padding-top: 30px;
    padding-left: 20px;
}

.Section-14 .left h4{
    font-size: 22px;
    padding-bottom: 20px;
}

.Section-14 .left h5{
    font-size: 20px;
    font-weight: 100;
    color: #606060;
}

.Section-14 .right {
  width: 40%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  background-color: white;
  padding-top: 30px;
  padding-left: 28px;
}

.Section-14 .right img{
    height: 350px;
}

.Section-14 .right:hover {
    background-color: white;
    box-shadow: 3px 4px 10px 20px whitesmoke;
  }

.Section-14 .right span{
    display: flex;
    padding-bottom: 20px;
}

.Section-14 .right span h6{
    color: blue;
    font-weight: 100;
    font-size: 13px;
    padding-top: 30px;
}

.Section-14 .right span p{
    color:#606060;
    font-weight: 100;
    font-size: 12px;
    padding-top: 30px;
    padding-left: 20px;
}

.Section-14 .right h4{
    font-size: 22px;
    padding-bottom: 20px;
}

.Section-14 .right h5{
    font-size: 20px;
    font-weight: 100;
    color: #606060;
}

.Section-15{
    width: 100%;
    height: 900px;
    background-image: url(./IMAGES/section-15.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 50px;
}

.Section-15 button{
    margin-top: 390px;
    margin-left: 623px;
    width: 190px;
    height: 60px;
    border-radius: 11px;
    border-color: blue;
    background-color: blue;
    color: white;
}
.Section-15 button:hover{
    background-color: darkblue;
    border-color: darkblue;
    border-radius: 8px;
}

.Section-15 p{
    margin-top: 1px;
    color: white;
    margin-left: 642px;
}
.Section-16{
    background-color: #F6F7F7;
    margin-top: -245px;
    padding-top: 150px;
    padding-left: 100px;
}

.Section-16 h4{
    padding-bottom: 30px;
}

.Section-16 li a{
    color: gray;
}

.Section-16 a:hover{
    color: black;
}

.Section-16 .col-1{
    width: 20%;
}

.Section-16 .col-1 li{
    list-style-type: none;
    padding-bottom: 10px;
}

.Section-16 .col-1 li a{
    text-decoration: none;
}

.Section-16 .col-2{
    width: 20%;
}

.Section-16 .col-2 li{
    list-style-type: none;
    padding-bottom: 10px;
}

.Section-16 .col-2 li a{
    text-decoration: none;
}

.Section-16 .col-3{
    width: 20%;
}

.Section-16 .col-3 li{
    padding-bottom: 10px;
    list-style-type: none;
}

.Section-16 .col-3 li a{
    text-decoration: none;
}

.Section-16 .col-4{
    width: 20%;
}

.Section-16 .col-4 li{
    padding-bottom: 10px;
    list-style-type: none;
}

.Section-16 .col-4 li a{
    text-decoration: none;
}

.Section-17 {
    height: 80px;
    padding-top: 20px;
    padding-left: 30px;
    color:#606060;
}

.Section-17 a{
    color:#606060;
}

@media screen and (max-width: 1400px) {
    .navigation {
        margin-left: -50px;
    } 
    nav .navigation .nav-links .nav-links-1{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
  }

@media screen and (max-width: 1350px) {
    .navigation {
        margin-left: -50px;
    }
/* 
    nav .navigation .logo img{
        width: 25%;
    } */

    nav .navigation .nav-links .nav-links-1{
        display: flex;
        margin-left: -300px;
        margin-top: 10px;
    }

    nav .navigation .nav-links .nav-links-2 li a{
        text-decoration: none;
        color: black;
        padding-right: 10px;
    }   
  }

@media screen and (max-width: 1348px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
}

@media screen and (max-width: 1330px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-1{
        font-size: 14px;
        padding-left: 1;
        color: black;
    }
}

@media screen and (max-width: 1320px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 13px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 13px;
        padding-left: 1;
        color: black;
    }
}

@media screen and (max-width: 1290px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 12px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 12px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2 button{
        margin-top: -10px;
        font-size: 11px;
    }
}

@media screen and (max-width: 1258px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 11px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 11px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2 button{
        margin-top: -10px;
        font-size: 11px;
    }
}

@media screen and (max-width: 1223px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 10px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 10px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2 button{
        margin-top: -10px;
        font-size: 9px;
    }
}

@media screen and (min-width:1200px) {

    .Section-1 {
        display: flex;
}

.Section-1 .side-left,
.Section-1 .side-right {
        width: 50%;
        height: 100vh;
}

.Section-10 {
    display: flex;
}

.Section-10 .left,
.Section-10 .right {
    width: 50%;
    height: 100vh;
}

.Section-11 {
    display: flex;
}

.Section-11 .left,
.Section-11 .right {
    width: 50%;
    height: 50vh;
}

.Section-12 {
    display: flex;
}

.Section-12 .left,
.Section-12 .middle,
.Section-12 .right {
    width: 50%;
    height: 60vh;
}

.Section-14 {
    display: flex;
}

.Section-14 img{
    width: 575px;
}

.Section-14 .left{
    width: 50%;
    height: 70vh;
}

.Section-14 .right{
    width: 50%;
    height: 80vh;
}

.Section-16 {
    display: flex;
}

.Section-16 .col-1,
.Section-16 .col-2,
.Section-16 .col-3,
.Section-16 .col-4{
    width: 50%;
    height: 50vh;
}
}

@media screen and (max-width: 1187px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 9px;
        padding-left: -1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 9px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2 button{
        margin-top: -15px;
        font-size: 8px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
        text-align: center;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 430px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
        text-align: center;
    }
    .Section-14 .right span{
        margin-left: 430px;
    }
}

@media screen and (max-width: 1150px) {

    nav .navigation .nav-links .nav-links-1{
        font-size: 8px;
        padding-left: -1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 8px;
        padding-left: 1;
        color: black;
    }
    nav .navigation .nav-links .nav-links-2 button{
        margin-top: -15px;
        font-size: 7px;
    }
    
    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 400px;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 1116px) {

    nav{
        width: 100%;
    }
    nav .navigation .logo img{
        width: 130px;
    }
    nav .navigation .nav-links .nav-links-1{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2{
        font-size: 15px;
        margin-left: 650px;
    }
    nav .navigation .nav-links .nav-links-2 button{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2 p{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2 i{
        display: flex;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 1023px) {
    nav{
        width: 100%;
    }
    nav .navigation .logo img{
        width: 130px;
    }
    nav .navigation .nav-links .nav-links-1{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 650px;
    }
    nav .navigation .nav-links .nav-links-2 button{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2 p{
        display: none;
    }
    nav .navigation .nav-links .nav-links-2 i{
        display: flex;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 962px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 600px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }
    
    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 900px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 550px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 865px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 530px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 837px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 500px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
}

@media screen and (max-width: 801px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 450px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 30px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 30px;
    }
}

@media screen and (max-width: 750px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 400px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }  
    
    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 40px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 40px;
    }
}

@media screen and (max-width: 701px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 350px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 50px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 50px;
    }
}

@media screen and (max-width: 655px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 300px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 60px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 60px;
    }
}

@media screen and (max-width: 622px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 260px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 70px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 70px;
    }
}

@media screen and (max-width: 565px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 240px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 80px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 80px;
    }
}

@media screen and (max-width: 545px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 220px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 90px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 90px;
    }
}

@media screen and (max-width: 525px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 190px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 60vh;
        padding-bottom: 30px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 100px;
    }

    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 100px;
    }
}

@media screen and (max-width: 501px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 160px;
    }

    .Section-1 .side-left h2{
        font-size: 40px;
    }

    .Section-1 .side-left h4{
        font-size: 25px;
    }
            
    .Section-8{
        width: 100%;
        background-color: #f8f5f2;
    }
    .Section-8 img{
        width: 80%;
        height: 650px;
    }
    .Section-11 .left,
    .Section-11 .right {
        width: 50%;
        height: 55vh;
    }
    .Section-11 .right{
        margin-top: -50%;
        text-align: center;
    }
    .Section-12{
        margin-top: -120px;
    }

    .Section-12 .left,
    .Section-12 .middle,
    .Section-12 .right {
        width: 50%;
        height: 75vh;
    }

    .Section-12 .middle{
        padding-bottom: 120px;
    }
    .Section-12 .right{
        margin-top: 120px;
    }

    .Section-14{
        margin: auto;
    }
    .Section-14 .left{
        width: 100%;
        height: 70vh;
    }
    .Section-14 .left span{
        margin-left: 150px;
    }
    .Section-14 .right{
        width: 100%;
        height: 80vh;
    }
    .Section-14 .right span{
        margin-left: 150px;
    }
    .Section-16{
        margin-top: -680px;
    }
    .Section-16 .col-1,
    .Section-16 .col-2,
    .Section-16 .col-3,
    .Section-16 .col-4{
        margin-left: 10px;
    }
}

@media screen and (max-width: 461px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 130px;
    }
}
/* 

@media screen and (max-width: 458px) {
    .Section-1 .side-left{
        background-color: green;
        font-size: 10px;
    }
} */

@media screen and (max-width: 441px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 100px;
    }
}

@media screen and (max-width: 406px) {
    nav{
        width: 100%;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 80px;
    }
}

@media screen and (max-width: 386px) {
    nav{
        width: 100%;
    }
    nav .navigation .logo{
        margin-left: -30px;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 70px;
    }
}

@media screen and (max-width: 350px) {
    nav{
        width: 100%;
    }
    nav .navigation .logo{
        margin-left: -50px;
    }
    nav .navigation .nav-links .nav-links-2{
        margin-left: 70px;
    }
}