.footer {
  box-sizing: border-box;
  width: calc(100% - 260px);
  margin-left: 260px;
  padding: 20px 50px;
  line-height: 1.4;
  position: relative;
  background: var(--light-blue);
  color: #fff;
}

@media (max-width: 1200px) {
  .footer {
    width: 100%;
    margin-left: 0;
    padding: 20px 20px;
  }
}

@media (max-width: 1200px) {
  .menu_open .footer {
    display: none;
  }
}

.footer a {
  color: #fff;
}

.footer .bottom_row a {
  text-decoration: none;
}

.footer .bottom_row a:hover {
  text-decoration: underline;
}


.footer .top_row {
  padding: 50px 0;
}

.footer .top_row:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.footer .top_row .col_1 {
  float: left;
  width: 25%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .footer .top_row .col_1 {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}

.footer .top_row .col_2 {
  padding: 0 20px;
  float: left;
  width: 45%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .footer .top_row .col_2 {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}

.footer .top_row .col_3 {
  padding: 0 40px;
  float: left;
  width: 30%;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer .top_row .col_3 {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 40px;
    text-align: left;
  }
}

.footer .bottom_row {
  padding: 50px 0;
}

.footer .bottom_row:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.footer .bottom_row .col_bottom_1 {
  float: left;
  width: 25%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .footer .bottom_row .col_bottom_1 {
    float: none;
    width: 100%;
    margin-top: 40px;
  }
}

.footer .bottom_row .col_bottom_2 {
  padding-left: 20px;
  float: left;
  width: 45%;
  box-sizing: border-box;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .footer .bottom_row .col_bottom_2 {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
}

.footer .bottom_row .col_bottom_3 {
  padding-left: 20px;
  float: left;
  width: 30%;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer .bottom_row .col_bottom_3 {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 30px;
    text-align: left;
  }
}


.footer .title {
  font-weight: 500;
}


.footer .links {
  font-size: 14px;
  font-weight: bold;
}

.footer .links a {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.footer .links a:hover {
  opacity: 0.9;
}

.footer .button {
  background: #fff;
  color: var(--light-blue);
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 15px;
  font-weight: 700;
  display: inline-block;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid #Fff;
}

.footer .button:hover {
  color: var(--orange);
  border: 3px solid var(--orange);
}

.footer .contact_button {
  background: var(--orange);
  color: #fff;
  border: 3px solid var(--orange);
}
.footer .contact_button:hover {
  color: var(--light-blue);
  background: #fff;
  border: 3px solid #fff;
}

.footer .logo {
  width: 220px;
  height: auto;
}

