/*------------------------------------------
                Fonts
--------------------------------------------*/
/* Roboto */
@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-Light.eot");
    src: url("./fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("./fonts/Roboto-Light.woff2") format("woff2"), url("./fonts/Roboto-Light.svg#Roboto-Light") format("svg");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-LightItalic.eot");
    src: url("./fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("./fonts/Roboto-LightItalic.woff2") format("woff2"), url("./fonts/Roboto-LightItalic.svg#Roboto-LightItalic") format("svg");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-Bold.eot");
    src: url("./fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/Roboto-Bold.woff2") format("woff2"), url("./fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("./fonts/Roboto-BoldItalic.eot");
    src: url("./fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("./fonts/Roboto-BoldItalic.woff2") format("woff2"), url("./fonts/Roboto-BoldItalic.svg#Roboto-BoldItalic") format("svg");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Bangers';
    src: url("./fonts/Bangers-Regular.eot");
    src: url("./fonts/Bangers-Regular.eot?#iefix") format("embedded-opentype"), url("./fonts/Bangers-Regular.woff2") format("woff2"), url("./fonts/Bangers-Regular.svg#Bangers-Regular") format("svg");
    font-weight: 400;
    font-style: normal;
}

/*------------------------------------------
                Global
--------------------------------------------*/

*:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

strong {
    font-weight: 700;
}

ul {
    padding-left: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

blockquote {
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid #f36b21;
    font-style: italic;
    color: #f36b21;
}

/* html & body */
html {
    height: 100%;
    font-size: 62.5%;

    /*overflow-x: hidden;*/
}

body {
    font: 300 1.6rem/2.4rem 'Roboto', sans-serif;
    color: #333;
    background: #0b1e46;
    overflow-x: hidden;
}

/* Main */
.main {
    padding-top: 16rem;
}

.single-post .main {
    padding-top: 0;
}

/*Headings*/
h1 {
    font-weight: 700;
    font-size: 5.4rem;
    line-height: normal;
}

h2 {
    font-weight: 300;
    font-size: 3.4rem;
    line-height: normal;
}

h3,
h4 {
    font-weight: 300;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 1.8rem;
}

/* Utilities */
.text-blue {
    color: #0063a8;
}

.text-orange {
    color: #f36b21;
}

/* Buttons */
.btn--orange {
    padding: 2.5rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.8rem;
    background: #f36b21;
    color: #fff;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.btn--orange:focus {
    background: #f36b21;
    color: #fff;
}

.btn--orange:hover {
    background: #0063a8;
    color: #fff;
}

/*------------------------------------------
            Header
--------------------------------------------*/
.header {
    min-height: 89rem;
    position: absolute;
    left: 0;
    right: 0;
    background: url(./assets/blog.jpg) no-repeat center center;
    background-size: cover;
}

/* Smooth scroll animation */
@keyframes smoothScroll {
    from {
        transform: translateY(-4rem);
    }

    to {
        transform: translateY(0px);
    }
}

@-webkit-keyframes smoothScroll {
    from {
        -webkit-transform: translateY(-4rem);
        transform: translateY(-4rem);
    }

    to {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/*------------------------------------------
            Sticky header
--------------------------------------------*/
.header-items__wrapper.sticky {
    width: 100%;
    position: fixed;
    z-index: 99;
    background: #fff;
    animation: smoothScroll 1s forwards;
    box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.09);
}

/* Search icon */
.header-items__wrapper.sticky .search__icon {
    fill: #000;
}

/* Hamburger btn */
.header-items__wrapper.sticky .open-nav {
    display: -ms-flexbox !important;
    display: flex !important;
}

/* Navigation */
.header-items__wrapper.sticky .main-nav {
    display: none !important;
}

/*Navigation full screen */
.header-items__wrapper.sticky .main-nav--visible {
    display: block !important;
}

/* Logo */
.header-items__wrapper.sticky .logo {
    background-position-y: -5.7rem;
}

/* Sticky search btn */
.header-items__wrapper.sticky .search {
    position: absolute;
    right: 8rem;
}

.header-items__wrapper.sticky .search svg {
    width: 3rem;
    height: 3rem;
}

.header-items__wrapper.sticky .search__box {
    width: 100%;
    padding-left: 3rem;
    padding-right: 7rem;
    right: 0;
    background: #0b1e46;
    z-index: 5;
}

.header-items__wrapper.sticky .search__box.active {
    -webkit-transition-delay: 0;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.header-items__wrapper.sticky .search.close-search {
    right: 0;
    z-index: 6;
}

.header-items__wrapper.sticky .search:hover {
    background: transparent;
}

/*------------------------------------------
            Page Title
--------------------------------------------*/
.page-title {
    min-height: 89rem;
}

.page-title .heading-primary {
    margin-bottom: 1.5rem;
    color: #fff;
}

.page-title .heading-secondary {
    color: #fff;
    max-width: 120rem;
    margin: 0 auto;
}

/*------------------------------------------
            Navigation
--------------------------------------------*/
/* Navigation */
.main-nav {
    -webkit-transition: ease .5s .3s;
    -o-transition: ease .5s .3s;
    transition: ease .5s .3s;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.main-nav.hidden {
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
    visibility: hidden;
}

.nav {
    padding-right: .5rem;
}

.menu-item > a {
    color: #fff;
    padding: 2.8rem 2rem;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.menu-item > a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
}

.dropdown-menu {
    min-width: 14rem;
}

.dropdown-menu a {
    padding: .25rem 1.5rem;
    font-size: 1.4rem;
    color: #333;
}

.dropdown-menu a:focus,
.dropdown-menu a:hover {
    background: #025da0;
    color: #fff;
}

.dropdown-toggle::after {
    width: .8rem;
    height: .8rem;
    margin-left: 1rem;
    border-top: .1rem solid #fff;
    border-right: .1rem solid #fff;
    border-left: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* Navigation Full Screen */
.main-nav.main-nav--visible {
    height: 100vh;
    padding-left: 3rem;
    padding-right: 3rem;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0b1e46 url(./assets/bg-nav.jpg) bottom center no-repeat;
    background-size: cover;
    z-index: 101;
    overflow-y: scroll;
}

.main-nav--visible .nav {
    max-width: 68rem;
    margin: 6rem auto;
    padding-right: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
}

.main-nav--visible .menu-item {
    width: 100%;
    text-align: center;
}

.main-nav--visible .menu-item > a {
    padding: 1.3rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: normal;
    font-size: 2.4rem;
    font-weight: 300;
}

.main-nav--visible .dropdown-menu.show {
    width: 100%;
    border: 0;
    position: relative !important;
    top: 0 !important;
    text-align: center;
    background: transparent;
    transform: translate3d(0px, 0px, 0px) !important;
}

.main-nav--visible .dropdown-menu a {
    padding: .25rem 1.5rem;
    line-height: 3rem;
    font-size: 1.8rem;
    color: #fff;
}

.main-nav--visible .dropdown-item:focus,
.main-nav--visible .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.close__btn {
    display: none;
    width: 3rem;
    height: 6rem;
    position: absolute;
    top: .6rem;
    right: 2.5rem;
    font-weight: 300;
    line-height: 6rem;
    font-size: 3.5rem;
    color: #fff;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.close__btn:hover {
    opacity: .5;
    color: #fff;
    text-decoration: none;
}

.main-nav--visible .close__btn {
    display: block;
}

/* Slogan */
.slogan {
    display: none;
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    left: 3rem;
}

.slogan h2 {
    line-height: normal;
    font-size: 2.4rem;
    color: #fff;
}

.main-nav--visible .slogan {
    display: -ms-flexbox;
    display: flex;
}

/* Logo */
.main-nav--visible .logo {
    background-position-y: -5.7rem;
}

/*------------------------------------------
            Search
--------------------------------------------*/
.search {
    margin-right: 1rem;
    padding: 2.8rem 2rem;
    cursor: pointer;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.search svg {
    width: 1.8rem;
    height: 1.8rem;
}

.search__icon,
.close__icon {
    fill: #fff;
}

.close-search .search-close {
    display: block;
}

.search-close,
.close-search .search-open {
    display: none;
}

/* Search box */
.search__box {
    width: 50rem;
    height: 8rem;
    padding-right: 3rem;
    border: none;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -8rem;
    right: 6.9rem;
    font-size: 1.6rem;
    color: #fff;
    background: transparent;
    -webkit-appearance: none;
    -webkit-transition: top .5s ease 0s;
    -o-transition: top .5 ease 0s;
    transition: top .5s ease 0s;
}

.search__box::-webkit-search-decoration,
.search__box::-webkit-search-cancel-button,
.search__box::-webkit-search-results-button,
.search__box::-webkit-search-results-decoration {
    display: none;
}

.search__box::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search__box::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.search__box::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.search__box.active {
    top: 0;
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}

.search__box::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

.search__box::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}

.search__box:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

.search__box:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}

/*------------------------------------------
            Hamburger btn
--------------------------------------------*/
.open-nav {
    width: 8rem;
    height: 8rem;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 3;
    background: #e5e5e5;
}

.open-nav span {
    display: block;
    height: .3rem;
    width: 3.5rem;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background: #000;
    margin-bottom: .8rem;
}

.open-nav span:last-child {
    margin-bottom: 0;
}

/*------------------------------------------
            Logo
--------------------------------------------*/
.logo {
    width: 21rem;
    height: 5.7rem;
    margin-left: 3rem;
    display: inline-block;
    background: url(./assets/logo.png) 0 0 no-repeat;
    overflow: hidden;
    text-indent: -400rem;
}

/*----------------------------
        Blog Page
-------------------------------*/
.posts {
    position: relative;
    margin-top: -55rem;
}

.post {
    margin-bottom: 10rem;
}

.post__content {
    padding: 5rem;
    background: #fff;
}

.post__img {
    background: url(./assets/post-1.jpg) no-repeat center center;
    background-size: cover;
}

.post__title {
    font-weight: 700;
    font-size: 3rem;
}

.post__title a {
    color: #333;
}

.post__title a:hover {
    text-decoration: none;
}

.post__date {
    font-size: 1.2rem;
    color: #888;
}

.post__summary {
    padding-bottom: 3rem;
}

.post__summary p {
    margin-bottom: 3rem;
}

.post__btn {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0;
    position: absolute;
    bottom: 5rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    background: #f36b21;
    transition: ease .5s;
}

.post__btn img {
    margin-left: .5rem;
}

.post__btn:hover {
    color: #fff;
    background: #025da0;
}

/*------------------------------------------
        Single Post
--------------------------------------------*/
/* Header */
.single-post .header {
    min-height: 21rem;
    position: relative;
    background: url(./assets/post.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

/* Sidebar */
.aside {
    padding: 2.5rem 3.5rem 7.5rem;
    background: #091838;
}

.aside h3 {
    font-size: 2.4rem;
    color: #fff;
}

.aside h3:after {
    content: '';
    width: 6rem;
    height: .5rem;
    margin: 1.5rem 0 0;
    display: block;
    background: #f36b21;
}

/* Related posts */
.related-posts li {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}

.related-posts li:last-child {
    border: 0;
}

.related-posts a {
    font-weight: 700;
    color: #fff;
}

.related-posts .post-date {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: #46b2fd;
    display: block;
}

/* Opportunity box */
/* .opportunity-box__img {
    padding: 20rem 2rem 1.8rem;
    text-align: center;
    font: 400 5rem/4.8rem 'Bangers', cursive;
    background: url(./assets/australia-jobs.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
} */

.opportunity-box__cta {
    padding: 3rem 4rem;
    background: #061129;
}

.opportunity-box__cta p {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.opportunity-box__cta .btn {
    width: 100%;
    margin-top: 3rem;
}

/*Breadcrumb*/
.breadcrumb {
    padding: 3rem 0 2rem;
    margin-bottom: 4rem;
    background: transparent;
    border-bottom: 1px solid rgba(221, 221, 221, 0.2);
}

.breadcrumb a {
    color: #fff !important;
    text-decoration: none !important;
}

.breadcrumb a:first-child {
    padding-right: 5px;
}

.breadcrumb a:nth-child(2) {
    padding-right: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline !important;
}

.breadcrumb span {
    padding-left: 5px;
}

/* Post content */
.post__body {
    margin-bottom: 10rem;
    color: #fff;
}

.post__body p span {
    color: #fff !important;
}

.post__meta {
    font-size: 1.2rem;
    color: #46b2fd;
}

.post__body h2 {
    font-size: 2.4rem;
}

.post__body h3 {
    font-size: 1.8rem;
}

.post__body h4 {
    font-size: 1.6rem;
}

.post__body h2,
.post__body h3,
.post__body h4 {
    margin-top: 4rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
    color: #46b2fd;
}

.post__body h2 span,
.post__body h3 span,
.post__body h4 span {
    color: #46b2fd !important;
}

.post__body p {
    margin-bottom: 2rem;
}

.post__body a {
    color: #f36b21;
    text-decoration: underline;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.post__body a span {
    color: #f36b21 !important;
}

.post__body a:hover {
    text-decoration: none;
}

.post__body ul li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.post__body ul li:last-child {
    margin-bottom: 0;
}

.post__body ul li::before {
    content: '';
    width: 1rem;
    height: .8rem;
    background: url(./assets/check.png) no-repeat left center;
    position: absolute;
    top: .8rem;
    left: 0;
}

.post__body img:not(.post__img--single) {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.post__body i {
    font-style: italic;
    color: #f36b21;
}

.post__body table td {
    padding: 10px;
    border: 1px solid
}

/* Recent posts */

.recent-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 11rem;
}

.recent-post__article {
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post__article:nth-child(2) {
    margin-left: 6%;
}

.posts-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.posts-nav p {
    margin-bottom: 0;
}

.posts-nav a {
    font-weight: 700;
    color: #f36b21;
    text-decoration: none;
    position: relative;
}

.posts-nav a:hover {
    text-decoration: underline;
}

.posts-nav a:first-child {
    padding-left: 1.5rem;
}

.posts-nav a:nth-child(2) {
    padding-right: 1.5rem;
}

.posts-nav a:first-child:before,
.posts-nav a:nth-child(2):after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #f36b21;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 7px;
}

.posts-nav a:first-child:before {
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 0;
}

.posts-nav a:nth-child(2):after {
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    right: 0;
}

.article__content {
    padding: 1.5rem;
    background: #fff;
}

.article__content h4 {
    margin-bottom: 1.3rem;
}

.article__content p {
    margin-bottom: 0;
}

.recent-post__article a {
    color: #333;
}

.recent-post__article a:hover {
    text-decoration: none;
}

.recent-post__img {
    height: 20rem;
}

.recent-post__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post__img.compat-object-fit {
    background-size: cover;
    background-position: center;
}

.recent-post__img.compat-object-fit img {
    opacity: 0;
}

/* Author Bio */
.author-bio {
    padding: 3rem;
    margin-bottom: 5rem;
    background: #091838;
    color: #fff;
}
.author-bio h3 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: #f36b21;
}
.author-bio h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
}

/* Comments */
.comment {
    background: #091838;
}

.comment-form > p {
    margin-bottom: 2rem;
}

.comment-reply-title,
.comments__wrapper h3 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: #fff;
}

.comment {
    margin-bottom: 5rem;
}

.comment__post-info {
    padding: 3rem 3rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.comment__author {
    margin-right: 1rem;
    font-weight: 700;
    color: #fff;
}

.comment__date {
    color: #46b2fd;
}

.comment__content {
    padding: 1.5rem 3rem 3rem;
    margin-bottom: 0;
    color: #fff;
}

.comment__content a {
    color: #f36b21;
    text-decoration: underline;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
}

.comment__content a:hover {
    text-decoration: none;
}

.comment-respond {
    color: #fff;
}

.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"] {
    width: 100%;
    padding: 1.5rem 3rem;
    border: 0;
    background: #091838;
    color: #fff;
}

.comment-respond textarea {
    resize: none;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"] {
    height: 4.5rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #091838 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.comment-respond [type=submit] {
    padding: 2.8rem 5rem;
    margin: 3rem auto 8rem;
    display: block;
    border: 0;
    font-size: 1.8rem;
    font-weight: 700;
    background: #f36b21;
    color: #fff;
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
    -webkit-appearance: none;
    cursor: pointer;
}

.comment-respond [type=submit]:hover {
    background: #025da0;
    color: #fff;
}

/*------------------------------------------
        Footer
--------------------------------------------*/
.footer {
    background: #025da0;
    color: #fff;
    font-size: 1.4rem;
    padding: 2.5rem 0;
    position: relative;
}

.footer .row {
    -ms-flex-align: center;
    align-items: center;
}

.footer .row > div {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer__logo,
.footer .icons,
.footer .copy {
    text-align: right;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    margin-right: 1.5rem;
}

.footer .awards span {
    background: url(./assets/sprite-awards.png) no-repeat;
    display: inline-block;
    height: 5.2rem;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.footer .awards span.eoty {
    background-position: 0 0;
    width: 13.6rem;
}

.footer .awards span.deloitte {
    background-position: -13.6rem 0;
    width: 7rem;
}

.footer .awards span.eba {
    background-position: -20.6rem 0;
    width: 9.6rem;
}

footer .awards span.sectigo {
    background-position: -30.2rem 0;
    width: 15.3rem;
}

.footer .social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .icons li {
    margin-right: 0;
    margin-left: 15px;
}

.footer .icons a {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url(./assets/sprite-social.png) no-repeat;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.footer .icons a:hover {
    opacity: .8;
}

.footer .icons a.fb {
    background-position: 0 0;
    width: 24px;
}

.footer .icons a.tw {
    background-position: -24px 0;
    width: 29px;
}

.footer .icons a.lin {
    background-position: -101px 0;
    width: 24px;
}

.footer .icons a.ig {
    background-position: -7.7rem 0;
    width: 2.4rem;
}

.footer .icons a.yt {
    background-position: -5.3rem 0;
    width: 2.4rem;
}

.footer .copy {
    font-size: 1.2rem;
}

/* 404 Page */
.page-404 .header {
    background: #fff;
    color: #333;
}

.page-404 a[href^="mailto:"] {
    color: #46b2fd;
}

.page-404 .btn {
    margin-bottom: 5rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-404 h1 {
    font-weight: 700;
    font-size: 5.4rem;
}

.page-404 h3 {
    font-size: 3.4rem;
    font-weight: 300;
}

.page-404 h5 {
    font-size: 2rem;
}

.error__message span {
    font-weight: 900;
    font-size: 25rem;
    line-height: normal;
    color: #025da0;
}

.error__message span:first-child {
    z-index: 3;
}

.error__message span:last-child {
    padding-left: 16.5rem;
    z-index: 1;
}

.ramo {
    z-index: 4;
    -webkit-transform: translateX(14rem);
    -ms-transform: translateX(14rem);
    transform: translateX(14rem);
}

.donut {
    z-index: 2;
    top: 2rem;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: rotation 5s infinite linear;
    -moz-animation: rotation 5s infinite linear;
    -o-animation: rotation 5s infinite linear;
    animation: rotation 5s infinite linear;
}

/*rotate animation */
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

/*------------------------------------------
Responsive
--------------------------------------------*/
@media (min-width: 1200px) {
    .container {
        max-width: 120rem;
    }

    .search {
        height: 8rem;
    }

    .search:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .search__box {
        right: 13.8rem;
    }
}

@media (min-width: 992px) {
    .sidebar {
        max-width: 34rem;
    }
}

@media (max-width: 1199px) {
    .search__box.active {
        -webkit-transition-delay: 0;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .search svg {
        width: 3rem;
        height: 3rem;
    }

    .search__box {
        width: 100%;
        padding-left: 3rem;
        padding-right: 7rem;
        right: 0;
        background: #0b1e46;
        z-index: 5;
    }

    .search {
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
        position: absolute;
        right: 8rem;
    }

    .search.close-search {
        right: 0;
        z-index: 6;
    }

    .main-nav {
        display: none;
    }

    .main-nav--visible .logo {
        width: 15rem;
    }

    .opportunity-box__cta {
        padding: 3rem 2rem;
    }

    .aside {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 991px) {
    .breadcrumb {
        display: none;
    }

    .single-post .main {
        padding-top: 3rem;
    }

    .post__img {
        min-height: 30rem;
    }

    .footer .menu ul,
    .footer__logo,
    .footer .icons,
    .footer .copy,
    .footer .links,
    .footer .awards ul {
        text-align: center;
    }

    .footer li {
        margin: 0 5px;
    }

    .footer .menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .social {
        border-top: 0;
    }

    .footer .awards {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgb(255, 255, 255, 0.1);
    }

    .footer .awards li {
        margin: 1rem;
    }

    .footer .copy {
        opacity: .3;
    }

    .recent-posts {
        padding-bottom: 7.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4.4rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .posts {
        margin-top: -55rem;
    }

    .recent-posts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .recent-post__article {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .recent-post__article:nth-child(2) {
        margin-left: 0;
    }

    .comment__author {
        display: block;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .main-nav--visible .nav {
        height: calc(100% - 15.5rem);
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-y: auto;
    }

    .open-nav {
        width: 4rem;
        height: 6rem;
        margin-right: 3rem;
        background: transparent;
    }

    .search__box {
        height: 6rem;
    }

    .single-post .header {
        min-height: 13rem;
    }

    .open-nav span {
        background: #fff;
    }

    .breadcrumb-item {
        font-size: 1.3rem;
    }

    .logo {
        width: 9.6rem;
        height: 4rem;
        background-position: 0 -11.4rem;
    }

    .slogan .logo {
        height: 5.7rem;
    }

    .header-items__wrapper.sticky > .logo {
        background-position-y: -15.4rem;
    }

    .header-items__wrapper.sticky .open-nav {
        background: rgba(255, 255, 255, 0.1);
    }

    .header-items__wrapper.sticky .open-nav span {
        background: #000;
    }

    .post__content {
        padding: 2.5rem;
    }

    .post__btn {
        bottom: 2.5rem;
    }

    .page-404 h1 {
        font-size: 3rem;
    }

    .error__message span {
        font-size: 14rem;
    }

    .ramo {
        max-width: 3rem;
        -webkit-transform: translateX(7.5rem);
        -ms-transform: translateX(7.5rem);
        transform: translateX(7.5rem);
    }

    .donut {
        max-width: 12.5rem;
    }

    .error__message span:last-child {
        padding-left: 8.5rem;
    }

    #rc-imageselect,
    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}
@media (max-width: 320px){
    .posts {
        margin-top: -45rem;
    }
}