* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

a {
  background: transparent;
  color: #428bca;
  outline: 0 !important;
  text-decoration: none;
}

a:hover {
  background: transparent;
  color: #2a6496;
  outline: 0 !important;
  text-decoration: underline;
}

a:active {
  background: transparent;
  color: #2a6496;
  outline: 0 !important;
  text-decoration: underline;
}

a:focus {
  color: #2a6496;
  outline: thin dotted;
  outline-offset: -2px;
  text-decoration: underline;
}

a:visited {
  color: #2a6496;
  outline: thin dotted;
  outline-offset: -2px;
  text-decoration: underline;
}

body {
  background-color: #ffffff;
  color: #1c1c1c;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}

button {
  -webkit-appearance: button;
  cursor: pointer;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  text-transform: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

figure {
  display: block;
  margin: 0;
}

footer {
  display: block;
}

h1 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 20px 0 10px 0;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 20px 0 10px 0;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
}

h4 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 18px;
  margin: 10px 0 10px 0;
}

h5 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 14px;
  margin: 10px 0 10px 0;
}

h6 {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 12px;
  margin: 10px 0 10px 0;
}

header {
  display: block;
}

hr {
  border-top: 1px solid #eeeeee;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}

html {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  max-width: 100%;
}

input {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 100%;
  line-height: normal;
  margin: 0;
}

input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

nav {
  display: block;
}

p {
  line-height: 1.8em;
  margin: 0 0 10px;
}

section {
  display: block;
}

strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  overflow: auto;
  vertical-align: top;
}

textarea.form-control {
  height: auto;
}

ul {
  margin-bottom: 10px;
  margin-top: 0;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -ms-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.business-talking {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0 10px;
}

.clearfix:before {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

.clearfix:after {
  clear: both;
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  width: 0;
}

.client {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  text-align: left;
}

.client li {
  display: inline;
  margin: 0 15px;
}

.client li a {
  display: inline-block;
}

.client li a img {
  border-radius: 50%;
  margin-bottom: 15px;
}

.client li a:hover {
  text-decoration: none;
}

.client li a h3 {
  color: #ffffff;
}

.client li a span {
  color: #f1f1f1;
}

.contact-info-box {
  font-size: 15px;
  margin: 0 0 14px 68px;
  padding-left: 0;
}

.contact-info-box h3 {
  float: left;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-right: 12px;
  width: 102px;
}

.contact-info-box h3 i {
  color: #222222;
  font-family: "FontAwesome", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  margin-right: 7px;
}

.contact-info-box span {
  display: block;
  line-height: 28px;
  overflow: hidden;
}

.copyright {
  color: #cccccc;
  display: block;
  font-size: 14px;
  text-align: center;
}

.credits {
  color: #cccccc;
  display: block;
  font-size: 14px;
  text-align: center;
}

.copyright a {
  color: #e80000;
  font-weight: 600;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.copyright a:hover {
  color: #ffffff;
}

.credits a {
  color: #e80000;
  font-weight: 600;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.credits a:hover {
  color: #ffffff;
}

.delay-02s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-04s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-07s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fc-light {
  color: #b6b6b6;
}

.footer {
  background-color: #000000;
  padding: 35px 0 35px;
}

.footer-logo {
  margin: 15px auto 35px;
  width: 76px;
}

.form {
  margin: 0 66px 0 30px;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #1c1c1c;
  font-size: 14px;
  height: 34px;
  padding: 6px 12px;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  vertical-align: middle;
}

.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.header {
  background-color: #000000;
  height: 100vh;
  padding: 80px 0;
  text-align: center;
}

.logo {
  margin: 0 auto 35px;
  width: 300px;
}

.header h1 {
  color: #ffffff;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: -10px 0 22px 0;
}

.input-btn {
  background: #e80000;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 175px;
}

.input-btn:hover {
  background: #111111;
  color: #ffffff;
}

.link {
  background: #8e0000;
  border-radius: 3px;
  color: #ffffff !important;
  display: inline-block;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
  padding: 15px 35px;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.link:hover {
  background: #ffffff;
  color: #8e0000 !important;
  text-decoration: none;
}

.link:active {
  background: #8e0000;
  color: #ffffff !important;
  text-decoration: none;
}

.link:focus {
  background: #8e0000;
  color: #ffffff !important;
  text-decoration: none;
}

.main-nav-outer {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 4px 5px -3px #ececec;
  padding: 0;
  position: relative;
}

.main-nav {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.main-nav li {
  display: inline;
  margin: 0 1px;
}

.main-nav li a {
  color: #222222;
  display: inline-block;
  font-family: "Montserrat", "Open Sans", sans-serif;
  line-height: 20px;
  margin: 17px 32px;
  text-decoration: none;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-nav li a:hover {
  color: #8e0000;
  text-decoration: none;
}

.small-logo {
  padding: 0 32px;
}

.main-section {
  padding: 90px 0 110px;
}

.pt-30 {
  padding-top: 30px;
}

.res-nav_click {
  color: #777777;
  display: none;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 38px;
  font-style: normal;
  height: 27px;
  line-height: 38px;
  margin: 20px auto;
  text-decoration: none !important;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 42px;
}

.res-nav_click:hover {
  color: #7cc576 !important;
}

.res-nav_click:active {
  color: #7cc576 !important;
}

.res-nav_click:focus {
  color: #7cc576 !important;
}

.service-list {
  font-size: 14px;
  margin-bottom: 5px;
  padding: 0 0 0 0;
}

.service-list-col1 {
  float: left;
  width: 60px;
}

.service-list-col1 i {
  color: #222222;
  display: block;
  font-family: "FontAwesome", sans-serif;
  font-size: 38px;
  font-style: normal;
  line-height: 38px;
  margin: 20px 0 5px 0;
}

.service-list-col2 {
  overflow: hidden;
}

.input-text {
  border: 1px solid #cccccc;
  border-radius: 4px;
  color: #aaaaaa;
  display: block;
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-size: 15px;
  height: 50px;
  margin: 0 0 15px 0;
  padding: 15px 16px;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.input-text:focus {
  border: 1px solid #7cc576;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124, 197, 118, 0.3);
  outline: 0;
}

.input-text.text-area {
  height: 165px;
  overflow: auto;
  resize: none;
}

.header-red-line {
  border: 3px solid #8e0000;
  border-radius: 3px;
  opacity: 1;
  width: 80px;
}

.form-group {
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  .service-list {
    margin-bottom: 10px;
  }

  .form {
    margin: 0 0 0 20px;
  }

  .main-nav {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 14px;
  }

  h6 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  p {
    line-height: 18px;
  }

  .service-list {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .header h1 {
    font-size: 28px;
  }

  .header {
    padding: 60px 0;
  }

  .main-section {
    padding: 60px 0 70px;
  }

  .main-nav {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    display: none;
    float: none;
    left: 0;
    margin: 0 auto;
    position: absolute;
    top: 68px;
    width: 100%;
    z-index: 99;
  }

  .main-nav li {
    display: block;
  }

  .main-nav li.small-logo {
    display: none;
  }

  .main-nav li a {
    border-bottom: 1px solid #f3f3f3;;
    display: block;
    margin: 4px 0;
    padding: 12px 32px;
  }

  .main-nav li a:hover {
    color: #e80000;
  }

  .res-nav_click {
    display: block;
  }

  .contact-info-box {
    font-size: 12px;
    margin: 0 0 12px 30px;
  }

  .contact-info-box span {
    line-height: 18px;
  }

  .contact-info-box.phone span {
    padding-top: 6px;
  }

  .contact-info-box.email span {
    padding-top: 6px;
  }

  .form {
    margin: 0 30px;
  }

  .copyright {
    font-size: 12px;
  }

  .link {
    font-size: 14px;
    padding: 10px 25px;
  }

  .logo {
    width: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 13px;
  }

  p {
    line-height: 20px;
  }

  .header h1 {
    font-size: 46px;
  }

  .main-nav ul li a {
    padding: 14px;
  }

  .small-logo {
    padding: 0 20px;
  }

  h2 {
    font-size: 30px;
  }

  h6 {
    font-size: 16px;
  }

  h3 {
    font-size: 15px;
  }

  .service-list {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .featured-work p.padding-b {
    padding-bottom: 15px;
  }

  .main-section {
    padding: 70px 0;
  }

  .c-logo-part ul li {
    float: left;
    margin: 0 1%;
    width: 18%;
  }

  .c-logo-part ul li a {
    display: block;
  }

  .c-logo-part ul li a img {
    display: block;
  }

  .form {
    margin: 0;
  }

  .contact-info-box {
    margin: 0;
  }

  .social-link {
    margin: 0;
  }

  .main-nav {
    display: block !important;
  }

  .main-nav li a {
    padding: 8px 15px;
  }

}

@media only screen and (max-width: 479px) {
  .contact-info-box {
    margin-left: 0;
  }

  .header {
    padding: 40px;
  }

  .social-link {
    margin-left: 0;
  }

  .form {
    margin: 0;
  }

  .c-logo-part ul li {
    display: block;
  }
}

#sendmessage {
  color: #ffffff !important;
  display: none;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 15px;
  text-align: start;
}

#errormessage {
  color: #ff0000 !important;
  display: none;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 15px;
  text-align: start;
}

#sendmessage.show {
  display: block;
}

#errormessage.show {
  display: block;
}

.show {
  display: block;
}
