:root {
	--font-default: "Plus Jakarta Sans", serif;
	--font-heading: "Plus Jakarta Sans", serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #0A0A0A;
	--dark: #0A0A0A;
	--dark-secondary: #1a1a1a;
	--white: #F5F5F5;
	--color-primary: #003344;
	--color-secondary: #36454F;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
	--box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #f7f7f7;
	--bg-gray-secondary: #D8E7EF;
	--bg-gradient: linear-gradient(90deg, var(--color-primary)  0%, var(--color-secondary) 100%);
	--bg-gradient-secondary: linear-gradient(90deg, var(--color-secondary)  0%, var(--color-primary) 100%);
}

.contact-us-area .my-contact-form h2 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
  margin-top: -5px;
}

.contact-us-area .my-contact-form input {
  border: 1px solid #e7e7e7;
  box-shadow: inherit;
  color: var(--dark);
}

.contact-us-area .my-contact-form textarea {
  border: 1px solid #e7e7e7;
  box-shadow: inherit;
  min-height: 300px;
  padding-top: 15px;
}

.contact-us-area .my-contact-form button {
  background: var(--color-primary) none repeat scroll 0 0;
  border: medium none;
  box-shadow: inherit;
  color: var(--white);
  display: inline-block;
  font-family: var(--font-default);
  font-weight: 700;
  padding: 15px 35px;
  text-transform: capitalize;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  transition: all 0.35s ease-in-out;
}

.contact-us-area .my-contact-form button:hover {
  background: var(--dark);
}

.contact-us-area .my-contact-form button i {
  margin-left: 5px;
}

.whats img {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 45px;
    -webkit-filter: drop-shadow(1px 1px 2px #eeebeb);
    z-index: 1005;
}

@media screen and (max-width: 980px) {
    .whats img {
        bottom: 90px;
        right: 10px;
        width: 40px;
    }

    .page-load img {
        width: 35%;
    }

}

.page-load {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.836);
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    transition: all .5s;  
}
.page-load img {
    width: 10%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 1.5em;
    text-align: center;
}
.page-load h3 {
    width: 60%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 1.5em;
    text-align: center;
    color: var(--color-primary);
    font-weight: bold;
}

.ony-rotate {
    animation: rotar 2s linear infinite;
}

@keyframes rotar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.grecaptcha-badge {
    z-index: 999999 !important;
}

h1.title-hero {
    font-size: 55px;
}