/* [Colors] */

body {
    --normalText: rgb(0,0,0);
    --background: rgb(255,255,255);
    --formBackground: rgb(255,187,128);
    --button: rgb(83,64,42);
    --linkButton: rgb(57,57,255);
    --headingColor: rgb(144,144,144);
    --separator: rgb(78,168,200);
    --success: rgb(91,200,70);
    --articleBackground: rgb(211,232,229);
    --qwap: rgb(177,132,9);
}

/* [Global] */

body {
    color: rgba(0,0,0,1.00);
    background: var(--background);
    font-family: Inter;
    font-weight: 400;
    width: 100%;
    min-width: 100vw;
    max-width: 1920px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

container {
    width: 100%;
    display: block;
    max-width: 1280px;
    background: var(--background);
}

h3 {
    font-size: 32px;
    line-height: 1-;
    padding-bottom: 0px;
    padding-top: 10px;
    margin-top: 0px;
}

h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1-;
    padding-bottom: 0px;
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
}

h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1-;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h6 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 0px;
    text-decoration: underline;
    line-height: 100%;
}

p {
    margin-bottom: 0px;
    font-size: 20px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    padding-top: 0px;
    margin-top: 0px;
}

ul {
    padding-left: 20px;
}

ol {
    padding-left: 20px;
}

img {
    display: block;
    max-width: 100%;
}

textarea {
    resize: vertical;
}

a {
    cursor: pointer;
    transition: all 200ms 0ms linear;
    text-decoration: none;
}

button {
    cursor: pointer;
}

component {
    display: block;
}

rich-text {
}

blockquote {
    display: block;
    background: #00000008;
    margin-left: 0px;
    padding-top: 15px;
    margin-right: 0px;
    padding-left: 15px;
    border-radius: 6px;
    padding-right: 15px;
    padding-bottom: 15px;
}

blockquote  cite {
    color: rgb(139,139,139);
    display: block;
    margin-top: 10px;
    font-weight: 500;
    padding-left: 15px;
}

div {
    width: 100%;
    max-width: 1280px;
}

h1 {
    font-weight: 700;
    font-size: 60px;
    width: 100%;
    max-width: 1920px;
    line-height: 1;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-top: 0px;
}

h2 {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    font-size: 48px;
    padding-top: 10px;
    padding-bottom: 0px;
    line-height: 1;
    margin-top: 0px;
}

/* [Classes] */

.stylesheetSection {
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid rgba(223,223,223,1.00);
}

.primaryButton {
    color: rgba(255,255,255,1.00);
    border: 1px solid rgba(0,0,0,1);
    background: rgba(0,0,0,1.00);
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
}

.primaryButton:hover {
    color: rgba(0,0,0,1.00);
    background: rgba(255,255,255,1.00);
}

.secondaryButton {
    color: rgba(0,0,0,1.00);
    border: 1px solid rgba(0,0,0,1);
    background: rgba(255,255,255,1.00);
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
}

.secondaryButton:hover {
    color: rgba(255,255,255,1.00);
    background: rgba(0,0,0,1.00);
}

.rich-text-dh-styling  hr {
    width: 100%;
    border: 0px solid rgba(0,0,0,1);
    height: 1px;
    display: block;
    border-top: 1px solid rgb(203,203,203);
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.rich-text-dh-styling {
    display: flex;
    row-gap: 24px;
    flex-direction: column;
}

.dh-btn-primary {
    background: rgba(0,0,0,1.00);
    color: rgba(255,255,255,1.00);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px none rgba(0,0,0,1);
    border-radius: 8px;
    text-decoration: none;
}

.dh-btn-primary:hover {
    background: rgb(54,54,54);
}

.dh-btn-secondary {
    background: rgba(0,0,0,0.05);
    color: rgb(0,0,0);
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px  24px  11px  24px;
    text-decoration: none;
    border-radius: 8px;
}

.dh-btn-secondary:hover {
    background: rgba(0,0,0,0.15);
}

.form {
    width: 100%;
    max-width: 1280px;
    background: var(--formBackground);
    padding-bottom: 20px;
}

.linkbutton {
    background: rgb(0,0,0);
    font-family: 'Inter';
    color: rgb(233,201,61);
    font-weight: 400;
    border-radius: 13px;
    border: 1px solid rgba(0,0,0,1);
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
    width: fit-content;
}

.footer {
    display: flex;
    margin-top: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 1920px;
    flex-direction: row;
    column-gap: 20px;
    border-top: 2px solid rgba(0,0,0,1);
    border-bottom: 2px solid rgba(0,0,0,1);
    align-items: center;
}

.headingtext {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    max-width: fit-content;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}

.logo {
}

.logoimage {
    min-width: 150px;
}

.headername {
    font-size: 40px;
    font-family: 'Inter';
    font-weight: 700;
}

.headingSubtext {
    font-size: 22px;
    font-weight: 600;
    color: var(--normalText);
    font-family: 'Inter';
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1920px;
}

.menuwrapper {
    display: flex;
    justify-content: flex-end;
    column-gap: 40px;
}

.menuLinkText {
    font-weight: 600;
    font-size: 20px;
    border-top: 2px solid rgba(0,0,0,1);
    color: var(--normalText);
    font-family: 'Inter';
}

.menuLinkText:hover {
    border-bottom: 2px solid rgba(0,0,0,1);
}

.footerimage {
    width: 200px;
    height: 79px;
}

.divhuntlogo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hoverbackground {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 400ms 0ms ease;
}

.title {
    font-family: 'Inter';
    color: var(--normalText);
    background: var(--background);
    font-weight: 700;
    font-size: 60px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 100%;
    text-decoration: underline;
    padding-bottom: 20px;
}

.pageheading {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    align-items: center;
}

.subtitle {
    text-align: center;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 100%;
    padding-bottom: 20px;
}

.article {
    grid-template-columns: 1fr 8fr;
    display: grid;
    grid-template-rows: 1fr 3fr .5;
    justify-items: start;
    align-items: start;
    grid-auto-flow: row;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    background: var(--articleBackground);
}

.articletext {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 10px;
    align-self: flex-start;
}

.articleheading {
    align-self: flex-start;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--headingColor);
    line-height: 100%;
    padding-left: 10px;
    grid-column: span 1;
    padding-bottom: 10px;
    font-size: 60px;
    font-weight: 400;
    font-family: 'Roboto';
}

.articleoverview {
    justify-self: flex-start;
    align-self: flex-start;
    padding-left: 10px;
    grid-row: span 1;
    font-size: 20px;
}

.formfields {
    display: flex;
    flex-direction: column;
    row-gap: 024px;
    width: 60vw;
    margin-left: 25px;
    margin-top: 10px;
}

.hr {
    border-top: 3px solid var(--separator);
    margin-top: 10px;
    margin-bottom: 10px;
    grid-column: span 2;
}

.articleimage {
    grid-row: span 2;
    width: 200px;
    height: auto;
    max-width: 100%;
    align-self: center;
}

.profile {
    background: var(--articleBackground);
}

.articlecolor {
    background: var(--articleBackground);
}

.map {
    display: block;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.wrapperwithbackgroundimage {
    background-image: url(https://global.divhunt.com/d185cf8ba1cf5d0b70d30921951bfd25_48246.jpeg);
    display: flex;
    flex-direction: column;
}

.mainoverview {
    color: var(--background);
    margin-bottom: 0px;
}

.mainsize {
    padding-left: 15px;
    color: var(--background);
    width: 65%;
    display: block;
    margin-left: 10px;
}

.documentimage {
    width: auto;
    height: 80px;
}

.documenttext {
    grid-row: span 1;
    padding-top: 10px;
    grid-column: span 1;
}

.list {
    font-size: 20px;
    margin-bottom: 0px;
    line-height: 1.2;
    padding-left: 40px;
    margin-top: 0px;
    padding-top: 10px;
}

.documentdetails {
    grid-column: span 2;
    margin-bottom: 0px;
    padding-bottom: 0px;
    background: var(--articleBackground);
    padding-top: 10px;
}

.standardsimage {
    height: 150px;
    width: auto;
    align-self: center;
}

.standardtext {
    text-align: center;
    font-size: 32px;
    padding-left: 10px;
    padding-right: 10px;
}

.standardsbox {
    display: flex;
    flex-direction: column;
}

.qwap {
    color: var(--qwap);
}

.processimage {
    width: 30vw;
    height: 20vw;
    grid-row: span 2;
}

.process {
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid-template-rows: 10fr 30fr 30fr 3fr;
    padding-top: 20px;
    background: var(--articleBackground);
}

.processtext {
    padding-top: 10px;
    grid-column: span 2;
    height: fit-content;
}

.processheading {
    font-family: 'Noto Sans';
    font-size: 38px;
    font-weight: 800;
    color: var(--normalText);
    text-decoration: none;
}

.spacebelow {
    padding-bottom: 10px;
}

.relativeposition {
    position: relative;
    left: 20%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.currentpage {
    border-bottom: 1px solid rgba(0,0,0,1);
}

.linktext {
    color: rgb(10,10,226);
    text-decoration: underline;
}

.listitem {
    margin-left: 20px;
    font-weight: 400;
    font-size: 18px;
}

.booktitle {
    font-style: italic;
    color: rgb(12,51,228);
    font-size: 20px;
}

/* [Tags] */

body .t1 {
}

body .t2 {
}

body .t3 {
}

body .t4 {
}

body .t6 {
    display: grid;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 0px;
    grid-template-columns: 350px 1fr;
}

body .t7 {
    grid-row: span 2;
    margin-top: 0px;
    padding-top: 0px;
}

body .t8 {
    display: flex;
    flex-direction: column;
}

body .t9 {
    margin-top: 1px;
}

body .t10 {
}

body .t11 {
}

body .t12 {
}

body .t13 {
}

body .t15 {
    display: grid;
    grid-template-columns: 350px 1fr;
}

body .t16 {
    grid-row: span 2;
}

body .t17 {
    display: flex;
    row-gap: 40px;
    column-gap: 40px;
}

body .t19 {
    display: flex;
    flex-direction: column;
}

body .t20 {
    display: flex;
    flex-direction: column;
}

body .t21 {
    color: rgba(163,117,255,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
    font-weight: 600;
}

body .t24 {
    color: rgba(163,117,255,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
    font-weight: 600;
}

body .t26 {
    display: grid;
    grid-template-columns: 350px 1fr;
}

body .t27 {
    display: flex;
    row-gap: 25px;
    flex-direction: column;
}

body .t31 {
    color: rgba(163,117,255,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
    font-weight: 600;
}

body .t32 {
}

body .t33 {
    color: rgba(163,117,255,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
    font-weight: 600;
}

body .t34 {
    display: flex;
    column-gap: 100px;
}

body .t37 {
    margin: 0px 0px 10px 0px;
    display: block;
}

body .t38 {
    font-size: 20px;
}

body .t45 {
    color: rgba(0,0,0,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
}

body .t46 {
}

body .t54 {
}

body .t55 {
    width: 1280px;
}

body .t57 {
    align-items: flex-start;
    justify-content: center;
}

body .t58 {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
}

body .t59 {
}

body .t63 {
}

body .t64 {
}

body .t65 {
    background: var(--formBackground);
}

body .t66 {
    display: flex;
    row-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
}

body .t68 {
    color: rgba(0,0,0,1.00);
    border: 1px solid rgba(221,221,221,1.00);
    height: 44px;
    background: rgba(255,255,255,1.00);
    padding-left: 10px;
    padding-right: 10px;
}

body .t68:focus {
    border: 1px solid rgba(0,0,0,1.00);
    outline: none;
}

body .t69 {
    display: flex;
    row-gap: 5px;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
}

body .t71 {
    color: rgba(0,0,0,1.00);
    border: 1px solid rgba(221,221,221,1.00);
    height: 100px;
    background: rgba(255,255,255,1.00);
    max-height: 250px;
    min-height: 100px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

body .t71:focus {
    border: 1px solid rgba(0,0,0,1.00);
    outline: none;
}

body .t72 {
    display: flex;
    justify-content: flex-start;
}

body .t73 {
    color: rgba(255,255,255,1.00);
    border: 2px solid var(--background);
    display: block;
    background: var(--button);
    margin-left: 10px;
    padding-top: 15px;
    padding-left: 19px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-right: 19px;
    padding-bottom: 15px;
}

body .t74 {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

body .t75 {
    color: var(--normalText);
    width: 30rem;
    background: var(--Success);
    text-align: center;
}

body .t77 {
    margin-top: 0px;
    margin-bottom: 0px;
}

body .t78 {
}

body .t79 {
}

body .t81 {
}

body .t88 {
}

body .t89 {
    padding-top: 20px;
    margin-right: 60px;
    padding-bottom: 20px;
}

body .t91 {
}

body .t92 {
}

body .t93 {
}

body .t94 {
    width: 30px;
    height: 20px;
    display: none;
    padding-right: 0px;
    flex-direction: column;
    justify-content: space-between;
}

body .t94 > div {
    top: 0;
    position: relative;
    transition: 0.2s;
}

body .t94.dh-active > div:last-child {
    top: -45%;
    position: relative;
    transform: rotate(-45deg);
}

body .t94.dh-active > div:first-child {
    top: 45%;
    position: relative;
    transform: rotate(45deg);
}

body .t94.dh-active > div:nth-child(2) {
    opacity: 0;
}

body .t95 {
    width: 100%;
    height: 2px;
    background: rgb(0,0,0);
}

body .t96 {
}

body .t97 {
}

body .t98 {
}

body .t100 {
}

body .t105 {
}

body .t109 {
}

body .t110 {
}

body .t111 {
    text-align: right;
}

body .t117 {
    display: flex;
    column-gap: 20px;
    padding-top: 20px;
    justify-content: center;
}

body .t118 {
    color: rgb(0,0,0);
    border: 1px solid #D0D5DD;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    padding-top: 14px;
    padding-left: 40px;
    border-radius: 4px;
    padding-right: 40px;
    padding-bottom: 14px;
    justify-content: center;
}

body .t118:hover p {
    color: rgb(255,255,255);
    transition-delay: 0.1s;
}

body .t118:hover div {
    transform: translate(0px,0px);
}

body .t119 {
    z-index: 1;
    position: relative;
    transition: color 200ms 0ms ease;
}

body .t120 {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(110%,0px);
    background: #000000;
    transition: transform 400ms 0ms ease;
}

body .t121 {
    color: rgb(255,255,255);
    border: 1px solid #D0D5DD;
    display: flex;
    overflow: hidden;
    position: relative;
    background: #000000;
    align-items: center;
    padding-top: 14px;
    padding-left: 40px;
    border-radius: 4px;
    padding-right: 40px;
    padding-bottom: 14px;
    justify-content: center;
}

body .t121:hover p {
    color: rgb(0,0,0);
    transition-delay: 0.1s;
}

body .t121:hover div {
    transform: translate(0px,0px);
}

body .t122 {
    z-index: 1;
    position: relative;
    transition: color 200ms 0ms ease;
}

body .t123 {
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(110%,0px);
    background: #ffffff;
    transition: transform 400ms 0ms ease;
}

body .t124 {
    color: rgba(163,117,255,1.00);
    margin: 0px 0px 10px 0px;
    display: block;
    font-weight: 600;
}

body .t125 {
}

body .t126 {
    text-align: center;
}

body .t127 {
}

body .t128 {
}

body .t129 {
}

body .t130 {
}

body .t131 {
}

body .t132 {
    display: flex;
    background: var(--background);
    border-bottom: 3px solid var(--separator);
    padding-bottom: 10px;
    grid-template-rows: 1fr 3fr .5;
    grid-template-columns: 1fr 8fr;
}

body .t133 {
    width: 220px;
    grid-row: span 3;
}

body .t134 {
}

body .t135 {
}

body .t136 {
}

body .t137 {
}

body .t138 {
    text-align: center;
}

body .t141 {
}

body .t142 {
}

body .t146 {
}

body .t149 {
}

body .t152 {
}

body .t155 {
}

body .t158 {
}

body .t161 {
}

body .t162 {
    text-align: center;
}

body .t164 {
}

body .t165 {
    background: var(--articleBackground);
}

body .t168 {
}

body .t169 {
}

body .t170 {
}

body .t171 {
    grid-row: span 2;
}

body .t172 {
}

body .t173 {
}

body .t174 {
    color: var(--background);
}

body .t176 {
    margin: 0px 0px 10px 0px;
    display: block;
}

body .t183 {
}

body .t184 {
}

body .t185 {
    text-align: center;
}

body .t186 {
}

body .t187 {
}

body .t189 {
}

body .t190 {
}

body .t191 {
}

body .t192 {
}

body .t194 {
}

body .t195 {
}

body .t196 {
}

body .t197 {
}

body .t199 {
}

body .t200 {
    margin-top: 0px;
    padding-top: 0px;
}

body .t201 {
}

body .t202 {
    margin-left: 20px;
}

body .t203 {
}

body .t204 {
    background: var(--articleBackground);
}

body .t205 {
}

body .t206 {
}

body .t208 {
}

body .t209 {
}

body .t210 {
}

body .t211 {
    height: 300px;
}

body .t212 {
}

body .t213 {
}

body .t214 {
}

body .t215 {
}

body .t216 {
    height: 272px;
}

body .t217 {
}

body .t218 {
}

body .t219 {
}

body .t220 {
    align-self: flex-start;
}

body .t221 {
}

body .t222 {
}

body .t223 {
}

body .t224 {
}

body .t225 {
}

body .t226 {
}

body .t227 {
}

body .t228 {
}

body .t229 {
}

body .t230 {
}

body .t231 {
}

body .t232 {
    display: grid;
}

body .t233 {
}

body .t235 {
    grid-column: span 5;
}

body .t236 {
}

body .t237 {
}

body .t238 {
}

body .t239 {
}

body .t241 {
}

body .t242 {
}

body .t243 {
}

body .t244 {
}

body .t245 {
}

body .t247 {
}

body .t248 {
}

body .t249 {
}

body .t250 {
}

body .t251 {
}

body .t253 {
}

body .t254 {
}

body .t255 {
}

body .t257 {
}

body .t259 {
}

body .t260 {
}

body .t261 {
}

body .t262 {
}

body .t263 {
    color: rgb(144,144,144);
}

body .t265 {
}

body .t266 {
}

body .t267 {
}

body .t268 {
    text-align: center;
}

body .t270 {
}

body .t274 {
}

body .t275 {
}

body .t276 {
}

body .t277 {
    color: rgb(144,144,144);
}

body .t279 {
}

body .t280 {
}

body .t281 {
}

body .t282 {
}

body .t285 {
}

body .t286 {
    color: rgb(144,144,144);
}

body .t288 {
}

body .t289 {
}

body .t290 {
}

body .t291 {
}

body .t296 {
}

body .t301 {
}

body .t304 {
}

body .t305 {
}

body .t307 {
}

body .t308 {
}

body .t309 {
}

body .t310 {
}

body .t315 {
    color: rgb(144,144,144);
}

body .t322 {
}

body .t323 {
    color: rgb(144,144,144);
}

body .t325 {
}

body .t326 {
}

body .t327 {
}

body .t328 {
}

body .t336 {
    grid-template-rows: 1fr 3fr 2fr .3;
    grid-template-columns: 1fr 1fr 1fr;
}

body .t337 {
    color: rgb(144,144,144);
    grid-row: span 1;
    grid-column: span 3;
}

body .t338 {
}

body .t339 {
}

body .t340 {
}

body .t341 {
}

body .t342 {
}

body .t343 {
}

body .t344 {
}

body .t345 {
}

body .t346 {
}

body .t347 {
}

body .t349 {
}

body .t350 {
}

body .t351 {
    text-align: center;
}

body .t353 {
}

body .t354 {
}

body .t360 {
    display: grid;
    align-items: stretch;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

body .t361 {
}

body .t362 {
}

body .t363 {
}

body .t365 {
}

body .t366 {
    grid-template-rows: 10fr 25fr 42fr 3fr;
}

body .t367 {
}

body .t368 {
}

body .t369 {
}

body .t370 {
}

body .t371 {
}

body .t372 {
    grid-template-rows: 10fr 30fr 48fr 3fr;
}

body .t373 {
}

body .t374 {
}

body .t375 {
}

body .t376 {
}

body .t377 {
}

body .t378 {
}

body .t379 {
}

body .t380 {
}

body .t381 {
}

body .t382 {
    grid-row: span 2;
}

body .t383 {
}

body .t384 {
}

body .t385 {
    grid-template-rows: 10fr 30fr 23fr 3fr;
}

body .t386 {
}

body .t387 {
}

body .t388 {
    grid-row: span 2;
}

body .t389 {
}

body .t390 {
}

body .t391 {
    grid-template-rows: 10fr 30fr 23fr 3fr;
}

body .t392 {
}

body .t393 {
}

body .t394 {
    grid-row: span 2;
}

body .t395 {
}

body .t396 {
}

body .t397 {
    grid-template-rows: 10fr 30fr 23fr 3fr;
}

body .t398 {
}

body .t399 {
}

body .t400 {
    grid-row: span 2;
}

body .t401 {
}

body .t402 {
}

body .t403 {
    grid-template-rows: 10fr 30fr 20fr 3fr;
}

body .t404 {
}

body .t405 {
}

body .t406 {
}

body .t407 {
}

body .t408 {
}

body .t409 {
    grid-template-rows: 10fr 30fr 18fr 3fr;
}

body .t410 {
}

body .t411 {
}

body .t412 {
    grid-row: span 2;
}

body .t413 {
}

body .t414 {
}

body .t415 {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
}

body .t416 {
    padding-top: 10px;
    padding-bottom: 10px;
}

body .t421 {
}

body .t422 {
    text-align: center;
}

body .t423 {
}

body .t424 {
}

body .t425 {
}

body .t426 {
}

body .t427 {
}

body .t429 {
}

body .t430 {
}

body .t431 {
}

body .t432 {
}

body .t433 {
}

body .t435 {
}

body .t436 {
}

body .t437 {
}

body .t438 {
}

body .t439 {
}

body .t441 {
}

body .t442 {
}

body .t443 {
}

body .t444 {
}

body .t445 {
}

body .t447 {
}

body .t448 {
}

body .t451 {
}

body .t452 {
}

body .t453 {
}

body .t454 {
}

body .t456 {
}

body .t458 {
}

body .t458::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t458:hover::before {
    width: 100%;
}

body .t459 {
}

body .t459::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t459:hover::before {
    width: 100%;
}

body .t460 {
}

body .t460::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t460:hover::before {
    width: 100%;
}

body .t461 {
}

body .t461::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t461:hover::before {
    width: 100%;
}

body .t462 {
}

body .t462::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t462:hover::before {
    width: 100%;
}

body .t463 {
}

body .t463::before {
    top: auto;
    left: 50%;
    right: auto;
    width: 0%;
    bottom: 0%;
    height: 1px;
    content: "";
    position: absolute;
    transform: translate(-50%,0px);
    background: rgb(0,0,0);
    transition: all 200ms 0ms linear;
}

body .t463:hover::before {
    width: 100%;
}

body .t464 {
    position: static;
}

body .t465 {
}

body .t468 {
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

body .t469 {
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

body .t471 {
    font-style: italic;
}

body .t474 {
}

body .t479 {
    justify-self: center;
}

body .t480 {
    justify-self: center;
}

body .t481 {
    justify-self: center;
}

body .t482 {
    justify-self: center;
}

body .t483 {
    justify-self: center;
}

body .t486 {
    display: grid;
    justify-self: flex-start;
    flex-direction: column;
    grid-auto-flow: row;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

