@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;600&family=Playfair+Display&display=swap');

  @import url('https://fonts.googleapis.com/css2?family=Jost:wght@500;600&family=Playfair+Display:wght@400;600&display=swap');



:root {
    --white: #fff;
    --black: #000;
    --primary: #006FB6;
    --secondary: #004571;
    --playfair:'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: 'jost', sans-serif;
}

@font-face {
    font-family: "silkserif";
    src: url("../fonts/Silk\ Serif\ Medium.otf");
}

@media (min-width: 1700px) {
    .container {
        max-width: 1356px;
    }
}

section {
    position: relative;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}

/* loader */

/* btn css */

.themeBtn {
    /* background: var(--primary); */
    background: rgb(81, 163, 212);
    background: linear-gradient(225deg, rgba(81, 163, 212, 1) 0%, rgba(9, 124, 195, 1) 85%, rgba(9, 124, 195, 1) 100%);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
    padding: 1.125rem 2em;
    line-height: normal;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 7px;
}

.themeBtn:after {
    background: var(--black);
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(3deg);
    transition-duration: 0.6s;
    transform-origin: top right;
    width: 0;
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn:hover:after {
    height: 100%;
    width: 135%;
}


/* btn css */

/* navigation css */

.topBar {
    background-color: #000000;
    padding: 7px 0;
}

.socialLinks {
    display: flex;
    gap: 1.5rem;
}

.socialLinks li a {
    color: var(--white);
}

.login {
    text-align: end;
}

.login a {
    font-size: 1.125rem;
    color: var(--white);
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

nav.navbar.navbar-expand-lg {
    margin: 8px 0px;
}

.navbar-nav {
    align-items: center;
    gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.0625rem;
    color: var(--black);
    text-transform: uppercase;
    padding: 0 0;
    display: inline-block;
}

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

.form-inline .themeBtn {
    padding: 1rem 1.625rem;
    font-size: 1.125rem;
}

/* navigation css */

/* slider css */

.main-slider {
    height: 907px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    left: 9rem;
    right: initial;
    top: 42%;
}

.homeSlider .swiper-pagination-bullet {
    height: 19px;
    width: 19px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    border: 1px solid var(--white);
    background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.mainHead {
    font-size: 3.75rem;
    color: var(--white);
    line-height: 1.1;
    font-family: "silkserif";
}

.slideOne .btn-group {
    gap: 10px;
    margin-top: 2rem;
}

.themeBtn1 {
    font-size: 0.875rem;
    color: var(--black);
    text-transform: uppercase;
    background-color: var(--white);
    padding: 0.875rem 2.5em;
    font-weight: 600;
    display: inline-block;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 7px;
}

.themeBtn2 {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.themeBtn1:after {
    background: var(--black);
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(3deg);
    transition-duration: 0.6s;
    transform-origin: top right;
    width: 0;
}

.themeBtn1:hover {
    color: var(--white);
}

.themeBtn1:hover:after {
    height: 100%;
    width: 135%;
}


/* slider css */

/* About Sec Css Start */

.aboutSec {
    /* background: url(../images/aboutBg.webp) center/cover no-repeat; */
    padding: 6rem 0;
}

.searchForm {
    background-color: var(--white);
    box-shadow: unset;
    padding: 2rem 3rem 3rem 3rem;
    margin-top: -12rem;
    margin-bottom: 5rem;
}

.searchForm h3 {
    font-size: 2.0625rem;
    color: var(--black);
    text-transform: uppercase;
}

.searchForm form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.searchForm form input:nth-child(1) {
    /* min-width: 200px; */
}

.searchForm form input {
    border-radius: unset;
    border: unset;
    height: 50px;
    background-color: #fff;
    width: 200px;
    border-radius: 7px;
    padding-left: 2rem;
    box-shadow: 0px 3px 9px rgb(227 227 227 / 16%);
}

.searchForm form input::placeholder {
    font-size: 0.875rem;
    color: #979797;
}

.searchForm form .themeBtn {
    font-size: 16px;
    padding: 16px 14px;
    border: unset;
}

.secHeading {
    color: var(--black);
}

.secHeading span {
    display: block;
    font-size: 1.5625rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    position: relative;
    padding-left: 9.6rem;
    margin-bottom: 1rem;
    font-family: 'Jost';
}

.secHeading span:before {
    content: "";
    position: absolute;
    background-color: var(--black);
    width: 150px;
    height: 1px;
    left: 0;
    top: 12px;
}

.aboutContent p {
    color: #636363;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.aboutContent .themeBtn2 {
    border: 2px solid #121611;
    color: #121611;
}

.abtImg {
    position: relative;
}

.abtPath {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

a.themeBtn1.themeBtn2:hover {
    color: #fff;
}

.abt2img {
    position: absolute;
    top: 24rem;
    left: -5rem;
}

/* About Sec Css End */

/* Property Sec Css Start */

.propertySec {
    background-color: #313635;
    padding: 2rem 0;
}

.propertyHead h2 {
    color: var(--white);
}

.propertyHead h2 span {
    color: var(--white);
}

.propertyHead .secHeading span:before {
    background-color: var(--white);
}

.propertyHead {
    display: flex;
    align-items: end;
    gap: 3rem;
    margin-bottom: 2rem;
}

.propertyHead .btn-group {
    gap: 12px;
}

.propertyHead .themeBtn2 {
    background: var(--primary);
    border: 2px solid var(--primary);
}

.propertyWraps {
    margin-bottom: 2.5rem;
}

.propertyWraps figure {
    position: relative;
    overflow: hidden;
}

.propertyWraps figure img {
    transition: 0.5s ease-in-out;
}

.propertyWraps figure:hover img {
    transform: scale(1.1);
}

.propertyContent {
    background: var(--white);
    padding: 1.5rem;
}

.location {
    font-size: 1.375rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #464646;
}

.location i {
    color: #BD1E2C;
}

.propertyContent ul {
    display: flex;
    gap: 3rem;
    margin: 1rem 0;
}

.propertyContent ul li a {
    font-size: 1.0625rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #414246;
}

.propertyContent .btn-group .themeBtn {
    font-size: 0.875rem;
    padding: 0.875rem 3em;
    background: #097CC3;
}

.propertyContent .btn-group .price {
    font-size: 1.6875rem;
    color: #282A2E;
    font-weight: 600;
}

.propertyContent .btn-group {
    align-items: center;
    gap: 2rem;
}

.viewAll .themeBtn1 {
    font-size: 1.25rem;
    padding: 1.125rem 2.5em;
    border-color: #51A3D4;
}

.hosting h4 {
    font-size: 8.125rem;
    text-transform: uppercase;
    color: rgb(255 255 255 / 7%);
}

.hosting {
    position: absolute;
    right: 0;
    top: -2rem;
}

/* Property Sec Css End */

/* meat team Sec Css Start */
.meatTeamSec .secHeading span:before {
    left: 41%;
    width: 100px;
}

.meatTeamSec {
    padding: 4rem 0;
}

.meatTeamSec .mainHead {
    color: #000;
    font-size: 50px;
    text-align: center;
}

.teamcntnt {
    text-align: center;
}

.teamcntnt h3 {
    color: #393939;
    font-size: 22px;
    margin-top: 1rem;
    font-weight: 600;
}

.teamcntnt h4 {
    color: #77858D;
    font-size: 22px;
}

.teamcntnt h5 {
    font-size: 18px;
    color: #393939;
}

.teamcntnt h5 i {
    color: #393939;
}

.teamwrap {
    border: 1px solid #D1D1D1;
    text-align: center;
    background: #F3F3F3;
    padding: 3rem 3rem;
}


.teamwrap:hover {
    background: #fff;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 16%);
}

/* meat team Sec Css End */

/* Help Sec Css Start */

.helpSec {
    background: url(../images/helpBg.webp) center/contain no-repeat;
}

/* Help Sec Css End */

/* Video Sec Css Start */

.videoSec {
    padding: 1rem 0 5rem 0;
}

.videoWraps {
    position: relative;
}

.videoBtn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoSec .swiper-button-next:after,
.videoSec .swiper-button-prev:after {
    display: none;
}

.videoSec .swiper-button-next,
.videoSec .swiper-button-prev {
    font-size: 2.5rem;
    color: var(--white);
}

.videoSec .swiper-button-next {
    right: 4rem;
}

.videoSec .swiper-button-prev {
    left: 4rem;
}

/* Video Sec Css End */

/* Areas Sec Css Start */

.areasSec {
    background: #313635;
    padding: 4rem 0;
}

.areaContent h3 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.areasSec .swiper-button-next1:after,
.areasSec .swiper-button-prev1:after {
    display: none;
}

.areasSec .swiper-button-next1,
.areasSec .swiper-button-prev1 {
    font-size: 2.5rem;
    color: var(--white);
    position: absolute;
    top: 40%;
    cursor: pointer;
}

.areasSec .swiper-button-next1:hover,
.areasSec .swiper-button-prev1:hover {
    color: #A3AAC9;
}

.areasSec .swiper-button-next1 {
    right: -2rem;
}

.areasSec .swiper-button-prev1 {
    left: -2rem;
}

/* Areas Sec Css End */

/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 4rem 0;
}

.testimonialHead .secHeading span:before {
    left: 41%;
    width: 100px;
}

.testimonialWraps {
    border: 1px solid #D1D1D1;
    border-radius: 27px;
    padding: 2.5rem 2rem 1rem 2rem;
    box-shadow: 0px 0px 49px rgb(232, 232, 232);
}

.testimonialWraps ul {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.testimonialWraps ul li a {
    font-size: 0.75rem;
    color: #F6A825;
}

.testimonialWraps p {
    /* font-style: italic; */
    color: var(--black);
    line-height: 1.8;
}

.userName h3 {
    font-size: 25px;
    color: var(--black);
    margin-left: -6rem;
}

.userName {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.userName i {
    color: #4A9FD3;
    font-size: 3rem;
}

.testimonialSlider {
    padding-bottom: 3rem;
}

.testimonialSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgb(36 36 36 / 25%);
    opacity: 1;
}

.testimonialSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Testimonial Sec Css End */

/* Contact Sec Css Start */

.contactSec {
    background: url(../images/contactBg.webp) top center/ cover no-repeat;
}

.contactHead h2 {
    color: var(--white);
}

.contactHead .secHeading span {
    color: var(--white);
    padding-left: 7rem;
}

.contactHead .secHeading span:before {
    background-color: var(--white);
    left: -3rem;
}

.contactHead p {
    color: var(--white);
    font-size: 1.125rem;
}

.contactForm .form-control {
    height: 57px;
    border-radius: unset;
    border: unset;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

.contactForm textarea {
    min-height: 185px;
    padding-top: 1.2rem;
}

.contactForm .form-control::placeholder {
    font-size: 0.875rem;
    color: #8B93A8;
}

.contactForm .themeBtn {
    border: unset;
    padding: 1.125rem 3em;
    background: #000;
}

/* .contactImg {
    margin-top: -6rem;
} */

/* Contact Sec Css End */

/* Logo Sec Css Start */

.logoSec {
    padding: 4rem 0;
}

/* Logo Sec Css End */

/* Footer Sec Css Start */

footer {
    background-color: #313635;
    padding-top: 4rem;
}

footer ul li a {
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

footer ul li a:hover {
    color: var(--primary);
}

footer h3 {
    font-size: 1.5625rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}

.links li a {
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Jost';
}

.links li+li {
    padding-top: 4px;
}

.contactLinks li+li {
    padding-top: 2rem;
}

.contactLinks li a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Jost';
}

footer p {
    font-size: 0.8125rem;
    color: var(--white);
}

.footForm input {
    height: 50px;
    border-radius: unset;
    padding-left: 1.5rem;
}

.footForm .themeBtn {
    font-size: 1.125rem;
    border: unset;
    padding: 1rem 2em;
    margin: 12px 0 1rem 0;
    background: #000000;
}

.footForm input::placeholder {
    font-size: 0.875rem;
    color: #888C90;
}

form.footForm {
    text-align: end;
}

.cartWraps {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cartWraps p {
    font-size: 22px;
    margin: 0;
    font-family: 'Jost';
}

.copyRight {
    border-top: 1px solid #DFDFE0;
    margin-top: 2rem;
    padding: 1rem 0;
}

footer .socialLinks {
    justify-content: end;
    gap: 2.5rem;
}

footer .socialLinks li a {
    color: var(--white);
}

/* Footer Sec Css End */


.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.bar {
    width: 10px;
    height: 70px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.2s linear infinite;
}

.bar1 {
    animation-delay: 0.1s;
}

.bar2 {
    animation-delay: 0.2s;
}

.bar3 {
    animation-delay: 0.3s;
}

.bar4 {
    animation-delay: 0.4s;
}

.bar5 {
    animation-delay: 0.5s;
}

.bar6 {
    animation-delay: 0.6s;
}

.bar7 {
    animation-delay: 0.7s;
}

.bar8 {
    animation-delay: 0.8s;
}

@keyframes loader {
    0% {
        transform: scaleY(0.1);
    }

    50% {
        transform: scaleY(1);
        background: var(--primary);
    }

    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}

/*Inner Pages CSS Start*/
.banner {
    position: relative;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .overlay h2 {
    font-size: 70px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    font-family: 'silkserif';
}

.abtInner {
    padding: 8rem 0;
}

.abtSecTwo {
    background: none;
}

.propertyInner {
    background: #fff;
}

.propertyInner .propertyContent {
    border: 1px solid #C5C5C5;
}

.propertyInner .themeBtn1 {
    border: 1px solid #000;
}

.propertyInner .themeBtn2 {
    border: 1px solid var(--primary);
}

.propertyInner .propertyHead {
    align-items: center;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.propertyInner h4 {
    font-size: 3.125rem;
    margin: 2rem 0;
}

.applianInner {
    padding: 6rem 0 2rem;
}

.applianInner h4 {
    font-size: 3.125rem;
    margin: 2rem 0;
}

.serviceInner {
    padding: 8rem 0;
}

.serviceInner .secHeading span:before {
    background-color: #000000;
    width: 90px;
    height: 1px;
    top: 8px;
}

.serviceInner .secHeading span {
    display: block;
    font-size: 1rem;
    color: #000;
    padding-left: 6.6rem;
    ;
}

.serviceInner .row+.row {
    margin: 6rem 0 0;
}

.serviceInner p {
    color: #515151;
}

.contactInfo h4 {
    font-size: 3.0625rem;
    text-transform: uppercase;
    font-weight: 600;
}

.cntntsec a {
    font-size: 2.8rem;
    color: #000;
}

.cntntsec .socialLinks li a {
    color: #000;
}

/* .contactInfo ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
} */

/* .contactInfo ul li a i {
    padding-right: 1rem;
} */

.contactInfo {
    padding: 6rem 0;
}

.contactInfo ul li a:hover {
    color: #004571;
}

.areaWrap img {
    height: 240px;
}

.applianceBox figure img {
    height: 250px;
}

/*Inner Pages CSS End*/


.helpContent .mainHead {
    text-transform: uppercase;
    font-size: 70px;
}

.areasSec .secHeading span {
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.areasSec .secHeading span:before {
    width: 100px;
    background-color: #fff;
    left: 43%;
}


ul.fotrlist {
    display: flex;
    font-family: 'Jost';
    font-weight: 400;
}

ul.fotrlist li {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}



.meatTeamSec .swiper-button-next1:after,
.meatTeamSec .swiper-button-prev1:after {
    display: none;
}

.meatTeamSec .swiper-button-next1,
.meatTeamSec .swiper-button-prev1 {
    font-size: 2.5rem;
    color: #CCCCCC;
    position: absolute;
    top: 40%;
    cursor: pointer;
}

.meatTeamSec .swiper-button-next1:hover,
.meatTeamSec .swiper-button-prev1:hover {
    color: #A3AAC9;
}

.meatTeamSec .swiper-button-next1 {
    right: -2rem;
}

.meatTeamSec .swiper-button-prev1 {
    left: -2rem;
}



.abt3img {
    margin-left: 2.7rem;
}


.scrollDownIcon {
    position: absolute;
    bottom: 35px;
    /* width: 100%; */
    display: flex;
    align-items: center;
    color: #fff;
    right: 3rem;
    justify-content: flex-end;
    writing-mode: vertical-lr;
    gap: 1rem;
    transform: scale(-1);
}



.scrollDownIcon a {
    color: var(--accent) !important;
}


/* Scroll Mouse Icon */

.mouseIcon {
    width: 28px;
    height: 47px;
    border: 2.4px solid #fff;
    border-radius: 12px;
    display: inline-block;
    margin-right: 20px;
    margin: auto;
    position: relative;
}

.mouseIcon .mouseInner {
    width: 4px;
    height: 12px;
    background-color: #fff;
    border-radius: 1.8px;
    animation: scroll 1s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}


/* scroll animation */

@keyframes scroll {
    100% {
        margin-top: 10px;
    }
}


/* Main Hero Section css */



.searchForm span {
    position: relative;
    display: block;
}

.searchForm span i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #9C9C9C;
}

.abtInner .mainHead.secHeading {
    font-size: 2.9rem;
    margin-bottom: 2rem;
}



.propertySec.properinner {
    background: #fff;
}

.propertySec.properinner .secHeading {
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.propertySec.properinner .propertyContent {
    border: 1px solid #9B9B9B;
}



.buyerguideSec {
    padding: 5rem 0;
}



.serbox .secHeading {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Jost';
}

.serbox {
    border: 1px solid #D1D1D1;
    padding: 2rem;
    box-shadow: 0px 3px 36px #c9c9c9;
}

.cntntsec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cntntsec .socialLinks {
    gap: 3rem;
}

.cntntsec a i {
    margin-right: 1rem;
}


.serviceInner.teaminnerSec h4 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}


.serbox.teambox h2 {
    font-size: 22px;
    color: #393939;
    font-family: var(--playfair);
    font-weight: 600;
}

.serbox.teambox h3 {
    color: #77858D;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 1rem;
}


.teamlist {
    display: flex;
    gap: 4rem;
    margin-bottom: 1.3rem;
}

.teamlist .socialLinks li a {
    color: #000;
}

.teamlist a {
    color: #000;
    font-size: 18px;
    font-family: 'Jost';
}

.teamlist a i {
    margin-right: 10px;
}


.testimonialSec.testiinner .secHeading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 50px;
}


.testimonialSec.testiinner .testimonialWraps {
    margin-bottom: 2rem;
}

.themeBtn .nav-link {
    color: #fff !important;
}

#navbarSupportedContent {
    justify-content: flex-end;
}
.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #0d7ec4;
}

input.search-field {
    border: 2px solid #0f7fc4;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #1482c5;
    border: 2px solid #0c7ec4;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #212529 !important;
    color: #0c7dc3;
}