/** default styles **/
@import url('https://webfonts.zoho.eu/css?family=Poppins:100,200,300,400,500,600,700');

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font: 18px/1.5 Poppins, sans-serif;
    /* font-size/line-height font-family, secondary font name */
    color: var(--primary-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

:root {
    /* color variables in css */
    --primary-color: #222;
    --secondary-color: #fff;
    --highlight-color: #596aca;
    --link-color: #03a9f5;
}

header,
section,
aside,
nav,
footer,
address,
fieldset,
form,
iframe {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: 0;
    color: var(--link-color);
}

img,
video {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

button {
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-family: 'poppins', sans-serif;
}

::-webkit-input-placeholder {
    color: #9B9B9B;
    font-size: 11px;
}

::-moz-placeholder {
    color: #9B9B9B;
    font-size: 11px;
}

:-ms-input-placeholder {
    color: #9B9B9B;
    font-size: 11px;
}

input:-moz-placeholder {
    color: #9B9B9B;
    font-size: 11px;
}

input {
    outline: none;
}

.input[disabled] {
    border: #ccc;
    background-color: #eee;
    cursor: not-allowed;
}

textarea {
    resize: none;
}

/** change autocomplete styles in chrome  **/
.input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #555;
    -webkit-text-fill-color: #222;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

/** clearfix **/
.clearfix:after {
    content: " ";
    /* Older browser do not support empty content */
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

svg {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

h1 {
    font-size: 60px;
    margin: 2rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h2 {
    font-size: 28px;
    margin: 1.5rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h3 {
    font-size: 24px;
    margin: 1.5rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h4 {
    font-size: 22px;
    margin: 1.5rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h5 {
    font-size: 20px;
    margin: 1.5rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

h6,
p {
    font-size: 20px;
    margin: 1.5rem auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.gk-wb-pagewidth {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

section {
    padding: 40px 0;
    position: relative;
}

.gk-wb-left {
    float: left;
}

.gk-wb-right {
    float: right;
}

.gk-wb-center {
    text-align: center;
}

.gk-wb-padding {
    padding: 30px;
}

.gk-wb-tb-padding {
    padding: 30px 0;
}

.gk-wb-lr-padding {
    padding: 0 30px;
}

.gk-wb-margin {
    margin: 30px;
}

.gk-wb-tb-margin {
    margin: 30px 0;
}

.gk-wb-lr-margin {
    margin: 0 30px;
}

.gk-wb-sm-padding {
    padding: 15px;
}

.gk-wb-tb-sm-padding {
    padding: 15px 0;
}

.gk-wb-lr-sm-padding {
    padding: 0 15px;
}

.gk-wb-sm-margin {
    margin: 15px;
}

.gk-wb-tb-sm-margin {
    margin: 15px 0;
}

.gk-wb-lr-sm-margin {
    margin: 0 15px;
}

.gk-wb-subhead {
    max-width: 100%;
    margin: 0 auto;
}

.gk-wb-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-wb-ai-flex {
    display: flex;
    align-items: center;
    flex-flow: column;
}

.gk-wb-grid {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 30px;
}

.gk-wb-flexbasis {
    flex-basis: 100%;
    max-width: 100%;
}

.gk-wb-turncate {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gk-wb-absolute {
    position: absolute;
}

.gk-wb-overlap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gk-wb-button {
    font-weight: 500;
    font-size: 20px;
    border-radius: 50px;
    padding: 14px 45px;
    color: var(--secondary-color);
    transition: 0.2s all easy-ease;
    display: inline-block;
    position: relative;
    background: linear-gradient(89.95deg, rgb(110 85 234 / 80%) -29.76%, rgb(0 138 239 / 80%) -21.14%, rgb(130 68 192 / 80%) 14.56%, rgb(207 0 141 / 80%) 41.21%, rgb(255 2 104 / 80%) 65.11%, rgb(255 58 0 / 80%) 103.26%, rgb(255 78 0 / 80%) 114.1%, rgb(255 109 0 / 90%) 150.35%);
    -webkit-backface-visibility: hidden;
    box-shadow: 0 3px 11px 2px #0a0a0a26;
}

.gk-wb-button span {
    position: relative;
    z-index: 2;
}

.gk-wb-button:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 99%;
    transform: translate(-50%, -50%);
    height: 94%;
    border-radius: 50px;
    background: linear-gradient(89.95deg, rgb(110 85 234 / 80%) -29.76%, rgb(0 138 239 / 80%) -21.14%, rgb(130 68 192 / 80%) 14.56%, rgb(207 0 141 / 80%) 41.21%, rgb(255 2 104 / 80%) 65.11%, rgb(255 58 0 / 80%) 103.26%, rgb(255 78 0 / 80%) 114.1%, rgb(255 109 0 / 90%) 150.35%);
    transition: opacity 0.5s ease-out;
    z-index: 1;
}

.gk-wb-text-gradient {
    background: linear-gradient(80.68deg, #008bedcc -0.13%, #6755e7c4 14.6%, #7544bee6 25.41%, #b3008bde 38.18%, #ff0066d9 52.91%, #ff3900e8 67.64%, #ff4e00e0 81.4%, #ff6d00de 98.09%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}



/* Custom Css  */
.section-contain {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin: 0 auto;
    height: 85vh;
}

.gk-wb-404-container {
    text-align: center;
}

.gk-wb-404-container h2 {
    font-size: 36px;
    margin: 10px auto;
}

.error-image {
    margin: 10px auto;
    min-height: 362px;
    width: 680px;
}

.error-image img {}


#error-message {
    font-size: 18px;
    /* margin: 0 auto; */
}

#home-button {
    padding: 10px 20px;
    font-size: 16px;
    background: linear-gradient(89.95deg, rgb(110 85 234 / 80%) -29.76%, rgb(0 138 239 / 80%) -21.14%, rgb(130 68 192 / 80%) 14.56%, rgb(207 0 141 / 80%) 41.21%, rgb(255 2 104 / 80%) 65.11%, rgb(255 58 0 / 80%) 103.26%, rgb(255 78 0 / 80%) 114.1%, rgb(255 109 0 / 90%) 150.35%);
    border-radius: 27px;
    border: 1px;
    color: #fff;
    margin: 10px;
}

.hyperlink {
    color: #5969CA;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width:780px) {
    .error-image {
        width: 100%;
        min-height: auto;
    }

    .section-contain {
        width: 95%;
    }

    .gk-wb-404-container h2 {
        font-size: 28px;
    }
}