@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Cyberthrone Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Cyberthrone Regular'), url('Cyberthrone.woff') format('woff');
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.html {
    font-size: 62.5%;

}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

/* ///////////..utility classes../////////// */

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.fab {
    color: #fff;
    justify-content: center;
}

.fab:hover {
    color: #c0121f;
}

.btn {
    display: inline-block;
    padding: 0.5em 1.5em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    margin-top: 1em;
    text-transform: uppercase;
    font-size: small;
}

.btn-primary {
    color: #fff;
    background: #c0121f;
}

.btn-primary:hover {
    background: #c0121f;
    transition: background 0.3s ease-in-out;
}

/* ............/navbar/............ *

/* desktop mode............/// */

.navbar-default input[type="checkbox"],
.navbar-default .hamburger-lines {
    display: none;
}

.navbar {
    position: fixed;
    width: 100%;
    /* background-color: hsla(0, 0%, 0%, 0.5); */
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.textos {
    position: absolute;
    padding-top: 25%;
    text-align: center;
    align-items: center;
    z-index: 1;
}

.kokotina ul {
    text-align: center;
    /* padding-left: 25%;
    padding-right: 25%; */
    margin: 0% 15%;
}

.textos.fade {
    background-color: transparent !important;
    -webkit-transition: background 2s;
    transition: background 2s;
}


.navbar-default {
    background-color: rgba(0, 0, 0, 0.0) !important;
    min-height: 50px !important;
    border-radius: 0px 0px 15px 0px !important;
    position: fixed !important;
    width: 20% !important;
    z-index: 100 !important;

    -webkit-transition: background 2s;
    transition: background 2s;
}

.navbar-default.fade {
    background-color: rgba(0, 0, 0, 0.5) !important;
    -webkit-transition: background 2s;
    transition: background 2s;
}


.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFF;
    height: 50px;
    padding: 1em;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    order: 2;
    display: flex;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease-in-out;

}


.menu a:hover {
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.menu>li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (max-width: 700px) {
    .navbar-default {
        border-radius: 0px 0px 15px 0px !important;
        position: fixed !important;
        width: 12% !important;
        z-index: 100 !important;

        -webkit-transition: background 2s;
        transition: background 2s;
    }

    .kokotina ul {
        text-align: center;
        /* padding-left: 25%;
        padding-right: 25%; */
        margin: 0% -2%;
    }

    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 50px;
        left: 0;
        flex-direction: column;
        width: 850%;
        font-size: x-large;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        border: 1px solid #333;
        height: 2.5em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
        background-color: #222;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

.menu-items {
    order: 2;
    display: flex;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 100%;
}

.menu-items a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease-in-out;

}


.menu-items a:hover {
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.logo {
    order: 1;


}

/* ............//// Showcase styling ////......... */

.showcase-area {
    height: 100vh;
    background-color: #c0121f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.showcase-container .fab {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.showcase-container .fab:hover {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    text-align: center;
    left: 50%;
}

.showcase-container p {
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.main-title {
    text-transform: uppercase;
    margin-top: 1.5em;
    color: #fff;
    font-size: 100px;
}



/* ......//about us//...... */

#about {
    padding: 50px 0;

}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
}

#about h2 {
    font-size: 2.3rem;
}

#about p {
    font-size: 1.2rem;
    color: #fff;
}


#about .small {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.about-img {
    flex: 1 1 400px;
    padding: 30px;
}

.about-img p {
    text-align: center;
}

.about-text h3 {
    color: #c0121f;
    text-align: center;
    font-size: x-large;
}

#countdown {
    text-align: center;
}

@keyframes about-img-animation {
    100% {
        transform: translate(0);
    }
}

.about-text {
    flex: 1 1 400px;
    padding: 30px;
    margin: auto;

}

.about-text h2 {
    color: #fff;
    margin-bottom: 15px;

}

.about-text span {
    color: #c0121f;
}

@keyframes about-text-animation {
    100% {
        transform: translate(0);
    }
}

.about-img img {
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 5px 10px 20px black;
}


/* ..........////Food category///........... */

#food {
    padding: 5rem 0 10rem 0;
}

#food h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
}

.food-container {
    display: flex;
    justify-content: space-between;
}

.food-container img {
    display: block;
    width: 100%;
    margin: auto;
    height: 700px;
    object-fit: cover;
    object-position: center;
}

.img-container {
    margin: 0 1rem;
    position: relative;
}

.img-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
    color: #fff;
    font-size: 2.2rem;
}

.img-content a {
    font-size: 1.2rem;
}

.img-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.871);
    opacity: 0;
    z-index: 1;

    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.img-container:hover .img-content {
    opacity: 1;
    top: 40%;
}

/* .........../Food Menu/............ */

.food-menu-heading {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 200;
    color: #fff;
    margin-top: 85px;
}

.food-menu-container {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0px 30px 0px;
}

.food-menu-container img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.food-menu-container .tt img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.tt {
    display: flex;
    text-decoration: none;
    list-style: none;
    margin-top: 15px;
}

.tt a {
    text-decoration: none;
}



.food-menu-item {
    display: flex;
    justify-content: center;
    max-width: 800px;
    flex: 1 1 600px;
    margin-bottom: 150px;
}

.food-description {
    margin: auto 1.5rem;
}

@media screen and (max-width: 32rem) {
    .food-description {
        margin: auto;
    }
}

.font-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
}

.food-description p {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
}

.food-description .food-price {
    color: #c0121f;
    font-weight: 700;
}

/* ........./ Testimonial /.......... */

#testimonials {
    padding: 5rem 0;

}

.testimonial-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 200;
    color: #fff;
}

.testimonial-container {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    padding: 1rem;
}

.testimonial-box .checked {
    color: #ff9529;
}

.testimonial-box .testimonial-text {
    margin: 1rem 0;
    color: #fff;
}

.testimonial-box {
    text-align: center;
    padding: 1rem;
}

.customer-photo img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: auto;
}

.customer-name {
    font-size: 28px;
    font-weight: 700;
    margin-top: 15px;
    color: #fff;
}

.titul {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-top: 9px;
}


.food-titile {
    color: white;
}

/* ........ Contact Us........... */

#contact {
    padding: 5rem 0;
    background: rgb(226, 226, 226);
}

.contact-container {
    display: flex;
    background: #fff;
}

.contact-img {
    width: 50%;
}

.contact-img img {
    display: block;
    height: 400px;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.form-container {
    padding: 1rem;
    width: 50%;
    margin: auto;
}

.form-container input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
    box-shadow: none;
    outline: none;
    margin-bottom: 1rem;
    color: #444;
    font-weight: 500;
}

.form-container textarea {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    color: #fff;
    outline: none;
    padding: 1rem 0;
    resize: none;
}

.form-container h2 {
    font-size: 2.7rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: -1.2rem;
}

.footer-bottom a {
    text-decoration: none;
    font-weight: bold;
    color: #c0121f;

}

.footer-bottom p {
    font-weight: 700;

}


.main {
    color: #c0121f;
}

#all {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

footer {

    height: auto;


    padding-top: 40px;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 3rem;
}

.footer-content p {
    max-width: 300px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 15px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 0px;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials a i {

    transition: color .4s ease;

}



.footer-bottom {

    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 500;
    word-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom span {

    opacity: 1;
    font-weight: bold;
}

.footer-content .drive {
    color: #c0121f;
}

.post p {
    font-weight: 400;
    margin-top: 5px;
}

/* ......../ media query /.......... */

@media (max-width: 768px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 23px;
        width: 35px;
        position: absolute;
        top: 17px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #fff;
    }


    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;

    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container .hamburger-lines .line1:hover {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;

    }


    .navbar .menu-items {
        padding-top: 100px;
        background: #111;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;

    }

    /* .navbar .menu-items li {
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        font-weight: 500;
    } */

    .logo {
        position: absolute;
        top: 0px;
        right: 15px;
        font-size: 2rem;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(35deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-35deg);
    }

    /* ......./ food /......... */

    .food-container {
        flex-direction: column;
        align-items: stretch;
    }

    .food-type:not(:last-child) {
        margin-bottom: 3rem;
    }


    .img-container {
        margin: 0;
    }
}

@media (max-width: 500px) {
    html {
        font-size: 65%;
    }

    /* .navbar .menu-items li {
        font-size: 1.6rem;
    } */

    .testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .food-menu-container img {
        margin: auto;
    }

    .food-menu-item {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        width: 90%;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .contact-img {
        width: 90%;
        margin: 3rem auto;
    }

    .logo {
        position: absolute;
        top: 6px;
        right: 15px;
        font-size: 3rem;
    }

    /* .navbar .menu-items li {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
        font-weight: 500;
    } */
}

@media (min-width: 769px) and (max-width: 1200px) {
    /* .menu-items li {
        font-size: 15px;
    } */

    .img-container h3 {
        font-size: 1.5rem;
    }

    .img-container .btn {
        font-size: 0.7rem;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .showcase-area {
        height: 50vmax;
    }
}


.btn {
    background-color: #ffffff;
}

.button a {
    position: relative;

    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 24px;
    overflow: hidden;
    transition: 0.2s;
}

.button {
    margin-top: 25px;
}

.button a {
    font-weight: 700;
    text-decoration: none;
}


.button a:hover {
    color: red;
    background-color: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 40px #ffffff, 0 0 80px #ffffff;
    transition-delay: 1s;
}

.button a span {
    position: absolute;
    display: block;
}

.button a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff);
}

.button a:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}


.button a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #ffffff);
}

.button a:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}

.button a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffffff);
}

.button a:hover span:nth-child(2) {
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}

.button a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(3600deg, transparent, #ffffff);
}

.button a:hover span:nth-child(4) {
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}





.tt-m {
    display: flex;
    text-decoration: none;
    list-style: none;
    margin-top: 15px;
}

.tt-m a {
    text-decoration: none;
}



.icons-tt-m {
    display: flex;
    margin: 35px;
    font-size: 45px;
    align-items: center;
    justify-content: space-between;
    transition: all .2s ease-in-out;
}



.icons-tt-m:hover {
    transform: scale(1.4);
}

.icons-tt-m h4 {
    margin-left: 25px;
    color: white;
}






@media screen and (max-width: 375px) {
    .main-title {
        font-size: 25px;
    }

    .showcase-container p {
        font-size: 9px;
    }

    .navbar .menu-items {
        max-width: 220px;
    }

    .tt {
        justify-content: center;
    }

    .food-titile {
        margin-top: 15px;
    }



    .icons-tt-m {

        font-size: 20px;

        justify-content: center;
    }

    .socials-main {
        font-size: 25px;
    }

    .footer-content h3 {
        font-size: 35px;
    }





}








.icons-tt {
    display: flex;
    text-decoration: none;
    list-style: none;
    margin-top: 15px;
}

.tt a {
    text-decoration: none;
}



.icons-tt {
    display: flex;
    margin: 15px;
    font-size: 45px;
    align-items: center;
    justify-content: space-between;
    transition: all .2s ease-in-out;
}



.icons-tt:hover {
    transform: scale(1.4);
}

.icons-tt h4 {
    margin-left: 25px;
    color: white;
}


.socials-main {
    display: flex;
    margin: 15px;
    font-size: 45px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    list-style: none;
}

.icons-tt {
    text-decoration: none;
}

.herec p {
    color: #21c012;
}

.editor p {
    color: #0068ff;
}

.redaktor p {
    color: #FFA500;
}

.dev p {
    color: #ff0000;
}


.-title {
    font-weight: 700;
    color: #fff;
    font-size: 35px;
    display: flex;
    justify-content: center;



}


.section-title span {
    color: #c0121f;

}

.section-title {
    color: #fff;
}

.-title h1 {
    align-items: center;
    justify-content: center;
    font-size: 105px;
    margin-top: 200px;
    color: #fff;
    text-transform: uppercase;
}

.sub-title h2 {
    font-weight: 300;
    color: #c0121f;
    display: flex;
    justify-content: center;
    font-size: 65px;
    font-family: 'Cyberthrone Regular';

}

.container- {
    background: linear-gradient(#000000b3,
            rgba(0, 0, 0, 0.29)), url(./img/TAKTONESKUS.png);
    height: 1000px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.main-info {
    display: flex;
}

.right-side {
    max-width: 800px;
}

.right-side img {
    background-position: center;
}

.about-text h4 {
    color: #c0121f;

}

.uvod- p {

    font-size: 25px;
    font-weight: 400;
    margin-bottom: 40px;
    display: flex;

    color: #fff;


}

.uvod- {

    max-width: 750px;

}

.lang {
    font-weight: bold;
}

.lang2 p {
    font-size: 22px;
    font-style: italic;
}

#myVideo {
    position: relative;
    right: 0;
    top: -150px;
    width: 100%;
    /* min-width: 100%;
    min-height: 100%; */
}



/* Projects section */
#projects .projects {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

#projects .projects-header h1 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 50px;
}

#projects .all-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#projects .project-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

#projects .project-info {
    padding: 30px;
    flex-basis: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    color: white;
}

#projects .project-info h1 {
    font-size: 50px;
    font-weight: 500;
}

#projects .project-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

#projects .project-info p {
    color: white;
}

#projects .project-img {
    flex-basis: 50%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

#projects .project-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
    opacity: 0.7;
}

#projects .project-img img {
    transition: 0.3s ease transform;
}

#projects .project-item:hover .project-img img {
    transform: scale(1.1);
}

/* End Projects section */


/* Project */
#projects .project-item {
    flex-direction: row;
}

#projects .project-item:nth-child(even) {
    flex-direction: row-reverse;
}

#projects .project-item {
    height: 400px;
    margin: 0;
    width: 100%;
    border-radius: 0;
}

#projects .all-projects .project-info {
    height: 100%;
}

#projects .all-projects .project-img {
    height: 100%;
}

.project-img img {

    max-height: 400px;
}

.bcg- {
    background: #b7b7b7;
    z-index: 5;
}

/* End Project */

.Online {
    color: green;
}

.checking,
.unchecked {
    color: #FF8C00;
}

.Offline {
    color: #c0121f;
}

#foot {
    background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}

.btn- {
    display: flex;
    justify-content: center;
}



/* phone */
@media screen and (max-width: 768px) {

    .menu-items li {
        display: none;
    }

    .main-title {
        font-size: 50px;
    }

    .showcase-container p {
        font-size: 16px;
    }

    .testimonial-container {
        display: block;
    }

    .socials-main .fab {
        justify-content: center;
    }



    .-title h1 {
        font-size: 85px;
    }

    .sub-title h2 {
        font-size: 75px;
    }

    .button a {

        font-size: 18px;
        padding: 12px;

    }


}



@media screen and (max-width: 375px) {
    .main-title {
        font-size: 25px;
    }

    .showcase-container p {
        font-size: 12px;
    }

    .navbar .menu-items {
        max-width: 220px;
    }

    .tt {
        justify-content: center;
    }

    .food-titile {
        margin-top: 15px;
    }

    .icons-tt-m {
        font-size: 20px;
        justify-content: center;
    }

    .socials-main {
        font-size: 25px;
    }

    .footer-content h3 {
        font-size: 35px;
    }

    .-title h1 {
        font-size: 45px;
    }

    .sub-title h2 {
        font-size: 45px;
    }

    .button a {

        font-size: 14px;


    }

    .main-title {
        margin-bottom: 5px;
    }


}

.wrapper h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 25px;

}




.wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 80rem;

}

.cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.col {
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
}

.col2 {
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
}

.container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.front,
.back {
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);

    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 500px;

    height: auto;

    color: #fff;
    font-size: 1.5rem;
}

.back {
    background: #cedce7;
    background: -webkit-linear-gradient(45deg, #29323c 0%, #485563 100%);
    background: -o-linear-gradient(45deg, #29323c 0%, #485563 100%);
    background: linear-gradient(45deg, #29323c 0%, #485563 100%);
}

.front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

}

.container:hover .front,
.container:hover .back {
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 5px 10px 20px black;
}

.inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.inner-imgage {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 88%;
    position: absolute;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.inner-imgage img {
    width: 25%;
    border-radius: 50%;
}

.inner-imgage img:hover {
    color: red;
    background-color: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 40px #ffffff, 0 0 80px #ffffff;
    transition: 0.5s ease-in-out;
}

@media (min-width: 300px) {
    .inner-imgage {
        width: 100%;
    }
}


.container .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container .front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container:hover .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.container:hover .front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.front .inner p {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.front .inner p:after {
    content: '';
    width: 5rem;
    height: 2px;
    position: absolute;

    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
}

.front .inner span {

    font-family: 'Montserrat';
    font-weight: 300;
}

.back .inner p {
    font-size: 17px;
    font-weight: 200;
    margin-bottom: 5px;
    text-align: center;

}

.longtext {
    font-size: 10px;
    font-weight: 200;
    margin-bottom: 5px;
    text-align: center;

}

.back .inner h4 {
    margin-bottom: 35px;
    font-size: 35px;
}

.servers {
    font-style: oblique;
}

@media screen and (max-width: 64rem) {
    .col {
        width: calc(33.333333% - 2rem);
    }

    .col2 {
        width: calc(33.333333% - 2rem);
    }
}

@media screen and (max-width: 48rem) {
    .col {
        width: calc(50% - 2rem);
    }

    .col2 {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 32rem) {
    .col {
        width: 100%;
        height: 100%;
        padding: 5%;
    }
    
    .col2 {
        width: 100%;
        height: 100%;
        padding: 5%;
    }

    .front,
    .back {
        min-height: 600px;
    }

    .back .inner h4 {

        font-size: 35px;
    }
}