@import url(https://fonts.googleapis.com/css?family=Heebo|Ubuntu:700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root {
    --mainBackground: #21222C;
    --font1: 'Heebo', sans-serif;
    --font2: 'Ubuntu', sans-serif;
    --font3: 'Poppins', sans-serif;
    --font4: Montserrat, sans-serif;
    --defaultColor: rgb(192, 204, 209);
    --font5: "Open Sans", "Helvetica Neue", "Segoe UI", "Calibri", "Arial", sans-serif;
    --scrollbar: #222;
--scrollbar-thumb: #2b2b2b;
--scrollbar-hover: #363636;
--scrollbar-active: #454545;
}

* {
    margin: 0;
    padding: 0;
    color: white;
    box-sizing: border-box;
    box-sizing: border-box;
    font-family: var(--font3);
    scrollbar-color: #353535 transparent;
scrollbar-width: thin;

}

::-webkit-scrollbar {
width: 16px;
background-color: var(--scrollbar);
cursor: pointer;
}

::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb);
height: 16px;
background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
background-color: var(--scrollbar-hover);
}

::-webkit-scrollbar-thumb:active {
background-color: var(--scrollbar-active);
}


body {
    background-color: #2f2f2f;
}

a {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    transition: all .4s;
}

a:focus {
    outline: none!important;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

ul, li {
    margin: 0;
    list-style-type: none;
}

input {
    border: none;
    outline: none;
}

textarea {
    border: none;
    outline: none;
    max-width: 100%;
    min-width: 100%;
    max-height: 200px;
}

textarea:focus, input:focus {
    border-color: transparent!important;
}

button {
  display: inline-block;
  font-family: Whitney, "Open Sans", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11pt;
  border-radius: 3px;
  cursor: pointer;
  height: 45px;
  width: 200px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: #43b581;
  border: 2px solid #43b581;
  color: #fff;
}


button:hover {
    cursor: pointer;
 transform: translateY(1px);
}

iframe {
    border: none!important;
}

.container {
    max-width: 1200px
}

.container-contact {
    z-index: 1;
    width: 100%;
    display: flex;
    padding: 15px;
    flex-wrap: wrap;
    background: 0 0;
    min-height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;
}








.contact-map {
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    position: absolute;
}

.wrap-contact {
    width: 1170px;
    position: relative;
    border-radius: 10px;
    background: #222222;
    padding: 82px 180px 33px;
    box-shadow: 0px 0px 20px 15px rgba(0, 0, 0, 0.103);
}

.contact-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 68px;
    justify-content: space-between;
}

.contact-form-title::after {
    content: "Contact Us";
}

.contact-form-title {
    width: 100%;
    color: #fff;
    display: block;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    padding-bottom: 44px;
    font-family: var(--font3);
}

.wrap-input {
    width: 100%;
    position: relative;
    margin-bottom: 65px;
    padding-bottom: 13px;
}

.rs1-wrap-input {
    width: calc((100% - 30px)/2);
}

.label {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 5px;
}

.input {
    width: 100%;
    color: #fff;
    display: block;
    padding: 0 5px;
    font-size: 18px;
    background: 0 0;
    line-height: 1.2;
    font-weight: 500;
}

.input-line {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.input-line::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all .4s;
    background: linear-gradient(90deg, #5a5460, #4f4c62);
}

input.input {
    height: 40px;
    margin-top: 10px;
    border-radius: 5px;
}

textarea.input {
    padding-top: 9px;
    margin-top: 10px;
    min-height: 110px;
    border-radius: 5px;
    padding-bottom: 13px;
}

.container-contact-form-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: -25px;
}

.contact-form-btn {
    height: 50px;
    color: #fff;
    display: flex;
    font-size: 16px;
    padding: 0 20px;
    line-height: 1.2;
    min-width: 160px;
    transition: all .5s;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 10px 0 #0000000f;
    background: linear-gradient(150deg, #3f3b44, #3c3748);
}

.contact-form-btn:hover {
    box-shadow: 0 10px 10px 0 #1f1d2275;
}

.contact-form-btn:hover i {
    transform: translateX(10px);
}

@media(max-width:992px) {
    .wrap-contact {
        padding: 82px 80px 33px;
    }
}

@media(max-width:768px) {
    .rs1-wrap-input {
        width: 100%;
    }
}

@media(max-width:576px) {
    .wrap-contact {
        padding: 82px 15px 33px;
    }
    .contact-form-title::after {
        font-size: 35px;
        font-weight: 600;
        content: "Contact Us";
    }
}

.validate-input {
    position: relative;
}

.alert-validate::before {
    top: 58%;
    right: 2px;
    opacity: 0;
    max-width: 70%;
    font-size: 13px;
    color: #c80000;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    position: absolute;
    border-radius: 2px;
    pointer-events: none;
    background-color: #fff;
    transition: opacity .4s;
    padding: 4px 25px 4px 10px;
    transform: translateY(-50%);
    border: 1px solid #c80000;
    content: attr(data-validate);
}

.contact-more {
    color: #757184;
    font-size: 14px;
    line-height: 1.5;
}

.contact-more-highlight {
    color: #8a7b9d;
}

body.full-screen .wrap-contact {
    width: 100%;
    height: 100%;
}

body.full-screen .container-contact {
    padding: 0;
    width: 100%;
    height: 100%;
}

body.done form>div {
    display: none !important;
}

body.done .contact-form-title::after {
    content: "Your Response was Recieved."!important;
}