@import url("variables.css");
@import url("reset.css");
@import url("fonts.css");

/*= General Style =*/

body {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: fixed;
  font-family: var(--ff-body);
  font-size: var(--fs-normal);
  line-height: 1rem;
  color: var(--primary-color);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.inner-container {
  padding: 0 2%;
}

.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--bg-color);
  z-index: 999999;
}

.loader-overlay .image-block {
  width: 240px;
  margin: 55vh auto 24px;
}

.loader-overlay .image-block img {
  width: 100%;
}

.loader-overlay .text-block p {
  font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: var(--primary-color);
}

.welcome-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--bg-color);
  display: none;
  z-index: 9999;
}

.welcome-overlay .overlay-inner .text-block-1 {
  position: absolute;
  top: 40vh;
  right: -30%;
}

.welcome-overlay .overlay-inner .text-block-2 {
  position: absolute;
  top: 40vh;
  left: -30%;
}

.welcome-overlay .overlay-inner .text-block-1 p {
  color: var(--primary-color);
}

.welcome-overlay .overlay-inner .text-block-2 p {
  color: var(--primary-color);
}

.welcome-overlay .inner .animate-logo-block.block-1 {
  position: absolute;
  width: 30%;
  top: 50%;
  right: 110%;
  max-width: 240px;
}

.welcome-overlay .inner .animate-logo-block.block-2 {
  position: absolute;
  width: 30%;
  top: 50%;
  left: 110%;
  max-width: 240px;
}

.welcome-overlay .inner .animate-logo-block img {
  width: 100%;
}

.nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  z-index: 999;
  display: none;
}

a.mobile_only,
a.mobile_only {
  cursor: not-allowed;
}

a.mobile_only.mob_active,
a.mobile_only.mob_active {
  cursor: pointer;
}

.floating-block {
  position: absolute;
}

.floating-block img {
  width: 100%;
}

/* Header Style */

.header-block {
  background-color: var(--bg-color-secondary);
}
.header-block .header-block-0 {
  border-top: 4px solid var(--primary-color);
}

.header-block .header-block-1 .inner-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-block .header-block-1 .logo-block {
  display: inline-block;
  font-size: 0;
}

.header-block .header-block-1 .logo-block a {
  display: block;
  max-width: 240px;
  font-size: 0;
}

.header-block .header-block-1 .logo-block .image-block {
  display: inline-block;
  vertical-align: middle;
}

.header-block .header-block-1 .logo-block .image-block img {
  width: 100%;
}

.header-block .header-block-1 .nav-button-block {
  display: none;
  position: absolute;
  right: 2%;
  bottom: 0;
}

.header-block .header-block-1 .nav-button-block .icon-block i {
  font-size: 32px;
  line-height: 1em;
  color: var(--primary-color);
}
.header-block .header-block-1 .navigation-block .close-button {
  display: none;
}

.header-block .header-block-1 .navigation-block .close-button .icon-block {
  cursor: pointer;
}

.header-block .header-block-1 .navigation-block .close-button .icon-block i {
  color: var(--primary-color);
  font-size: 27px;
  line-height: 1em;
}

.header-block
  .header-block-2
  .navigation-block
  .close-button:hover
  .icon-block
  i,
.header-block
  .header-block-2
  .navigation-block
  .close-button:focus
  .icon-block
  i {
  color: var(--secondary-color);
}

.header-block .header-block-1 .navigation-block {
  display: inline-block;
  font-size: 0;
}

.header-block .header-block-1 .navigation-block ul.navigation {
  text-align: right;
  font-size: 0;
}

.header-block .header-block-1 .navigation-block ul.navigation li {
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
  margin-left: 17px;
  margin-right: 17px;
}

.header-block .header-block-1 .navigation-block ul.navigation li.nav-header {
  display: none;
  background: var(--highlight-color);
}

.header-block .header-block-1 .navigation-block ul.navigation li.nav-header p {
  color: var(--secondary-color);
  font-weight: 400;
  text-align: center;
}

.header-block .header-block-1 .navigation-block ul.navigation li a {
  display: block;
  padding: 20px 0;
}

.header-block .header-block-1 .navigation-block ul.navigation li > p {
  padding: 20px 0;
}

.header-block .header-block-1 .navigation-block ul.navigation li.last {
  margin-right: 0;
}

.header-block .header-block-1 .navigation-block ul.navigation li > p,
.header-block .header-block-1 .navigation-block ul.navigation li a p {
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.header-block .header-block-1 .navigation-block ul.navigation li.active p,
.header-block .header-block-1 .navigation-block ul.navigation li:hover > p,
.header-block .header-block-1 .navigation-block ul.navigation li:focus > p,
.header-block .header-block-1 .navigation-block ul.navigation li.active a p,
.header-block .header-block-1 .navigation-block ul.navigation li a:hover p,
.header-block .header-block-1 .navigation-block ul.navigation li a:focus p {
  color: var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-block .header-block-1 .navigation-block ul.navigation li.active p,
.header-block .header-block-1 .navigation-block ul.navigation li.active a p {
  font-weight: 600;
}

.header-block .header-block-1 .navigation-block ul.navigation li ul.sub-nav {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight-color);
  border-radius: 4px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  z-index: 999;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li:hover
  ul.sub-nav,
.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li:focus
  ul.sub-nav {
  opacity: 1;
  visibility: visible;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav:after {
  content: " ";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--highlight-color) transparent;
  transform: translateX(-50%) rotate(0deg);
}

.header-block .header-block-1 .navigation-block ul.navigation li ul.sub-nav li {
  display: block;
  margin: 0;
  width: 140px;
  border-bottom: 1px solid var(--white-color);
  margin: 0 auto;
  white-space: nowrap;
  width: auto;
  min-width: max-content;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li:last-child {
  border: 0;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li
  a {
  display: block;
  padding: 12px 24px;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li
  a
  p {
  color: var(--white-color);
  text-align: center;
}

.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li
  a:hover
  p,
.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li
  a:focus
  p,
.header-block
  .header-block-1
  .navigation-block
  ul.navigation
  li
  ul.sub-nav
  li.active
  a
  p {
  color: var(--black-color);
}

/* Footer Style */

.footer-block {
  background: var(--white-color);
}

.footer-block .inner {
  width: 100%;
  font-size: 0;
}

.footer-block .footer-main {
  position: relative;
}

.footer-block .footer-main .footer-0 {
  background: var(--secondary-color);
  background: url("../images/backgrounds/wave-white-1.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-2.png") no-repeat right top,
    var(--secondary-color);
}

.footer-block .footer-main .footer-0 .inner-container {
  padding: 0;
  font-size: 0;
}

.footer-block .footer-main .footer-0 .block-01 {
  display: inline-block;
  width: 25%;
  padding-left: 1%;
  padding-right: 2%;
  vertical-align: top;
}

.footer-block .footer-main .footer-0 .block-02 {
  display: inline-block;
  width: 69%;
  padding-left: 1%;
  padding-right: 2%;
  vertical-align: top;
}

.footer-block .footer-main .footer-0 .head-block-1 h2 {
  color: var(--white-color);
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-block .footer-main .footer-0 .text-block-1 p {
  color: var(--white-color);
  text-align: left;
  font-weight: 800;
}

.footer-block .footer-main .footer-0 .divider-block {
  width: 20%;
  max-width: 100px;
  height: 3px;
  background-color: var(--highlight-color);
}

.footer-block .footer-main .footer-0 .block {
  display: inline-block;
  width: 21%;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-block .footer-main .footer-0 .block .icon-block {
  max-width: 140px;
  padding: 24px;
  border: 2px solid var(--white-color);
  border-radius: 7px;
}

.footer-block .footer-main .footer-0 .block .icon-block img {
  width: 100%;
}

.footer-block .footer-1 .footer-11 .social-icons ul {
  font-size: 0;
}

.footer-block .footer-1 .footer-11 .social-icons li {
  display: inline-block;
  vertical-align: middle;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  margin-right: 14px;
}

.footer-block .footer-1 .footer-11 .social-icons li a {
  display: block;
}

.footer-block .footer-1 .footer-11 .social-icons li:first-child {
  margin-left: 0;
}

.footer-block .footer-1 .footer-11 .social-icons li:last-child {
  margin-right: 0;
}

.footer-block .footer-1 .footer-11 .social-icons .icon-block-1 {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  padding: 5px;
  border-radius: 50%;
  border: 1px solid var(--light-grey-color);
  display: inline-block;
  vertical-align: top;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .footer-11 .social-icons .icon-block-1 i {
  font-size: 19px;
  line-height: 27px;
  color: var(--secondary-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  width: 27px;
  height: 27px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

.footer-block .footer-1 .footer-11 .social-icons .icon-block-1:hover i,
.footer-block .footer-1 .footer-11 .social-icons .icon-block-1:focus i {
  color: var(--highlight-color);
}

.footer-block .footer-1 .image-block-1 {
  max-width: 270px;
}

.footer-block .footer-1 .image-block-1 img {
  width: 100%;
}

.footer-block .footer-1 .list-block {
  border-top: 1px solid var(--light-grey-color);
}

.footer-block .footer-1 .list-block ul {
  text-align: center;
}

.footer-block .footer-1 .list-block ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px;
}

.footer-block .footer-1 .list-block ul li:first-child {
  margin-left: 0;
}

.footer-block .footer-1 .list-block ul li:last-child {
  margin-right: 0;
}

.footer-block .footer-1 .list-block a {
  display: block;
}

.footer-block .footer-1 .list-block p {
  color: var(--primary-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .list-block a:hover p,
.footer-block .footer-1 .list-block a:focus p,
.footer-block .footer-1 .list-block a:active p {
  color: var(--highlight-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .list-block ul li.active p {
  color: var(--highlight-color);
  font-weight: 600;
}

.footer-block .footer-1 .contact-links {
  display: inline-block;
  vertical-align: middle;
  width: 55%;
  padding-left: 2%;
}

.footer-block .footer-1 .contact-links ul {
  font-size: 0;
}

.footer-block .footer-1 .contact-links ul li {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .contact-links ul li a {
  display: block;
}

.footer-block .footer-1 .contact-links ul li:first-child {
  margin-left: 0;
}

.footer-block .footer-1 .contact-links ul li:last-child {
  margin-right: 0;
}

.footer-block .footer-1 .contact-links .icon-block-1 {
  padding: 15px 17px;
  border: 1px solid var(--light-grey-color);
  border-radius: 50%;
  display: inline-block;
  vertical-align: top;
  margin-right: 24px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .contact-links .icon-block-1.mail {
  padding: 17px;
}

.footer-block .footer-1 .contact-links .icon-block-1 i {
  line-height: 1em;
  color: var(--secondary-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-1 .contact-links .content-block {
  display: inline-block;
  vertical-align: top;
}

.footer-block .footer-1 .contact-links .text-block-2 p {
  text-align: left;
  color: var(--highlight-color);
  font-weight: 600;
}

.footer-block .footer-1 .contact-links .text-block-3 p {
  color: var(--primary-color);
  font-weight: 400;
}

.footer-block .footer-1 .text-block-1 {
  display: inline-block;
  vertical-align: middle;
  width: 40%;
  padding-right: 2%;
  border-right: 1px solid var(--light-grey-color);
}

.footer-block .footer-1 .text-block-1 p {
  color: var(--primary-color);
}

.footer-block .footer-1 .contact-links ul li:hover .icon-block-1 i,
.footer-block .footer-1 .contact-links ul li:focus .icon-block-1 i,
.footer-block .footer-1 .contact-links ul li:active .icon-block-1 i {
  color: var(--highlight-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-2 {
  background: var(--secondary-color);
}

.footer-block .footer-2 .text-block-2 {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  padding-right: 2%;
}

.footer-block .footer-2 .text-block-2 span {
  margin-right: 4px;
}

.footer-block .footer-2 .text-block-2 span i {
  line-height: 1em;
  color: var(--white-color);
}

.footer-block .footer-2 .text-block-2 p {
  color: var(--white-color);
}

.footer-block .footer-2 .text-block-3 {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  padding-left: 2%;
}

.footer-block .footer-2 .text-block-3 p {
  color: var(--white-color);
  text-align: right;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-2 .text-block-3 p:hover a,
.footer-block .footer-2 .text-block-3 p:active a,
.footer-block .footer-2 .text-block-3 p:focus a {
  color: var(--highlight-color);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

/* Main Content */

/* Home */

.home .block-1 {
  background-color: var(--bg-color-secondary);
  font-size: 0;
  margin-left: auto;
  margin-right: auto;
}

.home .block-1 .block-11 {
  display: inline-block;
  vertical-align: middle;
  width: 58%;
  padding-right: 2%;
}

.home .block-1 .block-12 {
  display: inline-block;
  vertical-align: middle;
  width: 38%;
  padding-left: 2%;
}

.home .block-1 .btn-container {
  display: inline-block;
  position: relative;
}

.home .block-1 .btn-block {
  display: inline-block;
}

.home .block-1 .btn-block.black {
  margin-right: 24px;
}

.home .block-1 .btn-block a {
  background-color: var(--highlight-color);
  color: var(--white-color);
  text-align: center;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 7px;
}

.home .block-1 .btn-block.black a {
  background-color: var(--primary-color);
}

.home .block-1 .head-block-1 {
  position: relative;
}

.home .block-1 .head-block-1 h1 {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.home .block-1 .floating-block.float-1 {
  top: -60px;
  left: -50px;
  width: 80px;
}

.home .block-1 .floating-block.float-2 {
  top: 5px;
  right: -232px;
  width: 150px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(23deg);
}

.home .block-1 .text-block-1 p,
.home .block-1 .text-block-1 p span {
  color: var(--primary-color);
  font-weight: 800;
}

.home .block-1 .text-block-1 p span {
  color: var(--secondary-color);
}

.home .block-1 .text-block-2 p {
  color: var(--primary-color);
  font-weight: 500;
  text-align: justify;
}

.home .block-1 .image-block {
  max-width: 400px;
  margin: 0 auto;
}

.home .block-1 .image-block img {
  width: 100%;
}

.home .block-2 .inner-container {
  padding: 0;
  font-size: 0;
}

.home .block-2 .head-block-1 h1 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.home .block-2 .text-block-1 p,
.home .block-2 .text-block-1 p span {
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
}

.home .block-2 .text-block-1 p span {
  color: var(--secondary-color);
}

.home .block-2 .text-block-2 {
  max-width: 1080px;
  margin: 0 auto;
}

.home .block-2 .text-block-2 p {
  color: var(--primary-color);
  text-align: left;
  font-weight: 700;
  text-align: justify;
}

.home .block-2 .text-block-3 {
  max-width: 1080px;
  margin: 0 auto;
}

.home .block-2 .text-block-3 p {
  color: var(--primary-color);
  text-align: left;
  font-weight: 400;
  text-align: justify;
}

.home .block-2 .block-21 {
  position: relative;
}

.home .block-2 .block-23 {
  text-align: center;
  font-size: 0;
}

.home .block-2 .block-23 .block {
  display: inline-block;
  width: 21%;
  padding-left: 2%;
  padding-right: 2%;
}

.home .block-2 .block-23 .block .icon-block {
  height: 110px;
  margin: 0 auto;
}

.home .block-2 .block-23 .block .icon-block img {
  height: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-2 .block-23 .block .head-block-2 h2 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-2 .link-block {
  text-align: center;
}

.home .block-2 .link-block a {
  display: inline-block;
}

.home .block-2 .link-block a p {
  display: inline-block;
  vertical-align: middle;
  color: var(--secondary-color);
  font-weight: 700;
}

.home .block-2 .link-block a .icon-block {
  display: inline-block;
  width: 24px;
  vertical-align: middle;
  margin-left: 14px;
}

.home .block-2 .link-block a .icon-block img {
  width: 100%;
}

.home .block-2 .floating-block.float-1 {
  top: -54px;
  right: 130px;
  width: 120px;
}

.home .block-2 .floating-block.float-2 {
  top: 64px;
  left: 60px;
  width: 30px;
}

.home .block-3 {
  background-color: var(--bg-color-secondary);
}

.home .block-3 .inner-container {
  padding-left: 0;
  padding-right: 0;
}

.home .block-3 .head-block-1 h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.home .block-3 .text-block-1 {
  position: relative;
}

.home .block-3 .text-block-1 p,
.home .block-3 .text-block-1 p span {
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
}

.home .block-3 .text-block-1 p span {
  color: var(--secondary-color);
}

.home .block-3 .text-block-2 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.home .block-3 .text-block-2 p {
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
}

.home .block-3 .block-31 {
  text-align: center;
  font-size: 0;
}

.home .block-3 .block-31 .block {
  display: inline-block;
  width: 29.33%;
  padding-left: 2%;
  padding-right: 2%;
  vertical-align: top;
}

.home .block-3 .block-31 .block a {
  display: block;
}

.home .block-3 .block-31 .block a .image-block {
  border-radius: 10px;
  overflow: hidden;
}

.home .block-3 .block-31 .block a .image-block img {
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-3 .block-31 .block a:hover .image-block img,
.home .block-3 .block-31 .block a:focus .image-block img {
  scale: 1.05;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-3 .block-31 .block a .head-block-2 h3 {
  color: var(--secondary-color);
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-3 .block-31 .block a:hover .head-block-2 h3,
.home .block-3 .block-31 .block a:focus .head-highlight-2 h3 {
  color: var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-3 .block-31 .block a .text-block-3 p {
  color: var(--primary-color);
  font-weight: 400;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-3 .floating-block.float-1 {
  top: -70px;
  right: 140px;
  width: 89px;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(57deg);
}

.home .block-4 {
  position: relative;
}

.home .block-4 .inner-container {
  padding: 0;
  font-size: 0;
}

.home .block-4 .head-block-1 {
  padding-left: 2%;
  padding-right: 2%;
}

.home .block-4 .head-block-1 h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.home .block-4 .text-block-1 p {
  color: var(--primary-color);
  text-align: center;
  font-weight: 900;
}

.home .block-4 .text-block-1 p span {
  color: var(--secondary-color);
  font-weight: 700;
}

.home .block-4 .block-41 {
  font-size: 0;
  text-align: center;
}

.home .block-4 .block-41 .list-block {
  display: inline-block;
  width: 46%;
  padding-left: 2%;
  padding-right: 2%;
}

.home .block-4 .block-41 .list-block .inner {
  border-radius: 10px;
  padding: 24px;
  box-shadow: 1px 2px 10px -7px var(--primary-color);
}

.home .block-4 .text-block-2 {
  max-width: 1080px;
  padding-left: 2%;
  padding-right: 2%;
  margin: 0 auto;
}

.home .block-4 .text-block-2 p {
  color: var(--primary-color);
  text-align: justify;
  font-weight: 400;
  text-align: left;
}

.home .block-4 .text-block-3 {
  display: inline-block;
  vertical-align: middle;
}

.home .block-4 .text-block-3 p {
  color: var(--secondary-color);
  font-weight: 700;
  text-align: left;
}

.home .block-4 .text-block-4 p {
  color: var(--primary-color);
  font-weight: 400;
  text-align: left;
}

.home .block-5 {
  background-color: var(--bg-color-secondary);
}

.home .block-5 .inner-container {
  padding-left: 0;
  padding-right: 0;
}

.home .block-5 .head-block-1 h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.home .block-5 .text-block-1 p,
.home .block-5 .text-block-1 p span {
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
}

.home .block-5 .text-block-1 p span {
  color: var(--secondary-color);
}

.home .block-5 .text-block-2 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.home .block-5 .text-block-2 p {
  color: var(--primary-color);
  text-align: justify;
  font-weight: 400;
}

.home .block-5 .divider-block {
  width: 20%;
  max-width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-left: auto;
  margin-right: auto;
}

.home .block-5 .block-51 {
  text-align: center;
  font-size: 0;
}

.home .block-5 .block-51 .block {
  display: inline-block;
  width: 29.33%;
  padding-left: 2%;
  padding-right: 2%;
  vertical-align: top;
}

.home .block-5 .block-51 .block a {
  display: block;
}

.home .block-5 .block-51 .block a .image-block {
  border-radius: 10px;
  overflow: hidden;
}

.home .block-5 .block-51 .block a .image-block img {
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-5 .block-51 .block a:hover .image-block img,
.home .block-5 .block-51 .block a:focus .image-block img {
  scale: 1.05;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-5 .block-51 .block a .head-block-2 h3 {
  color: var(--secondary-color);
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-5 .block-51 .block a:hover .head-block-2 h3,
.home .block-5 .block-51 .block a:focus .head-highlight-2 h3 {
  color: var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-5 .block-51 .block a .text-block-3 p {
  color: var(--primary-color);
  font-weight: 400;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}



.home .block-6 {
  background: url("../images/backgrounds/wave-white-3.png") no-repeat 90% 70%,
    var(--secondary-color);
}

.home .block-6 .inner-container {
  font-size: 0;
}

.home .block-6 .block-61 {
  display: inline-block;
  width: 60%;
  padding-right: 5%;
  vertical-align: middle;
}

.home .block-6 .block-62 {
  display: inline-block;
  width: 35%;
  vertical-align: middle;
}

.home .block-6 .head-block-1 h2 {
  color: var(--white-color);
  font-weight: 700;
  text-align: right;
}

.home .block-6 .text-block-1 p {
  color: var(--white-color);
  font-weight: 700;
  text-align: right;
}

.home .block-6 .button-block a {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 7px;
  background: var(--white-color);
  color: var(--black-color);
  font-weight: 700;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.home .block-6 .button-block a:hover,
.home .block-6 .button-block a:focus {
  color: var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* About Us Page */

.aboutus .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}

.aboutus .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.aboutus .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.aboutus .block-2 .text-block-1 {
  position: relative;
}

.aboutus .block-2 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.aboutus .block-2 .text-block-1 p span {
  color: var(--primary-color);
  font-weight: 700;
}

.aboutus .block-2 .image-block {
  float: right;
  width: 38%;
  max-width: 470px;
  padding-left: 4%;
  position: relative;
}

.aboutus .block-2 .image-block > img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.aboutus .block-2 .image-block .icon-block-1 {
  position: absolute;
  width: 100px;
  bottom: -10%;
  right: 10%;
}

.aboutus .block-2 .image-block .icon-block-1 img {
  width: 100%;
}

.aboutus .block-2 .icon-block-2 {
  position: absolute;
  width: 40px;
  left: -5%;
  top: -13%;
}

.aboutus .block-2 .icon-block-2 img {
  width: 100%;
}

.aboutus .block-3 .block-31 {
  font-size: 0;
  text-align: center;
}

.aboutus .block-3 .icon-block {
  width: 13%;
  max-width: 70px;
  display: inline-block;
  vertical-align: top;
  margin-right: 2%;
}

.aboutus .block-3 .icon-block img {
  width: 100%;
}

.aboutus .block-3 .head-block-1 {
  display: inline-block;
  width: 13%;
  vertical-align: top;
  font-size: 0;
}

.aboutus .block-3 .head-block-1 h2,
.aboutus .block-3 .head-block-1 h2 span {
  color: var(--primary-color);
  text-align: left;
  font-weight: 900;
  vertical-align: middle;
}

.aboutus .block-3 .head-block-1 h2 span {
  color: var(--highlight-color);
}

.aboutus .block-3 .text-block-1 {
  display: inline-block;
  width: 73%;
  padding-left: 2%;
  vertical-align: top;
}

.aboutus .block-3 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.aboutus .block-4 {
  background: var(--secondary-color);
  background: url("../images/backgrounds/wave-white-1.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-2.png") no-repeat right top,
    var(--secondary-color);
}

.aboutus .block-4 .text-block-1 p {
  color: var(--white-color);
  font-weight: 900;
  font-style: italic;
  text-align: center;
}

.aboutus .block-4 .text-block-1 p span {
  color: var(--white-color);
  font-style: italic;
  font-weight: 900;
}

.aboutus .block-4 .text-block-2 p {
  color: var(--white-color);
  font-weight: 900;
  text-align: center;
}

.aboutus .block-5 .inner-container {
  padding-left: 0;
  padding-right: 0;
}

.aboutus .block-5 .head-block-1 h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.aboutus .block-5 .text-block-1 p,
.aboutus .block-5 .text-block-1 p span {
  color: var(--primary-color);
  text-align: center;
  font-weight: 400;
}

.aboutus .block-5 .text-block-1 p span {
  color: var(--secondary-color);
}

.aboutus .block-5 .inner-container {
  font-size: 0;
  padding: 0;
}

.aboutus .block-5 .block {
  display: inline-block;
  vertical-align: top;
  width: 46%;
  padding-right: 2%;
  padding-left: 2%;
}

.aboutus .block-5 .block .block-21 .image-block-1 {
  position: relative;
  max-width: 270px;
  margin: 0 auto;
}

.aboutus .block-5 .block .block-21 .image-block-1::before {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 100px;
  height: 100px;
  content: "";
  border-top: 4px solid var(--secondary-color);
  border-left: 2px solid var(--secondary-color);
  border-top-left-radius: 18px;
}

.aboutus .block-5 .block .block-21 .image-block-1::after {
  border-right: 4px solid var(--secondary-color);
  right: -15px;
  border-bottom: 2px solid var(--secondary-color);
  bottom: -15px;
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border-bottom-right-radius: 18px;
}

.aboutus .block-5 .block .image-block-1 img {
  width: 100%;
  border-radius: 10px;
}

.aboutus .block-5 .block .head-block-1 h2 {
  font-weight: 700;
  text-align: center;
}

.aboutus .block-5 .block .text-block-1 {
	max-width: 420px;
	margin: 0 auto;
}

.aboutus .block-5 .block .text-block-1 p {
  text-align: justify;
}

.aboutus .block-5 .block .text-block-2 p {
  text-align: justify;
}

.aboutus .block-5 .block .modal-body{
	display: none;
}


/* Service List Page */

.servicelist .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}

.servicelist .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.servicelist .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.servicelist .block-2 .text-block-1 {
  max-width: 1080px;
  margin: 0 auto;
}

.servicelist .block-2 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.servicelist .block-2 .text-block-1 p span {
  color: var(--primary-color);
  font-weight: 700;
}

.servicelist .block-3 .inner-container {
  padding-left: 0;
  padding-right: 0;
}

.servicelist .block-3 .block-31 {
  text-align: center;
  font-size: 0;
}

.servicelist .block-3 .block-31 .block {
  display: inline-block;
  width: 29.33%;
  padding-left: 2%;
  padding-right: 2%;
  vertical-align: top;
}

.servicelist .block-3 .block-31 .block a {
  display: block;
}

.servicelist .block-3 .block-31 .block a .image-block {
  overflow: hidden;
  border-radius: 10px;
}

.servicelist .block-3 .block-31 .block a .image-block img {
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.servicelist .block-3 .block-31 .block a:hover .image-block img,
.servicelist .block-3 .block-31 .block a:focus .image-block img {
  scale: 1.05;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.servicelist .block-3 .block-31 .block a .head-block-2 h3 {
  color: var(--secondary-color);
  font-weight: 900;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.servicelist .block-3 .block-31 .block a:hover .head-block-2 h3,
.servicelist .block-3 .block-31 .block a:focus .head-highlight-2 h3 {
  color: var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.servicelist .block-3 .block-31 .block a .text-block-3 p {
  color: var(--primary-color);
  font-weight: 400;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}


/* Service Page */


.service .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}

.service .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.service .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.service .block-2{}

.service .block-2 .inner-container{
}

.service .block-2 .block{
	font-size: 0;
}

.service .block-2 .block-21{
	display: inline-block;
	vertical-align: top;
	width: 36%;
	max-width: 270px;
	margin-right: 4%;
}

.service .block-2 .block-22{
	display: inline-block;
	vertical-align: top;
	width: 60%;
}

.service .block-2 .image-block{
	border-radius: 10px;
	overflow: hidden;
}

.service .block-2 .image-block img{
	width: 100%;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;	
}

.service .block-2 .image-block:hover img,
.service .block-2 .image-block:focus img{
	scale: 1.05;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;	
}

.service .block-2 .content-block{
	display: none;
}

.service .block-2 .head-block-1 h2{
	font-weight: 700;
	text-align: left;
}

.service .block-2 .text-block-1 p{
	font-weight: 500;
	text-align: left;
}

.service .block-2 .text-block-2 p{
	font-weight: 400;
	text-align: justify;
}

.service .block-2 .link-block{
	display: inline-block;
	cursor: pointer;
}

.service .block-2 .link-block p{
	text-align: left;
	font-weight: 500;
	color: var(--highlight-color);
}

.service .block-2 .list-block{
	font-size: 0;
	text-align: left;
	overflow: hidden;
}

.service .block-2 .list-block li{
	width: 48%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
	list-style-type: bullet;
	padding-left: 24px;
	position: relative;
	box-sizing: border-box;
}

.service .block-2 .list-block li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}


.service .block-3{}

.service .block-3 .inner-container{
	padding: 0;
	text-align: left;
	font-size: 0;
}

.service .block-3 .list-block {
  display: inline-block;
  vertical-align: top;
  width: 46%;
  padding-left: 2%;
  padding-right: 2%;
}

.service .block-3 .list-block .inner {
  border-radius: 10px;
  padding: 24px;
  box-shadow: 1px 2px 10px -7px var(--primary-color);
}

.service .block-3 .head-block-1 h2{
	font-weight: 700;
	text-align: left;
	color: var(--secondary-color);
}

.service .block-3 .text-block-1 p{
	font-weight: 400;
	text-align: justify;
}

.service .block-3 .text-block-2 p{
	font-weight: 600;
	text-align: center;
}



/* Clients Page */

.clients .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}
.clients .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.clients .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.clients .block-2 .text-block-1 {
  max-width: 1080px;
  margin: 0 auto;
}

.clients .block-2 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.clients .block-2 .text-block-1 p span {
  color: var(--primary-color);
  font-weight: 700;
}

.clients .block-3 .inner-container {
  padding-left: 0;
  padding-right: 0;
}

.clients .block-3 .block-31 {
  text-align: center;
  font-size: 0;
}

.clients .block-3 .block-31 .block {
  display: inline-block;
  width: 16%;
  padding-left: 2%;
  padding-right: 2%;
  vertical-align: top;
}

.clients .block-3 .block-31 .block .image-block {
  border: 3px solid var(--highlight-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
}

.clients .block-3 .block-31 .block .image-block img {
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.clients .block-3 .block-31 .block .head-block-2 h3 {
  color: var(--secondary-color);
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* Our Verticals Page */

.ourverticals .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}

.ourverticals .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.ourverticals .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.ourverticals .block-2 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.ourverticals .block-2 .text-block-1 p span {
  color: var(--secondary-color);
  font-weight: 700;
}

.ourverticals .block-2 .image-block {
  float: right;
  width: 32%;
  max-width: 470px;
  padding-left: 4%;
  position: relative;
}

.ourverticals .block-2 .image-block > img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.ourverticals .block-2 .image-block .icon-block-1 {
  position: absolute;
  width: 84px;
  top: -6%;
  right: -9%;
}

.ourverticals .block-2 .image-block .icon-block-1 img {
  width: 100%;
}

/* Contactus */

.contactus .block-1 {
  background: url("../images/backgrounds/wave-white-5.png") no-repeat left
      bottom,
    url("../images/backgrounds/wave-white-6.png") no-repeat right top,
    var(--secondary-color);
}
.contactus .block-1 .head-block-1 h1 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.contactus .block-1 .text-block-1 p {
  color: var(--white-color);
  text-align: center;
  font-weight: 900;
}

.contactus .block-2 .text-block-1 {
  max-width: 1080px;
  margin: 0 auto;
}

.contactus .block-2 .text-block-1 p {
  color: var(--primary-color);
  text-align: justify;
}

.clients .block-2 .text-block-1 p span {
  color: var(--primary-color);
  font-weight: 700;
}

.contactus .block-3 .inner-container {
  padding: 0;
  font-size: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.contactus .block-3 .head-block-1 h2,
.contactus .block-3 .head-block-1 h2 {
  color: var(--highlight-color);
  text-align: left;
  font-weight: 900;
}

.contactus .block-3 .block-32 {
  display: inline-block;
  vertical-align: top;
  width: 41%;
  padding-left: 2%;
  padding-right: 2%;
}

.contactus .block-3 .block-32 .block .icon-block {
  display: inline-block;
  vertical-align: top;
  padding-right: 14px;
}

.contactus .block-3 .block-32 .block .icon-block i {
  color: var(--secondary-color);
  font-size: var(--p1-size);
  line-height: var(--p3-line);
}

.contactus .block-3 .block-32 .block .text-block-1,
.contactus .block-3 .block-32 .block .link-block-2 {
  display: inline-block;
  vertical-align: top;
}

.contactus .block-3 .block-32 .block .detail-block .text-block p {
  text-align: left;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .block-32 .block .link-block-1 a {
  color: var(--highlight-color);
}

.contactus .block-3 .block-32 .block .link-block-1 a:hover,
.contactus .block-3 .block-32 .block .link-block-1 a:focus,
.contactus .block-3 .block-32 .block .link-block-2 a:hover,
.contactus .block-3 .block-32 .block .link-block-2 a:focus {
  text-decoration: underline;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .block-31 {
  display: inline-block;
  vertical-align: top;
  width: 51%;
  padding-left: 2%;
  padding-right: 2%;
}

.contactus .block-3 .block-31 .text-block-1 p {
  color: var(--primary-color);
  font-weight: 500;
}

.contactus .block-3 .block-31 .form-block input[type="text"] {
  display: block;
  width: 100%;
  border: 1px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  border-radius: 4px;
  outline: none;
  color: var(--primary-color);
  text-align: left;
  padding: 10px 10px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .form-block input[type="text"]:hover,
.contactus .block-3 .form-block input[type="text"]:focus {
  box-shadow: 1px 1px 2px 0 var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .block-31 .form-block textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  border-radius: 4px;
  outline: none;
  color: var(--primary-color);
  text-align: left;
  padding: 7px;
  height: 112px;
  resize: vertical;
}

.contactus .block-3 .block-31 .form-block textarea:hover,
.contactus .block-3 .block-31 .form-block textarea:focus {
  box-shadow: 1px 1px 2px 0 var(--highlight-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .block-31 .form-block input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 170px;
  border-radius: 7px;
  background: var(--highlight-color);
  text-align: center;
  padding: 14px;
  cursor: pointer;
  color: var(--white-color);
  font-weight: bold;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-3 .block-31 .form-block input[type="submit"]:hover,
.contactus .block-3 .block-31 .form-block input[type="submit"]:focus {
  color: var(--white-color);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
