@font-face {
    font-family: 'MontSerrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Play';
    src: url('../fonts/Play-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

/*Font Play*/
.fp {
    font-family: Play !important;
}

*{
   font-family: 'MontSerrat', sans-serif;
   padding: 0;
   margin: 0;
}

p {
    margin-bottom: 0 !important
}

a{
    text-decoration: none!important;
    color: #d91717;
}
ul {
    padding-left: 0 !important
}
body{
    overflow-x: hidden;
}
.bg-primary {
    background-color: #e3211e!important;
}
.border-primary {
    border-color: #d91717!important;
}

.text-primary {
    color: #e3211e!important;
}
#logo {
    width: 250px;
    height: 150px;
    object-fit: contain;
    position: absolute;
    z-index: 8000;
    top: 10px;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
}
#logo-mobile{
    display: none;
}
@media screen and (max-width: 768px){
    #logo-mobile {
        display: flex;
        width: 200px;
        height: 100px;
        object-fit: contain;
    }

    #logo {
        display: none;
    }
}

.text-blue {
    color: #293b67;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }
}
svg{
    position: absolute;
    bottom: -1px;
    z-index: 3;
}
header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}
.top-header {
    z-index: 100;
    position: absolute;
}
.top-header-bottom{
    top: 50px!important;
    position: absolute;
    z-index: 100;
}
@media screen and (max-width: 768px){
    .sticky-top {
        position: fixed !important;
        top: 0px;
        background: #ffffffd6;
    }
    .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: red;
    }
    .nav-item {
        color: black!important;
        font-weight: 600!important;
        text-shadow: 2px 2px 1px #d2d2d2!important;
    }
    .carousel-caption{
        bottom: 0%;
        top: auto!important;
        width: 100%;
        left: 0%;
        right: 0%;
    }
    .btn-entry{
        width: 320px!important;
    }
    .p-5{
        padding: 1.5rem!important;
    }
}
.top-header-link {
    color: #fc2222;
    font-weight: 600;
    text-shadow: 3px 3px 5px black;
    transition: 0.3s ease;
}
.top-header-link:hover{
    color: #fff;
}
.nav-item {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    text-shadow: 2px 2px 5px #1e1e1e;
}
.dropdown-toggle {
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 2px 2px 5px #1e1e1e;
}
.dropdown-item{
    text-shadow: none!important;
}
.btn-entry {
    z-index: 201;
    background: linear-gradient(45deg, #253b78, #3a658d);
    width: 400px;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px !important;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px #1e1e1e;
    transition: 0.3s ease;
    text-shadow: 2px 2px 5px #1e1e1e;
}
.btn-entry:hover {
    background: linear-gradient(155deg, #253b78, #3a658d);
}

.text-shadow {
    text-shadow: 3px 3px 10px #0e0e0e;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px!important;
    }
}

#Website{
    display: none;
}

.entry-offer-form {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.rotate-left {
    transform: perspective(1000px) rotateX(360deg) rotateY(4deg) rotate(0deg);
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, .3), 0 30px 60px -30px rgba(0, 0, 0, .5), -10px 10px 60px -10px rgb(198 198 198);
    padding-right: 0 !important;
    width: 50%;
}
.rotate-right {
    transform: perspective(1000px) rotateX(360deg) rotateY(356deg) rotate(0deg);
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, .3), 0 30px 60px -30px rgba(0, 0, 0, .5), -10px 10px 60px -10px rgb(198 198 198);
    display: flex;
    padding-left: 0!important;
    width: 50%;
}
@media screen and (max-width: 768px){
    .rotate-left{
        width: 100%!important;
    }
    .rotate-right{
        width: 100%!important;
    }
}
.rotate-right-inner{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
textarea {
    resize: none;
}

.why-us-image {
    width: 50%;
    height: 650px;
    object-fit: cover;
    position: absolute;
    right: 0;
    z-index: -1;
    border-radius: 10px;
}
/*Notifications*/
/*Success*/
.k-alert-success {
    background-color: #438715;
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #38383880;
    animation: successFade 1s;
}

#alertMessage {
    display: flex;
}

@keyframes successFade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}
/*Danger*/
.k-alert-danger {
    background-color: #f5c6cb;
    color: #5f0b0be0;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Warning*/
.k-alert-warning {
    background-color: #ffcc29;
    color: #3b331d;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Info*/
.k-alert-info {
    background-color: #baebf3;
    color: #0c5460;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}
/*Detail*/
.k-alert-detail {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid transparent;
    box-shadow: 1px 1px 12px #2e2e2e63;
}

.k-alert-close {
    text-decoration: none;
    cursor: pointer;
    transition: 0.1s ease;
    outline: none;
    color: #247816;
    padding: 0rem 0.7rem;
    background-color: #ffffff;
    font-size: 24px;
    border: none;
    margin: 0;
    position: absolute;
    top: 10% !important;
    right: 0 !important;
    margin-top: 0.6rem;
    margin-right: 0.4rem;
    -ms-transform: translate(-50%, -50%);
    width: 38px;
    height: 40px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .k-alert-close:hover {
        background-color: #f1f1f1f2;
        color: #22a70e;
    }

.k-alert {
    width: 400px;
    position: absolute;
    top: 9rem;
    right: 5rem;
    position: fixed;
    z-index: 100;
    padding: 1.5rem;
}

@media screen and (max-width: 675px) {
    .k-alert {
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        position: fixed;
        z-index: 30;
        font-size: 14px;
        border-radius: 0 !important;
    }
}
