@viewport { width: device-width; } @-ms-viewport { width: device-width; } .skip-link { display: none; } /*------------- variables -------------*/ /* fonts Variables */ /* font-family: 'Open Sans', sans-serif; */ /* font-family: "Roboto", sans-serif; */ /* font-family: "Roboto Slab", serif; */ /* font-family: 'Montserrat', sans-serif; */ /* font-family: "Poppins", sans-serif; */ /* secetion color */ ::-moz-selection { background: #1267e6; color: #e31112; } ::selection { background: #e31112; color: #fff; } /*--------------------- default theme settings --------------------- */ * { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } html { font-size: 62.5%; } body { font-family: "Open Sans", sans-serif; color: #5f677c; font-weight: 400; font-size: 1.6rem; } a { color: #000; } a:hover { color: #000; text-decoration: none; } img { max-width: 100%; height: auto; } ul { padding: 0; margin: 0; list-style-type: none; } /* inputs */ input:focus, textarea:focus, select:focus { outline: none; } /* main container area for sidebar page */ #primary.content-area { display: block; width: 100%; /* margin-bottom: 50px; */ } @media (min-width: 992px) { #primary.content-area { margin-bottom: 0px; } } /* arrow bounce animation */ @keyframes scroll { 0% { transform: translateY(0); } 100% { transform: translateY(10px); } }