html, body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

body {
  padding-top: 15px;
  background-image: url('../images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width : 768px) {
  html, body {
    height: 100%;
    min-height: 100vh;
  }
}

.bg-image {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.vh-100 {
  height: 100%;
  min-height: 100vh;
}

.row.custom {
  margin: -5px;
}

.row.custom > div {
  padding: 0 5px;
}

a {
  color: var(--bs-tertiary);
  text-decoration: none;
  background-color: transparent;
}

a:focus {
  outline: none;
}

.btns {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 24px;
  font-weight: 700;
  color: var(--bs-white);
  text-align: center;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 25px;
  transition: all 0.2s ease-in-out;
  user-select: none;
}

.btns svg {
  margin-right: 15px;
  width: 16px;
}

.btns svg path {
  transition: 0.2s;
}

@media only screen and (max-width : 576px) {
  .btns {
    padding: 12px;
    font-size: 1rem;
  }

  .btns svg {
    margin-right: 5px;
  }
}

.btns:hover {
  color: var(--bs-white);
  text-decoration: none;
}

.btns.primary {
  background-color: var(--bs-primary);
}

.btns.primary svg path {
  fill: var(--bs-secondary);
}

.btns.primary:hover {
  background-color: var(--bs-secondary);
}

.btns.primary:hover svg path {
  fill: var(--bs-primary);
}

.btns.secondary {
  background-color: var(--bs-secondary);
}

.btns.secondary svg path {
  fill: var(--bs-primary);
}

.btns.secondary:hover {
  background-color: var(--bs-primary);
}

.btns.secondary:hover svg path {
  fill: var(--bs-secondary);
}

.lists {
  margin-top: 90px;
}

ul {
  margin-top: 10px;
}

ul li a {
  display: flex;
}

ul li span:not(.icon) {
  margin-left: 10px;
  transition: all .2s ease-in-out;
}

ul li .icon {
  width: 20px;
}

ul li .icon svg {
  height: 16px;
}

ul li .icon svg path {
  fill: var(--bs-primary);
}

ul li a:hover span:not(.icon) {
  color: var(--bs-primary);
}

main {
  display: flex;
  flex-grow: 1;
}

.col-left {
  padding: 60px;
  background-color: var(--bs-quaternary);
}

.col-left a {
  display: block;
  padding: 12px 12px 12px 24px;
  background-color: var(--bs-white);
  border-radius: 10px;
  transition: all .2s ease-in-out;
}

.col-left a span:not(.icon) {
  color: var(--bs-secondary);
}

.col-left a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--bs-quaternary);
  border-radius: 10px;
  transition: all .2s ease-in-out;
}

.col-left a .icon svg {
  width: 16px;
  height: 16px;
}

.col-left a .icon svg path {
  fill: var(--bs-primary);
}

.col-left a:hover {
  box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.05);
}

.col-left a:hover .icon {
  transform: translateX(5px);
}

.col-right {
  padding: 60px;
}

@media only screen and (min-width : 1520px) {
  .col-inner {
    max-width: 1235px;
  }
}

@media only screen and (min-width : 992px) {
  .col-left {
    max-width: 465px;
  }
}

@media only screen and (max-width : 1199px) {
  .lists {
    margin-top: 30px;
  }

  .col-left,
  .col-right {
    padding: 45px;
  }
}

@media only screen and (max-width : 767px) {
  .col-right .logo-top {
    max-width: 100px;
  }

  .lists {
    margin-top: 15px;
  }
}

@media only screen and (max-width : 574px) {
  .col-right {
    padding: 30px;
  }
}

@media only screen and (max-width : 574px) {
  .col-left {
    padding: 30px;
  }
}

#copyright {
  padding: 15px;
}
