@import url('https://fonts.googleapis.com/css?family=Cabin|Calligraffitti|Fjalla+One|Inconsolata|Indie+Flower|Lato|Libre+Franklin|Noto+Sans+JP|Noto+Serif|Open+Sans|Open+Sans+Condensed:300|Oswald|Poppins|Roboto|Titillium+Web|Ubuntu+Condensed|Ubuntu+Mono|Yanone+Kaffeesatz&display=swap');

/* Shan Colors */
:root {
    --success: #28a745;
    --primary: #007bff;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --dark-gray: #343a40;
    --scondary: #6c757d;
    --light-gray: #f8f9fa;
    --nav-blue: #1d508d;
    --orange: #ffc83f;
    --red: #fa5e5b;
    --plum: #bf538d;
    --teal: #0FDEBD;
    --dark-blue: #142b44;
    --warning-dark: #FF8800;
    --danger-dark: #CC0000;
    --success-dark: #007E33;
    --info-dark: #0099CC;
    --logo-color: #007A4D;
    --blue: #003875;
}

/* End Shan Colors */

/*Shan Global Classes*/
/* Shan Button 1 */
.shan-btn-1 {
    background: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.shan-btn-1:hover {
    background: var(--warning);

}
/*
.sa-pdf {
 text-decoration: none;
 font-family: 'Fjalla One', sans-serif;
 padding: 0px 3px;
}
.sa-pdf:hover {
 transition: color .9s;
 color: #fff;
 background-color: #8b2252;
    border-radius: 5px;
}
*/

.pdf-link {
  display: inline-block;
  background-color:#003D5B;
  color: #fff;
  padding: 0px 15px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 1rem;
  border-radius: 5px;

}

.pdf-link:hover {
 background: #C1292E;
 color: #fff;

}

/* End Shan Button 1 */

/* Shan Button 2 */
.shan-btn-2 {
    background: #28a745;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.shan-btn-2:hover {
    background: #17a2b8;

}

.heading-underline {
    width: 9rem;
    height: .2rem;
    background-color: #1EBBA3;
    margin: 0 auto 1rem;
}

/* End Shan Button 2 */
/*End Shan Global Classes*/

/*Rest*/
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
}

/*---------SDS Warraper---------------------*/

#sds-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/*---------SDS Warraper Ends----------------*/

/*----------Navigation-----------------*/

.nav-list a {
    text-decoration: none;
}

header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.nav-container {
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0.4rem;
}

.nav-container ul {
    list-style: none;
}

.menu-icons {
    color: #000;
    font-size: 1.2rem;
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    /* To stay in the middle*/
    z-index: 1500;
    display: none;
}

nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6rem;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
}

.logo-img {
    height: 6rem;
}

.nav-list {
    display: flex;
    width: 100%;
    align-items: center;
}

.nav-list li {
    line-height: 8rem;
    position: relative;
}

.sub-menu li {
    line-height: 3rem;
}

.nav-list a {
    display: block;
    color: #007A4D;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif
}

.nav-list a:hover {
    color: #eb3007;
    transition: color 650ms;
}

.btn-shan {
    display: inline-block;
    padding: 16px;
    background: #007bff;
    border: 2px solid #007bff;
    border-radius: 16px;
    transition: background-color 6500ms;
    letter-spacing: 2px;
}

.sub-menu {
    display: block;
    width: 18rem;
    position: absolute;
    border-top: 3px solid #007A4D;
    background-color: #fff;
    top: 16rem;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    transition: all 650ms ease;
}

.sub-menu a {
    color: #007A4D;
}

.sub-menu::before {
    content: "";
    position: absolute;
    top: -2.5rem;
    left: 3rem;
    border: 1.2rem solid transparent;
    /*    border-bottom-color: #eb3007;*/
    border-bottom-color: #007A4D;
}

.sub-menu .sub-menu::before {
    top: .9rem;
    left: -2.5rem;
    border: 1.2rem solid transparent;
    /*    border-right-color: #eb3007;*/
    border-right-color: #007A4D;
}

.sub-menu .sub-menu {
    border-top: none;
    /*    border-left: 3px solid #eb3007;*/
    border-left: 3px solid #007A4D;
    top: 0;
    left: 160%;
}

.nav-list li:hover > .sub-menu {
    top: 6rem;
    opacity: 1;
    visibility: visible;
}

.sub-menu li:hover > .sub-menu {
    top: 0;
    left: 100%;
    opacity: 1;
    visibility: visible;
}

li.move-right {
    margin: auto 0 auto auto;
    line-height: 1.4;
}

@media screen and (max-width: 930px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: o;
        height: 100vh;
        display: none;
        flex-direction: column;
        align-items: initial;
        background-color: #fff;
        z-index: 100;
        overflow-y: scroll;
    }

    .nav-list > li {
        line-height: 6rem;
    }

    .sub-menu {
        position: initial;
        border: 3px solid transparent;
        /*        border-left-color: #eb3007;*/
        border-left-color: #007A4D;
        margin-left: 1rem;
        max-height: 0;
    }

    .sub-menu::before {
        display: none;
    }

    .nav-list li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }

    li.right-menu {
        margin: 0 auto 0 0;
        line-height: initial;
    }

    .menu-icons {
        display: block;
    }

    .menu-icons .fa-times-circle {
        display: none;
    }

    nav.active .fa-times-circle {
        display: block;
    }

    nav.active .fa-bars {
        display: none;
    }

    nav.active .nav-list {
        display: flex;
    }
}

.btn-shan {
    color: #fff;
    display: inline-block;
    padding: 5px;
    background-color: #eb3007;
    border: 2px solid #eb3007;
    border-radius: 16px;
    transition: background-color 6500ms;
}

.btn-shan a {
    color: #fff;
}

.btn-shan:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
}

li.move-right {
    margin: auto 0 auto auto;
    line-height: initial;
}

@media screen and (max-width: 1130px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        display: none;
        flex-direction: column;
        align-items: initial;
        background-color: #fff;
        z-index: 100;
        overflow-y: scroll;
    }

    .nav-list a {
        color: #007A4D;
    }

    .nav-list > li {
        line-height: 4rem;
    }

    .sub-menu {
        position: initial;
        border: 3px solid transparent;
        border-left-color: #007A4D;
        margin-left: 1rem;
        max-height: 0;
    }

    .sub-menu::before {
        display: none;
    }

    .nav-list li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: initial;
    }

    .menu-icons {
        display: block;
    }

    .menu-icons .fa-times-circle {
        color: #007A4D;
    }

    .menu-icons .fa-times-circle {
        display: none;
    }

    nav.active .fa-times-circle {
        display: block;
    }

    nav.active .fa-bars {
        display: none;
    }

    nav.active .nav-list {
        display: flex;
    }

    li.move-right {
        background: #007A4D;
        ;
        /*        margin: 0 auto 0 0;*/
        margin: 0 auto;
        line-height: initial;
    }

    .btn-shan a {
        color: #fff;
    }
}

/* ----------End Navigation-----------*/

/* ----------Slideshow ---------------*/
.slideshow-container {
    width: 100%;
    max-width: 1200px;
    height: 440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.show-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.show-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 10s linear;
}

.show-box img:hover {
    transform: scale(1.5);
}

.show-box .show-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0007;
    color: #fff;
    animation: text 2s linear;
}

@keyframes text {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.show-text h2 {
    font-family: 'Fjalla One', sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 5px;
}

.show-text p {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    padding: 0 5px;
    margin: 20px 0;
}

/* Shan Button 1 */
.shan-btn-1 {
    background: #007bff;
    ;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 5px;
}

.shan-btn-1:hover {
    background: var(--warning);

}

/* End Shan Button 1 */

/* Shan Button 2 */
.shan-btn-2 {
    background: #28a745;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 10px 5px;
    font-size: 12px;
}

.shan-btn-2:hover {
    background: #17a2b8;

}

/* End Shan Button 2 */


.prev,
.next {
    background-color: teal;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 15px;
    font-size: 25px;
    font-weight: bold;

}

.next {
    right: 0;

}

.prev:hover,
.next:hover {
    background: #dc3545;
    cursor: pointer;
}

.slideshow-nav {
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
}

.slideshow-nav .dot {
    width: 30px;
    height: 30px;
    background: #007bff;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    font-size: 20px;
    margin: 0 10px;
    padding: 1px;
    cursor: pointer;
}

.dot.active {
    background: #dc3545;
}

/* ----------End Slideshow ---------------*/

/* -------------Consular Notice Section--------------- */
.consular-notice:after {
    content: "";
    display: block;
    clear: both;
}

.consular-notice {
    background: #ccc;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

.consular-notice .notice {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: #28a745;
    color: #fff;
    width: 23%;
    height: 60px;
    margin: 1%;
    padding: 1%;
    float: left;
}

.notice {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice:hover {
    background: #007bff;
}

.a-link {
    text-decoration: none;
    color: #fff;
}

/* -----------End Consular Notice Section--------------- */

/*------Public Information---------*/
.public-info {
    background: #114B5F;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;

}

.public-info:after {
    content: "";
    display: block;
    clear: both;
}

.public-info .info {
    float: left;
    padding: 5px 1rem;
}

.public-info .main {
    width: 90%;
    height: auto;
    color: #fff;
    font-size: 18px;
}

.public-info h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.public-info h6 {
    background: #F45B69;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 5px;
    color:#fff;
    margin-bottom: 10px;
    text-align: center;
}

.public-info p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    padding-bottom: 10px;
}

.public-info .sidebar {
    background: #fff;
    width: 25%;
    text-align: center;
    border: 2px solid #003875;
}

.public-info .sidebar img {
    max-width: 100%;
    max-height: 100%;
    margin: 3rem 0;
}

/*------Ends Public Information---------*/

/*------Start Visas--------*/
.sa-visas {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    background: #ddd;
}
.sa-visas h1 {
    background: #dc185d;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 5px;
    color: #fff;
    text-align: center;
}
.visa-content {
    margin-bottom: 10px;
}
.visa-content .note {
    background: #28a745;
    width: 100%;
    height: 100px;
    max-width: 50%;
    margin: 0 auto;
    float: left;
    margin-bottom: 5px;
    border-left: 2px solid #fff;
}
.note .sh-text-1 {
    padding: 15px;
    font-size: 15px;
    color: #fff;
}
.clearfix {
    content: "";
    display: block;
    clear: both; 
}
.visa-content .pev h4 {
     background: #FF8427;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    padding: 1px;
}
.sh-text-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    color: #000;
    
}
.link-1 {
    display: inline-block;
    background-color: #485667;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    color: white;
    padding: 5px 15px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0px 15px;
}
.link-1:hover {
  background-color: #003785;
}
.sh-bold-text {
    color:#084596;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 15px;
}
.line {
    width: 9rem;
    height: .2rem;
    background-color: #1EBBA3;
    margin: 0 auto 1rem;
}
.sh-span-text {
    color:#FE5F55;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.sh-text-h4 {
     background: #007bff;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal; 
    padding: 5px 0px;
}
.accordion {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 5px;
    overflow: hidden;
    font-family: 'Oswald', sans-serif;
    background: #003875;
    color: #fff;
}
.accordion__label,
.accordion__content {
    padding: 14px 20px;
}
.accordion__content {
    padding-top: 15px;
}
.accordion__label {
    display: block;
    color: #065535;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: background 0.1s;
    background: #bfbfbf;
    font-size: 15px;
    border-bottom: 1px solid #003785;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    
}
.accordion__label:hover {
    background: rgba(0,0,0,0.1);
    color: #fff;
}
.accordion__label::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url('../../img/caret-down-solid.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: contain;
    transition: transform 0.4s;
}
.accordion__content {
    line-height: 1.6;
    font-size: 15px;
    display: none;
    background: #fff;
    color: #000;
    border-left: 1px solid #003785;
    border-right: 1px solid #003785;
    border-bottom: 1px solid #003785;
}
.accordion__input {
display: none;
}
.accordion__input:checked ~ .accordion__content {
    display: block; 
}
.accordion__input:checked ~ .accordion__label::after {
     transform: translateY(-50%) rotate(0.5turn);
}
.accordion-list .accordion-items {
    list-style: decimal;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
  
}
.accordion-items {
    margin: 5px;
    padding: 10px;
}

.accordion-items .span-bold {
    color:  #262262;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.accordion-items p {
    font-size: 16px;
}
.sh-sub-heading {
    font-size: 16px;
    padding: 5px;
    letter-spacing: 1px;
    color: #BD553C;
}

.sh-bg-text {
    background: #6B7177;
    color: #fff;
}

.sh-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sh-links a {
   text-decoration: none;  
}
.sh-links .link-1 {
    padding: 5px 30px;
    letter-spacing: 1px;
     text-decoration: none;
}
.sh-links .fa-phone-square  {
    color: #084596;

}
.sh-links .fa-envelope-square {
    color: #065535;

}
.day {
    background: red;
}
/*-----End Visas-----------*/


/*----------Footer Styles-----------*/


.footer-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #003875;
}

.footer-container .content-1 .footer-img {
    text-align: center;
    margin-top: 1rem;
}

.content-1 img {
    height: 96px;

}

.box {
    width: 33.3%;
    height: auto;
    float: left;
}

.clearfix {
    clear: both;
}

.footer-container h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 5px;
    padding-left: 5px;
    border-bottom: 1px solid #FFF;
    /* margin-bottom: 22.5px; */
    /* margin-right: 30px; */
    text-transform: uppercase;
    padding-top: 20px;
}

.footer-container h4 {
    padding: 15px 0 10px 5px;
    color: #fff;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;

}

.footer-container a {
    font-size: 1.1rem;
}

.footer-container p {
    color: #fff;
    font-size: 1.1rem;
}


.footer-container ul {
    list-style: none;
    padding-left: 5px;
}

.footer-container ul li {
    padding: 0px 0px 10px 0px;
}

.footer-container ul li a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
}

.footer-container ul li a:hover {
    background: #fa5e5b;
    transition: all .9s;
}

.content-3 .f-paragraph {
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 5px;
}

.content-3 p {
    padding-left: 5px;
}

.footer-container .box .f-line {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;

}

.footer-container .f-top {
    padding-top: 15px;
}

.footer-social-items {
    margin-top: 10px;

}

/* Footer Social  */
ul.social {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2em;
}

ul.social li {
    display: inline;
    padding-right: .8rem;
}

ul.social li a {
    transition: all .2s ease;

}

ul.social li a:hover {
    color: #505962;
}

ul.social li .fa-twitter-square {
    color: #00acee;
}

ul.social li .fa-instagram {
    color: #405DE6;

}

ul.social li a {
    font-size: 2.2rem;
}

.content-2 img {
    margin-top: 20px;
}

.footer-flag img {
    width: 60px;
    height: 30px;
    margin-bottom: 2rem;
}

.footer-bottom {
    background-color: #262626;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    padding: 10px 0px;
}

/*----------End Footer Styles--------*/

/*-----------Media Queries----------------*/
@media screen and (max-width: 768px) {
    .show-box .show-text {
        width: 80%;
    }

    .show-box .show-text p {
        font-size: 18px;
    }

    .notice .a-link {
        font-size: .8rem;
        margin: 0;
        padding: 0;
    }

    .visa-content .note {
        background: #28a745;
        width: 100%;
        height: 150px;
        max-width: 50%;
        margin: 0 auto;
        float: left;
        margin-bottom: 5px;
        border-left: 2px solid #fff;
    }
}
    @media screen and (max-width: 500px) {
        
         .visa-content .note {
          float: none;
          width: 100%;
          height: auto;
    }
        .show-box .show-text h2 {
            font-size: 18px;
        }

        .show-box .show-text p {
            font-size: 17px;
        }

        .consular-notice {
            padding: 1rem;
        }

        .consular-notice .notice {
            width: 100%;
        }

        .consular-notice .notice .a-link {
            font-size: 1.1rem;
        }

        .public-info {
            display: block;
        }

        .public-info .main {
            width: 100%;
        }

        .public-info .sidebar {
            width: 100%;
        }

        .box {
            width: 100%;
        }

        .visa-content .note {
            background: #28a745;
            width: 100%;
            height: 100%;
            max-width: 100%;
            margin: 0 auto;
            margin-bottom: 5px;
            border-left: 2px solid #fff;
        }
        .accordion-list .accordion-items {
            list-style: decimal;
            width: 100%;
            height: 100%;
        
        }
    }

    @media screen and (max-width: 425px) {
        .show-box .show-text h2 {
            font-size: 16px;
        }

        .show-box .show-text p {
            font-size: 15px;
        }

        .visa-content .note {
            background: #28a745;
            width: 100%;
            height: 100%;
            max-width: 100%;
            margin: 0 auto;
            margin-bottom: 5px;
            border-left: 2px solid #fff;
        }
        .sh-links {
            flex-direction: column;
        }
            .sh-links a{
                padding: 5px 0px;
                margin: 5px;
            }
    }

    @media screen and (max-width: 375px) {
        .nav-container .logo-img {
            height: 5rem;
        }

        .show-box .show-text {
            width: 70%;
            padding-bottom: 2.7rem;
        }

        .box {
            width: 100%;
        }
    }

    @media screen and (max-width: 320px) {
        .nav-container .logo-img {
            height: 4rem;
        }

        .show-box .show-text {
            height: 100%;
        }

        .slideshow-nav .dot {
            margin: 1px;
        }

        .box {
            width: 100%;
        }

    }

    /*------------End Media Queries--------------*/
