/* media screen
----------------*/
@media screen {
  /* Colors 
    yellow: #f6a422;
    blue: #06398c;
    footer: #333333;
    */

  body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.6;
  }

  .block {
    overflow: visible;
  }

  .ce_list ul li:before,
  .ce_text ul li:before {
    content: "- ";
    margin-right: 0.25rem;
  }

  .logo {
    float: left;
    width: auto;
    display: inline-flex;
    flex: 1;
    padding-right: 1rem;
    align-self: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .headerIcon {
    float: right;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: stretch;
  }

  #menuTrigger,
  #searchTrigger {
    flex: 1;
    cursor: pointer;
    text-indent: -10000rem;
    background: #06398c url(../images/icons/menu.svg) no-repeat center;
    background-size: 50%;
  }

  .menuOpen #menuTrigger {
    background-image: url(../images/icons/cross.svg);
  }
  #searchTrigger {
    background: #f6a422 url(../images/icons/search.svg) no-repeat center;
    background-size: 50%;
    display: none;
  }
}
/*@media screen ends*/

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
  .headerIcon {
    width: 80px;
    height: 80px;
    margin-top: 20px;
  }
}

/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
  .headerIcon {
    width: 164px;
    height: 82px;
    margin-top: 30px;
  }

  #searchTrigger {
    display: block;
  }

  .list-2col ul {
    columns: 2;
    margin-right: 1rem;
  }
}

/* Tablet-landscape (and larger) for width 960px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width: 1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1200px */
@media only screen and (min-width: 1200px) {
}

/* Links Box
---------------------*/
@media only screen {
  .link-box .inside_art {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }

  .link-box .ce_text * {
    color: #fff;
  }
  .link-box .ce_text {
    flex: 1 1 100%;
    background: #06398c;
    min-height: 6rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
  }

  .link-box .ce_text::after {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f6a422 url(../images/icons/plus.svg) no-repeat center;
    background-size: 50%;
    transition: all 0.15s ease;
  }

  .link-box .inside_ce {
    padding: 1rem;
  }

  .link-box .inside_ce:after {
    content: "";
    display: block;
    width: auto;
    height: 2px;
    background: #f6a422;
    margin-right: 3rem;
    margin-bottom: 1.5rem;
  }

  .link-box .hovered.ce_text * {
    color: #06398c;
    transition: all 0.5s ease;
  }
  .link-box .hovered.ce_text {
    background: #f6a422;
    transition: all 0.5s ease;
  }
  .link-box .hovered .inside_ce:after {
    background-color: #06398c;
  }
  .link-box .hovered.ce_text::after {
    background-color: #06398c;
  }
  .link-box .ce_text p {
    /* font-weight: bold; */
  }
}
/* link-box */
@media only screen and (min-width: 480px) {
}
/* link-box */
@media only screen and (min-width: 768px) {
  .link-box .inside_art:after {
    content: "";
    display: flex;
    height: 0;
    width: 48%;
  }
  .link-box .ce_text {
    min-height: 10rem;
    flex: 0 0 48%;
    flex-basis: 48%;
  }
}
/* link-box */
@media only screen and (min-width: 992px) {
  .link-box .inside_art:after {
    width: 32%;
  }
  .link-box .ce_text {
    flex: 0 0 32%;
    flex-basis: 32%;
  }
}
/* link-box */
@media only screen and (min-width: 1200px) {
}

/* Links Box ends
---------------------*/

/* Portrait
---------------------*/
@media only screen {
  /* protrait */
  .protrait .inside_art {
    margin: 0 -0.75rem !important;
  }

  .protrait .ce_text {
    padding: 0.35rem 0.75rem;
    box-sizing: border-box;
    position: relative;
  }

  .protrait figure,
  .protrait .inside_ce {
    position: relative;
    margin: 0;
  }

  .protrait figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #06398c;
    color: #fff;
    padding: 0.5rem 2rem 0.5rem 1rem;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .protrait figcaption:after {
    content: "";
    display: block;
    display: none;
    width: 2.85rem;
    height: 2.85rem;
    background: #f6a422 url(../images/icons/plus.svg) no-repeat center;
    background-size: 60%;
    position: absolute;
    bottom: 0rem;
    right: 0;
  }

  .protrait .content-div {
    background: #06398c;
    padding: 1rem;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-content: baseline;
    box-sizing: border-box;
    display: flex;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .protrait .content-div p:last-child {
    margin-bottom: 0;
  }

  .protrait a {
    color: #fff;
  }

  .showText .content-div {
    opacity: 1;
  }
}
/* Portrait ends
---------------------*/


/* Pagination Query
--------------------*/
@media screen {
  .pagination {
    text-align: center;    
    font-size: 1rem;
  }

  .pagination ul {    
    text-align: center;
    margin: auto
  }
  .pagination strong {
    font-weight: normal;
    background: #06398c !important;;
    color: #fff;
  }

  .pagination ul li,
  .pagination strong,
  .pagination ul li a {
    display: inline;
    float: none !important;
    border-color: transparent !important;
    border-radius: 0 !important;
  }


  .pagination strong,
  .pagination ul li a {
    padding : 1px 6px !important;
  }


  .pagination a:hover {
    background-color: #06398c !important;
    color: #fff;
  }


  .pagination .previous a,
  .pagination .next a {
    display: inline-block;
    text-indent: -100000px;
    padding: 0;
    width: 1rem !important;
    background-color: transparent !important;
    background-image: url(../images/icons/arrow-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
  }


  .pagination .previous a {
    transform: rotate(90deg);
  }
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Pagination Query ends
--------------------*/



  /* Lightbox url open in custom overlay 
---------------------*/
@media only screen {
  #model-container {
    transition: all 0.3s ease-out;
    overflow: hidden;
    display: none;
    transform: translateX(0) translateY(40%);
    background: #fff;
    min-height: 100vh;
  }

  #model-container #main {
    background: #fff;
    padding-bottom: 4rem;
  }
  .lightbox-content-custom #model-container {
    display: block;
  }

  .lightbox-content-custom body > #bodyContent {
    position: fixed;
    width: 100vw !important;
    height: 100vh !important;
  }

  .lightbox-content-custom-loaded body > #bodyContent{
    animation: bodyContent-hide 400ms both;
    animation-timing-function: ease-in;
  }

  @keyframes bodyContent-hide {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  .lightbox-content-custom-loaded body > #bodyContent {
    overflow: hidden;
  }

  @keyframes model-container-show {
    0% {
      opacity: 0;
      transform: translateX(0) translateY(80%);
    }

    100% {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }
  }

  .lightbox-content-custom #model-container {
    animation: model-container-show 500ms both;
    animation-timing-function: ease-out;
    position: relative;
    z-index: 1;
  }

  .lightbox-content-custom #nav-icon-wrap,
  .lightbox-content-custom #header {
    display: none;
  }

  /* close button */
  #model-close {
    display: none;
    visibility: hidden;
    transition: visibility 500ms linear;
  }

  .lightbox-content-custom-loaded #model-close {
    display: block;
    visibility: visible;
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: 46px;
    height: 46px;
    border: 1px solid #06398c;;
    border-radius: 24px;
    margin: 0 auto;
    clear: both;
    z-index: 1;
    color: #f6a422;
    font-weight: 100;
    text-align: center;
    background: #06398c;
    cursor: pointer;
  }

  #model-close span {
    display: none;
    position: absolute;
    right: -55px;
    font-size: 20px;
    line-height: 46px;
    color: #06398c;
  }

  .bs-bottom #model-close span {
    display: inline-block;
  }

  #model-close:before {
    display: inline-block;
    content: "x";
    font-size: 20px;
    line-height: 46px;
    font-weight: 100;
  }

}
/* Lightbox url open in custom overlay */

/* Pulled Content
---------------------*/
@media only screen {
  .pulled-content * {
    color: #fff;
  }

  .pulled-content {
    padding: 1rem;
    margin-top: -1rem;
    background: #06398c;
  }

  .pulled-content a:before {
    border-top: 2px solid #f6a422;
    content: "";
    display: block;
    padding: 0.25rem 0.25rem;
  }

  .pulled-content a {
    display: block;
    color: #f6a422;
    border: none;
    padding-bottom: 0.75rem;
    bottom: -1rem;
    text-transform: uppercase;
    z-index: 1;
    margin-right: -1rem;
    margin-bottom: -1rem;
  }

  .pulled-content:after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background: #f6a422 url(../images/icons/plus.svg) no-repeat center;
    background-size: 40%;
    position: absolute;
    bottom: 1rem;
    right: 0rem;
  }
}

/* pulled-content */
@media only screen and (min-width: 480px) {
}

/* pulled-content */
@media only screen and (min-width: 768px) {
  /* pulled-content */
  .has-pulled-content {
    padding-bottom: 4rem;
  }

  .pulled-content {
    position: absolute;
    left: 0;
    bottom: -3.25rem;
    width: 60%;
    padding: 2rem 3rem 0rem 2rem;
  }

  .pulled-content a:before {
    padding: 0.25rem;
  }

  .pulled-content:after {
    bottom: 0rem;
    right: -3.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .pulled-content a {
    margin-right: -6rem;
    margin-bottom: 0;
    bottom: -1.25rem;
    padding-bottom: 1rem;
  }
}

/* pulled-content */
@media only screen and (min-width: 992px) {
  .pulled-content {
    width: 50%;
  }
}

/* pulled-content */
@media only screen and (min-width: 1200px) {
  .pulled-content {
    left: -180px; /* (1140-960) / 2  = 180*/
  }
}
/* Pulled Content ends
---------------------*/

/* Notice Block
---------------------*/
@media screen {
  /* notice */
  .notice {
    background: #06398c;
    margin-bottom: 3rem;
  }

  .notice.tim {
    background: #bcc51e;
    color: #fff;
  }
  
  .notice * {
    color: #fff !important;
  }

  .notice .inside_ce {
    margin: 0 1.5rem;
    position: relative;
    font-size: 1rem;
  }

  .notice .content-div {
    padding-bottom: 2rem;
  }

  .notice .heading,
  .notice .content-div {
    padding-top: 2rem;
    overflow: visible;
  }

  .notice .heading + .content-div {
    padding-top: 0;
  }

  .notice h1:after,
  .notice h2:after {
    display: none;
  }

  .notice-link {
    position: relative;
    display: block;
  }

  .notice a.notice-link,
  .notice .notice-link a {
    margin-bottom: -4rem;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 13rem;
  }

  a.notice-link,
  .notice-link a {
    text-align: center;
    display: inline-block;
    background: #f6a422;
    padding: 0.75rem 1rem;
    margin: auto;
    border: none;
    color: #fff !important;
    font-weight: 700;    
  }

  .notice.tim a.notice-link,
  .notice.tim .notice-link a {
    background: #06398c;
  }
  
  .notice .image_container {
    padding: 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .notice .image_container img {
    width: 100%;
  }
  
  .notice.center .inside_ce {
    float: none;
  }
  /* notice ends */
}

/* notice */
@media only screen and (min-width: 768px) {
  .notice .inside_ce {
    margin: 0 2rem;
    font-size: 1.3rem;
    float: left;
    width: auto;
  }

  .notice.float_left_box,
  .notice.float_right_box {
    padding: 0;
  }

  .notice.float_left_box .inside_ce,
  .notice.float_right_box .inside_ce {
    margin: 0;
  }

  .notice .content-div {
    margin-right: 2rem;
  }

  .notice figure.image_container {
    width: 40%;
    padding: 0;
    margin: auto;
  }

  .notice .image_container img {
    object-fit: cover;
    object-position: right center;
    object-position: center center;
    width: auto;
    height: 100%;
  }

  .notice.nocrop .image_container img {
    object-fit: contain;
    object-position: top center;
    width: auto;
    height: 100%;
  }

  .notice a.notice-link,
  .notice .notice-link a {
    width: 15rem;
  }
}

/* notice */
@media only screen and (min-width: 1200px) {
  .notice .inside_ce {
    margin: 0 10%;
  }

  .notice.float_left_box .content-div,
  .notice.float_right_box .content-div {
    width: 60%;
    max-width: 60%;
    padding-right: 5rem;
    padding-left: 5rem;
    margin: 0;
    box-sizing: border-box;
  }
}
/* Notice Block ends
---------------------*/

/* Rombus Box
---------------------*/
@media only screen {
  /* rombus */
  .rombus {
    position: relative;
    overflow: hidden;
    padding-top: 0.5rem;
  }
  .rombus:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 3rem;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-bottom: 3rem solid #06398c;
    background: #efefef;
    z-index: 1;
  }

  .rombus:after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-top: 4.25rem solid #fff;
    bottom: 0;
    left: 0;
    background: #06398c;
    z-index: 0;
  }
  .rombus h1,
  .rombus h2 {
    position: relative;
    z-index: 2;
    margin-top: 0.2rem;
  }

  .rombus.pulled-heading .content-div h1,
  .rombus.pulled-heading .content-div h2 {
    margin-left: -4.25rem;
  }

  .rombus .content-div h1,
  .rombus .content-div h2 {
    line-height: 1.1;
  }

  .rombus h1:after,
  .rombus h2:after {
    margin: 1.2rem 0 0 4.5rem;
  }

  .rombus .content-div h1:after,
  .rombus .content-div h2:after {
    margin: 0.5rem 0 0 4.25rem;
  }

  .rombus .content-div {
    z-index: 2;
    padding: 0 1rem 2.5rem;
    position: relative;
    margin-left: 3.5rem;
    margin-top: -0.5rem;
  }

  .rombus .heading + .content-div {
    margin-top: 0;
  }

  .rombus a.rombus-link,
  .rombus .rombus-link a {
    display: block;
    background: #f6a422;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3rem;
    line-height: 3rem;
    font-weight: 700;
    color: #fff;
    padding: 0 1.5rem;
    border: 0;
  }
  /* rombus ends */
}

/* rombus */
@media only screen and (min-width: 768px) {
  .rombus {
    padding-top: 0.5rem;
  }
  .rombus:before {
    left: 3rem;
    border-bottom: 3rem solid #06398c;
  }

  .rombus:after {
    border-top: 4.6rem solid #fff;
  }

  .rombus.pulled-heading .content-div h1,
  .rombus.pulled-heading .content-div h2 {
    margin-left: -5.25rem;
    line-height: 1;
  }

  .rombus h1:after,
  .rombus h2:after {
    margin: 1rem 0 0 5.5rem;
  }

  .rombus .content-div h1:after,
  .rombus .content-div h2:after {
    margin: 0.5rem 0 0 5.25rem;
  }

  .rombus .content-div {
    padding: 0 2.5rem 3rem;
    margin-left: 3rem;
    margin-top: -1.25rem;
  }

  .rombus .heading + .content-div {
    margin-top: 0;
  }

  .rombus a.rombus-link,
  .rombus .rombus-link a {
    height: 3rem;
    line-height: 3rem;
    font-size: 1.6rem;
  }
}

/* rombus */
@media only screen and (min-width: 992px) {
  .rombus {
    padding-top: 1rem;
  }
  .rombus:before {
    left: 5rem;
    border-bottom: 5rem solid #06398c;
  }

  .rombus:after {
    border-top: 6rem solid #fff;
  }

  .rombus h1,
  .rombus h2 {
    margin-top: 0.5rem;
  }

  .rombus.pulled-heading .content-div h1,
  .rombus.pulled-heading .content-div h2 {
    margin-left: -7.5rem;
    line-height: 1.1;
  }

  .rombus h1:after,
  .rombus h2:after {
    margin: 1.5rem 0 0 7.5rem;
  }

  .rombus .content-div h1:after,
  .rombus .content-div h2:after {
    margin: 1rem 0 0 7.5rem;
  }

  .rombus .content-div {
    padding: 0 2.5rem 5rem;
    margin-left: 5rem;
    margin-top: -1.75rem;
  }

  .rombus a.rombus-link,
  .rombus .rombus-link a {
    height: 5rem;
    line-height: 5rem;
  }
  /* rombus ends */
}
/* Rombus Box ends
---------------------*/

/* Content Silder
---------------------*/
@media only screen {
  /* icons/qoutes slider */
  #art_slider .slick-arrow {
    position: absolute;
    top: 100%;
    left: 30%;
    margin-top: 1rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
  }

  #art_slider .slick-arrow.slick-next {
    right: 30%;
    left: auto;
  }

  #art_slider .slick-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  #art_slider .slick-arrow {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 0;
    box-shadow: none;
    text-indent: -100000px;
    overflow: hidden;
    padding: 10px;
  }

  #art_slider .slick-arrow::before {
    content: "";
    transform: rotate(45deg);
    transform-origin: center;
    border: 4px solid #06398c;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 1;
  }

  #art_slider .slick-arrow.slick-prev::before {
    border-top: 0;
    border-right: 0;
    left: 0.75rem;
  }

  #art_slider .slick-arrow.slick-next::before {
    border-bottom: 0;
    border-left: 0;
    right: 0.75rem;
    left: auto;
  }

  #art_slider .slick-track {
    min-height: 50px;
    height: auto;
  }
  /* icons/qoutes slider ends */
}

/* slider */
@media only screen and (min-width: 992px) {
  #art_slider .slick-arrow {
    top: 50%;
    left: -5rem;
    margin-top: 0;
  }

  #art_slider .slick-arrow.slick-next {
    right: -5rem;
  }

  #art_slider .slick-arrow {
    width: 70px;
    height: 70px;
  }

  #art_slider .slick-arrow::before {
    border: 7px solid #06398c;
    width: 40px;
    height: 40px;
  }

  #art_slider .slick-arrow.slick-prev::before {
    left: 16px;
  }

  #art_slider .slick-arrow.slick-next::before {
    right: 16px;
  }
}
/* Content Silder ends
---------------------*/
