
* {
    box-sizing: border-box;
    margin: 0;
}

html {}

header {
    background: #000;
}

body {
    background: #000;
}

footer {}


.logo_container {
    width: 100%;
    text-align: center;
}

.logo img {
    margin-top: 25px;
    max-width: 500px;
}

.menu_wrap {
    background-color: #000;
    width: 100%;
    height: 270px;
}

.ca-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 20px auto;
    border: 0px solid #000;
}

.ca-menu li {
    width: 250px;
    height: 250px;
    border: 0px solid #ff715d;
    overflow: hidden;
    position: relative;
    background: #000;
    margin-right: 4px;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 125px;
    -moz-border-radius: 125px;
    border-radius: 125px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ca-menu li:last-child {
    margin-right: 0px;
}

.ca-menu .active {
    border: 0px solid #38dd88;
}

.ca-menu li a {
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}

.ca-icon {
    color: #fff;
    position: absolute;
    width: 100%;
    left: 0px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
    margin: 0 auto;
    vertical-align: top;
}

.ca-icon img {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
}

.ca-main {
    color: #fff;
    font-size: 26px;
    position: absolute;
    top: 110px;
    height: 80px;
    width: 170px;
    left: 50%;
    margin-left: -85px;
    opacity: 1;
    text-align: center;
}

.ca-sub {
    text-align: center;
    color: #fff;
    font-size: 26px;
    position: absolute;
    height: 80px;
    width: 170px;
    left: 50%;
    margin-left: -85px;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ca-menu li:nth-of-type(1) .ca-sub,
.ca-menu li:nth-of-type(2) .ca-sub,
.ca-menu li:nth-of-type(3) .ca-sub,
.ca-menu li:nth-of-type(5) .ca-sub {
    top: 110px;
}

.ca-menu li:nth-of-type(4) .ca-sub {
    top: 95px;
}

.ca-menu li:hover {
    background: #000;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.ca-menu li:hover .ca-icon {
    color: #fff;
}

.ca-menu li:hover .ca-main {
    display: none;
}

.ca-menu li:hover .ca-sub {
    opacity: 1;
}

.clear {
    clear: both;
}

.contact {
    height: 25px;
    position: fixed; 
    bottom: 25px;
    width: 100%;
    text-align: center;
}
.contact a {
    color: #000;
    background: #dd3333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}
.contact a:hover {
    color: #fff;
}

.copyright {
    color: #fff;
    text-align: center;
    height: 25px; 
    position: fixed; 
    bottom:0%;
    width:100%; 
    opacity: 1;
}

/**** mid-size styling fixes ***/
@media (max-width: 1012px) {
    .ca-menu li {
        width: 220px;
        height: 220px;
    }

    .ca-icon img {
        width: 220px;
        height: 220px;

    }
}

@media (max-width: 892px) {
    .ca-menu li {
        width: 180px;
        height: 180px;
    }

    .ca-icon img {
        width: 180px;
        height: 180px;

    }
}


/**** mobile styling ***/

@media (max-width: 768px) {
    .logo img {
        margin-top: 15px;
        max-width: 350px;
    }

    .menu_wrap {
        height: 400px;
    }

    .ca-menu { }

    .ca-menu li {
        width: 180px;
        height: 180px;
    }
    .ca-menu .mobile-break {
        flex-basis: 100%;
        height: 0;
    }

    .ca-menu .active {}

    .ca-icon {
        //top: -10px !important;
    }

    .ca-icon img {
        width: 180px;
        height: 180px;

    }

    .ca-main {
        font-size: 18px;
        top: 80px;
        height: 50px;
        width: 120px;
        left: 50%;
        margin-left: -60px;
    }

    .ca-sub {
        font-size: 18px;
        height: 50px;
        width: 120px;
        left: 50%;
        margin-left: -60px;
    }


    .ca-menu li:nth-of-type(1) .ca-sub,
    .ca-menu li:nth-of-type(2) .ca-sub,
    .ca-menu li:nth-of-type(3) .ca-sub,
    .ca-menu li:nth-of-type(5) .ca-sub {
        top: 80px;
    }

    .ca-menu li:nth-of-type(4) .ca-sub {
        top: 65px;
    }

    .footer_text>div {
        width: 100%;
    }
}
