/*---- fonts  ----start----*/
@font-face {
    font-family: iran-sans;
    src: url("../fonts/IRANSansX-regular.woff") format("woff"), url("../fonts/IRANSansX-regular.woff2") format("woff2");
}

@font-face {
    font-family: iran-sans-bold;
    src: url("../fonts/IRANSansX-Bold.woff") format("woff"), url("../fonts/IRANSansX-Bold.woff2") format("woff2");
}
/*---- fonts  ----end----*/
/*---- variables  ----start----*/
:root {
    --regular: iran-sans;
    --bold: iran-sans-bold;
    --light: #ffffff;
    --gray: #c4c4c4;
    --dark: #282828;
}


/*---- variables  ----end----*/
/*---- defaults  ----start----*/
body {
    position: relative;
    font-family: var(--regular);
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

img {
    width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/*---- defaults  ----end----*/
/*---- header  ----start----*/
.header {
    position: fixed;
    z-index: 1;
    width: -webkit-fill-available;
    height: 3.5rem;
    background-color: #005b93;
    display: flex;
    align-items: center;
}

.header-logo-wrapper {
    display: flex;
    align-items: center;
}

.header-logo {
    width: auto;
    height: 35px;
}

.header-logo-h1 {
    margin: 0 0.75rem 0 0;
    font-size: 1rem;
    color: floralwhite;
    font-weight: 800;
}

.header-logo-span {
    margin: 0 0.75rem 0 0;
    font-size: 1rem;
    color: white;
}

.header-nav {
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.header-nav-item {
    position: relative;
}

    .header-nav-item + .header-nav-item {
        margin-right: 0.75rem;
    }

.header-nav-link {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #ebebeb;
}

    .header-nav-link::after {
        margin-right: 0.5rem;
    }

    .header-nav-link:hover,
    .header-nav-link.active {
        color: var(--light);
    }

    .header-nav-link + i {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        opacity: 0;
        line-height: 0;
        color: var(--light);
    }

    .header-nav-link.active + i {
        opacity: 1;
    }

.header .dropdown-menu {
    padding: 0;
    overflow: overlay;
    height: 700px;
}

    .header .dropdown-menu li + li {
        border-top: 1px solid #e1e1e4;
    }

.header .dropdown-item {
    padding: 1rem;
    font-size: 0.875rem;
}

.mobile-menu-open {
    width: 2.5rem;
    height: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    color: #f1f1f1;
    background: #348edd;
}
/*---- header  ----end----*/
/*---- mobile menu ----start----*/

.mobilemenu {
    overflow: overlay;
    max-height: 85vh;
}

.mobile-menu {
    position: fixed;
    left: calc(-250px + -16px);
    top: 0;
    z-index: 1;
    width: 250px;
    min-height: 100vh;
    height: 100vh;
    background-color: var(--light);
    box-shadow: 0 8px 8px 4px rgba(0, 0, 0, 0.1);
    transition: left 0.35s ease-in-out;
}

    .mobile-menu.active {
        left: 0;
    }

.mobile-menu-header {
    margin-bottom: 1.25rem;
    padding: 0.5rem;
    border-bottom: 1px solid #e1e1e4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-logo {
    width: auto;
    height: 40px;
}


.mobile-menu-close {
    width: 2.5rem;
    height: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    color: var(--dark);
}

.mobile-menu-nav-item.active {
    background: #0085c8;
}

    .mobile-menu-nav-item.active .mobile-menu-nav-link {
        color: white;
    }

.mobile-menu-nav-item + .mobile-menu-nav-item {
    margin-top: 0.75rem;
}

.mobile-menu-nav-link {
    position: relative;
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.mobile-menu-nav-link-arrow {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    color: var(--dark);
}

.mobile-menu-sub-nav {
    padding: 0.75rem 1.5rem 0 0;
}

    .mobile-menu-sub-nav .mobile-menu-nav-link {
        padding-right: 2.5rem;
    }

        .mobile-menu-sub-nav .mobile-menu-nav-link::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 1.5rem;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--dark);
        }
/*---- mobile menu ----end----*/
/*---- banner ----start----*/
.banner {
    padding-top: 6rem;
    background: linear-gradient(rgb(17 28 73 / 75%), rgb(17 28 73 / 75%)), url(/images/background.jpg);
    background-size: cover;
    background-position: left center;
}

.banner-title {
    line-height: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--bold);
    font-size: 1.5rem;
    color: var(--light);
}

.banner-text {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 2;
    text-align: center;
    color: var(--light);
}

.banner-phone {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-family: var(--bold);
    font-size: 2rem;
    color: var(--light);
}

    .banner-phone:hover {
        color: var(--light);
    }

    .banner-phone i {
        margin-right: 1rem;
    }

.call-style {
    margin-right: 10px;
}

.banner-link-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.banner-link {
    padding: 0.5rem 2rem;
    border: 2px solid #94baff;
    border-radius: 0.5rem;
    font-family: var(--bold);
    color: #fff;
}

    .banner-link:hover {
        color: #94baff;
    }

.banner-image {
    margin-top: -7.5rem;
    transform: translateY(50%);
}

.banner-video {
    width: -webkit-fill-available;
    border: 5px solid #005b93;
    border-radius: 40px;
}
/*---- banner ----end----*/
/*---- services ----start----*/
.services {
    padding: 15.5rem 0 3rem;
    background-color: #4966d5;
}

    .services .row {
        margin-top: -1.5rem;
        margin-bottom: -1.5rem;
    }

        .services .row div[class*=col-] {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

.service-title {
    margin-bottom: 1rem;
    font-family: var(--bold);
    font-size: 1.5rem;
    color: var(--light);
}

.service-subtitle {
    margin-bottom: 4.5rem;
    font-size: 0.875rem;
    line-height: 2;
    text-align: center;
    color: var(--light);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--light);
    border-radius: 50%;
}


.service-item-title {
    margin-bottom: 1rem;
    font-family: iran-sans-bold;
    font-size: 1.125rem;
    color: var(--light);
}

.service-item-text {
    font-size: 0.875rem;
    line-height: 2;
    text-align: center;
    color: var(--light);
}
/*---- services ----end----*/
/*---- points ----start----*/
.points-wrapper {
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.point {
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.point-title {
    margin-bottom: 1rem;
    font-family: var(--bold);
    font-size: 1.125rem;
    color: var(--dark);
}

    .point-title.big {
        font-size: 1.5rem;
    }

.point-text {
    text-align: justify;
    font-size: 0.875rem;
    line-height: 2;
    color: var(--dark);
}

.point-list-wrapper {
    padding: 1.5rem;
}

.point-list {
    background-color: #2a74b7;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.point-list-item {
    display: flex;
    align-items: baseline;
    font-size: 0.875rem;
    line-height: 2;
    color: #ffffff;
}

    .point-list-item + .point-list-item {
        margin-top: 0.75rem;
    }

    .point-list-item i {
        margin-left: 0.75rem;
    }
/*---- points ----end----*/
/*---- about ----start----*/
.about {
    background-color: #4cbffe;
}

.about-title {
    margin-bottom: 1.5rem;
    font-family: var(--bold);
    font-size: 2rem;
    text-align: center;
    color: var(--dark);
}

.about-text {
    font-size: 0.9375rem;
    line-height: 2;
    text-align: center;
    color: var(--dark);
}
/*---- about ----end----*/
/*---- cards ----start----*/
.custom-cards-wrapper {
    padding: 3rem 0 4.5rem;
}

.custom-card {
    display: flex;
}

    .custom-card + .custom-card {
        margin-top: 1.5rem;
    }

.custom-card-image-wrapper {
    width: 50%;
}

.custom-card-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.custom-card-details {
    position: relative;
    width: 50%;
    padding: 0 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e4e4e4;
}

    .custom-card-details.blue {
        background-color: #00c6ff;
    }

.custom-card-title {
    margin-bottom: 1rem;
    font-family: var(--bold);
    font-size: 1.125rem;
    color: var(--dark);
}

.custom-card-text {
    text-align: justify;
    font-size: 0.875rem;
    line-height: 2;
    color: var(--dark);
}

.custom-card-link {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--bold);
    font-size: 0.875rem;
    color: #0063be;
}

    .custom-card-link i {
        margin-left: 0.5rem;
    }
/*---- cards ----end----*/
/*---- articles ----start----*/
.articles {
    margin-bottom: 4.5rem;
}

.article-title {
    margin-top: 30px;
    margin-bottom: 4.5rem;
    font-family: var(--bold);
    font-size: 2rem;
    text-align: center;
    color: var(--dark);
}

.article-item + .article-item {
    margin-top: 4.5rem;
}

.article-item-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #006ccf;
}

.article-item-subtitle {
    margin-bottom: 1rem;
    display: block;
    font-style: italic;
    font-size: 1rem;
}

.article-item-text {
    font-size: 0.875rem;
    line-height: 2;
    color: #908e8d;
}

.article-item-image-wrapper {
    width: 100%;
    max-width: 220px;
}

.article-item-button {
    padding: 0.75rem 2.25rem;
    border: none;
    border-radius: 8px;
    display: inline-block;
    background-color: #1151e7;
    font-size: 0.875rem;
    color: var(--light);
}

    .article-item-button:hover {
        color: var(--light);
    }
/*---- articles ----end----*/
/*---- info ----start----*/
.info-wrapper {
    padding-bottom: 6rem;
}

.info-header {
    padding: 2rem 0;
    background-color: #4dbefe;
}

.info-header-title {
    margin-bottom: 0;
    font-family: var(--bold);
    font-size: 2rem;
    text-align: center;
    color: var(--dark);
}

.info-title {
    margin: 2rem 0 3rem;
    font-family: var(--bold);
    font-size: 1.5rem;
    text-align: center;
    color: var(--dark);
}

.info-subtitle {
    font-size: 0.875rem;
    text-align: center;
    color: var(--dark);
}

.info-item {
    margin-top: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
}

.info-item-title {
    padding-bottom: 1rem;
    font-weight: 600;
    /* width: 25%; */
    margin: 0 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
}

.info-item-text {
    text-align: justify;
    /* width: 75%; */
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 2;
    color: var(--dark);
}
/*---- info ----end----*/
/*---- checks ----start----*/
.checks {
    padding: 3rem 0;
    background-color: #caeaff;
}

.check-title {
    margin-bottom: 1.5rem;
    font-family: var(--bold);
    font-size: 2rem;
    text-align: center;
    color: #255075;
}

.check-item {
    padding-top: 3rem;
    display: flex;
}

.check-item-icon {
    font-size: 3.5rem;
    color: #4c7497;
    margin-left: 1.5rem;
}

.check-item-title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #000000;
}

.check-item-text {
    text-align: justify;
    font-size: 0.875rem;
    line-height: 2;
    color: #000000;
}
/*---- checks ----end----*/
/*---- call button ----start----*/
.call-button {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 64px;
    height: 64px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #084298d1;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--light);
}


    .call-button:hover {
        color: #94baff;
    }



.new_footer_area {
    background: #fbfbfd;
}


.new_footer_top {
    padding: 45px 0px 300px;
    position: relative;
    overflow-x: hidden;
}

.new_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}

.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0px;
}

.new_footer_top .company_widget p {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
    text-decoration: none;
    outline: none;
}



.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #5e2ced;
}

.new_footer_top .f_widget.about-widget .f_list li {
    text-align: center;
    margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ti-facebook:before {
    content: "\e741";
}

.ti-twitter-alt:before {
    content: "\e74b";
}

.ti-vimeo-alt:before {
    content: "\e74a";
}

.ti-pinterest:before {
    content: "\e731";
}

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #5e2ced;
    border-color: #5e2ced;
    color: #fff;
}

    .btn_get_two:hover {
        background: transparent;
        color: #5e2ced;
    }

.new_footer_top .f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color: white;
}

.new_footer_top .f_social_icon a + a {
    margin-left: 4px;
}

.new_footer_top .f-title {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #263b5e;
}

.f_600 {
    font-weight: 600;
}

.f_size_18 {
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    color: #4b505e;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}


.new_footer_top .footer_bg {
    margin-bottom: 30px;
    position: absolute;
    bottom: 0;
    background: url("/images/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

    .new_footer_top .footer_bg .footer_bg_one {
        width: 337px;
        height: 132px;
        background-size: 100%;
        position: absolute;
        bottom: 0;
        left: 30%;
        animation: myfirst 22s linear infinite;
    }

    .new_footer_top .footer_bg .footer_bg_two {
        width: 245px;
        height: 100px;
        background-size: 100%;
        bottom: 18px;
        right: 30%;
        position: absolute;
        animation: myfirst2 22s linear infinite;
    }

    .new_footer_top .footer_bg .footer_bg_three {
        width: 248px;
        height: 104px;
        background-size: 100%;
        position: absolute;
        bottom: 0;
        left: 30%;
        animation: myfirst 19s cubic-bezier(0, 0.02, 0, 0.96) infinite;
    }


@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}


@-webkit-keyframes myfirst2 {
    0% {
        right: -25%;
    }

    100% {
        right: 100%;
    }
}

/*---- call button ----end----*/
/*---- media query ----start----*/
@media only screen and (max-width: 1199px) {
    .banner-image {
        margin-top: -5.5rem;
    }

    .services {
        padding-top: 15.5rem;
    }

    .custom-card-details {
        padding: 0 2.5rem;
    }
}

@media only screen and (max-width: 991px) {
    .banner-title {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .banner-text {
        font-size: 0.875rem;
    }

    .banner-phone {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .banner-link-wrapper {
        gap: 1.5rem;
    }

    .banner-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .banner-image {
        margin-top: -5.5rem;
    }

    .services {
        padding-top: 14.5rem;
    }

        .services .row {
            margin-top: -0.75rem;
            margin-bottom: -0.75rem;
        }

            .services .row div[class*=col-] {
                padding-top: 0.75rem;
                padding-bottom: 0.75rem;
            }

    .service-title {
        font-size: 1.25rem;
    }

    .service-subtitle {
        margin-bottom: 3rem;
        font-size: 0.8125rem;
    }

    .service-item-icon {
        width: 60px;
        height: 60px;
        padding: 0.75rem;
    }

    .service-item-title {
        font-size: 1rem;
    }

    .service-item-text {
        font-size: 0.8125rem;
    }

    .points-wrapper {
        margin-bottom: 1.5rem;
        padding-top: 1.5rem;
    }

    .point {
        padding: 1rem;
    }

    .point-title {
        font-size: 0.9375rem;
    }

        .point-title.big {
            font-size: 1.125rem;
        }

    .point-text {
        font-size: 0.8125rem;
    }

    .point-list-wrapper {
        padding: 0px 0 2rem 0;
    }

    .point-list {
        border-radius: 0.75rem;
        padding: 1rem;
    }

    .point-list-item {
        font-size: 0.8125rem;
    }

    .about-title {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .about-text {
        font-size: 0.875rem;
    }

    .custom-cards-wrapper {
        padding: 3rem 0;
    }

    .custom-card {
        flex-wrap: wrap;
    }

    .custom-card-image-wrapper {
        width: 100%;
    }

    .custom-card-details {
        width: 100%;
        padding: 1.5rem 1rem;
        order: 1;
    }

    .custom-card-title {
        font-size: 1rem;
    }

    .custom-card-text {
        font-size: 0.8125rem;
    }

    .custom-card-link {
        position: static;
        margin-top: 1.5rem;
        font-size: 0.8125rem;
    }

    .articles {
        margin-bottom: 3rem;
    }

    .article-title {
        margin-bottom: 3rem;
        font-size: 1.25rem;
    }

    .article-item + .article-item {
        margin-top: 3rem;
    }

    .article-item-title {
        font-size: 1rem;
    }

    .article-item-subtitle {
        font-size: 0.9375rem;
    }

    .article-item-text {
        font-size: 0.8125rem;
    }

    .article-item-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
    }

    .info-wrapper {
        padding-bottom: 3rem;
    }

    .info-header {
        padding: 1.5rem 0;
    }

    .info-header-title {
        font-size: 1.25rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-subtitle {
        font-size: 0.8125rem;
    }

    .info-item {
        flex-direction: column;
    }

    .info-item-title {
        width: 100%;
        margin: 0 0 1rem;
        font-size: 1.1rem;
    }

    .info-item-text {
        width: 100%;
        font-size: 0.8125rem;
    }

    .checks {
        padding-bottom: 1.5rem;
    }

    .check-title {
        line-height: 1.8;
        font-size: 1.25rem;
    }

    .check-item {
        padding-top: 1.5rem;
    }

    .check-item-icon {
        margin-left: 1rem;
        font-size: 2.5rem;
    }

    .check-item-title {
        font-size: 1rem;
    }

    .check-item-text {
        font-size: 0.8125rem;
    }

    .call-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image {
        margin-top: -3.5rem;
    }

    .services {
        padding-top: 11.5rem;
    }

    .article-item-details {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 575px) {
    .banner-image {
        margin-top: -1.5rem;
    }

    .services {
        padding-top: 7.5rem;
    }

    .article-item-title,
    .article-item-subtitle {
        text-align: center;
    }

    .article-item-image-wrapper {
        margin: 0 auto 1.5rem;
    }

    .check-item-icon {
        font-size: 1.75rem;
    }
}
/*---- media query ----end----*/
/*-------notfound------*/

#notfound {
    position: relative;
    height: 100vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 710px;
    width: 100%;
    padding-left: 190px;
    line-height: 1.4;
}

    .notfound .notfound-404 {
        position: absolute;
        left: 0;
        top: 0;
        width: 150px;
        height: 150px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Passion One', cursive;
            color: #00b5c3;
            font-size: 150px;
            letter-spacing: 15.5px;
            margin: 0px;
            font-weight: 900;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .notfound h2 {
        font-family: 'Raleway', sans-serif;
        color: #292929;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 30px;
    }

    .notfound p {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 15px;
        color: #333;
    }

    .notfound a {
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #fff;
        display: inline-block;
        padding: 15px 30px;
        border-radius: 40px;
        color: #292929;
        font-weight: 700;
        -webkit-box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.3);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .notfound a:hover {
            color: #fff;
            background-color: #00b5c3;
        }

@media only screen and (max-width: 480px) {
    .notfound {
        text-align: center;
    }

        .notfound .notfound-404 {
            position: relative;
            width: 100%;
            margin-bottom: 15px;
        }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
    }
}
