@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    font-size: 14px;
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    width: 100%;
}

p,
li {
    color: #000;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: justify;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading.text-left h2 {
    text-align: left;
}

.section-heading h2 {
    text-align: center;
    font-size: 45px;
    color: #120f20;
    font-weight: 700;
}

.section-heading h2 span {
    color: #fa8714;
}

.img-shape {
    padding: 0 40px;
}



/* -----------------
Top Bar
--------------------*/

.top-bar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
}

.top-bar .wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.top-bar .wrap .top-btn a {
    background: #05031c;
    padding: 15px 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.3s ease;
}
.top-bar .wrap .top-btn a:hover {
    background: #120f20;
}

.top-bar .contact-info {
    display: flex;
    float: left;
}

.top-bar .contact-info li {
    padding-left: 30px;
    margin: 0;
    font-weight: 500;
    position: relative;
    float: left;
    /* display: flex;
    align-items: center;
    gap: 10px; */
}

.top-bar .contact-info li .icon {
    font-size: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fa8714;
    color: #fa8714;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .contact-info li .icon img {
    width: 25px;
}

.top-bar .contact-info li a {
    color: #000;
    font-size: 16px;
    display: inline-table;
    vertical-align: middle;
    margin-left: 15px;
}

.top-bar .contact-info li span {
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.top-bar .contact-info li h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}


/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 0;
    background-color: #fff !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    border-bottom: 1px solid #e7e7e7;
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
}

/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */


.navbar .navbar-brand {
    width: 120px;
    z-index: 9999;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 0;
}
@media (min-width: 768px) {
    .navbar .navbar-brand {
        width: 230px;
        position: fixed;
        top: 0;
    }

    .fixed-header .navbar-brand {
        width: 170px;
    }
}



.navbar .navbar-collapse {
    position: relative !important;
}

.navbar-nav>li {
    margin: 0 5px;
    position: relative;
}

.navbar-nav li .nav-link {
    padding: 20px 0;
    color: #000 !important;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 16px;
    text-transform: capitalize;
}

.navbar-nav li .nav-link:hover,
.navbar-nav li .nav-link.active {
    color: #fa8714 !important;
}


/* hover styles */
.navbar-nav li .nav-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #fa8714;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
    border: none;
  }
  .navbar-nav li:hover .nav-link:after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  

.navbar-nav li .nav-link.active:after {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.dropdown-menu {
    width: 250px;
    left: 0;
    border: 0px solid #ccc;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500 !important;
    color: #000;
    text-transform: capitalize;
    transition: 0.3s;
    border-radius: 8px;
}

.dropdown-menu li:active {
    background-color: transparent;
}

.sub-dropdown .dropdown-toggle::after {
    content: "\f105";
    font-family: "FontAwesome";
    border: none;
    font-weight: 700;
    vertical-align: 0;
    float: right;
}

.dropdown-menu,
.sub-dropdown-menu {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px 20px !important;
    border-top: 0px solid #f5821f;
    box-shadow: 0 0 30px 0px #00000014;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    border-bottom: none;
}

.dropdown-menu li:last-child a,
.sub-dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
    background-color: #015cb514;
    color: #000;
}

.sub-dropdown .sub-dropdown-menu {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* .navbar-nav li.dropdown .dropdown-menu {
position: absolute;
left: 0px;
top: 100%;
margin-top: 0;
z-index: 100;
display: block;
background: #ffffff;
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
-moz-transform: scaleY(0);
transform: scaleY(0);
-webkit-transform-origin: top;
-ms-transform-origin: top;
-moz-transform-origin: top;
transform-origin: top;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 768px) {
  .navbar-nav li.dropdown:hover .dropdown-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
} */


@media only screen and (min-width: 768px) {
    .dropdown .dropdown-menu {
        display: block;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: block;
    }
}


/* -----------------
Banner Area
--------------------*/

.banner-area.banner-fix {
    top: 80px;
}

.banner-area .single-banner {
    position: relative;
}

.banner-area .single-banner .slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-area .single-banner .slide img {
    width: 100%;
}

.banner-area .single-banner .slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000000;
}

.banner-area .single-banner .slide .banner-caption {
    position: absolute;
    left: 10%;
}

.banner-area .single-banner .slide .banner-caption h2 {
    font-size: 2.5vw;
    text-transform: capitalize;
    margin: 0;
    color: #15548b;
    font-weight: 600;
}

.banner-area .single-banner .slide .o-banner-center {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.banner-area .banner-text-center {
    position: absolute;
    top: 40%;
    left: 30%;
    text-align: center;
}

.banner-area .banner-text-left {
    position: absolute;
    top: 40%;
    left: 10%;
    text-align: left;
}

.banner-area .banner-text-right {
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: left;
}

.banner-area .banner-text h2 {
    font-size: 3vw;
    text-transform: capitalize;
    font-family: Rockford Sans;
    margin: 0;
    font-weight: 700;
}

.banner-area .banner-text p {
    width: 70%;
    color: #262626;
}

.banner-area .banner-btn a {
    text-decoration: none;
    background: red;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.banner-area .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner-area .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 25px;
    padding: 0;
    cursor: pointer;
}

.banner-area .slick-dots li button {
    position: relative;
    background-color: red;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
    font-size: 0;
}

.banner-area .slick-dots li.slick-active button {
    color: red;
    opacity: 0.75;
}

.banner-area .slick-next {
    right: 6%;
}

.banner-area .slick-prev {
    left: 3%;
    z-index: 9;
}

.banner-area .slick-next:before {
    content: "\f105" !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    background-color: #0000003b;
    border-radius: 0;
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-area .slick-prev:before {
    content: "\f104" !important;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    background-color: #0000003b;
    border-radius: 0;
    position: absolute;
    font-family: "FontAwesome";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-area .slick-prev,
.banner-area .slick-next {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.mb-20 {
    margin-bottom: 20px;
}



/* -----------------
Welcome Section
--------------------*/

.welcome-section {
    padding: 80px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}

.welcome-section .section-heading h2 span {
    display: block;
}


.welcome-section p {
    text-align: justify;
}

.pt-120 {
    padding-top: 120px !important;
}



/* destinations-section */

.destinations-section {
    padding-bottom: 80px;
}

.destinations-section .block {
    display: block;
    width: 100%;
    height: 100%;
}

.destinations-section .item {
    overflow: hidden;
    border-radius: 15px;
}

.destinations-section .item .inner {
    position: relative;
}

.destinations-section .item .inner .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 100%;
    background-color: #1c1f2a40;
    transition: all 0.3s;
}
.destinations-section .item:hover .inner .overlay-content {
    opacity: 0;
    visibility: hidden;
}

.destinations-section .item .inner .overlay-content .flag {
    width: 70px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
}
.destinations-section .item .inner .overlay-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.destinations-section .item .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 30px;
    border: 2px solid #fa8714;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.9s;
    transform: scale(0.5);
}

.destinations-section .item:hover .hover-content {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.destinations-section .item .hover-content h4 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.destinations-section .item .hover-content p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.destinations-section .item .hover-content .hover-btn {
    background: #fa8714;
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 5px 20px;
    border-radius: 50px;
}


.destinations-section .owl-nav button {
    color: #015cb5 !important;
    border-radius: 50%;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.destinations-section .owl-nav button:hover {
    opacity: 1;
}

.destinations-section .owl-nav button i {
    font-size: 30px;
    line-height: 40px;
}

.destinations-section .owl-nav .owl-prev {
    left: -60px;
}

.destinations-section .owl-nav .owl-next {
    right: -60px;
}



/* achievements-section */

.achievements-section {
    padding: 80px 0;
    background: url("../images/achievements-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.achievements-section .item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 46px 65px;
    position: relative;
}
.achievements-section .item:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 103px;
    border-radius: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #2890f4;
}
.achievements-section .item.i1 {
    border-radius: 20px 0 0 0;
    border-right: 1px solid #EDF3F5;
    border-bottom: 1px solid #EDF3F5;
}
.achievements-section .item.i1 .text h2::after {
    content: "+";
}
.achievements-section .item.i2 {
    border-radius: 0 20px 0 0;
}
.achievements-section .item.i2 .text h2::after {
    content: "+";
}
.achievements-section .item.i3 {
    border-radius: 0 0 0 20px;
    border-right: 1px solid #EDF3F5;
}
.achievements-section .item.i3 .text h2::after {
    content: "%";
}
.achievements-section .item.i4 {
    border-radius: 0 0 20px 0;
}

.achievements-section .item .icon {
    width: 100px;
    height: 100px;
    background: #fa871426;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements-section .item .icon img {
    width: 50px;
}

.achievements-section .item .text h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 300;
    color: #015cb5;
    margin: 0;
}
.achievements-section .item .text h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #000;
    margin: 0;
}



/* testimonials-section */

.testimonials-section {
    padding: 80px 0;
    background: #0b2442;
    margin-bottom: 5em;
}

.testimonials-section .section-heading h2 {
    color: #fff;
}

.testimonials-section .item {
    position: relative;
}
.testimonials-section .item .inner {
    position: relative;
    overflow: hidden;
}

.testimonials-section .item .inner .content {
    position: relative;
    background-color: #fff;
    padding: 70px 40px 30px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
}

.testimonials-section .item .inner .content .icon {
    position: absolute;
    right: -25px;
    top: -60px;
    height: 125px;
    width: 120px;
    color: #fff;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1em;
    padding-left: 40px;
    padding-bottom: 25px;
    border-radius: 50%;
    background-color: #015cb5;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonials-section .item .inner .content .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #fa8714;
    margin-bottom: 12px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonials-section .item .inner .content .text p {
    position: relative;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.testimonials-section .item .inner .content .text h4 {
    color: #015cb5;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}


.testimonials-section .owl-nav button {
    color: #fff !important;
    border-radius: 50%;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.testimonials-section .owl-nav button:hover {
    opacity: 1;
}

.testimonials-section .owl-nav button i {
    font-size: 30px;
    line-height: 40px;
}

.testimonials-section .owl-nav .owl-prev {
    left: -60px;
}

.testimonials-section .owl-nav .owl-next {
    right: -60px;
}




/* -----------------
About Section
--------------------*/

.about-section {
    padding: 80px 0;
    position: relative;
    top: -7px;
    z-index: 2;
    overflow: hidden;
}

.about-section .content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #120f20;
    padding-left: 15px;
    border-left: 4px solid #fa8714;
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-section .wrap {
    padding: 40px;
    box-shadow: 0 0 13px 0 #0000000f;
    border-radius: 10px;
    min-height: 270px;
    background: #05021c;
}
.about-section .wrap h4 {
    color: #fa8714;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-section .wrap p {
    color: #fff;
    margin: 0;
}

.about-section p {
    text-align: justify;
}


.why-section {
    padding: 0px 0 80px;
}

.why-section .item {
    margin-bottom: 30px;
}

.why-section .item .icon {
    width: 70px;
}

.why-section .item .text h4 {
    color: #120f20;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 23px;
    margin-top: 10px;
}



/* study-abroad-section */
.study-abroad-section {
    padding: 80px 0;
}

.study-abroad-section .content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #120f20;
    padding-left: 15px;
    border-left: 4px solid #fa8714;
    line-height: 1;
    margin-bottom: 15px;
}



/* study-destinations-section */
.study-destinations-section {
    padding: 80px 0;
}


/* courses-section */
.courses-section {
    padding: 80px 0;
}
.courses-section .item .content {
    padding: 20px 0;
}
.courses-section .item .content h4 {
    color: #120f20;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}


/* ----------------------
Contact Section
------------------------*/
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    top: -7px;
}

.contact-section .contact-col {
    display: flex;
}

.contact-form {
    background-color: #fa8714;
    padding: 30px;
    border-radius: 0px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-bottom: 1px solid #dddddd00;
    background-color: #f5fafc;
    width: 100%;
    border-radius: 0px;
    outline: none;
    padding: 10px 15px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #fa8714;
}

.contact-form button {
    margin-top: 0px;
    font-size: 14px;
    color: #fff;
    background-color: #120f20;
    padding: 12px 25px;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
}

.contact-form textarea {
    padding: 20px;
}

.contact-form ::-webkit-input-placeholder {
    /* Edge */
    color: #7c7c7c;
}

.contact-form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7c7c7c;
}

.contact-form ::placeholder {
    color: #7c7c7c;
}

.contact-section .contact-box {
    padding: 0 30px;
    width: 100%;
}

.contact-section .contact-box .contact-info h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li {
    padding: 0px 0px 10px 60px;
    position: relative;
    align-items: center;
    line-height: 1.7;
    color: #fff;
}

.contact-section .contact-box .contact-info ul li i {
    color: #fff;
    border-radius: 50px;
    background: #120f20;
    width: 40px;
    height: 40px;
    position: absolute;
    text-align: center;
    box-shadow: none;
    margin-right: 20px;
    line-height: 40px;
    left: 0px;
}

.contact-section .contact-box .contact-info ul li p {
    color: #000 !important;
    font-size: 16px;
    margin: 0 !important;
    font-weight: 600;
}

.contact-section .contact-box .contact-info ul li span {
    display: block;
    font-weight: 400;
    color: #000;
}

.contact-section .contact-box .contact-info ul li a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.contact-section .contact-box .contact-info h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}

/* -----------------
Footer Section
--------------------*/
footer {
    background: #05021c;
    padding: 90px 0 60px;
}

footer .widget h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
    margin-right: 15px;
    padding-bottom: 15px;
    position: relative;
}

footer .widget h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #ffffff40;
    width: 100%;
    height: 1px;
}

footer .widget h2::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #fa8714;
    width: 130px;
    height: 3px;
    z-index: 9;
}

footer .widget p {
    color: #fff;
    margin: 0;
}

footer .widget-about p {
    text-align: justify;
    font-weight: 400;
}

footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .nav-links ul li a {
    color: #fff;
    font-size: 16px;
    padding: 7px 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    border-bottom: 1px solid #ffffff17;
}

footer .widget-links .nav-links ul li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    padding-right: 10px;
    color: #fff;
    font-size: 13px;
}

footer .widget-links .nav-links ul li a:hover {
    color: #fa8714;
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li:first-child {
    align-items: flex-start;
}

footer .widget-contact .contact-info ul li {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding-bottom: 10px;
    padding-left: 55px;
}

footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    font-size: 16px;
    color: #05021c;
    margin-right: 20px;
    text-align: center;
    border-radius: 60px;
    line-height: 36px;
    background: #fa8714;
}

footer .widget-contact .contact-info ul li p {
    display: grid;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Ubuntu', sans-serif;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    background: #05021c;
    padding: 20px 0;
    border-top: 1px solid #ffffff2e;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 10px;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons li a {
    width: 30px;
    height: 30px;
    display: block;
    background-color: #f7b444;
    text-align: center;
    line-height: 35px;
}

.social-icons li a i {
    color: #0c487f;
    font-size: 18px;
}

/* ----------------------
Go To Top
------------------------*/
#go-to-top {
    display: inline-block;
    background-color: #fa8714;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 70px;
    right: 60px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 0 15px 2px #00000029;
}

#go-to-top::after {
    content: "\f106";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 47px;
    color: #fff;
}

#go-to-top:hover {
    cursor: pointer;
    background-color: #015cb5;
}

#go-to-top:active {
    background-color: #015cb5;
}

#go-to-top:hover::after,
#go-to-top:active::after {
    color: #fff;
}

#go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 0.5;
    color: #fff;
}

#whatsapp-chat {
    box-sizing: border-box !important;
    outline: none !important;
    position: fixed;
    width: 380px;
    border-radius: 10px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
    bottom: 140px;
    right: 130px;
    overflow: hidden;
    z-index: 99;
    animation-name: showchat;
    animation-duration: 1s;
    transform: scale(1);
}

a.blantershow-chat {
    background: #189d0e;
    color: #fff;
    position: fixed;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: space-between;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    bottom: 70px;
    right: 130px;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat.show {
    opacity: 1;
    visibility: visible;
}

.blantershow-chat i {
    font-size: 36px;
    line-height: 20px;
    padding-right: 10px;
}

a.blantershow-chat svg {
    transform: scale(1.2);
    margin: 0 10px 0 0;
}

.header-chat {
    /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
    background: #009688;
    background: #095e54;
    color: #fff;
    padding: 20px;
}

.header-chat h3 {
    margin: 0 0 10px;
}

.header-chat p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-left: 10px;
}

.header-chat .head-home {
    display: flex;
    align-items: center;
}

.info-avatar {
    position: relative;
}

.info-avatar img {
    border-radius: 100%;
    width: 50px;
    float: left;
    margin: 0 10px 0 0;
    background-color: #fff;
    padding: 5px;
}

a.informasi {
    padding: 20px;
    display: block;
    overflow: hidden;
    animation-name: showhide;
    animation-duration: 0.5s;
}

a.informasi:hover {
    background: #f1f1f1;
}

.info-chat span {
    display: block;
}

#get-label,
span.chat-label {
    font-size: 12px;
    color: #888;
}

#get-nama,
span.chat-nama {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

#get-label,
#get-nama {
    color: #fff;
}

span.my-number {
    display: none;
}

.blanter-msg {
    color: #444;
    padding: 20px;
    font-size: 14px;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd;
}

.blanter-msg a {
    background-color: #189d0e;
    color: #fff;
    width: 100%;
    padding: 10px 30px;
    border-radius: 60px;
    font-size: 15px;
}

.blanter-msg a i {
    font-size: 16px;
}

textarea#chat-input {
    border: none;
    font-family: "Arial", sans-serif;
    width: 100%;
    height: 20px;
    outline: none;
    resize: none;
    padding: 10px;
    font-size: 14px;
}

a#send-it {
    width: 30px;
    font-weight: 700;
    padding: 10px 10px 0;
    background: #eee;
    border-radius: 10px;
}

a#send-it svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
}

.first-msg {
    background: transparent;
    padding: 30px;
    text-align: center;
}

.first-msg span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
}

.start-chat .blanter-msg {
    display: flex;
    justify-content: center;
}

#get-number {
    display: none;
}

a.close-chat {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 30px;
}

@keyframes ZpjSY {
    0% {
        background-color: #b6b5ba;
    }

    15% {
        background-color: #111111;
    }

    25% {
        background-color: #b6b5ba;
    }
}

@keyframes hPhMsj {
    15% {
        background-color: #b6b5ba;
    }

    25% {
        background-color: #111111;
    }

    35% {
        background-color: #b6b5ba;
    }
}

@keyframes iUMejp {
    25% {
        background-color: #b6b5ba;
    }

    35% {
        background-color: #111111;
    }

    45% {
        background-color: #b6b5ba;
    }
}

@keyframes showhide {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes showchat {
    from {
        transform: scale(0);
        opacity: 0;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
}

.whatsapp-hide {
    display: none;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-show {
    display: block;
    animation-name: showhide;
    animation-duration: 0.5s;
    transform: scale(1);
    opacity: 1;
}

.whatsapp-message-container {
    display: flex;
    z-index: 1;
}

.whatsapp-message {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
    padding: 20px 20px 20px 10px;
    background-color: #e6ddd4;
    position: relative;
}

.whatsapp-chat-body::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("../images/whatsapp-pattern.png");
}

.dAbFpq {
    display: flex;
    z-index: 1;
}

.eJJEeC {
    background-color: white;
    width: 52.5px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: all 0.1s ease 0s;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
    position: relative;
    display: flex;
}

.ixsrax {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    background-color: #9e9da2;
    animation-name: ZpjSY;
}

.dRvxoz {
    height: 5px;
    width: 5px;
    margin: 0px 2px;
    background-color: #b6b5ba;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0px;
    animation-name: hPhMsj;
}

.kAZgZq {
    padding: 7px 14px 6px;
    background-color: white;
    border-radius: 0px 8px 8px;
    position: relative;
    transition: all 0.3s ease 0s;
    opacity: 0;
    transform-origin: center top 0px;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
    margin-top: 4px;
    margin-left: -54px;
    max-width: calc(100% - 66px);
}

.kAZgZq::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
}

.bMIBDo {
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.iSpIQi {
    font-size: 14px;
    line-height: 19px;
    margin-top: 4px;
    color: #111111;
}

.cqCDVm {
    text-align: right;
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(17, 17, 17, 0.5);
    margin-right: -8px;
    margin-bottom: -4px;
}

.captcha-img {
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 14px;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}