/*===========================
  COMMON CSS 
===========================*/

@import url("../fonts/poppins.css");
@import url("../fonts/asgard-trial.css");
:root {
  --font: "Poppins", sans-serif;
  --body-color: #637381;
  --heading-color: #111a54;
  --primary-color: #006aed;
  --white: #ffffff;
}

body,
header,
footer {
  font-family: var(--font) !important;
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: var(--primary-color);
}

.main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

.whatsapp img {
  height: 64px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
}

@media (max-width: 767px) {
  .whatsapp img {
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== Header CSS ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 160px;
  width: 160px;

  /* 
	Remove serrilhado da imagem (anti aliasing) 
	
	https://www.reddit.com/r/web_design/comments/21o6h9/is_it_possible_to_improve_svg_antialiasing_chrome/
  */
  transform: rotate(0.01deg);
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover,
.navbar-nav .nav-item > a.active {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item > a:hover,
  .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item .submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item .submenu {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .submenu.show {
  display: block;
}

.navbar-nav .nav-item .submenu .submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .submenu .submenu-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active,
.sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .main-btn.login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .main-btn.login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .white-btn:hover {
  background: var(--heading-color);
}

/* ===== Home CSS ===== */
.home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
    url("../images/backgrounds/background-6.jpg");
  background-color: #225b7b;
  background-size: cover;

  padding-top: 0;
  padding-bottom: 0;

  /* Faz com que o conteúdo fique na página inteira */
  /* https://stackoverflow.com/questions/52848856/100vh-height-when-address-bar-is-shown-chrome-mobile */
  height: 100dvh;

  /* Centraliza */
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .home {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.menu-scroll {
  font-weight: 500 !important;
  font-size: 14px !important;
  text-transform: uppercase;
}

.home-content {
  margin: auto;
  padding-bottom: 80px;
}

.home-content .home-title {
  color: var(--white);
  font-family: "Asgard Trial", sans-serif;
  /* box-shadow: inset 0 -70px 0 0 rgba(57, 137, 212, 0.685); */
  font-weight: 500;
  font-size: 30px;
  line-height: 60px;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 776px) {
  .home-content .home-title {
    font-size: 22px;
    line-height: 50px;
  }
}

@media (max-width: 650px) {
  .home-content .home-title {
    font-size: 20px;
    line-height: 38px;
    /* box-shadow: inset 0 -80px 0 0 rgba(57, 137, 212, 0.685); */
  }

  .home-content {
    padding-bottom: 0px;
  }
}

.home-content .home-desc {
  font-weight: normal;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 850px) {
  .home-content .home-desc {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  .home-content .home-desc {
    font-size: 14px;
  }
}

.home-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-buttons .main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .home-buttons .main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .home-buttons .main-btn {
    padding: 12px 16px;
  }
}

.home-buttons .white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.home-buttons .white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.home-buttons .link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.home-brands-wrapper {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.8;
  max-width: 200px;
}

@media (max-width: 767px) {
  .home-brands-wrapper img {
    max-width: 150px;
  }
}

.home-brands-wrapper img:hover {
  opacity: 1;
}

.home-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-image img {
  max-width: 100%;
  text-align: center;
}

.home-image .shape {
  position: absolute;
  z-index: -1;
}

.home-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.home-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.features {
  padding-top: 80px;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .features {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 40px;
}

.single-feature:hover .feature-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.single-feature .feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.single-feature .feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-feature .feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-feature .feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.single-feature .feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.single-feature .feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.single-feature .feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.about {
  background: #f3f4fe;
  padding: 60px 0;
}

@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }
}

.about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .about-wrapper {
    display: block;
  }
}

.about-content-wrapper {
  padding: 70px;
}

@media (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px;
  }
}

.about-content {
  max-width: 1000px;
}

.about-content .tag {
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  background: var(--primary-color);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.about-content h3 {
  font-weight: bold;
  font-size: 20px;
  line-height: 45px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.about-content .main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .about-image {
    text-align: center;
  }
}

/* ===== Contact CSS ===== */
.contact {
  padding: 60px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}

.contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f3f4fe;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact::after {
    height: 45%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .contact-title {
    margin-bottom: 50px;
  }
}

.contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-title h2 {
  padding-bottom: 20px;
  font-weight: 300;
  font-size: 30px;
}

.contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.contact-info-wrapper .single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

.contact-info-wrapper .info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.contact-info-wrapper .info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-info-wrapper .info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 1200px) {
  .contact-title {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 40px;
  }
}

.contact-form-wrapper .contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
}

.contact-form-wrapper .form-group {
  margin-bottom: 25px;
}

.contact-form-wrapper .form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
  border-color: var(--primary-color);
}

.maps {
  width: 400px;
  height: 250px;
  border: 0;
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--heading-color);
  padding-top: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer .shape {
  position: absolute;
  z-index: -1;
}

.footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.widget {
  margin-bottom: 20px;
}

.widget .footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.widget .footer-logo img {
  width: 100%;
}

.widget .widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.widget .widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget .widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.widget .widget-socials a:hover {
  color: var(--primary-color);
}

.widget .widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.widget .widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}

.widget .widget-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.widget .widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.widget .widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget .widget-brands a {
    max-width: 100px;
  }
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.footer-bottom .footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-bottom .footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.footer-bottom .footer-bottom-left a:hover {
  color: var(--primary-color);
}

.footer-bottom .footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin: 0;
}

.footer-bottom .footer-bottom-right a {
  color: var(--primary-color);
}

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

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}
