/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html,
body {
    height: 100%;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0px solid;
}

img {
    max-width: 100%;
    height: auto;
}

.fix {
    overflow: hidden;
}

p {
    margin: 0 0 15px;
    color: #444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    margin: 0 0 15px;
    color: #444;
    font-weight: 500;
}

h1 {
    font-size: 48px;
    line-height: 50px;
}

h2 {
    font-size: 38px;
    line-height: 40px;
}

h3 {
    font-size: 30px;
    line-height: 32px;
}

h4 {
    font-size: 24px;
    line-height: 26px;
}

h5 {
    font-size: 20px;
    line-height: 22px;
}

h6 {
    font-size: 16px;
    line-height: 20px;
}

a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

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

a:active,
a:hover {
    outline: 0 none;
}

body {
    background: #fff none repeat scroll 0 0;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    text-align: left;
    overflow-x: hidden;
    line-height: 26px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #3ec1d5;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #60ccdc;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.clear {
    clear: both;
}

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

input,
select,
textarea,
input[type=text],
input[type=date],
input[type=url],
input[type=email],
input[type=password],
input[type=tel],
button,
button[type=submit] {
    -moz-appearance: none;
    box-shadow: none !important;
}

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/preloader.gif") no-repeat center center;
}

::-moz-selection {
    background: #3EC1D5;
    text-shadow: none;
}

::selection {
    background: #3EC1D5;
    text-shadow: none;
}

.area-padding {
    padding: 70px 0px 80px;
}

.area-padding-2 {
    padding: 70px 0px 50px;
}

.padding-2 {
    padding-bottom: 90px;
}

.section-headline h2 {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 70px;
    position: relative;
    text-transform: capitalize;
}

.section-headline h2::after {
    border: 1px solid #333;
    bottom: -20px;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 40%;
}

.sec-head {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 0 0 10px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.5);
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.8);
    height: 64px;
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: bold;
}

#header .logo h1 span {
    color: #3ec1d5;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 768px) {
    #header {
        height: 64px;
        background: rgba(0, 0, 0, 0.8);
    }
    #header .logo h1 {
        font-size: 28px;
    }
}

.header-bg {
    background: url(../img/background/page-header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 120px 0 60px;
}

.header-bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1025px) {
    .header-bg {
        background-attachment: fixed;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #3ec1d5;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #0d2529;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #3ec1d5;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 2, 2, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0d2529;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #3ec1d5;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #3ec1d5;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 138vh;
    background: #000;
    overflow: hidden;
    position: relative;
    background-size: cover;
}

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


/* #hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
} */

#hero .container {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 70px;
    font-size: 52px;
    font-weight: 700;
    line-height: 0.8em;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 20px;
        line-height: 1.1;
    }
}

#hero p {
    width: 80%;
    font-size: 26px;
    line-height: 1.1;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
}

@media (max-width: 768px) {
    #hero p {
        font-size: 28px;
        line-height: 1;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-area {
    background-color: #ecebeb;
}

.area-padding.about-area {
    padding: 115px 0px 80px;
}

.single-well>a {
    display: block;
}

.single-well ul li {
    color: #444;
    display: block;
    padding: 5px 0;
}

.single-well ul li i {
    color: #3EC1D5;
    margin-right: 5px;
    font-size: 18px;
}

.single-well p {
    color: #444;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-area {
    height: auto;
    width: 100%;
    background-color: #ecebeb;
}

.contact-content {
    padding: 100px;
    background: #000 none repeat scroll 0 0;
}

.contact-content-right {
    padding: 100px;
}

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

.contact__form.php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact__form.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

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

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

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

.contact__form.php-email-form input:focus,
.contact__form.php-email-form textarea:focus {
    border-color: #3ec1d5;
}

.contact__form.php-email-form input {
    padding: 10px 15px;
    height: 44px;
}

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

.send-btn {
    background: #007aff;
    border: 1px solid #ccc;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    border-radius: 30px;
}

@-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-area {
    padding: 40px 0;
    background: #f9f9f9;
}

.footer-area-bottom {
    background: #b8b6b6 none repeat scroll 0 0;
    padding: 15px 0;
}

.copyright-text a:hover {
    text-decoration: underline;
    color: #3EC1D5;
}

.copyright-text a {
    color: #444;
}

.copyright>p {
    margin-bottom: 0;
    color: #444;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (min-width: 1920px) {
    .work-right-text {
        padding: 150px 150px;
    }
}


/* Normal desktop :992px. */

@media (min-width: 992px) and (max-width: 1169px) {
    .slider-content {
        padding: 146px 0;
    }
    .work-right-text {
        padding: 40px 0;
    }
    .work-right-text h2 {
        font-size: 18px;
        line-height: 28px;
    }
}


/* Tablet desktop :768px. */

@media (min-width: 768px) and (max-width: 991px) {
    .layer-1-1 h2 {
        font-size: 24px;
    }
    .layer-1-2 h1 {
        font-size: 31px;
        line-height: 38px;
        padding: 0px 30px;
    }
    .tab-menu ul.nav li a {
        padding: 10px 16px;
    }
    .suscribe-input input {
        width: 60%;
    }
    .suscribe-input button {
        width: 40%;
    }
    .team-content.text-center>h4 {
        font-size: 20px;
    }
    .sus-btn {
        margin-left: 0;
    }
    .suscribe-text h3 {
        font-size: 16px;
        padding-right: 20px;
    }
    .work-right-text h5 {
        font-size: 14px;
        line-height: 22px;
    }
    .work-right-text {
        padding: 36px 0;
    }
    .work-right-text h2 {
        font-size: 14px;
        line-height: 22px;
    }
    .work-right-text .ready-btn {
        font-size: 13px;
        padding: 7px 20px;
        margin-top: 5px;
    }
    .single-awesome-portfolio {
        width: 33.33%;
    }
    .widget-product a img {
        display: block;
        float: none;
        width: 100%;
    }
    .widget-product .product-info {
        display: block;
        float: none;
        padding-left: 0;
        width: 100%;
        margin-top: 20px;
    }
    .map-column {
        margin-left: 0;
        padding-right: 40px;
    }
    .post-information .entry-meta {
        font-size: 13px;
        padding: 5px 0;
    }
    .post-information .entry-meta span a {
        padding: 4px 0;
    }
    .service-pic {
        margin-bottom: 30px;
        text-align: center;
    }
    .single-add-itms {
        width: 50%;
    }
    .left-sidebar-title>h4 {
        font-size: 18px;
    }
    .contact-form {
        margin-top: 0px;
    }
    .search-option input {
        width: 67%;
    }
}


/* small mobile :320px. */

@media (max-width: 767px) {
    .slider-area {
        margin-top: 60px;
    }
    .slider-content {
        padding: 80px 0;
    }
    .slider-content h2 {
        font-size: 18px !important;
        line-height: 24px !important;
    }
    .slider-content h1 {
        font-size: 20px !important;
        line-height: 26px !important;
    }
    .layer-1-3 a.ready-btn {
        padding: 8px 15px;
    }
    .section-headline h2 {
        font-size: 30px;
    }
    .well-middle .single-well {
        margin-top: 30px;
    }
    .single-skill {
        margin-bottom: 40px;
    }
    .tab-menu {
        margin-top: 30px;
    }
    .tab-menu ul.nav li a {
        padding: 8px 6px;
    }
    .wellcome-text {
        margin: 0px;
        padding: 70px 0px;
    }
    .subs-feilds {
        width: 100%;
    }
    .suscribe-input input {
        width: 60%;
    }
    .suscribe-input button {
        font-size: 15px;
        padding: 14px 10px;
        width: 40%;
    }
    .section-headline h3 {
        font-size: 25px;
    }
    .well-text>h2 {
        font-size: 18px;
    }
    .well-text p {
        display: none;
    }
    .single-team-member {
        margin-bottom: 30px;
    }
    .service-right {
        width: 100%;
    }
    .service-images:hover .overly-text {
        display: none;
    }
    .portfolio-area {
        padding-top: 0px;
    }
    .project-menu li a {
        padding: 8px 12px;
        margin: 10px 4px;
    }
    .pri_table_list {
        margin-bottom: 30px;
    }
    .single-awesome-project,
    .portfolio-2 .single-awesome-project {
        width: 100%;
        float: none;
    }
    .single-blog {
        margin-bottom: 30px;
    }
    .sus-btn {
        margin-left: 0;
        margin-top: 30px;
    }
    .contact-form {
        margin-top: 30px;
    }
    .head-team h5 {
        font-size: 22px;
    }
    .footer-content {
        margin-bottom: 30px;
    }
    .header-bottom h1 {
        font-size: 30px;
        margin-bottom: 0;
    }
    .page-area .slider-content {
        padding: 500px 0;
    }
    .search-option input {
        width: 74%;
    }
    .header-bottom h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    li.threaded-comments {
        margin-left: 0;
    }
}


/* Large Mobile :480px. */

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .submitbtn {
        float: none;
        width: 99.8%;
    }
    .icons-bottom ul li a {
        height: 40px;
        line-height: 37px;
        width: 40px;
    }
    .blog-post-dlc ul li {
        padding-left: 20px;
        padding-right: 20px;
    }
    .awesome-portfolio-content .portfolio-2 {
        width: 50%;
    }
    .gallary-details .single-awesome-portfolio {
        width: 50%;
    }
    .tab-menu ul.nav li a {
        padding: 8px 20px;
    }
}

@media (max-width: 575px) {
    .slider-content {
        padding: 0;
    }
}

.single-well span {
    font-size: 26px;
}

.single-well img {
    width: 40%;
}

.well-left .single-well {
    text-align: center;
}

p.red-color {
    color: red;
}

.learn-identity {
    font-size: 20px;
    font-weight: bold;
}

#zero-burst {
    padding: 2em 0px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#zero-burst h2 {
    font-weight: bold;
    line-height: 1.6em;
    color: #fff;
}

.single-well h1 {
    font-size: 80px;
    line-height: 72px;
    font-weight: bold;
    margin-bottom: 30px;
}

.carousel-item.active {
    background-attachment: fixed;
}


/*  typewriter css  */

.content {
    margin-top: 4em;
}

#hero .content p {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bold;
}

#hero .content p:nth-child(1) {
    width: 7.3em;
    -webkit-animation: type 2s steps(40, end);
    animation: type 2s steps(40, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 84px;
}

#hero .content p:nth-child(2) {
    width: 11.5em;
    opacity: 0;
    -webkit-animation: type2 2s steps(40, end);
    animation: type2 2s steps(40, end);
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 72px;
}

#hero .content p:nth-child(3) {
    width: 7.3em;
    opacity: 0;
    -webkit-animation: type3 2s steps(40, end);
    animation: type3 2s steps(40, end);
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 54px;
}

#hero .content p:nth-child(4) {
    width: 7.3em;
    opacity: 0;
    -webkit-animation: type4 2s steps(40, end);
    animation: type4 2s steps(40, end);
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 36px;
}

#hero .content p:nth-child(5) {
    width: 7.3em;
    opacity: 0;
    -webkit-animation: type5 2s steps(40, end), blink .5s step-end infinite alternate;
    animation: type5 2s steps(40, end), blink .5s step-end infinite alternate;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 22px;
}

#hero .content p:nth-child(6) {
    width: 12.3em;
    opacity: 0;
    -webkit-animation: type6 3s steps(40, end), blink .5s step-end infinite alternate;
    animation: type6 3s steps(40, end), blink .5s step-end infinite alternate;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 88px;
}

#hero .content p:nth-child(7) {
    width: 7.8em;
    opacity: 0;
    -webkit-animation: type7 2s steps(40, end), blink .5s step-end infinite alternate;
    animation: type7 2s steps(40, end), blink .5s step-end infinite alternate;
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 22px;
}

#hero .content p:nth-child(8) {
    width: 10.4em;
    opacity: 0;
    -webkit-animation: type8 2s steps(40, end), blink .5s step-end infinite alternate;
    animation: type8 2s steps(40, end), blink .5s step-end infinite alternate;
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    font-size: 14px;
}

@keyframes type {
    0% {
        width: 0;
    }
    99.9% {
        border-right: none;
    }
    100% {
        border: none;
    }
}

@-webkit-keyframes type {
    0% {
        width: 0;
    }
    99.9% {
        border-right: none;
    }
    100% {
        border: none;
    }
}

@keyframes type2 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type2 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type3 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes type3 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes type4 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type4 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type5 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type5 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type6 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type6 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type7 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type7 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@keyframes type8 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

@-webkit-keyframes type8 {
    0% {
        width: 0;
    }
    1% {
        opacity: 1;
    }
    99.9% {
        border-right: none;
    }
    100% {
        opacity: 1;
        border: none;
    }
}

.buzzer {
    clear: both;
    position: relative;
}

img.red-light.glow {
    width: 12%;
    position: absolute;
    top: -7%;
    left: 44%;
}

img.red-light.light {
    width: 7%;
    margin-top: 2em;
    position: relative;
}

.answer-txt {
    margin-top: 172px;
}

.answer-page #hero {
    height: 85vh;
}


/* Cookies CSS */

#cookie_box {
    position: fixed;
    display: none;
    bottom: 0px;
    font-size: 16px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 10px 10px 10px;
    text-align: center;
    width: 100%;
    color: #ffffff;
}

#cookie_box p {
    font-size: 15px;
    margin: 0 0 5px 0;
    color: #ffffff;
}

#cookie_box p span {
    font-weight: bold;
    font-size: 20px;
    color: #f73649;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
}

#cookie_box p b {
    font-size: 18px;
}

#cookie_box .btn {
    padding: 4px 10px 4px 10px;
}

.cookie_third_msg input {
    display: inline-block;
}

.cookie_second_msg,
.cookie_third_msg {
    display: none;
}

.whynot {
    color: #fde910;
    font-size: 16px;
    position: absolute;
    left: 81px;
    top: 35px;
    font-weight: 700;
    text-decoration: underline;
}

.whynot:hover {
    color: #fff;
    text-decoration: underline !important;
}

.george.float-right {
    margin: 0 0 60px 10px;
}

.insp-name {
    position: absolute;
    top: 337px;
    right: 38px;
    text-align: center;
}

.insp-name h2 {
    font-size: 18px;
    margin: 0;
}

.hist_img img {
    width: 100%;
}

.hist-link a {
    text-decoration: underline;
    color: #000;
    font-weight: bold;
}

.hist-link {
    position: absolute;
    top: 205px;
    right: 30px;
}

#cookie_box .form-control {
    display: block;
    width: 50%;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#cookie_box .cookie_third_msg input {
    display: inline-block !important;
}

.woot--bubble-holder .woot-widget-bubble {
    bottom: 72px;
}

.contact-form form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form span {
    color: red;
    font-size: 0.875em;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.contact-form button {
    width: 100%;
    background-color: #3EC1D5;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 45px;
}

.contact-form button:hover {
    background-color: #3EC1D5;
}

#captcha_refresh {
    background: url(../img/refresh.png) no-repeat;
    width: 30px;
    height: 30px;
    display: inline-block;
    border: none;
    background-size: 100%;
}