.footer-container {
    color: #222;
}

.footer-icon-item.facebook {
	background: url('../../img/front/facebook-black-icon.png') no-repeat;
}

.footer-icon-item.instagram {
	background: url('../../img/front/instagram-black-icon.png') no-repeat;
}

.footer-icon-item.twitter {
	background: url('../../img/front/twitter-black-icon.png') no-repeat;
}



.im-container {
    position: relative;
    display: block;
    overflow-x: hidden;
}

.im-top {
    position: relative;
    display: block;
    width: 100%;
    height: 707px;
    padding-top: 180px;
    background: url('../../img/front/technology_product/imrk/imrk-background.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
}

.im-top:before {
    content: "";
    position: absolute;
    display: block;
    /* width: 558px; */
    width: 200px;
    height: 196px;
    bottom: 0px;
    left: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    /* background-size: contain !important; */
    z-index: 1;
    
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    
    -webkit-animation: imrktopbefore 2.8s linear infinite;
    -moz-animation: imrktopbefore 2.8s linear infinite;
    -ms-animation: imrktopbefore 2.8s linear infinite;
    animation: imrktopbefore 2.8s linear infinite;
}

@keyframes imrktopbefore {
    0% { 
        left: -200px;
        background-position: -558px 0px;
    }
    10% { 
        left: -200px;
        background-position: -558px 0px;
    }
    90% { 
        left: 558px;
        background-position: 200px 0px;
    }
	100% { 
        left: 558px;
        background-position: 200px 0px;
    }
}

.im-top:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 196px;
    top: 0px;
    right: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    /* background-size: contain !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    
    -webkit-animation: imrktopafter 2.8s linear infinite;
    -moz-animation: imrktopafter 2.8s linear infinite;
    -ms-animation: imrktopafter 2.8s linear infinite;
    animation: imrktopafter 2.8s linear infinite;
}

@keyframes imrktopafter {
    0% { 
        right: -200px;
        background-position: -558px 0px;
    }
    10% { 
        right: -200px;
        background-position: -558px 0px;
    }
    90% { 
        right: 558px;
        background-position: 200px 0px;
    }
	100% { 
        right: 558px;
        background-position: 200px 0px;
    }
}

.im-top-content {
    position: relative;
    display: table;
    text-align: center;
    width: calc(100% - 60px);
    max-width: 400px;
    margin: auto;
}

.im-top-image {
    position: relative;
    display: block;
    margin: 0px auto 30px;
}

.im-top-desc {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: bold;
    font-family: gotham;
    color: #fff;
    padding: 28px 0px;
    text-align: center;
    line-height: 30px;
    /* border-top: 5px solid #da251d; */
    /* border-bottom: 5px solid #da251d; */
    letter-spacing: 2px;
}

.im-top-desc:before {
    content: "";
    position: absolute;
    display: block;
    width: 500%;
    height: 5px;
    background: #da251d;
    opacity: 0;
    top: 0px;
    left: 200%;
}

.im-top-desc:after {
    content: "";
    position: absolute;
    display: block;
    width: 500%;
    height: 5px;
    background: #da251d;
    opacity: 0;
    bottom: 0px;
    right: 200%;
}

.im-container.opening-activate .im-top-desc:before {
    left: 0%;
    width: 100%;
    opacity: 1;

    -webkit-transition: 0.8s left 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    -moz-transition: 0.8s left 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    -ms-transition: 0.8s left 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    transition: 0.8s left 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
}

.im-container.opening-activate .im-top-desc:after {
    right: 0%;
    width: 100%;
    opacity: 1;

    -webkit-transition: 0.8s right 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    -moz-transition: 0.8s right 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    -ms-transition: 0.8s right 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
    transition: 0.8s right 0.6s, 0.8s opacity 0.6s, 0.8s width 0.6s;
}



.is-desc-after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 60px;
    background: #da241d;
    top: calc(100% + 10px);
    left: calc(50% - 1px);
    overflow: hidden;
}

.is-desc-after:before {
    content: "";
    position: absolute;
    display: block;
    height: 300%;
    width: 100%;
    background: #fff;
    top: -200%;
    left: 0px;

    -webkit-animation: downslide 1.5s infinite;
    -moz-animation: downslide 1.5s infinite;
    -ms-animation: downslide 1.5s infinite;
    animation: downslide 1.5s infinite;
}

@keyframes downslide {
    0% { 
		top: -300%;
    }
    100% { 
		top: 100%;
    }
}



.im-what {
    position: relative;
    display: block;
    text-align: center;
    padding: 155px 0px 85px;
}

.im-what-title {
    position: relative;
    display: block;
    font-size: 36px;
    color: #222;
    font-family: gotham;
    line-height: 28px;
}

.im-what-image {
    position: relative;
    display: block;
    margin: -45px auto -45px;
}

.im-what-desc {
    position: relative;
    display: block;
    width: calc(100% - 60px);
    max-width: 420px;
    color: #222;
    font-size: 15px;
    font-family: roboto;
    line-height: 24px;
    margin: auto;
    text-align: left;
}

.im-what-desc strong {
    color: #da251d;
}

.im-why {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 577px;
    background: url('../../img/front/technology_product/imrk/why-imrk-background.jpg') no-repeat;
    background-position: 50%;
    background-size: cover !important;
    padding: 145px 30px 125px;
}

.im-why:before {
    content: "";
    position: absolute;
    display: block;
    /* width: 527px; */
    width: 200px;
    height: 265px;
    background: url('../../img/front/technology_product/imrk/imrk-middle-abstract-image.png') no-repeat;
    /* background-size: contain !important; */
    background-size: 527px 265px !important;
    background-position: 527px 0px;
    right: 0px;
    top: -182px;

    -webkit-animation: imrkwhybefore 2.8s linear infinite;
    -moz-animation: imrkwhybefore 2.8s linear infinite;
    -ms-animation: imrkwhybefore 2.8s linear infinite;
    animation: imrkwhybefore 2.8s linear infinite;
}

@keyframes imrkwhybefore {
    0% { 
        right: -200px;
        background-position: -527 0px;
    }
    10% { 
        right: -200px;
        background-position: -527 0px;
    }
    90% { 
        right: 527;
        background-position: 200px 0px;
    }
	100% { 
        right: 527;
        background-position: 200px 0px;
    }
}

.im-why-title {
    position: relative;
    display: table;
    margin: 0px auto 95px;
    text-align: center;
    font-size: 36px;
    font-family: gotham;
    color: #fff;
    line-height: 32px;
    font-weight: bold;
    padding-bottom: 2px;
}

.im-why-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    left: 0px;
    bottom: 0px;
}

.im-why-group {
    position: relative;
    display: block;
    font-size: 0px;
    text-align: center;
}

.im-why-item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 220px;
    margin-right: 115px;
}

.im-why-item:last-child {
    margin-right: 0px;
}

.im-why-numb {
    position: absolute;
    left: -52px;
    top: 0px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-family: gotham;
    font-weight: bold;
    color: #da251d;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
}

.im-why-item-title {
    position: relative;
    display: block;
    font-size: 24px;
    font-family: gotham;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 14px;
    color: #fff;
    text-align: left;
    margin-top: -5px;
}

.im-why-item-desc {
    position: relative;
    display: block;
    text-align: left;
}

.im-why-item-list {
    position: relative;
    display: block;
    padding-left: 10px;
    font-size: 15px;
    font-family: roboto;
    line-height: 24px;
    color: #fff;
}

.im-why-item-list:before {
    content: "•";
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    line-height: 24px;
    font-size: 15px;
    font-family: roboto;
}

.im-testimony {
    position: relative;
    display: block;
    padding: 75px 30px 120px;
    text-align: center;
}

.im-testimony-title {
    position: relative;
    display: table;
    font-size: 36px;
    font-family: gotham;
    font-weight: bold;
    color: #da251d;
    line-height: 33px;
    border-bottom: 1px solid #da251d;
    margin: 0px auto 60px;
}

.im-testimony-group {
    position: relative;
    display: block;
    font-size: 0px;
    text-align: center;
    margin-bottom: 20px;
}

.im-testimony-group:last-child {
    margin-bottom: 0px;
}

.im-testimony-list {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px;
    border: 1px solid #dadada;
}

.im-link {
    position: relative;
    display: block;
    overflow: hidden;
    width: calc(100% - 60px);
    max-width: 525px;
    height: 60px;
    border: 5px solid #da251d;
    font-size: 18px;
    font-family: gotham;
    color: #da251d;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
    margin: 0px auto 100px;
    padding-left: 0px;

    -webkit-transition: padding-left 0.4s;
    -moz-transition: padding-left 0.4s;
    -ms-transition: padding-left 0.4s;
    transition: padding-left 0.4s;
}

.im-link:before {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    right: -85px;
    top: -25px;
    border-top: 50px solid #da251d;
    border-bottom: 50px solid #da251d;
    border-right: 50px solid #da251d;
    border-left: 50px solid transparent;
    
    /* -webkit-transform: rotate(45deg); */
    /* -moz-transform: rotate(45deg); */
    /* -ms-transform: rotate(45deg); */
    /* transform: rotate(45deg); */

    -webkit-transition: right 0.4s;
    -moz-transition: right 0.4s;
    -ms-transition: right 0.4s;
    transition: right 0.4s;
}

.im-link-arrow {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 18px;
    top: 18px;
    margin-left: 5px;
    opacity: 1;
    left: 0px;

    -webkit-transition: opacity 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, left 0.4s;
    transition: opacity 0.4s, left 0.4s;
}

.im-link:hover {
    padding-left: 23px;
    
    -webkit-transition: padding-left 0.4s;
    -moz-transition: padding-left 0.4s;
    -ms-transition: padding-left 0.4s;
    transition: padding-left 0.4s;
}

.im-link:hover:before {
    right: -50px;
    
    -webkit-transition: right 0.4s;
    -moz-transition: right 0.4s;
    -ms-transition: right 0.4s;
    transition: right 0.4s;
}

.im-link:hover .im-link-arrow {
    opacity: 0;
    left: 30px;

    -webkit-transition: opacity 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, left 0.4s;
    transition: opacity 0.4s, left 0.4s;
}

.im-product {
    position: relative;
    display: block;
    text-align: center;
}

.im-product-title {
    position: relative;
    display: block;
    font-size: 18px;
    font-family: roboto;
    color: #222;
    line-height: 15px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.im-product-group {
    position: relative;
    display: block;
    font-size: 0px;
    padding-bottom: 130px;
}

.im-product-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 50px;
    width: 260px;
    border: 1px solid #222;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    font-family: gotham;
    color: #222;
    margin: 0px 10px;
    background: transparent;

    -webkit-transition: color 0.4s, background 0.4s;
    -moz-transition: color 0.4s, background 0.4s;
    -ms-transition: color 0.4s, background 0.4s;
    transition: color 0.4s, background 0.4s;
}

.im-product-link:hover {
    background: #da251d;
    color: #fff;

    -webkit-transition: color 0.4s, background 0.4s;
    -moz-transition: color 0.4s, background 0.4s;
    -ms-transition: color 0.4s, background 0.4s;
    transition: color 0.4s, background 0.4s;
}

.im-product-link.active {
    background: #da251d !important;
    color: #fff !important;
}



.opening-anim {
    left: 300px;
    opacity: 0;
}

span.opening-anim {
    position: relative;
}


.left-anim-container {
    opacity: 0;
    left: -300px;
}

.left-anim {
    opacity: 0;
    left: -300px;
}

.bottom-anim-container {
    opacity: 0;
    bottom: -300px;
}

.bottom-anim {
    opacity: 0;
    bottom: -300px;
}

p.bottom-anim {
    position: relative;
}

span.bottom-anim {
    position: relative;
}

.right-anim-container {
    opacity: 0;
    left: 300px;
}

.right-anim {
    opacity: 0;
    left: 300px;
}


/* Desktops and laptops */
@media screen and (min-width : 1224px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {
    .im-why-item {
        width: calc(50% - 115px);
        margin-bottom: 80px;
    }
    
    .im-why-item:nth-child(2) {
        margin-right: 0px;
    }

    .im-why-item:last-child {
        margin-bottom: 0px;
    }

	.im-testimony-list {
        width: calc(50% - 20px);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
	.im-what-title {
        font-size: 32px;
    }

    .im-what-desc {
        max-width: none;
    }

    .im-what-desc br {
        display: none;
    }

    .im-why-group {
        padding-left: 23px;
    }

    .pr-why-image {
        position: relative;
        display: block;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
	
}

@media screen and (max-width: 768px) and (orientation: portrait) {
	
}

@media screen and (max-width : 500px) {
	.im-top-image {
        width: 260px;
    }

    .im-top-desc {
        font-size: 16px;
        line-height: 24px;
        padding: 20px 0px;
    }

    .im-top-content {
        max-width: 300px;
    }

    .im-what {
        padding: 110px 0px 70px;
    }

    .im-what-image {
        left: -25%;
        max-width: none;
        width: 150%;
    }

    .im-why-item {
        left: 20px;
        width: calc(100% - 60px);
        margin: 0px 0px 50px 0px !important;
    }

    .im-testimony-group {
        margin-bottom: 0px;
    }

    .im-testimony-list {
        margin: 0px 0px 20px 0px;
        width: 100%;
    }

    .im-why-title {
        font-size: 32px;
    }

    .im-testimony-title {
        font-size: 32px;
    }

    .im-link {
        font-size: 12px;
    }

    .im-product-link {
        margin-bottom: 20px;
    }

    .im-product-link:last-child {
        margin-bottom: 0px;
    }
}