/* CSS Document */

/* Vendor */

/* Setup */

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =======================================================================
## ++ Media Queries
========================================================================== */

/* 
   voila ci dessus comment utiliser les queries
    $breaknum est un parametre qui se remplace par une var de breakpoint.scss 
    Eg.
   h1{
    width: cp(65px, 1000px);
    @include  responsive($bp-xlarge){
        background-color: #000;
    }
    @include  responsive($bp-large){
        background-color: #cc0000;
    }
}
*/

/* =======================================================================
## ++ Unit transform
========================================================================== */

/*  
    Used for making containers have width in percentages. 
    Usage: define elemnt width in px and the width of parent elemnt in px. 
    eg. .block{width:cp(512px, 1024px)} this will result in .block{width:50%;}   
*/

/*  
   utilser pour convertir px en em
    eg. h1{
    font-size: my_em(32);
 }
*/

/* =======================================================================
## ++ Globals
========================================================================== */

html {
  font-size: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

/* =======================================================================
## ++ Cleafix
========================================================================== */

/* float clearing for IE6 */

* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */

* + html .clearfix {
  min-height: 1%;
}

/* float clearing for everyone else */

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

.clr {
  clear: both;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

::-moz-placeholder {
  color: #AAAAAA;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #AAAAAA;
  opacity: 1;
}

::placeholder {
  color: #AAAAAA;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #AAAAAA;
}

::-ms-input-placeholder {
  color: #AAAAAA;
}

/*  parts */

header {
  width: 100%;
  min-height: 80px;
  height: auto;
  padding: 10px 0;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}

header .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

header .logo {
  text-align: center;
  font-weight: 700;
  font-size: 2.875em;
  position: relative;
  top: 0px;
  left: 49%;
  margin-left: 0%;
}

header .logo a {
  color: #FFCD00;
}

header .logo a img {
  display: block;
  width: auto !important;
  height: auto !important;
}

header .back {
  /*position: absolute;*/
  left: 3%;
  top: 28px;
  font-weight: 700;
  font-size: 1.125em;
}

@media screen and (max-width:600px) {
  header .back {
    left: 0;
    top: 80px;
    background-color: #21B7D4;
    line-height: 50px;
    width: 100%;
    text-align: center;
    display: none;
  }
}

header .back a {
  color: #21B7D4;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width:600px) {
  header .back a {
    color: #fff;
    text-decoration: none;
  }
}

header .back a:hover {
  color: #21D48F;
}

header .back_show {
  display: block;
}

header .tel_hold {
  /*position: absolute;*/
  right: 3%;
  width: 172px;
  height: 43px;
  background-color: #DFF2F5;
  color: #21B7D4;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  line-height: 43px;
  text-align: center;
  top: 16px;
  margin-left: auto;
  margin-right: 3%;
}

@media screen and (max-width:600px) {
  header .tel_hold {
    position: relative;
    top: 0;
    right: 0;
    left: 50%;
    margin-left: -86px;
    display: none;
  }
}

header .tel_hold span {
  margin-left: 10px;
  display: inline;
}

@media screen and (max-width:600px) {
  header .tel_hold span {
    display: none;
  }
}

header .tel_hold a {
  display: none;
  color: #21B7D4;
}

@media screen and (max-width:600px) {
  header .tel_hold a {
    display: inline;
  }
}

header .tel_hold img {
  position: relative;
  top: 4px;
  width: 14px;
}

header .tel_hold_show {
  display: block;
}

#nav-icon1 {
  width: 44px;
  height: 30px;
  position: absolute;
  left: 3%;
  top: 25px;
  /*position: relative;
  margin: 50px auto;*/
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 10;
}

@media screen and (max-width:600px) {
  #nav-icon1 {
    display: block;
  }
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #21B7D4;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.bodyform {
  background-color: #F2F6F7;
  padding-top: 70px;
  padding-bottom: 98px;
}

.bodyformdown {
  padding-top: 145px;
}

.image_hold {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width:600px) {
  .image_hold {
    margin-bottom: 20px;
  }
}

.image_hold img {
  width: 169px;
}

@media screen and (max-width:600px) {
  .image_hold img {
    width: 118px;
  }
}

.title_hold {
  text-align: center;
  font-size: 1.9375em;
  color: #4A4040;
  font-weight: 300;
}

@media screen and (max-width:600px) {
  .title_hold {
    font-size: 1.5em;
  }
}

.title_hold strong {
  font-size: 37px;
  font-weight: 700;
  display: block;
  margin-top: 7px;
}

@media screen and (max-width:600px) {
  .title_hold strong {
    font-size: 29px;
  }
}

.form_hold {
  margin: 50px auto 0;
  width: 90%;
  max-width: 580px;
  padding: 40px 28px;
  background-color: #FFF;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width:500px) {
  .form_hold {
    padding: 40px 11px;
  }
}

.error {
  color: #EF4848;
  font-size: 0.75em;
  margin-top: 10px;
  padding-left: 27px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.select_wrapper {
  width: 100%;
  background: #EAFCFF url(/images/icon-select.png?85a4741c680b19391c0eeb1b198db296) no-repeat 95% 50%;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  display: block;
  padding: 16px 25px;
  color: #707070;
}

.form_group {
  margin-bottom: 24px;
}

.form_group header {
  height: auto;
}

.form_group input {
  width: 100%;
  height: 46px;
  background-color: #EAFCFF;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  display: block;
  border: none;
  padding: 0 25px;
  color: #707070;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width:600px) {
  .form_group input {
    height: 39px;
    font-size: 0.75em;
  }
}

.form_group select {
  border: none;
  box-shadow: none;
  background: transparent;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #AAAAAA;
  cursor: pointer;
}

@media screen and (max-width:600px) {
  .form_group select {
    font-size: 0.75em;
  }
}

.form_group textarea {
  width: 100% !important;
  height: 180px !important;
  background-color: #EAFCFF;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  display: block;
  border: none;
  padding: 20px 25px;
  color: #707070;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width:600px) {
  .form_group textarea {
    font-size: 0.75em;
  }
}

.piece_title {
  text-align: center;
  font-size: 1.5em;
  color: #21B7D4;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width:600px) {
  .piece_title {
    font-size: 1.125em;
  }
}

.quantite_file {
  text-align: center;
  font-size: 0.875em;
  color: #707070;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-top: 8px;
}

@media screen and (max-width:600px) {
  .quantite_file {
    font-size: 0.75em;
  }
}

.form_group_file {
  margin-top: 28px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  /*.input-file:hover + .input-file-trigger,
  .js .input-file:focus + .input-file-trigger,
  .js .input-file-trigger:hover,
  .js .input-file-trigger:focus {
  	background: #34495E;
  	color: #39D2B4;
  }

  .file-return {
  	margin: 0;
  }
  .file-return:not(:empty) {
  	margin: 1em 0;
  }
  .file-return {
  	font-style: italic;
  	font-size: .9em;
  	font-weight: bold;
  }
  .file-return:not(:empty):before {
  	content: "Selected file: ";
  	font-style: normal;
  	font-weight: normal;
  }*/
}

.form_group_file .input-file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  padding: 14px 0;
  cursor: pointer;
}

.form_group_file .input-file-trigger {
  display: block;
  padding: 14px 45px;
  background: #39D2B4;
  color: #fff;
  font-size: 1em;
  transition: all 0.4s;
  cursor: pointer;
}

.form_group_file .custum_hold .ic_hold {
  float: left;
  width: 37px;
  height: 46px;
  background-color: #21B7D4;
  text-align: center;
  line-height: 56px;
  border-top-left-radius: 999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 999px;
  -webkit-border-top-left-radius: 999px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 999px;
  -moz-border-radius-topleft: 999px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 999px;
}

@media screen and (max-width:600px) {
  .form_group_file .custum_hold .ic_hold {
    width: 8%;
    height: 39px;
    line-height: 41px;
  }
}

.form_group_file .custum_hold .ic_hold img {
  width: 18px;
}

@media screen and (max-width:600px) {
  .form_group_file .custum_hold .ic_hold img {
    width: 12px;
  }
}

.form_group_file .custum_hold .text_holder {
  float: left;
  width: 70%;
  height: 46px;
  color: #707070;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #EAFCFF;
  line-height: 46px;
  padding-left: 15px;
  overflow: hidden;
}

@media screen and (max-width:600px) {
  .form_group_file .custum_hold .text_holder {
    height: 39px;
    line-height: 39px;
    font-size: 0.75em;
  }
}

.form_group_file .custum_hold .btn {
  float: left;
  width: 22%;
  height: 46px;
  color: #fff;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #21B7D4;
  line-height: 46px;
  text-align: center;
  border-top-left-radius: 0;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 999px;
  -webkit-border-bottom-right-radius: 999px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 999px;
  -moz-border-radius-bottomright: 999px;
  -moz-border-radius-bottomleft: 0;
}

@media screen and (max-width:600px) {
  .form_group_file .custum_hold .btn {
    font-size: 0.75em;
    height: 39px;
    line-height: 39px;
  }
}

.form_sub {
  text-align: right;
}

@media screen and (max-width:600px) {
  .form_sub {
    text-align: center;
  }
}

.form_sub input {
  width: 192px;
  height: 47px;
  background-color: #21D48F;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  color: #fff;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.form_sub input:hover {
  background-color: #21B7D4;
}

.success_mess_hold {
  min-height: 800px;
}

.message_body {
  margin: 50px auto 0;
  width: 90%;
  max-width: 580px;
  padding: 40px 28px;
  background-color: #FFF;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width:600px) {
  .message_body {
    padding: 40px 11px;
  }
}

.mess_title {
  font-size: 1.3125em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 52px;
}

@media screen and (max-width:600px) {
  .mess_title {
    font-size: 1.125em;
  }
}

.mess_success {
  color: #8DE5C3;
}

.success_icholder {
  background-color: #21D48F;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width:600px) {
  .success_icholder {
    width: 80px;
    height: 80px;
  }
}

.success_icholder img {
  position: relative;
  top: 20px;
}

@media screen and (max-width:600px) {
  .success_icholder img {
    top: 13px;
    width: 39px;
  }
}

.back_btn {
  text-align: center;
  margin-top: 65px;
}

.back_btn a {
  width: 192px;
  height: 47px;
  display: inline-block;
  background-color: #21B7D4;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  color: #fff;
  font-size: 1.1875em;
  line-height: 47px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.back_btn a:hover {
  background-color: #21D48F;
}

.faild_mess_hold {
  min-height: 800px;
}

.mess_faild {
  color: #EF9696;
}

.faild_icholder {
  background-color: #EF4848;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width:600px) {
  .faild_icholder {
    width: 80px;
    height: 80px;
  }
}

.faild_icholder img {
  position: relative;
  top: 20px;
}

@media screen and (max-width:600px) {
  .faild_icholder img {
    top: 13px;
    width: 39px;
  }
}

.mess_wait {
  color: #21B7D4;
}

#circularG {
  position: relative;
  width: 128px;
  height: 128px;
  margin: auto;
}

.circularG {
  position: absolute;
  background-color: #21B7D4;
  width: 30px;
  height: 30px;
  border-radius: 19px;
  -o-border-radius: 19px;
  -ms-border-radius: 19px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
  animation-name: bounce_circularG;
  -o-animation-name: bounce_circularG;
  -ms-animation-name: bounce_circularG;
  -webkit-animation-name: bounce_circularG;
  -moz-animation-name: bounce_circularG;
  animation-duration: 1.1s;
  -o-animation-duration: 1.1s;
  -ms-animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  -moz-animation-duration: 1.1s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

#circularG_1 {
  left: 0;
  top: 51px;
  animation-delay: 0.41s;
  -o-animation-delay: 0.41s;
  -ms-animation-delay: 0.41s;
  -webkit-animation-delay: 0.41s;
  -moz-animation-delay: 0.41s;
}

#circularG_2 {
  left: 13px;
  top: 13px;
  animation-delay: 0.55s;
  -o-animation-delay: 0.55s;
  -ms-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  -moz-animation-delay: 0.55s;
}

#circularG_3 {
  top: 0;
  left: 51px;
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
}

#circularG_4 {
  right: 13px;
  top: 13px;
  animation-delay: 0.83s;
  -o-animation-delay: 0.83s;
  -ms-animation-delay: 0.83s;
  -webkit-animation-delay: 0.83s;
  -moz-animation-delay: 0.83s;
}

#circularG_5 {
  right: 0;
  top: 51px;
  animation-delay: 0.97s;
  -o-animation-delay: 0.97s;
  -ms-animation-delay: 0.97s;
  -webkit-animation-delay: 0.97s;
  -moz-animation-delay: 0.97s;
}

#circularG_6 {
  right: 13px;
  bottom: 13px;
  animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}

#circularG_7 {
  left: 51px;
  bottom: 0;
  animation-delay: 1.24s;
  -o-animation-delay: 1.24s;
  -ms-animation-delay: 1.24s;
  -webkit-animation-delay: 1.24s;
  -moz-animation-delay: 1.24s;
}

#circularG_8 {
  left: 13px;
  bottom: 13px;
  animation-delay: 1.38s;
  -o-animation-delay: 1.38s;
  -ms-animation-delay: 1.38s;
  -webkit-animation-delay: 1.38s;
  -moz-animation-delay: 1.38s;
}

@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.3);
  }
}

@-webkit-keyframes bounce_circularG {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.3);
  }
}

.logos_part {
  margin-top: 93px;
  text-align: center;
}

.logos_part img {
  margin-right: 19px;
  width: 84px;
}

.logos_part .last_img {
  margin-right: 0;
}

.recaptcha-wrapper {
  height: 70px;
  overflow: hidden;
  background-color: #F9F9F9;
  border-radius: 3px;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
  height: 70px;
  position: relative;
  margin-top: 17px;
  border: 1px solid #d3d3d3;
  color: #000;
}

.recaptcha-info {
  background-size: 32px;
  height: 32px;
  margin: 0 13px 0 13px;
  position: absolute;
  right: 8px;
  top: 9px;
  width: 32px;
  background-image: url(https://www.gstatic.com/recaptcha/api2/logo_48.png);
  background-repeat: no-repeat;
}

.rc-anchor-logo-text {
  color: #9b9b9b;
  cursor: default;
  font-family: Roboto, helvetica, arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  margin-top: 5px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 37px;
}

.rc-anchor-checkbox-label {
  font-family: Roboto, helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  left: 50px;
  top: 26px;
  position: absolute;
  color: black;
}

.rc-anchor .rc-anchor-normal .rc-anchor-light {
  border: none;
}

.rc-anchor-pt {
  color: #9b9b9b;
  font-family: Roboto, helvetica, arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  right: 10px;
  top: 53px;
  position: absolute;
}

.rc-anchor-pt a:link {
  color: #9b9b9b;
  text-decoration: none;
}

.g-recaptcha {
  width: 41px;
  height: 38px;
  overflow: hidden;
  float: left;
  margin-top: 16px;
  margin-left: 6px;
}

.g-recaptcha > div {
  width: 46px;
  height: 30px;
  background-color: #F9F9F9;
  overflow: hidden;
  border: 1px solid red;
  transform: translate3d(-8px, -19px, 0px);
}

.g-recaptcha div {
  border: 0;
}

footer {
  background-color: #000;
  padding: 33px 0;
}

footer .copy {
  float: left;
  width: 60%;
  color: #fff;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-left: 55px;
}

@media screen and (max-width:600px) {
  footer .copy {
    width: 100%;
    font-size: 0.875em;
    padding-left: 3%;
    text-align: center;
    margin-bottom: 20px;
    padding-right: 3%;
  }
}

footer .menu {
  float: right;
  margin-right: 55px;
}

@media screen and (max-width:600px) {
  footer .menu {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}

footer .menu li {
  float: left;
  margin-right: 10px;
  color: #fff;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

@media screen and (max-width:600px) {
  footer .menu li {
    font-size: 0.875em;
    float: none;
    display: block;
    margin-bottom: 10px;
  }
}

footer .menu li a {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

footer .menu li a:hover {
  color: #21B7D4;
}

