/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.fix {
    overflow: hidden;
}

.section-padding {
    padding: 120px 0;
}

.theme-btn:hover {
    color: #ffffff;
}

.theme-btn {
    background-color: #0066EC;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    padding: 21px 42px;
    border-radius: 7px;
    z-index: 9;
    display: inline-block;
    line-height: 1;
}

.theme-btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--header);
    transition: all 0.4s ease-in-out;
    border-radius: 7px 0 0 7px;
    z-index: 1;
}

.theme-btn span {
    position: relative;
    z-index: 9;
}

.theme-btn i {
    margin-left: 8px;
    transition: all 0.4s ease-in-out;
}

.theme-btn::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 0;
    content: "";
    background-color: var(--header);
    transition: all 0.4s ease-in-out;
    border-radius: 0 7px 7px 0;
    z-index: 1;
}

