


/* 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);
    scroll-behavior: smooth;
    cursor: none;
}

.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;
}






/* Services Section */

#Services-title1 {
    width: 500px;
    margin-top: 170px;
    margin-left: 130px;
    margin-bottom: 70px;
}

@media screen and (max-width: 1300px) {
    #Services-title1 {
        width: 400px;
        margin-top: 170px;
        margin-left: 100px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 1000px) {
    #Services-title1 {
        width: 300px;
        margin-top: 170px;
        margin-left: 50px;
        margin-bottom: 150px;
    }
}

@media screen and (max-width: 700px) {
    #Services-title1 {
        width: 80%;
        margin-top: 100px;
        margin-left: 10%;
    }
}

#St1-title {
    color: var(--color4);
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: left;
    font-style: italic;
}

@media screen and (max-width: 1300px) {
    #St1-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1000px) {
    #St1-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 700px) {
    #St1-title {
        font-size: 35px;
    }
}

#S-image1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 700px) {
    #S-image1 {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

#S-image {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 15%;
    right: 12%;
}

@media screen and (max-width: 1300px) {
    #S-image {
        width: 400px;
        height: 400px;
        position: absolute;
        top: 20%;
        right: 10%;
    }
}

@media screen and (max-width: 1000px) {
    #S-image {
        width: 350px;
        height: 350px;
        position: absolute;
        top: 25%;
        right: 8%;
    }
}


@media screen and (max-width: 700px) {
    #S-image {
        width: 80%;
        height: 350px;
        position: absolute;
        top: 52%;
        left: 10%;
    }
}


#S-text1 {
    color: var(--color2);
    font-size: 30px;
    margin-top: 30px;
    text-align: left;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media screen and (max-width: 1300px) {
    #S-text1 {
        font-size: 23px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1000px) {
    #S-text1 {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 700px) {
    #S-text1 {
        font-size: 16px;
        margin-top: 20px;
    }
}







/* SVG Section */

#Svg10 {
    width: 100px;
    height: 100px;
    transform: rotate(-30deg);
    margin-top: 25px;
}

@media screen and (max-width: 1300px) {
    #Svg10 {
        width: 80px;
        height: 80px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 1300px) {
    #Svg10 {
        width: 60px;
        height: 60px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 700px) {
    #Svg10 {
        width: 50px;
        height: 50px;
        transform: rotate(-30deg);
        margin-top: 25px;
    }
}

#Svg11 {
    width: 120px;
    height: 120px;
}

@media screen and (max-width: 1300px) {
    #Svg11 {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 1000px) {
    #Svg11 {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 700px) {
    #Svg11 {
        width: 70px;
        height: 70px;
    }
}

#Svg12 {
    width: 100px;
    height: 100px;
    margin-top: 20px;
    transform: rotate(30deg);
}

@media screen and (max-width: 1300px) {
    #Svg12 {
        width: 80px;
        height: 80px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 1000px) {
    #Svg12 {
        width: 60px;
        height: 60px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 700px) {
    #Svg12 {
        width: 50px;
        height: 50px;
        margin-top: 20px;
        transform: rotate(30deg);
    }
}

#S-svg-section {
    display: flex;
    width: 500px;
    margin-left: 130px;
    margin-top: 50px;
    padding-left: 90px;
}

@media screen and (max-width: 1300px) {
    #S-svg-section {
        display: flex;
        width: 400px;
        margin-left: 120px;
        margin-top: 0;
        padding-left: 70px;
    }
}

@media screen and (max-width: 1000px) {
    #S-svg-section {
        display: flex;
        width: 300px;
        margin-left: 100px;
        margin-top: 0;
        padding-left: 50px;
    }
}

@media screen and (max-width: 700px) {
    #S-svg-section {
        display: flex;
        width: 80%;
        margin-left: 0;
        margin-top: 0;
        padding: 0 80px;
        position: absolute;
        top: 45%;
        left: 10%;
    }
}









/* Services */

#Services-container {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
    margin-top: 200px;
    background-color: var(--color2);
    padding-top: 30px;
    line-height: 1;
}

@media screen and (max-width: 700px) {
    #Services-container {
        width: 100%;
        height: 100%;
        padding-bottom: 40px;
        margin-top: 550px;
        padding-top: 30px;
    }
}

#Title1 {
    color: var(--color1);
    font-size: 40px;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width: 700px) {
    #Title1 {
        font-size: 25px;
    }
}

.services-section {
    width: 90%;
    margin-left: 5%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

@media screen and (max-width: 700px) {
    .services-section {
        width: 100%;
        margin-left: 0;
        display: block;
        padding-top: 30px;
    }
}

.services-container {
    width: 250px;
    height: 400px;
    background-color: var(--color1);
    margin: 10px auto;
    border: none;
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .services-container {
        width: 90%;
        height: 250px;
        margin: 0 0 20px 5%;
        display: inline-block;
    }
}

.services-container-a {
    text-decoration: none;

}

.services-container:hover {
    opacity: 0.5;
    box-shadow: 0px 0px 20px 2px white;
}

.s-img {
    object-fit: contain;
    width: 30%;
    margin-left: 35%;
    margin-top: 20px;
}

@media screen and (max-width: 700px) {
    .s-img {
        width: 20%;
        margin-left: 40%;
        margin-top: 10px;
    }
}

.services-title1 {
    color: purple;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 700px) {
    .services-title1 {
        font-size: 15px;
    }
}

.services-text {
    margin: 20px 20px 0 20px;
    color: var(--color2);
    font-size: 14px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media screen and (max-width: 700px) {
    .services-text {
        margin: 20px 0 0 40px;
        font-size: 12px;
        font-weight: bold;
        text-align: left;
    }
}








/* 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-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;
    }
}