@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@300;400;500;600;700;800&display=swap');

:root {
    /*  Warna AJR 
        --color-primary:#a14141;
        --color-primary-variant:#682a2a;
    */

    /* 
        Warna AbieSoft */
        --color-primary:rgb(31, 70, 122);
        --color-primary-variant:#0e3568;
    

    --color-danger:#b72424;
    --color-success:#3DBD2A;
    --color-warning:#F2D40E;
    --color-white:#fff;
    --color-info-dark:#626a75;
    --color-info-light:#DCE1EB;
    --color-dark:#252733;
    --color-dark-op:rgba(37, 39, 51, .8);
    --color-light:rgba(164, 169, 206, 0.18);
    --color-dark-variant:#677483;
    --color-background:#F6F6F9;
    --color-background-2:#F0F0F9;

    --color-dark-hover:rgb(48, 50, 63);
    --color-primary-hover:rgb(41, 83, 138);
    --color-danger-hover:rgb(190, 43, 43);
    --color-success-hover:rgb(72, 202, 52);
    --color-warning-hover:rgb(253, 223, 23);
    
    --color-primary-clear:rgba(131, 70, 122, .2);
    --color-danger-clear:rgba(181, 36, 36, .2);
    --color-success-clear:rgba(61, 189, 42,.2);
    --color-warning-clear:rgba(242, 212, 14,.2);

    --card-border-radius:0.8rem;
    --border-radius-1:0.4rem;
    --border-radius-2:0.8rem;
    --border-radius-3:1.2rem;

    --card-padding:1.8rem;
    --padding-1:1.2rem;

    --border-input: #eee;

    --white-hover: #fafafa;

    --box-shadow: 0 2rem 3rem var(--color-light);
}

.dark-theme-variables {
    --color-background: #181A1E;
    --color-white: #202528;
    --color-dark: #fcfcfc;
    --color-dark-variant: #b7c6ce;
    --color-light: rgba(0,0,0,0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
    --border-input: rgba(237, 239, 253,.2);
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

html {font-size: 14px;}

body {
    width: 100vw;
    height: 100vh;
    font-family: poppins, sans-serif;
    font-size: 0.95rem;
    background-color: var(--color-background);
    overflow-x: hidden;
    color: var(--color-dark);
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* p { opacity: 1; padding-top: 0; display: block; transition: all .5s; }
p.none { opacity: 0; padding-top: -50px; transition: all .5s; } */

.bold-400 {
    font-weight: 400;
}
.bold-500 {
    font-weight: 500;
}
.bold-600 {
    font-weight: 600;
}
.bold-700 {
    font-weight: 700;
}
.bold-800 {
    font-weight: 800;
}

.display-1{ font-size: 6rem; }
.display-2{ font-size: 5rem; }
.display-3{ font-size: 4rem; }
.display-4{ font-size: 3rem; }

.min-h-1{ min-height: 100px; }
.min-h-15{ min-height: 150px; }
.min-h-2{ min-height: 200px; }
.min-h-25{ min-height: 250px; }
.min-h-3{ min-height: 300px; }
.min-h-35{ min-height: 350px; }
.min-h-4{ min-height: 400px; }
.min-h-45{ min-height: 450px; }
.min-h-5{ min-height: 500px; }
.min-h-55{ min-height: 550px; }

.max-h-1{ max-height: 100px; }
.max-h-15{ max-height: 150px; }
.max-h-2{ max-height: 200px; }
.max-h-25{ max-height: 250px; }
.max-h-3{ max-height: 300px; }
.max-h-35{ max-height: 350px; }
.max-h-4{ max-height: 400px; }
.max-h-45{ max-height: 450px; }
.max-h-5{ max-height: 500px; }
.max-h-55{ max-height: 550px; }

.fix-h-1{ height: 100px; }
.fix-h-15{ height: 150px; }
.fix-h-2{ height: 200px; }
.fix-h-25{ height: 250px; }
.fix-h-3{ height: 300px; }
.fix-h-35{ height: 350px; }
.fix-h-4{ height: 400px; }
.fix-h-45{ height: 450px; }
.fix-h-5{ height: 500px; }
.fix-h-55{ height: 550px; }

display-1, display-2, display-3, display-4 {
    font-weight: 800;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }

.mw-1{ max-width: 100px; }
.mw-2 { max-width: 200px; }
.mw-3 { max-width: 300px; }

.mh-2 { max-height: 200px; }
.mh-25 { max-height: 250px; }

.relative{ position: relative; }
.absolute{ position: absolute; }

.auto { overflow: auto; }

.auto::-webkit-scrollbar {
    width: 0.2rem;
    background-color: var(--color-white);
}

.auto::-webkit-scrollbar-thumb {
    width: 0.2rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.2rem;
}

.auto::-webkit-scrollbar-track {
    width: 0.2rem;
    background-color: var(--color-white); 
}

.flex { display: flex; }
.flex-between { justify-content: space-between; }
.flex-center { justify-content: center; }
.items-center{ align-items: center; }

.text-semibold{ font-weight: 600; }
.text-bold{ font-weight: 800; }
.text-center{ width: 100%; text-align: center; }

.overflow-hidden { overflow: hidden; }

.radius-0{ border-radius: 0; }
.radius-05{ border-radius: 0.5rem; }
.radius-1{ border-radius: 1rem; }
.radius-2{ border-radius: 2rem; }

.mt-01{ margin-top: 0.1rem; }
.mt-05{ margin-top: 0.5rem; }
.mt-1{ margin-top: 1rem; }
.mt-2{ margin-top: 2rem; }
.mt-3{ margin-top: 3rem; }
.mt-4{ margin-top: 4rem; }
.mt-5{ margin-top: 5rem; }

.mb-2{ margin-bottom: 2rem; }

.ml-05{ margin-left: 0.5rem; }
.ml-1{ margin-left: 1rem; }
.ml-2{ margin-left: 2rem; }

.pa-05{ padding: 0.5rem; }
.pa-1{ padding: 1rem; }
.pa-2{ padding: 2rem; }

.bg-primary { background-color: var(--color-primary); color: var(--color-white); }
.bg-light { background-color: var(--color-light); }
.bg-info-light { background-color: var(--color-info-light); color: var(--color-dark); }
.bg-background { background-color: var(--color-background); }
.bg-background-2 { background-color: var(--color-background-2); }
.bg-white { background: var(--color-white); }

.full { width: 100%; }
.center{ display:flex; justify-content: center; align-items: center; }
.between { display:flex; justify-content: space-between; align-items: center; }

.absolute { position: absolute; }
.z0 { z-index: 0; }
.z99 { z-index: 99; }

a { 
    text-decoration: none; 
    color: var(--color-dark); 
    font-weight: 600;
}

a:hover { 
    text-decoration: underline; 
    color: var(--color-primary);
}

/*
    Grid
*/

.grid{
    display: grid;
    grid-template-columns: auto;
}

.col-2{ grid-template-columns: auto auto; }
.col-3{ grid-template-columns: auto auto auto; }
.col-4{ grid-template-columns: auto auto auto auto; }
.col-5{ grid-template-columns: auto auto auto auto auto; }
.col-6{ grid-template-columns: auto auto auto auto auto auto; }
.col-7{ grid-template-columns: auto auto auto auto auto auto auto; }
.col-8{ grid-template-columns: auto auto auto auto auto auto auto auto; }
.col-9{ grid-template-columns: auto auto auto auto auto auto auto auto auto; }
.col-10{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto; }
.col-11{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto; }
.col-12{ grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto; }

.gap-1{ gap: 1rem; }
.gap-2{ gap: 2rem; }
.gap-3{ gap: 3rem; }
.gap-4{ gap: 4rem; }


/*
    Form
*/

form {
    margin: 20px 0;
}

.r3 {
    border-radius: 3px;
}

.form-control {
    border: 1px solid var(--border-input);
    padding: 7px;
    font-family: poppins, sans-serif;
    background-color: var(--color-white);
    color: var(--color-info-dark);
}

input[name='password'],
input[name='psw'],
input[name='pswbaru'],
input[name='konfirmasipassword'] {
    padding-right: 40px;
}

.form-control:hover {
    transition: all 1s;
    background-color: var(--color-white);
}

.form-control:focus {
    transition: all 1s;
    background-color: var(--color-white);
}

a,
select,
button,
input[type='submit'],
input[type='button'],
div.form-control {
    cursor: pointer;
}

button {
    outline: none;
    border: none;
    padding: 10px 10px;
    font-weight: 600;
}

button.btn-delete {
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    background: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 3px;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
}

.form-grup {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.form-grup.search,
.form-grup.select {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-grup.search .form-control,
.form-grup.select .form-control {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    padding: 10px 10px 10px 45px;
    box-shadow: 0.1rem 0.1rem 0.2rem var(--color-light);
}

.form-grup.search span,
.form-grup.select span {
    position: absolute;
    width: 30px;
    background-color: none;
    left: 10px;
    margin-top: 18px;
    z-index: 99;
    color: var(--color-info-dark);
}

.form-grup.select .form-control {
    padding-left: 15px;
    padding-right: 45px;
}

.form-grup.select span {
    left: auto;
    right: 5px;
}

.form-grup .error {
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    background-color: rgba(181, 36, 36,.04);
}

.form-grup .error::placeholder {
    color: rgba(181, 36, 36,.4);
}

.form-grup span.lihatpassword {
    position: absolute;
    right: 10px;
    font-size: 13pt;
    margin-top: 10px;
    cursor: pointer;
}

.form-grup span {
    position: absolute;
    margin-top: -20px;
    right: 5px;
}

.form-grup .msg-err {
    display: block;
    color: var(--color-danger);
    margin-top: 5px;
    font-size: 8pt;
}

.form-grup ul.hidden {
    display: none;
}

.form-grup ul.show {
    position: absolute;
    width: 100%;
    border: 1px solid var(--color-info-light);
    max-height: 300px;
    overflow: auto;
    z-index: 99;
    background-color: var(--color-white);
}

.form-grup ul.show div {
    padding: 5px;
}

.form-grup ul.show li {
    padding: 7px;
    background-color: var(--color-white);
    cursor: pointer;
}

.form-grup ul.show li:hover {
    background-color: var(--color-info-light);
}

.form-grup ul.show::-webkit-scrollbar {
    width: 0.2rem;
    background-color: var(--color-white);
}

.form-grup ul.show::-webkit-scrollbar-thumb {
    width: 0.2rem;
    background-color: var(--color-primary-hover);
    border-radius: 0.2rem;
}

.form-grup ul.show::-webkit-scrollbar-track {
    width: 0.2rem;
    background-color: var(--color-white); 
}

.form-grup label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-info-dark);
}

.form-grup input,
.form-grup textarea,
.form-grup select {
    width: 100%;
}

.form-button {
    margin-top: 0px;
}

.block-label {
    position: relative;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid var(--color-info-light);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.block-label span {
    position: absolute;
    padding-top: 0px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: var(--color-white);
}

.box-round-photo {
    width: 110px;
    height: 110px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.round-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.round-photo img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}


/*
    Message
*/
#message {
    position: fixed;
    z-index: 99999;
    right: 0;
    left: 0;
    bottom: 0;
}

.flash {
    margin-left: -100%;
    position: absolute;
    background-color: var(--color-primary-variant);
    color: white;
    z-index: 999;
    left: 25px;
    bottom: 25px;
    padding: 15px;
    animation-name: kekanan;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    border-radius: 4px;
    box-shadow: 0 2rem 3rem var(--color-light);
}

.flash .body-message {
    position: relative;
}

.success {
    color: var(--color-white);
    background-color: var(--color-success);
}

.danger {
    color: var(--color-white);
    background-color: var(--color-danger);
}

.warning {
    color: var(--color-white);
    background-color: var(--color-warning);
}

.flash .body-message div {
    padding-left: 10px;
    padding-right: 30px;
}

.flash .body-message span{
    position: absolute;
    display: block;
    padding: 5px;
    cursor: pointer;
    color: var(--color-white);
    right: 0;
    top: 0;
    border-radius: 50%;
    font-size: 10pt;
}

.flash .body-message span:hover{
    color: var(--color-info-light);
}


@keyframes kekanan {
    from {
        margin-left: -100%;
    }

    to {
        margin-left: 0;
    }
}







/*
    Loader AJR
*/
.loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hide {
    display: none;
}

.loader div:nth-child(1) {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: var(--color-background-2);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.loader div:nth-child(1) div:nth-child(1) {
    position: absolute;
    width: 150px;
    height: 150px;
    margin-left: -150px;
    background: linear-gradient(90deg, var(--color-danger), var(--color-warning));
    border-radius: 50%;
    animation-name: animRedYellow;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}

@keyframes animRedYellow {
    from { margin-left: -150px; }
    to { margin-left: 0px; }
}

/* Blank Putih Dibelakang Peta membbentuk Cincin */
.loader div:nth-child(2) {
    position: absolute;
    width: 130px;
    height: 140px;
    background-color: var(--color-white);
    border-radius: 50%;
    margin-top: 20px;
    z-index: 3;
}


.loader div:nth-child(4) {
    background-color: var(--color-background-2);
    width: 130px;
    height: 160px;
    position: absolute;
    border-radius: 50%;
    clip-path: polygon(12% 75%, 40% 20%, 90% 85%, 40% 40%);
    z-index: 5;
}

.loader div:nth-child(4) div:nth-child(1) {
    background-color: #181A1E;
    width: 130px;
    height: 160px;
    margin-left: -130px;
    animation-name: animHurufA;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes animHurufA {
    from { margin-left: -130px; }
    to { margin-left: 0px; }
}


.loader div:nth-child(5) {
    background-color: var(--color-background-2);
    width: 130px;
    height: 160px;
    position: absolute;
    border-radius: 50%;
    clip-path: polygon(30% 52%, 35% 46%, 75% 46%, 80% 47%, 81% 48%, 82% 49%, 84% 51%, 84% 54%, 84% 56%, 82% 60%, 79% 62%, 72% 62%, 68% 57%, 76% 57%, 77% 55%, 77% 53%, 75% 51%, 60% 51%, 60% 80%, 58% 82%, 56% 84%, 54% 84%, 52% 84%, 46% 82%, 30% 73%, 50% 80%, 51% 80%, 52% 78%, 52% 52%,               50% 52%);
    z-index: 6;
}

.loader div:nth-child(5) div:nth-child(1) {
    background-color: var(--color-danger);
    width: 130px;
    height: 160px;
    margin-left: -130px;
    animation-name: animHurufJR;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes animHurufJR {
    from { margin-left: -130px; }
    to { margin-left: 0px; }
}

.loader div:nth-child(6) {
    position: absolute;
    width: 0px;
    height: 0px;
    background: rgba(240, 240, 249, 0);
    border-radius: 50%;
    animation-name: animBackLoad;
    animation-duration: 1.5s;
    animation-delay: 2s;
    animation-timing-function: ease;
    animation-iteration-count:infinite;
    z-index: 0;
}

@keyframes animBackLoad {
    from {
        width: 400px;
        height: 400px;
        background: rgba(240, 240, 249, .4);
    }
    to {
        width: 800px;
        height: 800px;
        background: rgba(240, 240, 249, 0);
    }
}

.loader div:nth-child(7) {
    position: absolute;
    font-weight: 500;
    margin-top: 180px;
    font-size: 17pt;
}


/*
    Navbar

*/

nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

nav .brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

nav .brand .logo {
    width: 40px;
    height: 40px;
    overflow: hidden;
}

nav .brand .logo img {
    width: auto;
    height: 35px;
}

nav .brand .title {
    margin-left: 20px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 14;
}

nav .menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .menu ul li a{
    display: block;
    padding: 20px;
    color: var(--color-white);
    text-decoration: none;
    margin-right: 20px;
}

nav .menu ul li a:hover{
    background-color: var(--color-dark-hover);
    color: var(--color-white);
    text-decoration: none;
}

nav .menu ul li.auth a{
    display: block;
    padding: 8px 20px;
    background-color: var(--color-danger);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px;
}

nav .menu ul li.auth a:hover{
    background-color: var(--color-danger-hover);
    color: var(--color-white);
    text-decoration: none;
}

nav .menu ul li.auth-grup-start a{
    display: block;
    padding: 8px 20px;
    background: var(--color-danger);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px 0 0 6px;
    margin-right: 0;
}

nav .menu ul li.auth-grup-start a:hover{
    background: var(--color-danger-hover);
}

nav .menu ul li.auth-grup-end a{
    display: block;
    padding: 8px 20px 6px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0 6px 6px 0;
    margin-left: 0;
}

nav .menu ul li.auth-grup-end a:hover{
    background: var(--color-primary-hover);
}

nav .menu ul li.auth-grup-end a span{
    font-size: 12pt;
    padding: 0;
}







/* 
    Container 
*/

#cover {
    width: 100%;
    height: 100vh;
    background: var(--color-background);
    color:var(--color-dark);
}

#about {
    width: 100%;
    height: 1450px;
    background: var(--color-background-2);
    color:var(--color-dark);
    border-radius: 0px 0px 300px 0px;
    overflow: hidden;
}

#about .title {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 20pt;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

#about .title.stuck {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-background-2);
    z-index: 99;
    text-align: center;
    padding: 20px;
}

#about .text {
    display: block;
    padding: 120px 40px 20px 400px;
    text-align: justify;
    font-size: 11pt;
}

#about .image {
    position: fixed;
    top: 120px;
    left: 0;
    width: 360px;
    height: 350px;
    overflow: hidden;
    transition: all .5s;
}

#about .image.hide {
    left: -360px;
    opacity: 0;
}

#about .image.hide img {
    opacity: 0;
}

#about .image img {
    width: 360px;
    opacity: 1;
    object-fit: cover;
}

#about p {
    padding-left: 40px;
    padding-right: 40px;
    opacity: 1;
}

#about p.none {
    padding-left: 40px;
    padding-right: 40px;
    opacity: 0;
}

#about p.stuck {
    position: fixed;
    top: 120px;
    left: 380px;
    right: 20px;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    transition: padding-top .5s;
    opacity: 1;
}


#limbah {
    width: 100%;
    height: 1000px;
    background-color: var(--color-background);
    color: var(--color-dark);
}

#limbah .title {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 20pt;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

#limbah .title.stuck {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-background-2);
    z-index: 99;
    text-align: center;
    padding: 20px;
}

#limbah .header-table {
    display: flex;
    justify-content: center;
    position: fixed;
    background-color: var(--color-background);
    top: 108px;
    left: 0;
    right: 0;
    height: 100px;
    text-align: center;
}

#limbah .header-table.hide {
    display: none;
}

#limbah .header-table table {
    display: block;
    width: 100%;
    margin-top: 40px;
    background-color: var(--color-danger);
    color: var(--color-white);
}

#limbah .header-table table thead tr th {
    padding: 10px;
    text-align: center;
}

#limbah .header-table .box,
#limbah .slideup .box {
    width: 900px;
}

#limbah .slideup {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

#limbah .slideup table tbody tr td {
    padding: 10px;
    text-align: center;
}


#photo {
    margin-top: 40px;
    width: 100%;
    background: var(--color-background-2);
    color:var(--color-dark);
    overflow: hidden;
    padding-bottom: 50px;
}

#photo .title {
    position: absolute;
    margin-top: 0px;
    left: 0;
    right: 0;
    font-size: 20pt;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

#photo .title.stuck {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-background-2);
    z-index: 99;
    text-align: center;
    padding: 20px;
}

#photo .galery {
    margin-top: 150px;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
}

#photo .galery .item {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

#photo .galery .item div{
    position: absolute;
    background-color: var(--color-dark);
    opacity: .9;
    width: 100%;
    height: 200px;
    z-index: 9;
    margin-top: -200px;
    transition: all .3s;
}

#photo .galery .item:hover div{
    position: absolute;
    background-color: var(--color-dark);
    opacity: .9;
    width: 100%;
    height: 200px;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

#photo .galery .item div button{
    padding: 5px 7px;
    background-color: var(--color-primary);
    color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 4px;
}

#photo .galery .item div button:hover {
    background-color: var(--color-danger);
}

#photo .galery .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all .3s;
}

#photo .galery .item:hover img {
    width: 120%;
    height: 200px;
    margin-left: -10%;
    object-fit: cover;
}

.galery-fullscreen {
    position: fixed;
    background-color: var(--color-dark-op);
    color: var(--color-white);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.galery-fullscreen .item {
    position: relative;
    width: 800px;
    height: 600px;
}

.galery-fullscreen .item img{
    width: 800px;
    height: 600px;
    object-fit: cover;
}

.galery-fullscreen .item button{
    position: absolute;
    right: 0;
    border: none;
    outline: none;
    background-color: var(--color-danger);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}


#kontak {
    margin-top: 40px;
    width: 100%;
    background: var(--color-background);
    color:var(--color-dark);
    overflow: hidden;
    padding-bottom: 50px;
}

#kontak .title {
    position: absolute;
    margin-top: 0px;
    left: 0;
    right: 0;
    font-size: 20pt;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

#kontak .title.stuck {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--color-background-2);
    z-index: 99;
    text-align: center;
    padding: 20px;
}

#kontak .info {
    position: relative;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

#kontak .map {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 900px;
    height: 400px;
}


.footer {
    background-color: var(--color-dark);
    padding: 20px;
    color: var(--color-white);
}

.footer .footer-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
}