.alert-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 auto;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
    background: rgb(0, 0, 0, .3);
    z-index: 999999
}

@keyframes open-frame {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(.95)
    }

    50% {
        transform: scale(.97)
    }

    75% {
        transform: scale(.93)
    }

    100% {
        transform: scale(1)
    }
}

.alert-frame {
    background: #fff;
    min-height: 350px;
    width: 300px;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, .2);
    border-radius: 10px;
    animation: open-frame .3s linear
}

.alert-header {
    display: flex;
    flex-direction: row;
    height: 175px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.alert-header-base {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px
}

.custom-img-wrapper {
    min-height: 145px;
    max-height: 20rem;
    overflow: scroll;
    display: flex;
    align-items: center;
    justify-content: center
}

.alert-img {
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    align-self: center
}

.alert-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Dosis, sans-serif;
    font-weight: 700;
    cursor: pointer;
    line-height: 30px
}

.alert-close-default {
    color: rgb(0, 0, 0, .2);
    font-size: 16px;
    transition: color .5s;
    margin-left: auto;
    margin-right: 5px;
    margin-top: 5px
}

.alert-close-circle {
    background: #e4eae7;
    color: #222;
    border-radius: 17.5px;
    margin-top: -15px;
    margin-right: -15px;
    font-size: 12px;
    transition: background .5s;
    margin-left: auto
}

.alert-close-circle:hover {
    background: #fff
}

.alert-close:hover {
    color: rgb(0, 0, 0, .5)
}

.alert-body {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: center
}

.alert-title {
    font-size: 18px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 35px;
    color: #222;
    align-self: center
}

.alert-message {
    font-size: 15px !important;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    align-self: center
}

.alert-button {
    min-width: 140px;
    height: 35px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .5s;
    padding: 0 15px;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.alert-button:focus {
    outline: 0
}

.question-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center
}

.confirm-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .5s;
    padding: 0 15px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.confirm-button:focus {
    outline: 0
}

.cancel-button {
    min-width: 100px;
    height: 35px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1.6;
    transition: background .5s;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.cancel-button:focus {
    outline: 0
}

@keyframes open-toast {
    0% {
        transform: scaleX(1) scaleY(1)
    }

    20%,
    45% {
        transform: scaleX(1.35) scaleY(.1)
    }

    65% {
        transform: scaleX(.8) scaleY(1.7)
    }

    80% {
        transform: scaleX(.6) scaleY(.85)
    }

    100% {
        transform: scaleX(1) scaleY(1)
    }
}

.toast-container {
    display: flex;
    flex-direction: column;
    top: 15px;
    right: 15px;
    position: fixed;
    z-index: 999999
}

.toast-content {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 20px rgb(0, 0, 0, .2);
    animation: open-toast .3s linear
}

.toast-content+.toast-content {
    margin-top: 10px
}

.toast-frame {
    padding: 5px 15px;
    display: flex;
    min-width: 100px;
    height: 70px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    align-items: center;
    flex-wrap: wrap
}

.toast-body-img {
    height: 40px
}

.toast-body {
    display: flex;
    align-items: center;
    width: 100%
}

.toast-body-content {
    display: flex;
    flex-direction: column;
    width: 100%
}

.toast-title {
    font-size: 16px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-left: 15px
}

.toast-message {
    font-size: 13px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-left: 15px
}

.toast-close {
    color: rgb(0, 0, 0, .2);
    font-family: Dosis, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: color .5s;
    margin-left: 25px
}

@keyframes timer {
    0% {
        width: 100%
    }

    25% {
        width: 75%
    }

    50% {
        width: 50%
    }

    75% {
        width: 25%
    }

    100% {
        width: 1%
    }
}

.toast-timer {
    width: 1%;
    height: 5px
}

.toast-close:hover {
    color: rgb(0, 0, 0, .5)
}

.error-bg {
    background: #d85261
}

.success-bg {
    background: #2dd284
}

.warning-bg {
    background: #fada5e
}

.question-bg {
    background: #779ecb
}

.error-btn:hover {
    background: #e5a4b4
}

.success-btn:hover {
    background: #6edaa4
}

.warning-btn:hover {
    background: #fcecae
}

.info-btn:hover {
    background: #c3e6fb
}

.question-btn:hover {
    background: #bacee4
}

.error-timer {
    background: #e5a4b4
}

.success-timer {
    background: #6edaa4
}

.warning-timer {
    background: #fcecae
}

.info-timer {
    background: #c3e6fb
}

.info-bg {
    background: #88cef7
}

/* custom css  */

.all-technologi {
    display: flex;
}

.elementor-element-14ed1d6f {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.development-image img {
    height: 170px;
}

.ekit_navsearch-button {
    display: flex !important;
    justify-content: center;
    text-align: center;
}



/* Project page start */






@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 100vH; */
    background-color: #000000;
    font-family: Roboto;

}

h1 {
    font-size: 40pt;
    font-weight: 500;
    color: #363638;
}

.container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
    padding-bottom: 5rem;
}

.item {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 320px;
    max-width: 310px;
    width: 100%;
    height: 200px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.item:hover {
    cursor: pointer;
}

.item * {
    transition: all 0.35s ease-in-out;
}

img {
    max-width: 100%;
    vertical-align: top;
    height: 310px;
}

.item:hover img {
    opacity: 0.2;
}

.project-heading {
    width: 80%;
    height: 90%;
    position: absolute;
    top: -180px;
    left: 10%;
    /* color: #01A2AC; */
}

.project-heading h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.item:hover .text {
    top: 20%;
}

.item:hover .button {
    bottom: 20%;
}

.item>img {
    width: 100%;
    height: 200px;
}

.item .button {
    position: absolute;
    color: white;
    bottom: -100px;
    left: 25%;
    width: 50%;
    border: 3px solid var(--e-global-color-accent);
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: var(--e-global-color-8beaea1);
    color: #F5F5F5;
}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #F5F5F5;
    margin: 5% auto;
    box-sizing: border-box;
    width: 700px;
    max-height: 714px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.scale {
    animation: scale 0.5s;
    animation-fill-mode: forwards;
}

@keyframes scale {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

#img {
    width: 100%;
    height: 450px;
}

#details {
    padding: 25px;
    text-align: left;
    position: relative;
    height: 264px;
    box-sizing: border-box;
    border-top: 1px solid #363638;
}

#details * {
    transition: all .3s;
}

#title {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#details .button {
    position: absolute;
    width: 30%;
    background-color: var(--e-global-color-accent);
    color: #F5F5F5;
    text-align: center;
    left: 25px;
    bottom: 35px;
    padding: 15px;
}

#details i {
    position: absolute;
    bottom: 30px;
    right: 25px;
    font-size: 3rem;
    color: #01A2AC;
}

#details .button:hover,
i:hover {
    cursor: pointer;
    opacity: 0.8;
}

/* Close Button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 10px;
}

.close:hover,
.close:focus {
    color: #363638;
    text-decoration: none;
    cursor: pointer;
}

/* project page end  */