/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('media.css');

* {
    box-sizing: border-box;
    position: relative;
}

:root {
    --primary1: #0d3b63;
    --primary2: #f0f8ff;
    --primary3: #8cc6f9;
    --primary4: #03a9f4;
    --light1: #fff;
    --text: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary2);
    font-family: var(--text);
    font-size: 14px;
    letter-spacing: 1px;
    margin: auto;
    color: #0d3b63;
    box-sizing: border-box;
}


.header {
    background: var(--primary1);
    color: var(--light1);
    height: 70px;
    align-items: center;
    display: flex;
}


.navigation {
    margin-top: 10px;
}

.header a {
    color: var(--light1);
}

.header a:hover {
    color: var(--primary3);
}

.box {
    margin: 10px 0;
    background: var(--light1);
    /* box-shadow: 2px 2px 9px var(--primary1); */
    border-radius: 10px;
}

.head {
    background-color: var(--primary1);
    padding: 5px 0px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    color: var(--light1);
}

.notification li {
    color: initial;
    border-bottom: solid 1px #e6e5e5;
    padding: 15px 0;
}

.notification small {
    color: gray;
    text-align: right;
}

.head h4 {
    margin-left: 12px;
}

.notification {
    max-height: 300px;
    overflow-y: scroll;
    list-style-type: none;
    padding-left: 5px;
    text-align: center;
}

.container {
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

a {
    text-decoration: none;
}

.box table {
    text-align: center;
    border: none;
}

.data {
    min-height: 200px;
}

input[type="text"],
[type="search"],
[type="password"],
[type="email"] {
    padding: 5px;
    border-radius: 5px;
    /* box-shadow: 1px 1px 2px; */
    border: solid 1px lightgray;
    font-size: 12px;
    height: 20px;
    font-weight: bold;
    height: 35px;
}

input:focus-within,
select:focus-within,
textarea:focus-within {
    outline: none;
}

input[type="number"] {
    padding: 5px;
    max-width: 70px;
    border-radius: 5px;
    box-shadow: 1px 1px 2px;
}

input[type="password"] {
    padding: 5px;
    border-radius: 5px;
    /* box-shadow: 1px 1px 2px; */
}

input[type="file"] {
    width: 180px;
}

textarea {
    padding: 7px;
    /* box-shadow: 1px 1px 2px; */
    border-radius: 5px;
}

select {
    padding: 7px;
    border-radius: 5px;
    /* box-shadow: 1px 1px 2px; */
    width: 180px;
}

input[type="submit"] {
    padding: 7px;
    box-shadow: 1px 1px 2px;
}

ul.sub {
    display: none;
    list-style-type: none;
    position: absolute;
    margin-left: 40px;
    text-align: left;
    margin-top: -12px;
    background-color: #e4e2e2;
    min-width: 130px;
}

.navigation .col-3:hover ul.sub {
    display: block;
}

a:hover {
    color: #313030;
}

.sub li {
    line-height: 25px;
    border-bottom: solid 1px lightgray;
}

input[type="date"] {
    padding: 5px;
    border-radius: 5px;
    box-shadow: 1px 1px 2px;
}

a.link:hover ul.sub {
    display: block;
}

.logo a {
    color: yellow;
    text-shadow: 1px 1px 2px var(--primary1);
}

.container a {
    color: var(--primary4);
}

.container a:hover {
    color: var(--primary1);
}

input.readonly {
    background-color: #ecebeb;
    color: #9c150c;
}

.strong {
    font-weight: bold;
    font-size: large;
}

.list td {
    border: solid 1px var(--primary3);
    border-width: 0 0 1px 1px;
    font-size: 12px;
}

.list tr.head td {
    padding: 13px;
}

.list td {
    padding: 7px;
}

.subList i {
    font-style: normal;
    margin: 0 20px;
    display: -webkit-box;
}

.tile {
    padding: 20px 10px;
    background: var(--primary1);
    text-align: center;
    margin: 5px;
    color: var(--light1);
    /* font-weight: bold; */
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 12px;
}


.tile:hover {
    background-color: var(--primary4);
    cursor: pointer;
}

img.developed_by {
    width: 250px;
}

.red {
    color: red !important;
}

.green {
    color: mediumseagreen !important;
}

.bg_red {
    background: red;
}

.popup_bg {
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.48);
    margin: auto;
    padding-top: 250px;
}

.popup {
    margin: auto;
    height: 150px;
}

.popup .head p {
    padding-left: 20px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.noFloat {
    float: none;
}

button,
.button,
input[type="submit"] {
    border: none;
    padding: 7px 20px;
    background: var(--primary1);
    color: var(--light1);
    border-radius: 20px;
    cursor: pointer;
}

button:hover,
.button:hover {
    background-color: var(--primary4);
}

.close {
    width: 20px;
    float: right;
    margin-top: -59px;
    margin-right: -9px;
    background-color: orangered;
    text-align: center;
    border-radius: 100px;
    padding: 4px 2px;
    color: var(--light1);
    cursor: pointer;
}

.close:hover {
    background-color: #5f5d5d;
}

.subtext {
    color: #CCCCCC;
}

.success {
    background-color: #84ffc1;
    color: darkgreen;
    min-height: 60px;
    padding: 15px;
}

.failed {
    padding: 5px 10px;
    background-color: #FF9999;
    color: darkred;
}

.diffr {
    color: #0099FF;
}

.footer {
    background-color: var(--primary1);
    color: var(--light1);
    font-size: small;
    bottom: 0;
    position: fixed;
    bottom: 0;
    z-index: 2;
}

.content {
    float: left;
}

.scroll250 {
    height: 250px;
    overflow-y: scroll;
}

.gallery img {
    padding: 10px 0;
}

.linkw {
    color: var(--light1) !important;
    font-weight: bold;
    cursor: pointer;
}

.linkw:hover {
    text-decoration: underline;
}

/***************** Home ********************/
.signup input[type="text"],
.signup input[type="email"],
.signup input[type="submit"],
.signup input[type="password"],
.signup select,
.signup textarea {
    padding: 20px 10px;
    box-shadow: 5px 5px 5px #0000001a;
    width: 100%;
    font-size: 16px;
    color: #9a9a9a;
    background-color: transparent;
    border: none;
    border-width: 1px 0;
    font-weight: normal;
    background: var(--light1);
    border-radius: 5px;
    font-weight: normal;
    box-sizing: border-box;
    margin-top: 10px;
}

.signup input:focus-within,
textarea:focus-within {
    outline: none;
    font-weight: bold;
    color: var(--primary1);
    transform: translate(0, -5px);
    transition: all .3s ease-in-out;
}

.signup input[type="submit"] {
    background-color: #0d3b63;
    border-radius: 10px;
    padding: 9px;
    color: var(--light1);
    border: none;
}

.signup input[type="submit"]:hover {
    background-color: #5c5c5c;
    transition: .5s;
}

/***************************Submenu Style*********************/
.submenu {
    list-style-type: none;
    width: 200px;
    font-size: 12px;
    text-align: left;
    background: var(--primary4);
    position: absolute;
    top: 15px;
    padding: 0;
    display: none;
    z-index: 999;
}

.submenu li {
    padding: 10px 15px;
    padding-right: 0;
    border-bottom: solid 1px;
}

.submenu li:hover {
    background-color: var(--primary1);
}

.menu li:hover .submenu {
    display: block;
}

h2.herotext {
    font-size: 50px;
    margin-bottom: 0;
}

p.subhero {
    font-size: 20px;
    color: var(--primary1);
}

.herotext span {
    color: #03a9f4;
}

.herobutton {
    border: solid 2px var(--primary1);
    border-radius: 8px;
    font-size: 20px;
    background-color: transparent;
    color: var(--primary1);
}

.herobutton:hover {
    background: var(--light1);
    translate: -5px -5px;
    transition: .2s ease-in;
    box-shadow: 5px 10px 10px var(--primary2)66;
}

.card_head {
    font-size: 35px;
}

.card_head span {
    color: #0ec962;
}

.signup input[type="submit"]:hover {
    translate: -2px -5px;
    color: var(--primary1);
    transition: .2s ease-in;
    background: var(--primary3);
}

#alert {
    position: absolute;
    right: 10px;
    bottom: 20px;
    padding: 10px 20px;
    background: var(--light1);
    z-index: 1000;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 50%);
    border-radius: 5px;
    border: solid 1px lightgrey;
    opacity: 0;
    display: none;
}

.fade-out {
    display: block !important;
    animation-play-state: running;
    animation: fade-out 2s ease-in-out;
}

.num {
    width: 50px;
    border: none;
    box-shadow: none !important;
    border-bottom: 1px solid grey;
    background: lightgray;
}

.center {
    text-align: center;
}

/* modal */
.modal {
    display: none;
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    z-index: 99999;
    background: #000000c7;
    width: 100%;
    height: 100%;
    color: var(--light-bg);
    padding: 20px;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}


#contact-form-modal ::placeholder {
    color: var(--light-bg);
}


.modal-close {
    /* left: 0; */
    /* border-radius: 5px; */
    border: solid 1px;
    /* width: 70px; */
    /* height: 70px; */
    /* text-align: center; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
}

.modal-close p {
    margin: 0;
    /* font-size: .7rem; */
}

.modal h2 {
    font-weight: 700;
    font-size: 3rem;
}

#contact-form-modal option {
    color: var(--primary-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--primary3);
    border: solid 1px;
    border-radius: 5px;
    padding: 10px 20px;
}

.btn-secondary:hover {
    background: var(--primary1);
    color: var(--light1);
}

.color-light {
    color: var(--light1);
}

.heroright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: 500px;
}

/* .logo img {
    padding: 10px;
    background: var(--light1);
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 3px var(--primary1);
} */

.data-scroll {
    max-height: 250px;
    overflow: auto;
}

.form2 input {
    height: 35px;
}

.form2 .form-group {
    padding: 10px;
}

.center {
    text-align: center;
}

.hidden {
    display: none;
}

.link {
    color: var(--primary4);
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
    color: var(--primary1);
}

.floating-button {
    position: fixed;
    bottom: 120px;
    right: 20px;
}

.menu-icon {
    display: none;
}

@keyframes fade-out {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    20% {
        opacity: 1;
        transform: translateY(-10px);
    }

    80% {
        opacity: 1;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(0px);
    }

}