


 /* Page */

:root {
    --color1: #D3D3D3;
    --color2:  #282828	;
    --color3: #DA0C81;
    --color4: #610C9F;
  }

* {
    display: flexbox;
    box-sizing: border-box;  
    margin: 0;
    padding: 0;
}

html, body {  
    width: 100%;
    line-height: 1.2;
    background-color: 	var(--color1);
    cursor: none;
    scroll-behavior: smooth;
}

.hideme {
    opacity: 0;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: var(--color2);
}

::-webkit-scrollbar {
	width: 12px;
	background-color: var(--color2);
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #D62929;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid black;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
}

@media screen and (max-width: 700px) {
    .cursor {
        display: none;
      }
}
  
.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: red;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
}

@media screen and (max-width: 700px) {
    .cursor2 {
        display: none;
      }
}
  
.hover {
    background-color: pink;
    opacity: 0.5;
}
  
.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}

@media screen and (max-width: 700px) {
    .cursorinnerhover {
        display: none;
    }
}

#Page {
    width: 100%;
}

::-moz-selection {   /* Code for Firefox */
    color: red;
    background: transparent;
}
  
::selection {
    color: red;
    background: transparent;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--color3);
    color: white;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
}
  
#myBtn:hover {
    background-color: var(--color1);
    color: var(--color2);
}










/* Up Section */

#Up-section {
    width: 100%;
    height: 100px;
    background-color: var(--color2);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    cursor:auto;
    transition: all 0.3s;
}

@media screen and (max-width: 700px) {
    #Up-section {
        height: 80px;
    }
}

#Title-section {
    width: 30%;
    margin-left: 6%;
}

@media screen and (max-width: 700px) {
    #Title-section {
        display: none;
    }
}

#Title-section-phone {
    display: none;
}

@media screen and (max-width: 700px) {
    #Title-section-phone {
        width: 100%;
        display: block;
        padding: auto 0;
    }
}

#Title-img {
    width: 80%;
    height: 100%;
    margin-left: 20%;
}

@media screen and (max-width: 700px) {
    #Title-img {
        height: 80px;
        margin-left: 5%;
    }
}

#Title-img-phone {
    display: none;
}

@media screen and (max-width: 700px) {
    #Title-img-phone {
        width: 100%;
        height: 80px;
        margin-left: 15%;
        display: block;
    }
}

.shrink {
    height: 80px;
  }

#Buttons-section {
    width: 70%;
    display: flex;
    margin-left: 19%;
}

.buttons {
    width: 12%;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    position: relative;
    display: inline-block;
    margin: 20px 10px;
    color: #D3D3D3;
    text-decoration: none;
    transition: 0.5s;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid purple;
}

@media screen and (max-width: 700px) {
    .buttons {
        display: none;
    }
}

.buttons:hover {
    background: pink;
    color: #050801;
    box-shadow: 0 0 5px purple,
        0 0 25px purple,
        0 0 50px purple,
        0 0 200px purple;
    -webkit-box-reflect: below 1px linear-gradient(transparent, purple);
    border: none;
}


.container {
    display: none;
}

@media screen and (max-width: 700px) {
    .container {
        position: absolute;
        top: 27%;
        right: 7%;  
        display: inline-block;
    }
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 5px;
    background-color: var(--color1);
    margin: 6px 0;
    transition: 0.4s;
}
  
.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

#Phone-buttons {
    display: none;
}

#Pb-container {
    display: none;
}

@media screen and (max-width: 700px) {
    #Phone-buttons {
        display: flex;
        width: 100%;
        height: 70px;
        background-color: var(--color2);
        position: absolute;
        top: 99%;
        left: 0;
    }
}

.p-buttons {
    width: 15%;
    height: 30px;
    text-align: center;
    padding-top: 10px;
    position: relative;
    display: inline-block;
    margin: 10px 10px;
    color: #D3D3D3;
    text-decoration: none;
    transition: 0.5s;
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid purple;
}

.p-buttons:hover {
    background: pink;
    color: #050801;
    box-shadow: 0 0 5px purple,
        0 0 25px purple,
        0 0 50px purple,
        0 0 200px purple;
    -webkit-box-reflect: below 1px linear-gradient(transparent, purple);
    border: none;
}







/* SVG Section */

#SVG-section {
    z-index: 99;
}

.svg1 {
    position: absolute;
    right: 30%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
}

@media screen and (max-width: 700px) {
    .svg1 {
        position: absolute;
        top: 0;
        right: 40%;
        width: 50px;
        height: 50px;
    }
}

.svg3 {
    position: absolute;
    right: 43%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 1s;
}


@media screen and (max-width: 700px) {
    .svg3 {
        position: absolute;
        top: 0;
        right: 60%;
        width: 70px;
        height: 70px;
    }
}

.svg4 {
    position: absolute;
    right: 23%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 1s;
}

@media screen and (max-width: 700px) {
    .svg4 {
        position: absolute;
        top: 0;
        right: 25%;
        width: 70px;
        height: 70px;
    }
}

.svg5 {
    position: absolute;
    right: 18%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 2s;
}

@media screen and (max-width: 700px) {
    .svg5 {
        position: absolute;
        top: 0;
        right: 20%;
        width: 70px;
        height: 70px;
    }
}

.svg6 {
    position: absolute;
    right: 17%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 3s;
}

@media screen and (max-width: 700px) {
    .svg6 {
        position: absolute;
        top: 0;
        right: 10%;
        width: 70px;
        height: 70px;
    }
}

.svg7 {
    position: absolute;
    right: 30%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 2.5s;
}

@media screen and (max-width: 700px) {
    .svg7 {
        position: absolute;
        top: 0;
        right: 35%;
        width: 70px;
        height: 70px;
    }
}

.svg8 {
    position: absolute;
    right: 40%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 3s;
}

@media screen and (max-width: 700px) {
    .svg8 {
        position: absolute;
        top: 0;
        right: 45%;
        width: 70px;
        height: 70px;
    }
}

.svg9 {
    position: absolute;
    right: 43%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 4s;
}

@media screen and (max-width: 700px) {
    .svg9 {
        position: absolute;
        top: 0;
        right: 55%;
        width: 70px;
        height: 70px;
    }
}

.svg10 {
    position: absolute;
    right: 25%;
    width: 100px;
    height: 100px;
    animation: anime1;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-delay: 4.5s;
}

@media screen and (max-width: 600px) {
    .svg10 {
        position: absolute;
        top: 0;
        right: 25%;
        width: 70px;
        height: 70px;
    }
}


.svg {
    z-index: 0;
}


@keyframes anime1 {
    0% { top: 0% }
    100% { top: 74%; transform: rotate(360deg); }
}







/* the big image */

.image {
    width: 40%;
    height: 550px;
    object-fit: contain;
    margin-left: 5%;
    margin-top: 6.5%;
}

@media screen and (max-width: 700px) {
    .image {
        display: none;
    }
}

.image2 {
    display: none;
}

@media screen and (max-width: 700px) {
    .image2 {
        width: 100%;
        position: absolute;
        top: 15%;
        left: 0;
        margin: 0;
        object-fit: contain;
        display: block;
    }
}

#Image {
    width: 100%;
    height: 100%;
}







/* Down Section */

#Down-section {
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    margin-top: 0px;
    padding-top: 40px;
    padding-bottom: 30px;
    z-index: 5;
}

@media screen and (max-width: 700px) {
    #Down-section {
        padding-bottom: 30px;
        margin-top: 650px;
        padding-top: 30px;
    }
}

#Down-text {
    color: var(--color1);
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 50px;
}

@media screen and (max-width: 1300px) {
    #Down-text {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 700px) {
    #Down-text {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.hr {
    width: 80%;
    height: 1px;
    color: white;
    margin: auto;
}

#Down-section2 {
    margin: 30px 140px;
    padding-left: 100px;
    display: flex;
}

@media screen and (max-width: 700px) {
    #Down-section2 {
        margin: 30px 20px;
        padding-left: 0;
        display: block;
    }
}

#Down-text2 {
    width: 50%;
    margin-top: 100px;
    color: var(--color1);
    font-size: 27px;
    text-align: left;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media screen and (max-width: 1300px) {
    #Down-text2 {
        width: 50%;
        margin-top: 30px;
        font-size: 15px;
    }
}

@media screen and (max-width: 700px) {
    #Down-text2 {
        width: 100%;
        margin-top: 50px;
        font-size: 18px;
    }
}

.down-section-image1 {
    object-fit: contain;
    width: 35%;
    height: 100%;
    margin-left: 50px;
}

@media screen and (max-width: 700px) {
    .down-section-image1 {
        width: 80%;
        height: 100%;
        margin-left: 10%;
    }
}

.ds-title1 {
    color: var(--color4);
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 35px;
}

@media screen and (max-width: 700px) {
    .ds-title1 {
        font-size: 25px;
    }
}

#Down-section3 {
    width: 100%;
    height: 100%;
    display: flex;
    margin-top: 30px;
    padding: 20px 0 50px 0;
}

@media screen and (max-width: 700px) {
    #Down-section3 {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        padding: 20px 0;
    }
}

.ds-container {
    width: 20%;
    height: 300px;
    margin-left: 4%;
    padding: 20px 20px 10px 20px;
    background-color: var(--color1);
}

@media screen and (max-width: 1300px) {
    .ds-container {
        width: 20%;
        height: 100%;

    }
}

@media screen and (max-width: 700px) {
    .ds-container {
        width: 80%;
        margin-left: 10%;
        margin-bottom: 30px;
        height: 280px;
        padding: 20px 20px 30px 20px;
    }
}

.ds-title2 {
    color: var(--color3);
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .ds-title2 {
        font-size: 18px;
    }
}

.ds-title3 {
    margin-bottom: 40px;
}

.ds-image1 {
    object-fit: contain;
    width: 50%;
    margin-left: 25%;
}

@media screen and (max-width: 700px) {
    .ds-image1 {
        width: 40%;
        margin-left: 30%;
    }
}

.ds-text {
    color: var(--color2);
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: left;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .ds-text {
        font-size: 14px;
    }
}

.section {
    width: 100%;
    background-color: var(--color1);
    height: 100%;
}

#Down-section4 {
    width: 100%;
    height: 100%;
    background-color: var(--color2);
}

.ds4-btton {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    margin-left: 45.5%;
    padding: 10px;
}

@media screen and (max-width: 700px) {
    .ds4-btton {
        font-size: 16px;
        margin-left: 35%;
        padding: 10px;
    }
}

.ds4-btton:hover {
    background-color: white;
    color: black;
}







/* Section 1 */ 

.section {
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    display: flex;
    padding-top: 100px;
    padding-bottom: 70px;
}

@media screen and (max-width: 700px) {
    .section {
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.section1 {
    width: 40%;
    height: 100%;
    margin-left: 5%;
}

@media screen and (max-width: 700px) {
    .section1 {
        width: 90%;
        margin-left: 5%;
        height: 100%;
    }
}

.section1-title1 {
    color: var(--color4);
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .section1-title1 {
        font-size: 20px;
    }
}

.section1-title2 {
    color: var(--color1);
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .section1-title2 {
        font-size: 16px;
    }
}

.section1-text {
    color: var(--color3);
    font-size: 30px;
}

@media screen and (max-width: 700px) {
    .section1-text {
        font-size: 20px;
    }
}

.section1-text1 {
    color: white;
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .section1-text1 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.section-image {
    object-fit: contain;
    width: 60%;
    margin-left: 20%;
}

@media screen and (max-width: 700px) {
    .section-image {
        width: 60%;
        margin-left: 20%;
    }
}







/* Section 2 */

#Section2 {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    background-color: var(--color2);
}

@media screen and (max-width: 700px) {
    #Section2 {
        width: 100%;
        height: 100%;
        padding-bottom: 30px;
    }
}

#Section2-text {
    width: 100%;
    padding-top: 30px;
}

@media screen and (max-width: 700px) {
    #Section2-text {
        padding-top: 30px;
    }
}

#Section2-title1 {
    color: var(--color4);
    font-style: italic;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    #Section2-title1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

#Section2-title2 {
    color: var(--color3);
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    #Section2-title2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.section2-text {
    color: var(--color2);
    font-size: 25px;
    margin: 0 0 20px 30px;
    text-align: left;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media screen and (max-width: 1300px) {
    .section2-text {
        font-size: 20px;
        margin: 0px 20px;
    } 
}

@media screen and (max-width: 1000px) {
    .section2-text {
        font-size: 18px;
    } 
}

@media screen and (max-width: 700px) {
    .section2-text {
        font-size: 15px;
        margin: 20px 20px;
    } 
}

#Section2-info {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    display: flex;
    background-color: var(--color1);
    padding-top: 50px;
}

@media screen and (max-width: 700px) {
    #Section2-info {
        padding-bottom: 20px;
        display: block;
        padding-top: 20px;
    }
}

#Section2-img1 {
    width: 50%;
}

@media screen and (max-width: 700px) {
    #Section2-img1 {
        width: 90%;
        margin-left: 5%;
    }
}

.section2-image1 {
    object-fit: contain;
    width: 60%;
    margin-right: 40%;
}

@media screen and (max-width: 700px) {
    .section2-image1 {
        width: 100%;
        margin-right: 0;
    }
}

#Section2-t {
    width: 50%;
    padding-top: 20px;
    padding-left: 15%;
}

@media screen and (max-width: 1300px) {
    #Section2-t {
        width: 50%;
        padding-top: 0;
        padding-left: 15%;

    }
}

@media screen and (max-width: 700px) {
    #Section2-t {
        width: 100%;
        padding-top: 10px;
        padding-left: 0;
    }
}







/* Section 3 */

#Section3 {
    background-color: var(--color2);
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
}

@media screen and (max-width: 700px) {
    #Section3 {
        padding-bottom: 30px;
        padding-top: 20px;
        display: block;
    }
}

#Section3-title1 {
    color: var(--color4);
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 700px) {
    #Section3-title1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

#Section3-text {
    width: 50%;
    margin: 0px 50px;
    color: var(--color1);
    padding: 20px 30px;
}

@media screen and (max-width: 1300px) {
    #Section3-text {
        width: 90%;
        margin: 0px 5%;
        padding: 0;
    }
}

#Section3-text1 {
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: left;
}

@media screen and (max-width: 1300px) {
    #Section3-text1 {
        font-size: 14px;
        margin: 7px 0px;
    }
}

@media screen and (max-width: 700px) {
    #Section3-text1 {
        font-size: 15px;
        margin: 20px 30px;
    }
}

.section3-text1 {
    margin-bottom: 30px;
}

@media screen and (max-width: 1300px) {
    .section3-text1 {
        margin-bottom: 7px;
    }
}

@media screen and (max-width: 700px) {
    .section3-text1 {
        margin-bottom: 20px;
    }
}

.section3-images {
    width: 50%;
}

@media screen and (max-width: 700px) {
    .section3-images {
        width: 90%;
        margin-left: 5%;
    }
}

.section3-image {
    width:  500px;
    height: 180px;
    margin-bottom: 10px;
    margin-left:100px;
    object-fit: cover;
}

@media screen and (max-width: 1300px) {
    .section3-image {
        width:  400px;
        height: 160px;
        margin-bottom: 10px;
        margin-left: 0;
    }
}

@media screen and (max-width: 1100px) {
    .section3-image {
        width:  300px;
        height: 120px;
        margin-bottom: 10px;
        margin-left: 0;
    }
}

@media screen and (max-width: 700px) {
    .section3-image {
        width:  100%;
        height: 180px;
        margin-bottom: 10px;
        margin-left: 0;
    }
}







/* Section 4 */

#Section4 {
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    padding-top: 50px;
    padding-bottom: 30px;
}

@media screen and (max-width: 700px) {
    #Section4 {
        width: 100%;
        height: 100%;
        padding-bottom: 30px;
        padding-top: 50px;
    }
}

#Section4-title1 {
    color: var(--color4);
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

@media screen and (max-width: 700px) {
    #Section4-title1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

#Section4-text {
    width: 100%;
    padding: 40px 80px;
}

@media screen and (max-width: 700px) {
    #Section4-text {
        width: 100%;
        padding: 20px 20px;
    }
}

.section4-text1 {
    color: var(--color1);
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    text-align: left;
}

@media screen and (max-width: 1300px) {
    .section4-text1 {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px) {
    .section4-text1 {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

#Section4-text2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--color1);
}

@media screen and (max-width: 700px) {
    #Section4-text2 {
        display: block;
    }
}

.section4-text2-container1 {
    flex-grow: 1;
    flex-basis: 200;
    width: 50%;
    padding: 60px 0 0 120px;
}

@media screen and (max-width: 700px) {
    .section4-text2-container1 {
        width: 100%;
        padding: 30px 20px;
    }
}

#Section4-title2 {
    color: var(--color4);
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
    #Section4-title2 {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

.s-title {
    color: var(--color3);
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .s-title {
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.section4-text2 {
    color: var(--color2);
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    text-align: left;
}

@media screen and (max-width: 1300px) {
    .section4-text2 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px) {
    .section4-text2 {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.section4-image {
    object-fit: contain;
    width: 80%;
    margin-right: 20%;
}

@media screen and (max-width: 700px) {
    
.section4-image {
    width: 100%;
    margin-right: 0;
    margin-top: -50px;
}
}

.section4-text2-container2 {
    flex-grow: 1;
    flex-basis: 200;
    width: 50%;
}

@media screen and (max-width: 700px) {
    .section4-text2-container2 {
        width: 100%;
    }
}

#Section4-text3 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--color2);
}

@media screen and (max-width: 700px) {
    #Section4-text3 {
        display: block;
    }
}

.section4-text3-container1 {
    flex-grow: 1;
    flex-basis: 200;
    width: 50%;
    padding: 60px 120px 60px 0px;
}

@media screen and (max-width: 700px) {
    .section4-text3-container1 {
        width: 100%;
        padding: 30px 20px;
    }
}

.section4-text3-container2 {
    flex-grow: 1;
    flex-basis: 200;
    width: 50%;
    padding: 60px 70px;
}

@media screen and (max-width: 700px) {
    .section4-text3-container2 {
        width: 100%;
        padding: 30px 20px;
    }
}

.s-title2 {
    color: var(--color3);
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .s-title2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.section4-text3 {
    color: var(--color1);
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    text-align: left;
}

@media screen and (max-width: 1300px) {
    .section4-text3 {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px) {
    .section4-text3 {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

.section4-image2 {
    object-fit: contain;
    width: 80%;
    margin-left: 10%;
}

@media screen and (max-width: 700px) {
    .section4-image2 {
        width: 90%;
        margin-left: 5%;
    }
}








/* Contact Form */

#Contact-form {
    width: 100%;
    height: 100%;
    background-color: var(--color1);
    display: flex;
}

@media screen and (max-width: 700px) {
    #Contact-form {
        display: block;
    }
}

#Contact-form-contact {
    width: 100%;
    height: 100%;
    background-color: var(--color1);
    display: flex;
    margin-top: 70px;
}

@media screen and (max-width: 700px) {
    #Contact-form-contact {
        display: block;
        margin-top: 100px;
    }
}

.contact-container1 {
    width: 50%;
    height: 100%;
    padding: 50px 0px 50px 150px;
}

@media screen and (max-width: 700px) {
    .contact-container1 {
        width: 90%;
        margin-left: 5%;
        padding: 30px 0;
    }
}

.contact-title1 {
    color: var(--color4);
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 30px;
}

@media screen and (max-width: 700px) {
    .contact-title1 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1300px) {
    .contact-title1 {
        font-size: 25px;
    }
}

@media screen and (max-width: 1000px) {
    .contact-title1 {
        font-size: 20px;
    }
}

.contact-email {
    color: var(--color2);
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .contact-email {
        font-size: 16px;
    }
}

@media screen and (max-width: 1300px) {
    .contact-email {
        font-size: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .contact-email {
        font-size: 14px;
    }
}

.email {
    text-decoration-color: var(--color3);
    color: var(--color2);
}

.email:hover {
    opacity: 0.5;
    text-decoration: none;
}

.contact-image1 {
    object-fit: contain;
    width: 80%;
    margin-left: 10%;;
}

.contact-container2 {
    width: 50%;
    height: 100%;
    padding: 50px 150px 50px 0;
}

@media screen and (max-width: 700px) {
    .contact-container2 {
        width: 90%;
        margin-left: 5%;
        padding: 30px 0;
    }
}

.form-group {
    margin: 0 auto 1.25rem auto;
    padding: 0.25rem;
}

@media screen and (max-width: 700px) {
    .form-group {
        margin: 0 auto 0.2rem auto;
        padding: 0.25rem;
    }
}

.form-control {
    width: 90%;
    height: 2.5rem;
    padding: 0.5rem 0;
    margin-left: 6%;
    color: var(--color2);
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-bottom: 1px solid var(--color3);
}

@media screen and (max-width: 700px) {
    .form-control {
        height: 2rem;
        padding: 0.5rem 0;
    } 
}

.form-control:focus {
    border: none;
    outline: 0;
}

#select {
    font-size: 14px;
    color: gray;
}

@media screen and (max-width: 700px) {
    #select {
        font-size: 12px;
    } 
}

label {
    color: var(--color2);
    margin-left: 6%;
    font-size: 18px;
}

@media screen and (max-width: 700px) {
    label {
        font-size: 12px;
    } 
}

.input-checkbox {
  display: inline-block;
  margin-right: 0.8rem;
  min-height: 1rem;
  min-width: 1rem;
}

@media screen and (max-width: 700px) {
    .input-checkbox {
        margin-right: 0.3rem;
        min-height: 0.8rem;
        min-width: 0.8rem;
      }
}

.check-text {
    font-size: 18px;
    color: var(--color2);
    margin: 0 0 15px 6%;
}

@media screen and (max-width: 700px) {
    .check-text {
        font-size: 12px;
        margin: 0 0 10px 6%;
    }
}

.submit-button {
    display: block;
    width: 30%;
    padding: 0.75rem;
    background-color: var(--color3);
    border-radius: 5px;
    margin-left: 6%;
    border: none;
    color: var(--color2);
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--color3);
}

@media screen and (max-width: 1000px) {
    .submit-button {
        font-size: 12px;
    }
}

@media screen and (max-width: 700px) {
    .submit-button {
        width: 40%;
        padding: 0.55rem;
        font-size: 14px;
    }
}

.submit-button:hover {
    background-color: white;
}








/* Footer */

#Footer {
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    background-color: var(--color2);
    padding-top: 100px;
}

@media screen and (max-width: 700px) {
    #Footer {
        padding-bottom: 30px;
        padding: 30px 20px;
    }
}

#Footer-cont {
    display: flex;
    width: 80%;
    height: 100%;
    margin-left: 10%;
}

@media screen and (max-width: 700px) {
    #Footer-cont {
        display: block;
        width: 100%;
        margin-left: 0;
    }
}

.footer-section1 {
    width: 25%;
    height: 100%;
    padding: 1px 50px 0 50px;
}

@media screen and (max-width: 700px) {
    .footer-section1 {
        width: 100%;
        height: 33%;
        padding: 20px 20px;
    }
}

.footer-section2 {
    width: 25%;
    height: 100%;
    padding: 30px 0 0 170px;
}

@media screen and (max-width: 700px) {
    .footer-section2 {
        width: 100%;
        height: 33%;
        padding: 20px 20px 20px 90px;
    }
}

.footer-section3 {
    width: 25%;
    height: 100%;
    padding: 30px 0 0 100px;
}

@media screen and (max-width: 700px) {
    .footer-section3 {
        width: 100%;
        height: 33%;
        padding: 20px 20px 20px 90px;
    }
}

.footer-section4 {
    width: 25%;
    height: 100%;
    padding: 30px 0 0 100px;
}

@media screen and (max-width: 700px) {
    .footer-section4 {
        width: 100%;
        height: 33%;
        padding: 20px 20px 20px 90px;
    }
}

.footer-logo {
    width: 100%;
    object-fit: contain;  
}

@media screen and (max-width: 700px) {
    .footer-logo {
        width: 100%;
    }
}

.footer-button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
    margin-left: 20%;
    padding: 15px;
}

@media screen and (max-width: 700px) {
    .footer-button {
        font-size: 14px;
        margin-left: 33.3%;
        padding: 15px;
    }
}

.footer-button:hover {
    background-color: white;
    color: var(--color2);   
}

.footer-info {
    color: var(--color1);
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .footer-info {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.footer-a {
    color: var(--color1);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
    .footer-a {
        font-size: 14px;
    }
}

.footer-text {
    margin-bottom: 5px;
}

.footer-a:hover, .footer-email-a:hover {
    color: var(--color3);
}

.footer-email {
    margin-top: 30px;
    text-align: center;
}

.footer-email-a {
    color: var(--color1);
    text-decoration: none;
    font-size: 18px;
}

@media screen and (max-width: 1300px) {
    .footer-email-a {
        font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
    .footer-email-a {
        font-size: 16px;
    }
}

.wb-logo {
    object-fit: contain;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-left: 10%;
}

@media screen and (max-width: 700px) {
    .wb-logo {
        object-fit: contain;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        margin-left: 5%;
    }
}

.wb-logo:hover {
    opacity: 0.5;
}

#Cop {
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (max-width: 700px) {
    #Cop {
        width: 100%;
        height: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        border: none;
    }
}

.cop-text {
    color: var(--color1);
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    .cop-text {
        font-size: 12px;
    }
}







