/* -- @package iconatheme - Theme Style Sheet -- */


/* --- GENERIC CSS --- */

::-webkit-scrollbar { background: #333; position: absolute; width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-corner { display: none; }
::-webkit-scrollbar-thumb { background: #944f00;}
::-webkit-scrollbar-thumb:hover { background: #ff8800 ; }
:focus { outline: none; }


*{
    font-family: 'Quicksand','Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: #555;
}

html, body{
    top: 0;
    position: relative;
    display: block;
    width: 100%;
    scroll-behavior: smooth;
}

ul, li {
    list-style: none;
}

h1, h1 a { font-size: 28px; color: #ff8800;}
h2, h2 a { font-size: 24px; color: #fff;}
h3, h3 a { font-size: 22px; color: #fff;}
h4, h4 a { font-size: 20px; color: #fff;}
h5, h5 a { font-size: 18px; color: #fff;}
h6, h6 a { font-size: 16px; color: #fff;}
p, p a, a { font-size: 16px; color: #555;}
p a, a { color: #ff8800;}

p{
    margin: 20px 0; 
    letter-spacing: 1px;
    line-height: 1.5em;
}
img, video {
    height: 100%;
    width: 100%;
    border-radius: 3px;
}

hr{
    border-top: 1px solid #000;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #222;
    margin: 20px 0;
}

input[type=text], input[type=email], input[type=url] {
    border: none;
    border-bottom: 1px solid #999;
    width: calc(100% - 10px);
    height: 30px;
    margin: 5px 0;
    background: transparent;
    padding: 5px 10px;
}

.justify {
    text-align: justify;
}

textarea {
    border: none;
    border-bottom: 1px solid #999;
    width: calc(100% - 10px);
    margin: 5px 0;
    padding: 10px;
    background: transparent;
}

input[type=submit] {
    cursor: pointer;
    display: block;
    border: none;
    padding: 10px 20px;
    border: 1px solid #ff8800;
    color: #ff8800;
    background: transparent;
    margin: 20px 0;
}

input[type=submit]:hover {
    background: #ff8800;
    color: #000;
}

/* --- SITE HEADER --- */

.icona-header {
    z-index: 5;
    display: block;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    position: fixed;
    width: 50px;
    height: 100%;
    float: left;
    left: 0;
    top: 0;
    overflow: hidden;
    background: #35363a;
    box-shadow: 0 0 5px 5px rgba( 0, 0, 0, 0.1);
}

.icona-site-info {
    display: block;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.site-icon {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: relative;
    top: 0;
    width: 30px;
    height: auto;
    margin: 10px auto;
}

.icona-header:hover {
    width: 160px;
}

.icona-header:hover .site-icon {
    top: 10px;
    width: 50px;
}

.site-icon img {
    border-radius: 0;
}

.site-title {
    position: relative;
    display: inline-block;
    height: 30px;
    top: 10px;
    left: 0;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    line-height: 1.6em !important;
    font-size: 20px;
}

.site-logo {
    display: block;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    width: 120px;
    height: auto;
    opacity: 0;
    position: relative;
    top: 5px;
    margin: 0 auto;
    visibility: hidden;
    filter: invert(1);
}

.icona-header:hover .site-logo {
    opacity: 1;
    visibility: visible;
}

.site-nav {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: absolute;
    width: 100%;
    top: calc( 50vh - 216px / 2 );
}

.icona-main-nav-bar{
    display: block;
    position: relative;
    
}

.icona-main-nav-bar li {
    width: 150px;
    list-style: none;
}

.icona-main-nav-bar li a{
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    line-height: 1em;
    display: block;
    padding: 10px;
    padding-left: 0;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}

.icona-main-nav-bar li a:hover,
.icona-main-nav-bar li a:hover .nav-icon {
    color: #ff8800;
    text-shadow: 0 1px 1px #000 ;
}

.color-link {
    color: #ff8800 !important;
    text-shadow: 0 1px 1px #000 !important;
}


.nav-icon {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    line-height: 2.2em;
    text-align: center;
    width: 50px;
    color: #000;
    float: left;
}

.icona-main {
    display: block;
    position: relative;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    right: 0;
    left: 0;
    float: right;
    width: calc(100% - 20px);
}

.main-shrink{
    width: calc(100% - 150px);
}

.main-row {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 60px;
}

.a-active {
    color: #ff8800 !important;
}

/* --- ICONA SLIDER --- */

#icona-slider {
    display: block;
    position: relative;
    width: 100%;
    height: 65vh;
    background: #000;
    overflow: hidden;
}

#slides {
     -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    position: relative;
    min-width: 100%;
    height: 65vh;
}

#slides li {
    display: block;
    position: relative;
    width: 100%;
    height: 65vh;
    float: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#s1 { background: #1abc9c;}
#s2 { background: #3498db;}
#s3 { background: #9b59b6;}
#s4 { background: #34495e;}
#s5 { background: #e74c3c;}

.overlap { display: block; width: 100%; height: 100%; background-size: auto; background-position: left top; background-repeat: repeat; opacity: .5; }

.slide-title {
    display: inline-block;
    position: absolute;
    top: calc( 50% - 110px / 2);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    background: #fff;
    color: #000;
    font-size: 40px;
    padding: 10px;
}

#pre-press,
#post-press,
#extend-serv {
    float: right;
    right: 8%;
    left: auto;
}

#book-work,
#notebook-mfg {
    float: left;
    right: auto;
    left: 8%;
}

.slider-nav-btns {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: absolute;
    width: 100%;
    top: calc( 50% - 36px / 2);
    opacity: 0;
}

#icona-slider:hover .slider-nav-btns {
    opacity: 1;
}

#prev, #next {
    cursor: pointer;
    color: #fff;
    padding: 10px 20px;
    background: rgba( 0, 0, 0, 0.1 );
}

#prev {
    float: left;
}

#next {
    float: right;
}

#pagination-wrap{
    bottom: 0;
    display: block;
    position: absolute;
	width: 100%;
	margin-bottom: 20px;
	height: 15px;
	text-align: center;
}

#pagination-wrap ul {
	width: 100%;
}

#pagination-wrap ul li{
	margin: 0 4px;
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.5;
	position: relative;
    top: 0;
}

#pagination-wrap ul li.active{
    width: 12px;
    height: 12px;
    top: 3px;
	opacity: 1;
	box-shadow: rgba(0,0,0,0.1) 1px 1px 0px;	
}

/* --- POST & PAGE LAYOUT --- */

/* page */
.page-title {
    width: 100%;
    display: block;
    position: relative;
    color: #ff8800;
    line-height: .9em;
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-container, .post-container {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100px;
}

.page-row{
    display: block;
    position: relative;
    width: calc(100% - 40px);
    min-height: 100px;
    padding: 20px;
}

#wrong-page {
    min-height: calc(100vh - 260px) !important;
}

.post-row {
    display: block;
    position: relative;
    width: calc(100% - 40px);
    min-height: calc(100vh - 260px);
    padding: 20px;
}

section {
    display: block;
    width: 100%;
    height: auto;
}

.section-row {
    display: block;
    width: calc(100% - 40px);
    padding: 50px 20px;
}

.page-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    overflow: auto;
    
}

.saimudra-logo {
    display: block;
    max-width: 300px !important;
    height: auto;
    margin: 15px auto 55px auto;
}

#about {
    padding-bottom: 50px;
}

#services, #clients {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background: #333;
}

#services-content{
    display: block;
    position: relative;
    max-width: 1000px;
    min-height: 100px;
    margin: 0 auto;
}

.clearfix {
    overflow: auto;
}

.service {
    float: left;
    display: block;
    position: relative;
    width: 200px;
    min-height: 250px;
}

.service:hover .service-icon {
    transform: scale(1.2);
}

.service-icon{
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    transform: scale(1);
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.service-title {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.service .read-more {
    margin: 10px auto;
}

.work-container {
    display: block;
    position: relative;
    max-width: 1000px;
    height: 100%;
    margin: 20px auto;
    overflow: auto;
}

.work-thumbnail {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: relative;
    width: 250px;
    height: 250px;
    float: left;
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ddd;
    cursor: pointer;
}

.work-thumbnail:hover {
    background-size: 200%;
}

.inner-square {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: relative;
    width: 250px;
    height: 250px;
    background: rgba( 255, 255, 255, 0.8 );
    opacity: 0;
    transform: scale(1);
    text-align: center;
    line-height: 10em;
    font-weight: 900;
    font-size: 25px;
    color: #ff6600;
}

.work-thumbnail:hover .inner-square {
    transform: scale(.8); 
    opacity: 1;
}


/* Work Viewer */

.work-view-container {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    z-index: 10;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7 );
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.show-container {
    opacity: 1;
    visibility: visible;
}


.work {
    background: #fff;
    z-index: 12;
    display: none;
    position: relative;
    width: 1000px;
    height: 800px;
    border-radius: 3px;
    overflow-y: scroll;
    overflow-x: hidden;
	top: calc( 50% - 400px);
	margin: 0 auto;
}

.work-image {
	z-index: 13;
    display: block;
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.work-title {
    display: inline-block;
    position: relative;
    top: 20px;
    left: 20px;
    padding: 5px;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    background: rgba( 255, 136, 0, 0.7 );
    letter-spacing: 1px;
    text-transform: uppercase;
}

.work-description {
    display: block;
    position: relative;
    width: 60%;
    top: 25px;
    left: 20px;
}

.work-description p {
    display: inline-block;
    background: #fff;
    margin: 0;
    color: #000;
    line-height: 1em;
    padding: 5px;
}

.close-work-viewer {
    display: block;
    position: fixed;
    width: 30px;
    height: 30px;
    text-align: center;
    right: 20px;
    top: 20px;
    float: right;
    z-index: 14;
    cursor: pointer;
}

.close-work-viewer i{
    color: #fff;
    line-height: 2em;
}



/* Clients Slider */

#clients-slider {
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

@keyframes display {
  0% {
    opacity: 0;
    transform: translateX(1000px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-1000px);
  }
}

#all-clients {
  position: relative;
  height: 200px;
}

.client {
    opacity: 0;
    width: 300px;
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    animation: display 18s infinite;
    animation-timing-function: linear;
}

#all-clients:hover .client {
    animation-play-state: paused;
}

.client:nth-child(1) {
  animation-delay: 2s;
}
.client:nth-child(2) {
  animation-delay: 4s;
}
.client:nth-child(3) {
  animation-delay: 6s;
}
.client:nth-child(4) {
  animation-delay: 8s;
}
.client:nth-child(5) {
  animation-delay: 10s;
}
.client:nth-child(6) {
  animation-delay: 12s;
}
.client:nth-child(7) {
  animation-delay: 14s;
}
.client:nth-child(8) {
  animation-delay: 16s;
}
.client:nth-child(9) {
  animation-delay: 18s;
}

.client-logo {
    display: block;
    position: relative;
    width: 150px;
    height: auto;
    margin: 10px auto;
}

.client-name {
    font-size: 12px;
    color: #fff;
    text-align: center;
}

#contact {
    padding: 20px 0;
    display: block;
    width: 100%;
}

.contact-email {
    margin-bottom: 20px;
}

.unova-contact-form input[type=submit] {
    float: right;
}

/* blog */
.icona-article {
    display: block;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 3px;
}

.article-row {
    display: block;
    width: calc(100% - 40px);
    padding: 20px 0;
}

.post-image {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    border-radius: 3px;
}

.entry-title {
    display: block;
    position: relative;
    width: 100%;
    height: 55px;
    text-align: center;
}

.entry-meta {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
}

.post-author {
    float: left;
    display: block;
    position: relative;
    width: 60px;
    height: 55px;
}

.author-image {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    border: 2px solid #ddd;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 5px;
}

.post-title {
    color: #ff8800;
    text-align: left;
    width: calc( 100% - 70px );
    display: block;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid rgba( 0, 0, 0, 0.3 );
}

.post-date {
    display: block;
    position: relative;
    text-align: left;
    width: calc( 100% - 70px );
    font-size: 12px;
    top: 0;
}

.entry-excerpt, .entry-content {
    display: block;
    position: relative;
    width: 100%;
    margin: 10px 0;
}

.entry-content p {
    display: block;
}

.error-msg {
    width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.post-content {
    display: block;
    position: relative;
    margin: 10px 0;
}

figcaption {
    text-align: center;
    margin-bottom: 0 !important;
}

.entry-footer {
    display: block;
    position: relative;
    margin: 10px 5px;
    width: 100%;
    padding-top: 10px;
}

.post-cats-tags {
    margin-bottom: 5px;
    display: block;
    position: relative;
    font-size: 14px;
    width: calc( 100% - 150px );
}
.post-cats-tags ul {
    display: inline;
}

.post-cats-tags ul li {
    display: inline;
}

.read-more {
    display: block;
    position: relative;
    width: 100px;
    padding: 5px 10px;
    text-align: center;
    border: 1px solid #ff8800;
}

.read-more:hover {
    background: #ff8800;
    color: #000;
}

.post-links {
    display: block;
    position: relative;
    max-width: 800px;
    height: 50px;
    top: 10px;
    margin: 0 auto;
}

.perv-posts, .next-posts{
    width: auto;
    height: auto;
    display: block;
    position: relative;
}

.perv-posts {
    float: left;
}

.next-posts {
    float: right;
}

.arrow {
    display: block;
    position: relative;
    width: 80px;
    height: 30px;
    border: 1px solid #ff8800;
    text-align: center;
    color: #ff8800;
}

.arrow: before {
    font-size: 14px;
    line-height: 2em;
}

.arrow:hover {
    background: #ff8800;
    color: #000;
}

.back-link {
    display: block;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

#go-back {
    display: inline-block;
    position: relative;
    border: 1px solid #ff8800;
    color: #ff8800;
    cursor: pointer;
    padding: 5px 0;
    width: 80px;
    text-align: center;
    
}

#go-back:hover {
    background: #ff8800;
    color: #000;
}

.comment-reply-title, .comment-notes, .comment-form-cookies-consent {
    margin: 10px 0;
}

.wp-block-audio audio {
    min-width: auto;
}

/* --- SEARCH BAR --- */

.search-bar {
    z-index: 81;
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7 );
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.show {
    opacity: 1;
    visibility: visible;
}

#search-icon {
    z-index: 80;
    cursor: pointer;
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    float: right;
    top: 20px;
    right: 20px;
    color: #fff;
    line-height: 1.9em;
    text-align: center;
    font-size: 14px;
}

#search-icon:hover {
    color: #ff8800;
}

.screen-reader-text {
    display: none;
}

.search-field {
    top: calc( 50vh - 50px / 2 );
    display: block;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 20px;
    border-bottom: 1px solid #ff8800;
    color: #ff8800;
}

.search-submit {
    display: none !important;
}

.search-close {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
}

.search-close:before {
    line-height: 2em;
}

.search-close:hover {
    color: #ff8800;
}


/* --- THEME LOADER --- */

.icona-loader {
    z-index: 90;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ff8800;
}

.sai-loading {
    display: block;
    position: relative;
    width: 60px;
    height: auto;
    margin: 0 auto;
    top: calc( 50vh - 67.27px / 2 );
}

.sai-ring {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition-timing-function: ease-in-out;
    animation: expand 2s infinite;
}

@-webkit-keyframes expand {
    0% { transform: scale(1); opacity: 0;}
    20% { opacity: 1;}
    100% { transform: scale(1.5); opacity: 0; }}

.sai-symbol {
    display: inline-block;
    position: absolute;
    width: 85%;
    height: auto;
    margin: 7.5%;
    
}

/* --- THEME FOOTER --- */

.icona-footer {
    background: #292a2e;
    display: block;
    float: right;
    position: relative;
    width: 100%;
    bottom: 0;
}

.footer-top {
    display: block;
    width: 100%;
    min-height: 20px;
    position: relative;
    margin: 0 auto;
    overflow: auto;
    margin: 20px 0;
}

.footer-bottom {
    width: 100%;
    min-height: 20px;
    display: block;
    position: relative;
    background: #16171a;
    overflow: auto;
    
}

.widgets-area{
    display: block;
    position: relative;
    max-width: 900px;
    min-height: 200px;
    margin: 0 auto;
}

.icona-widget {
    display: inline-block;
    position: relative;
    float: left;
    min-height: 160px;
    padding: 10px 20px;
}

.icona-widget:nth-child(1) {
    width: 80px;
}

.icona-widget:nth-child(2) {
    width: 140px;
}

.icona-widget:nth-child(3) {
    width: 210px;
}

.icona-widget:nth-child(4) {
    width: 310px;
}
.icona-widget:nth-child(4) a{
    cursor: zoom-in !important;
}
.icona-widget a {
    color: #777;
}

.icona-widget a:hover, .widgets-area p:hover {
    color: #fff;
}

.icona-widget-title {
    border-bottom: 2px solid #ff8800;
    color: #aaa;
    display: block;
    position: relative;
    padding: 10px 0;
    margin-bottom: 10px;
}

.widgets-area p {
    margin: 0;
    color: #777;
}

.icona-copyright {
    font-size: 14px;
    display: inline-block;
    float: left;
    padding: 10px;
    color: #777;
    margin-left: 10px;
}

.icona-theme-owner {
    font-size: 14px;
    display: inline-block;
    float: right;
    padding: 10px;
    margin-right: 10px;
}


.unova-fullscreen {
    cursor: pointer;
    display: block;
    position: absolute;
    bottom: 10px;
    width: 50px;
}

#btnFullscreen {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    width: 50px;
    text-align: center;
    color: #000;
    text-shadow: 0 1px 2px #666 ;
}

.unova-fullscreen:hover #btnFullscreen {
    color: #ff8800;
    text-shadow: 0 1px 2px #000 ;
}

#scroll-top {
    -webkit-transition: all 320ms ease;
    -moz-transition: all 320ms ease;
    -ms-transition: all 320ms ease;
    -o-transition: all 320ms ease;
    transition: all 320ms ease;
    position: fixed;
    width: 30px;
    height: 30px;
    right: 40px;
    bottom: 40px;
    color: #ff8800;
    border: 1px solid #ff8800;
    text-align: center;
    line-height: 2em;
    cursor: pointer;
    background: transparent;
}

#scroll-top:hover {
    background: #ff8800;
    color: #fff;
}




/*--------------------------------------------------------------------------- */
                            /* MOBILE RESPONSIVE */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 1135px) {
    
    #icona-slider {
        height: 450px;
    }
    
    #slides {
        height: 450px;
    }
    
    #slides li {
        height: 450px;
    }
    
    .slide-title {
        top: calc( 50% - 72px / 2);
        font-weight: 400;
        font-size: 25px;
        padding: 10px;
    }
    
    .saimudra-logo {
        max-width: 250px !important;
    }
    
    #services-content{
        max-width: 600px;
    }
    
    .service:nth-child(4){
        margin-left: 100px;
    }
    
    .work-container {
        max-width: 600px;
    }
    
    .work-thumbnail {
        width: 200px;
        height: 200px;
    }
    
    .work-thumbnail:nth-child(7){
        margin-left: 100px;
    }
    
    .inner-square {
        width: 200px;
        height: 200px;
        line-height: 10em;
        font-size: 20px;
    }
    
    .work {
        width: 800px;
        height: 600px;
    	top: calc( 50% - 300px);
    }
    
    .work-title {
        top: 15px;
        left: 15px;
        padding: 5px;
    }
    
    .work-description {
        width: 80%;
        top: 20px;
        left: 15px;
    }
    
    
    .widgets-area{
        max-width: 600px;
    }

    .icona-widget {
        padding: 10px 20px;
    }
    
    .icona-widget:nth-child(1) {
        width: 100px;
    }
    
    .icona-widget:nth-child(2) {
        width: 150px;
    }
    
    .icona-widget:nth-child(3) {
        width: 230px;
    }
    
    .icona-widget:nth-child(4) {
        width: 560px;
    }
    
}

@media only screen and (max-width: 800px) {
    
    .saimudra-logo {
        max-width: 200px !important;
    }
    
    #search-icon {
        top: 10px;
        right: 10px;
        font-size: 12px;
    }
    
    .search-field {
        max-width: 300px;
    }
    
    .search-close {
        right: 10px;
        top: 10px;
    }
    
    .icona-header {
        width: 40px;
    }
    
    .icona-header:hover .site-icon {
        top: 0;
        width: 25px;
    }
    
    
    .icona-header:hover{
        width: 40px;
    }
    
    .site-icon {
        margin: 7.5px;
        width: 25px;
        height: 25px;
    }
    
    .site-logo {
        display: none !important;
    }
    
    .nav-icon {
        line-height: 1.5em;
        width: 40px;
    }
    
    .site-nav {
        top: calc( 50vh - 217px / 2 );
    }
    
    .icona-main-nav-bar li a{
        line-height: 1.5em;
        padding: 5px;
        padding-left: 0;
        font-size: 14px;
    }
    
    
    .icona-main {
        width: calc(100% - 40px);
    }
    
    .section-row {
        width: calc(100% - 40px);
        padding: 20px;
    }
    
    #icona-slider {
        height: 350px;
    }
    
    #slides {
        height: 350px;
    }
    
    #slides li {
        height: 350px;
    }
    
    .page-content {
        padding: 10px;
        
    }
    
    .slide-title {
        top: calc( 50% - 43px / 2);
        font-weight: 400;
        font-size: 25px;
        padding: 5px;
        left: 20px;
    }
    
    .page-row, .post-row {
        width: auto;
        margin: auto;
        padding: 10px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    #services-content{
        max-width: 510px;
    }
    
    .service {
        width: 170px;
    }
    
    .service:nth-child(4){
        margin-left: 80px;
    }
    
    .work-container {
        max-width: 400px;
    }
    
    .work-thumbnail:nth-child(7){
        margin-left: 0;
    }
    
    .work {
        width: 480px;
        height: 320px;
    	top: calc( 50% - 160px);
    }
    
    .work-title {
        font-size: 20px;
        top: 10px;
        left: 10px;
        padding: 5px;
    }
    
    .work-description {
        width: 100%;
        top: 15px;
        left: 10px;
    }
    
    .work-description p {
        font-size: 14px;
        padding: 2.5px;
    }
    
    .post-title {
        width: auto;
    }
    
    .post-date {
        width: auto;
    }
    
    .post-image {
        height: 200px;
    }
        
    .icona-article {
        max-width: calc( 100% - 40px);
    }
    
    .post-links {
        max-width: calc( 100% - 50px);
    }
    
    .widgets-area{
        max-width: 550px;
    }
    
    .icona-widget:nth-child(1) {
        width: 80px;
    }
    
    .icona-widget:nth-child(2) {
        width: 140px;
    }
    
    .icona-widget:nth-child(3) {
        width: 210px;
    }
    
    .icona-widget:nth-child(4) {
        width: 510px;
    }
    
    .unova-fullscreen {
        bottom: 10px;
        width: 40px;
    }
    
    #btnFullscreen {
        width: 40px;
    }
    
}

@media only screen and (max-width: 630px) {
    
    #s1, #s3, #s5 {
        background-position: 0 50% !important;
    }
    
    #s2, #s4 {
        background-position: 100% 50% !important;
    }
    
    .slide-title {
        font-size: 16px;
    }
    
    #pre-press,
    #post-press,
    #extend-serv {
        float: none;
        right: auto;
        right: 20px;
        top: 10%;
    }
    
    #book-work,
    #notebook-mfg {
        float: none;
        right: auto;
        left: 20px;
        top: 10%;
    }
    
    #about {
        padding-bottom: 0;
    }
    
    .section-row {
        width: calc(100% - 20px);
        padding: 10px;
    }
    
    .saimudra-logo {
    margin: 10px auto;
}
    
    #services-content{
        max-width: 300px;
    }
    
    .service {
        float: none;
        margin: 0 auto;
        width: 150px;
    }
    
    .service:nth-child(4){
        margin-left: auto;
    }
    
    
    #contact {
        padding: 0;
    }
    
    .icona-copyright {
        display: block;
        float: none;
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding: 10px 0 5px 0;
    }
    
    .icona-theme-owner {
        display: block;
        float: none;
        width: 100%;
        text-align: center;
        padding: 5px;
        padding: 5px 0 10px 0;
    }

    .work-container {
        max-width: 200px;
    }
    
    .work {
        width: 300px;
        height: 200px;
    	top: calc( 50% - 100px);
    }
    
    .work-title {
        font-size: 18px;
        top: 7.5px;
        left: 7.5px;
        padding: 2.5px;
    }
    
    .work-description {
        width: 260px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .work-description p {
        font-size: 12px;
        padding: 2.5px;
    }
    
    .widgets-area{
        max-width: 300px;
    }
    
    .icona-widget:nth-child(1) {
        width: 70px;
    }
    
    .icona-widget:nth-child(2) {
        width: 150px;
    }
    
    .icona-widget:nth-child(3) {
        width: calc(100% - 40px);
    }
    
    .icona-widget:nth-child(4) {
        width: calc(100% - 40px);
    }

    
}