@font-face {
    font-family: 'Futura';
    src: url("https://cdn.digitalpa.it/error-pages/fonts/Futura.woff");
}

html,
body {
    height: 100%;
    font-family: "Lato", sans-serif;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-family: "Futura", sans-serif;
}

h1 {
    font-size: 44px;
}

h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

h6 {
    font-size: 14px;
}

p {
    font-size: 15.7px;
    color: #dfe6f0;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}


/*---------------------
	Helper CSS
-----------------------*/

.spad {
    padding-top: 100px;
    padding-bottom: 90px;
}

.section-title {
    margin: auto 0px;
}

.section-title h2 {
    margin-bottom: 20px;
}

.section-title p {
    margin-bottom: 0;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

.bg-grey {
    background-color: #DDE2E66E;
}


/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 50px;
    font-family: "Futura", sans-serif;
    min-width: 170px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: var(--danger);
}


.site-btn:hover {
    color: #fff;
    background-color: #ff394d;
}

.site-btn-white {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 6px;
    font-family: "Futura", sans-serif;
    min-width: 170px;
    text-align: center;
    cursor: pointer;
    color: #002e79;
    background-color: #fff;
}

.site-btn-white:hover {
    color: #002e79;
    background-color: #b1cfff;
}


/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}


/*---------------------
	Header section
-----------------------*/


.header-section {
    position: absolute;
    width: 100%;
    top: 0;
    padding: 30px 50px 0;
    z-index: 99;
}

.header-section .site-btn {
    float: right;
    margin-left: 60px;
    font-size: 18px;
}

.header-section .responsive-bar,
.header-section .user {
    display: none;
}


.card {
    background: rgb(255, 255, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px outset rgba(255, 255, 255, 0.3);
    box-shadow: 0px 1px 24px -1px rgba(0, 0, 3, 0.2);
    padding: 30px;
}


/*---------------------
	Hero Section
-----------------------*/

.hero-section {
    height: 97%;
    padding-top: 10%;
    display: block;
    background-image: url("https://cdn.digitalpa.it/error-pages/images/hero-bg2.jpg");
    background-size: cover;
    background-color: #0c364f;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-section .laptop-image {
    width: 685px;
    max-width: none;
    position: relative;
    left: 80px;
}

.hero-text {
    padding-top: 60px;
}

.hero-text h2 {
    font-size: 70px;
    margin-bottom: 35px;
}

.hero-text h2 span {
    color: #41edff;
}

.hero-text h4 {
    color: #75849a;
    font-size: 22px;
}

.hero-subscribe-from {
    margin-top: 50px;
    display: block;
}

.hero-subscribe-from input {
    width: 315px;
    border: 1px solid #ebebeb;
    background: #fff;
    height: 48px;
    padding: 0 25px;
    border-radius: 50px;
    font-family: "Futura", sans-serif;
    font-size: 16px;
    margin-right: 8px;
    margin-bottom: 20px;
}


.site-btn-white:hover {
    color: #002e79;
    background-color: #b1cfff;
}


/*---------------------
	Footer Section
-----------------------*/

.footer-widget span {
    color: black;
}


.footer-widget p {
    margin-bottom: 20px;
    color: rgba(0, 0, 3, 0.2);

}

.footer-widget .widget-title {
    margin-bottom: 30px;
    font-size: 20px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul a {
    font-size: 16px;
    color: #75849a;
    display: block;
    margin-bottom: 12px;
}

.footer-widget ul li:last-child a {
    margin-bottom: 0;
}


.footer-bottom {
    border-top: 1px solid #ebebeb;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    display: inline-block;
}

.footer-nav li a {
    color: #75849a;
    font-size: 14px;
    margin-left: 20px;
}


/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media (max-width: 1585px) {
    .hero-section .laptop-image {
        left: 0;
    }
}

@media (max-width: 1425px) {
    .header-section .site-btn {
        margin-left: 0;
    }

    .hero-section,
    .page-info-section {
        background-position: right 30% top;
    }

    .hero-section .laptop-image {
        width: auto;
        max-width: 100%;
        top: 70px;
    }

    .about-img {
        left: -50px;
        width: 600px;
    }
}

@media (min-width: 1199px) and (max-width: 1390px) {

    .header-section .site-btn {
        margin-left: 10px;
        display: none;
    }
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {


    .header-section .site-btn {
        margin-left: 10px;
        display: none;
    }


}


/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .header-section .site-btn {
        margin-left: 10px;
        display: none;
    }

    .hero-section {
        background-position: right 40% top;
        height: 95%;

    }

    .header-section {
        padding: 30px 0;
        background: #fff;
    }

    .header-section .responsive-bar {
        float: right;
        font-size: 25px;
        padding: 0 10px;
        display: block;
        cursor: pointer;
    }


    .hero-text h2 {
        font-size: 45px;
    }

}


/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {

    .hero-text h2 {
        font-size: 40px;
    }

    .hero-section {
        height: 95%;
        padding-bottom: 100px;
        padding-top: 0px;
        background-position: right 50% top;
    }

    .page-info-section {
        background-position: right 56% top;
        margin-top: 97px;
    }

    .page-info-section h2 {
        font-size: 40px;
    }
}

