body {
    font-family: 'Oswald', sans-serif;
    color: #000000;
    background-image: url('../img/beg.jpeg');
    background-repeat: repeat;
}

.ye {
    font-family: 'Oswald', sans-serif;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.75);
}

.btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(3, 3, 3, 0.61);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #000000;
    color: #fff;
}

/* --------------------------------------------------------------
# Disable aos animation delay on mobile devices
-------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
#header {
    background: #f4da2e;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
}

#header .logo a {
    color: #111111;
}

#header .logo a span {
    color: #e03a3c;
}

#header .logo img {
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }

    #header .logo {
        font-size: 28px;
    }
}

/* --------------------------------------------------------------
# Navigation Menu
-------------------------------------------------------------- */
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 22px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #1a1a1a;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: #000000;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: black;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #111111;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #F4DA2E;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 20px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #111111;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #111111;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/husfixarnahem2.webp") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 82px;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0;
    font-size: 49px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.9);
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 34px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.91);
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        padding-top: 58px;
    }

    #hero h1 {
        font-size: 40px;
    }

    #hero h2 {
        font-size: 24px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/* --------------------------------------------------------------
# Sections General
-------------------------------------------------------------- */
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 16px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 300px;
    height: 2px;
    background: #d7d7d7;
    bottom: 0;
    left: calc(50% - 150px);
}

.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 120px 0;
    color: #ffffff;
}

.section-bg:before {
    content: "";
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #000000;
}

.sec-bg {
    padding: 120px 0;
    color: #ffffff;
}

.sec-bg:before {
    content: "";
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #056cad;
}

.p-bg {
    padding: 120px 0;
}

.transb {
    background-color: rgba(255, 255, 255, 0.73);
}

/* --------------------------------------------------------------

# About
-------------------------------------------------------------- */
.about .container {
    position: relative;
    z-index: 10;
}

.about .content {
    padding: 30px 30px 30px 0;
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.about .content p {
    margin-bottom: 30px;
}

.about .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: #fff;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #085789;
    background-color: #056cad;
}

.about .content .about-btn i {
    font-size: 16px;
    padding-left: 5px;
}

.about .content .about-btn:hover {
    background: #e35052;
    background: #056cad;
    border-radius: 10px;
}

.about .icon-boxes .icon-box {
    margin-top: 30px;
}

.about .icon-boxes .icon-box i {
    font-size: 40px;
    color: #e03a3c;
    margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}

@media (max-width: 1200px) {
    .about .content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .about {
        text-align: center;
    }
}

i.biggie {
    font-size: 110px;
    color: #FFFF;
    border-radius: 50%;
    padding: 8px;
    border: 2px solid #eeee;
}

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #252525;
    transition: 0.3s;
}

.services .icon-box:hover {
    background: #2b2b2b;
}

.services .icon-box i {
    float: left;
    color: #e03a3c;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #fff;
    transition: 0.3s;
}

.services .icon-box h4 a:hover {
    text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
    color: #e03a3c;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

/* --------------------------------------------------------------
# Contact
-------------------------------------------------------------- */
.contact .info-box {
    color: #444444;
    text-align: center;
    padding: 20px 0 30px 0;
    border-radius: 4px;
}

.contact .info-box a {
    color: #063e62;
}

.contact .info-box i {
    font-size: 16px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    border-radius: 4px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #000000;
    background: #f4da2e;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #000000;
    background: #f4da2e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #f4da2e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #111111;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #f4da2e;
    border: 0;
    padding: 10px 32px;
    color: #000000;
    transition: 0.4s;
    border-radius: 4px;
    text-transform: uppercase;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #fae345;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
#footer {
    color: #000000;
    font-size: 14px;
    background: #ffffff;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #000000;
    color: #ffffff;
    background-image: url('../img/husfixarloggasvbg.png');
    background-repeat: no-repeat;
    background-position: right center;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #e03a3c;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Oswald", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 80%;
    height: 1px;
    bottom: 2px;
    left: 0;
    background-color: #e5e5e5;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ffffff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
    color: #e1e1e1;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

.text-primary {
    color: #0c5d90 !important;
    align-self: flex-end;
}

.btn-primary {
    color: #fff;
    background-color: #056cad;
    border-color: #0d79bd;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:hover {
    color: #fff;
    background-color: #096198;
    border-color: #124984;
}

.btn-danger {
    color: #fff;
    background-color: #dd0d1e;
    border-color: #dd0d1e;
}

.btn-danger:hover {
    color: #fff;
    background-color: #d40415;
    border-color: #fefefe;
    border-style: solid;
}

.gro {
    transition: all 1s ease-in-out;
}

.gro:hover {
    transform: scale(1.1);
}

.gr {
    transition: all 1s ease-in-out;
}

.gr:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 6px 5px rgba(0, 0, 0, 0.37);
}

.imgro {
    transition: all 0.6s ease-in-out;
}

.imgrow:hover {
    transform: scale(1.03);
}

.hus {
    background-image: url('../img/jubi1.png');
    background-position: center center;
    background-repeat: no-repeat;
}

.hvr {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.hvr:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1d1d1d;
    height: 3px;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr:hover:before,
.hvr:focus:before,
.hvr:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.altbg {
    background-image: url('../img/byggbg.jpg');
    padding-top: 60px;
    padding-bottom: 60px;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

.takbg {
    background-image: url('../img/takbg.jpg');
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

.badbg {
    background-image: url('../img/badbg.jpg');
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

.semtr {
    background-color: rgba(0, 0, 0, 0.59);
    padding-top: 1rem;
}

.semtr2 {
    background-color: rgba(0, 0, 0, 0.59);
}

.bg-warning {
    background-color: #f4da2e !important;
}

.boxtext {
    padding-bottom: 16px;
    margin-bottom: -8px;
    padding-top: 8px;
    color: #000000;
    transition: all 1s ease-in-out;
}

.boxtext:hover {
    padding-bottom: 16px;
    margin-bottom: -8px;
    padding-top: 8px;
    letter-spacing: 1px;
}

.boxim {
    z-index: 10 !important;
}

a {
    color: #000000;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

#vidbg {
    position: fixed;
    z-index: -1;
    max-width: 100%;
    max-height: 860px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-aspect-ratio: 16/9) {
    #vidbg {
        width: 100%;
        height: auto;
        margin: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    #vidbg {
        width: 100%;
        height: auto;
        margin: auto;
    }
}

@media (max-width: 767px) {
    #vidbg {
        display: none;
    }

    .vid {
        max-height: 80vh;
        background-image: url('assets/img/helloback.webp');
        background-repeat: no-repeat;
        background-position: initial;
        background-size: cover;
    }
}

.vid {
    min-height: 600px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.txtsh {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.79);
}