@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: "Harvey Script";
    src: url("../fonts/harveyscript.eot");
    src: url("../fonts/harveyscript.eot?#iefix") format("embedded-opentype"),
        url("../fonts/harveyscript.woff2") format("woff2"),
        url("../fonts/harveyscript.woff") format("woff"),
        url("../fonts/harveyscript.ttf") format("truetype"),
        url("../fonts/harveyscript.svg#Harvey Script") format("svg");
}



@font-face {
    font-family: "Stone Harbour";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("../fonts/STONE-HARBOUR-Regular.eot");
    src: url("../fonts/STONE-HARBOUR-Regular.eot#iefix") format("embedded-opentype"),
        url("../fonts/STONE-HARBOUR-Regular.woff2") format("woff2"),
        url("../fonts/STONE-HARBOUR-Regular.woff") format("woff"),
        url("../fonts/STONE-HARBOUR-Regular.ttf") format("truetype"),
        url("../fonts/STONE-HARBOUR-Regular.svg#StoneHarbour") format("svg")
}

:root {
    --primary-neon: #ff007f;
    /* Neon Pink */
    --secondary-neon: #00f2ea;
    /* Neon Teal */
    --dark-bg: #040316;
    /* Deep Cosmic Black */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8f9fa;
    --primary-gold: #c5a059;
    --bg-black: #080808;
}

body {
    background: #fff;
    color: #363636;
    font-family: 'Roboto', sans-serif;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    width: 100%;
    height: 100dvh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0c0c0c;
    margin: 0 0 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #0c0c0c;
}

p a {
    color: #363636;
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 23px;
    font-size: 14px;
    color: #363636;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    outline: none;
    display: block;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
    width: 100%;
}

blockquote {
    padding: 0;
    border: 0;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    text-transform: capitalize;
}

.btn {
    padding: 0 15px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 35px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    color: #fff;
}

.btn:hover {
    color: #fff;
}

.btn i {
    margin: 0 8px 0 0;
}

.header {
    float: left;
    width: 100%;
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 15px 0;
}

.header.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, .7);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    padding: 5px 0;
    backdrop-filter: blur(20px);
}

.logo {
    font-size: 28px;
}

.logo a {
    color: #ead187;
    font-family: "Harvey Script";
    background: linear-gradient(to bottom, #ddd6a2 5%, #d9c06e 30%, #cbac52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.header.stricky-fixed .logo {
    font-size: 22px;
}

.header.stricky-fixed .logo span {
    font-size: 26px;
}

.header.stricky-fixed .header_right {
    margin-top: 5px;
}

.navigation {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.navigation button.toggle_menu {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    display: none;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
}

/* .home .navigation button.toggle_menu {
    display: inline-block;
} */

.navigation button.toggle_menu {
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation button.toggle_menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation button.toggle_menu span:nth-child(1) {
    top: 8px;
}

.navigation button.toggle_menu span:nth-child(2),
.navigation button.toggle_menu span:nth-child(3) {
    top: 18px;
}

.navigation button.toggle_menu span:nth-child(4) {
    top: 28px;
}

.navigation button.toggle_menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation button.toggle_menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation button.toggle_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation button.toggle_menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block;
    display: block;
}

.home .navigation .menu {
    display: block;
    /* display: none; */
}

.home .header.stricky-fixed .navigation button.toggle_menu {
    display: none;
}

.home .header.stricky-fixed .navigation .cs_show {
    display: block !important;
    right: 0;
}

.navigation .menu ul {
    padding: 0;
    width: 100%;
    margin: 0;
    justify-content: end;
}

.navigation_bar.stricky-fixed .navigation .menu ul {
    float: left;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 8px 15px;
    display: block;
    color: #fff;
    text-transform: inherit;
    font-size: 18px;
    background: none;
    position: relative;
    transition: 0.5s;
    font-weight: 600;
}

.navigation .menu ul li:last-child a {
    border: none;
    /*padding-right:0px;*/
}

.navigation .menu ul li:hover a,
.navigation .menu ul li.active a {
    color: #ead187;
    background: none;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left;
}

.navigation .menu ul li ul.cs-dropdown.align-right {
    right: 0;
    left: auto;
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown.align-right {
    right: 100%;
    left: auto;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block;
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 250px;
    display: none;
    z-index: 99999;
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0;
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none;
}

/*.navigation .menu ul li ul.cs-dropdown li:hover a{color:#fff; background:#ead187;}*/
.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 16px;
    padding: 8px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
}

.navigation .menu ul li ul.cs-dropdown li a i {
    float: right;
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: #222;
    background: #ead187;
}

.navigation ul li.cs-submenu a button {
    /*display:none;*/
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 5px;
    color: #fff;
}

.navigation ul li.cs-submenu a button svg {
    width: 16px;
    height: 16px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: #ead187;
}

/* banner */
.home_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.home_slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}





.hiroSection {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 6;
    width: 100%;
    height: 100%;
    padding-top: 65px;
}

.hiroSection .image {
    max-width: 45%;
}

.hiroSection img {
    max-width: max-content;
    width: 100%;
}

.hiroText {
    position: relative;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

.hiroText .hiroTitle {
    color: #fff;
    font-family: "Stone Harbour";
    color: #ead187;
    font-size: 5.0520833333333vw;
    font-weight: 400 !important;
    letter-spacing: 2px;
    background: url(../images/underline1.png) no-repeat left bottom;
    padding-bottom: 30px;
    position: relative;
    background-size: 55%;
    text-align: left;
    margin: 0 0 20px;
}

.hiroText .tagLine {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-weight: 500;
    margin: 10px 0;
}

.hiroText .tagLine strong {
    color: #ead187;
}

.hiroText p {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.buttons a {
    padding: 12.5px 30px;
    background: #0e5846;
    transition: all .3s;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 14px 14px 0 rgba(22, 22, 22, .2);
    font-weight: 500;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.buttons a.btn1 {
    background: transparent;
    border: 1px solid #ffffff1a;
}

.buttons a.btn2 {
    background: #ffffff0d;
    border: 1px solid #ffffff1a;
    color: #e6c769;
}

.buttons a:after {
    content: "";
    height: 300px;
    width: 300px;
    background-color: #e6c769;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .4s;
    z-index: -1;
}

.buttons a:hover {
    color: #333;
}

.buttons a:hover:after {
    transform: translateY(-50%) translateX(-50%) scale(1);
}


.hiroText ul {
    float: left;
    width: 100%;
    margin: 10px 0 0;
    padding: 0;
}

.hiroText ul li {
    display: inline-block;
    list-style: none;
    line-height: normal;
    font-size: 18px;
}

.hiroText ul li:nth-child(2) {
    margin: 0 5px;
}

.hiroText ul li a {
    color: #ead187;
    padding: 10px 25px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid #ead187;
    font-size: 14px;
}

.hiroText ul li a:hover,
.hiroText ul li a:focus {
    background: #ead187;
    color: #222;
}

.social_media {
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 9;
    bottom: 15px;
    left: 115px;
    right: auto;
}

.social_media li {
    line-height: normal;
    list-style: none;
    display: inline-block;
}

.social_media li a {
    width: 25px;
    margin-right: 10px;
    line-height: 25px;
    color: #fff;
}

.social_media li a svg {
    width: 18px;
    height: 18px;
}

.flowing_logo {
    float: left;
    width: 100%;
    margin: 0;
    background: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.flowing_logo .brand_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

.flowing_logo .brand_box img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Hover garda original color aaune */
.flowing_logo .brand_box:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Smooth Linear Motion ko lagi CSS */
.flowing_logo .swiper-wrapper {
    transition-timing-function: linear !important;
}


.featuresTitle {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 45px;
    letter-spacing: 19px;
    color: #cdcdcd;
    width: 100%;
    text-align: center;
    padding: 10px 0;
}


.about_info {
    float: left;
    width: 100%;
    margin: 0;
    padding: 100px 0 0;
    position: relative;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 40px;
    color: #ead187;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    background: linear-gradient(90deg, #222, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: 500;
}


.aboutTitle {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    background: linear-gradient(to right, #222 0%, #edac15 50%, #222 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;

}

.about_info h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.about_info p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #444;
    margin-bottom: 20px;
}

.about_info ul {
    margin: 0 0 20px;
    padding: 0
}

.about_info ul li {
    font-size: 18px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    position: relative;
    color: #333
}

.about_info ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../images/check.svg) no-repeat;
    background-size: 100%
}




.vl-gallery-2 {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.vl-gallery-2::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(20, 33, 43, 0.2941176471);
    z-index: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.vl-gallery-2 .gallery-content {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-left: 20px;
    margin-right: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 50px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 11;
    overflow: hidden;
}

.vl-gallery-2 .gallery-title {
    color: #14212B;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding-bottom: 0;
    font-weight: 600;
}

.vl-gallery-2 .gallery-content p {
    color: #5A5A5F;
    font-size: 16px;
    line-height: 26px;
    opacity: 1;
    margin-top: 12px;
}


.vl-gallery-2:hover .gallery-content {
    height: 105px;
}

.vl-gallery-2 .gallery-content p {
    color: #5A5A5F;
    font-size: 14px;
    line-height: 22px;
    opacity: 1;
}


.punchline {
    color: #e6c769;
    font-size: 18px;
    font-weight: 00;
    font-style: italic;
    line-height: 1.5em;
    position: relative;
    /*text-shadow: 1px 1px 0 rgba(0,0,0,.75);*/
}

.punchline:before {
    content: '“';
    position: absolute;
    font-size: 48px;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    margin-left: -30px;

}

.image_mobile {
    display: none;
}

.read_more_btn {
    padding: 10px 40px;
    border-radius: 4px;
    background: #e6c769;
    display: inline-block;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.read_more_btn:hover,
.read_more_btn:focus {
    background: #222;
    color: #fff;
}



#awardsVideo {
    float: left;
    width: 100%;
}

/**/

.clientReview {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0px 0 40px;
    background: #fff;
    position: relative;
}

.clientReview .container {
    position: relative;
}

.clientReview .title_1 {
    font-size: 30px;
    color: #e6c769;
    margin-top: 45px;
    float: left;
    width: 100%;
    text-align: center;
}


.testimonial {
    border: 1px solid #E4EBF1;
    box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
}

.testimonial h3 {
    font-size: 18px;
    color: #e6c769;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.testimonial p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.testimonial .clientName {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial .clientDetails {
    display: flex;
    align-items: center;
}

.testimonial .clientDetails figure {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 100%;
    margin: 0;
    margin-right: 12px;
    background: #e6c769;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 600;
}

.testimonial .clientDetails p {
    font-size: 14px;
    line-height: normal
}

.testimonial .reviewedImage {
    text-align: right;
}

.testimonial .reviewedImage p {
    margin: 0;
    text-align: right;
    ;
}

.testimonial .reviewedImage img {
    max-width: 80px;
    float: right;
}

.testimonial .speech {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/**/
.companyMilestones {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 0px;
    background-image: url("../images/common-banner.jpg");
}

.companyMilestones .maxWidth p {
    color: #fff;
}

.companyImages {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative
}

.companyImages .image1 {
    height: auto;
    border-radius: .5rem;
    overflow: hidden;
    max-width: 420px
}

.companyImages .image1 img {
    width: 100%;
    height: auto
}

.companyImages .image2 {
    position: absolute;
    bottom: -75px;
    right: 0;
    max-width: 380px;
    height: auto;
    border-radius: .5rem;
    overflow: hidden;
    z-index: 9
}

.companyImages .image2 img {
    width: 100%
}

.companyImages .image2 .imgFront {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 128px;
    height: auto;
    z-index: 9
}

.companyMilestones ul {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    border-left: 1px solid #ccc
}

.companyMilestones ul li {
    display: flex;
    align-items: center;
    list-style: none;
    position: relative;
    margin-bottom: 25px;

}

.companyMilestones ul li:before {
    content: "\2022";
    font-size: 55px;
    position: absolute;
    top: -24px;
    left: -9px;
    margin: 0;
    padding: 0;
    color: #fff;
    z-index: 9;
}

.companyMilestones ul li span {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    font-size: 22px
}

.companyMilestones ul li p {
    border-radius: 2px;
    line-height: normal;
    margin: 0;
    padding: 8px 15px;
    font-size: 14px;
    background: #fff;
    font-weight: normal;
    display: block;
    width: 100%;

}

.companyMilestones ul li.active:before {
    color: #ead187
}

.companyMilestones ul li.active span {
    color: #ead187
}

.companyMilestones ul li.active p {
    background: #ead187;
}





/**/
.awardSection {
    width: 100%;
    height: auto;
    float: left;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.awardSection h2 {
    color: #ead187;
    font-family: poppins, Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
}

.maxWidth {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 20px
}

.maxWidth p {
    display: inline-block;
    max-width: 850px;
    width: 100%;
    margin: 0 auto 10px;
    font-size: 20px;
    line-height: 30px;
    text-align: center
}

.awardBox {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.awardBox h3 {
    background: #ead187;
    color: #111;
    padding: 10px 15px;
    margin: 0;
    text-align: center;
}




.videoSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.videoSectionTitle {
    color: #ead187;
    font-size: 42px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    margin-bottom: 20px;
}

.videoSection .maxWidth p {
    font-size: 18px;
    line-height: 30px;
}

#ourProducts {
    float: left;
    width: 100%;
}

#mediaHighlights {
    float: left;
    width: 100%;
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
    border: 1px solid #eee;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .txBx {
    text-align: center;
    margin-top: 10px;
    padding-inline: 25px;
    font-size: 20px;
    font-weight: 600;
    min-height: 50px;
}

.play-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    border: 0;
    outline: 0;
    margin: 3px 10px;
}

.play-toggle .icon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    background-color: #313c8c;
    color: white;
    padding: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-right: 8px;
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, .15);
    transition: transform 350ms ease;
}

.play-toggle:hover .icon {
    transform: scale(1.08);
}

.play-toggle .icon svg {
    width: 20px;
    height: 20px;
}

.play-toggle .tx {
    color: #333;
    text-align: left;
    line-height: 1.2;
    font-size: 13px;
    transition: transform 350ms ease;
    font-style: italic;
}

.play-toggle:hover .tx {
    transform: translateX(2px);
}

.play-toggle .tx strong {
    display: block;
    font-weight: 800;
    font-size: 18px;
    color: #101010;
    font-style: normal;
}


.videoSection ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.videoSection ul li {
    display: inline-block;
    border-right: 1px solid #ccc;
    width: 25%;
    margin-bottom: 30px;
}

.videoSection ul li:last-child {
    border-right: none;
}

.videoSection .single-item {
    width: 100%;
    display: block;
    padding: 0px 25px 0px;
    transition: all 500ms ease;
    position: relative;
}

.videoSection .single-item img {
    width: 100px;
    margin-bottom: 15px;
}

.videoSection .single-item span {
    color: #edac15;
    font-size: 36px;
    font-weight: 600;
    display: block;
}

.videoSection .single-item h3 {
    color: #333;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    text-transform: capitalize;
    margin: 11px 0 0;
}






/**/
.business-block-two {
    position: relative;
    margin-bottom: 30px;
}

.agency-section .blocks-column .business-block-two:nth-child(2n + 0) {
    transform: translateY(40px);
}

.business-block-two .inner-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 30px 30px;
    background-color: rgb(240, 232, 210);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.business-block-two .inner-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    background-color: #eee;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background-position: center center;
}

.business-block-two .inner-box:hover::before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.business-block-two .inner-box .vector-icon {
    position: absolute;
    right: 45px;
    top: 45px;
    width: 20px;
    height: 20px;
    opacity: 0.50;
    background-repeat: no-repeat;
}

.business-block-two .inner-box .content {
    position: relative;
}

.business-block-two .inner-box .icon-box {
    position: relative;
    display: inline-block;
    transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    margin-bottom: 10px;
}

.business-block-two .inner-box .icon-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: -20px;
    width: 67px;
    height: 53px;
    background: url(../img/vector-20.png) no-repeat;
}

.business-block-two .inner-box .icon-box .icon {
    position: relative;
    line-height: 1em;
    color: rgb(255 74 23);
    font-size: 56px;
    font-family: "Flaticon";
    transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.business-block-two .inner-box .icon-box img {
    width: 70px;
}

.business-block-two .inner-box h4 {
    font-weight: 600;
    text-transform: inherit;
    margin-top: 30px;
    font-size: 24px;
    position: relative;
    margin: 0px;
    background: none;
    color: rgb(18 29 44);
    text-transform: capitalize;
}


.business-block-two .inner-box .text {
    opacity: 0.90;
    max-width: 240px;
    font-size: 16px;
    margin-top: 10px;
    transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    position: relative;
    color: rgb(68 86 88);
    line-height: normal;
    margin-bottom: 0;
}



/**/

.highlights {
    background-color: #fff;
    border-radius: 6px;

    margin-bottom: 15px;
}

.highlights .highlightsLogo {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.highlightsLogo img {
    width: auto;
    margin: auto;
    max-width: 180px;
    max-height: 100%;
}

.highlightsMedia {
    overflow: hidden;
    aspect-ratio: 125/83;
}

.highlightsMedia img {
    width: 100%;
    aspect-ratio: 125/83;
    transition: .5s;
}

.highlightsMedia:hover img {
    transition: .5s;
    transform: scale(1.05);
}

.highlightsMediaInfo {
    padding: 15px 20px;
}

.highlightsMediaInfo p {
    color: #333;
    font-size: 16px;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 10px;
    font-weight: 600;
}

.highlights:hover .highlightsMediaInfo p {
    color: #e6c769;

}

.readMore {
    padding: 7px 30px;
    border-radius: 4px;
    background: #e6c769;
    display: inline-block;
    font-size: 14px;
    color: #333;
}



.empoweringSection {
    width: 100%;
    float: left;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.empoweringSectionTitle {
    color: #ead187;
    font-size: 42px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 10px;
}

.empoweringSection .maxWidth p {
    color: #333;
}

.empowering {
    width: 100%;
    display: block;
    height: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.empowering .image {

    overflow: hidden;
}

.empowering .image img {
    width: 100%;
}

.empowering .empoweringInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 6px 6px 0 0;
    display: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.empowering .empoweringInfo p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    text-align: left;
}

.empowering .empoweringInfo:after {
    content: '';
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
}


.empowering:hover .empoweringInfo {
    display: block;
}

.podcastSection {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #222;
    text-align: center;
}

.podcastSection img {
    margin-bottom: 50px;
    max-width: 600px;
}

.theRahulRanjan {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.image-text {
    font-size: 150px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 70px;
    line-height: normal;
    background-image: url(../images/background-06.webp);
    background-repeat: repeat-x;
    background-size: auto 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: scrollBackground 30s linear infinite;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);

}

@keyframes scrollBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -2000px 0;
    }
}

.youtube-frame {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    transition: 0.1s linear;
}

.youtube-frame iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
    width: 100%;
}



/**/
.podcastSection {
    float: left;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.bg-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
    animation: float 10s infinite linear;
}

.bg-icon svg {
    width: 60px;
    height: 60px;
}

@keyframes float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* --- Swiper 3D Carousel Customization --- */
.podcastSection .swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
    overflow: visible !important;
    /* Crucial for 3D overflow */
}

.podcastSection .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 480px;
    /* Base width for slides */
    height: auto;
}

/* --- Glassmorphism Video Card --- */
.podcast-card {
    background: #333;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Border Glow Effect */
.podcast-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    /* background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--primary-neon)); */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    filter: blur(5px);
}

/* Swiper Active Slide Enhancements */
.podcastSection .swiper-slide-active .podcast-card {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(234, 209, 135, 0.2);
    opacity: 1;
    background: #333;
}

.podcastSection .swiper-slide-active .podcast-card::after {
    opacity: 0.3;
}

/* Hover Effect on Active/Main Slide */
.podcastSection .swiper-slide-active .podcast-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(5deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(234, 209, 135, 0.4);
}

/* --- Iframe container --- */
.youtube-frame {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.youtube-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Card Footer Details --- */
.card-details {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.episode-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ead187;
    font-size: 16px;
    padding: 6px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.episode-badge svg {
    width: 16px;
    height: 16px;
    animation: pulseWave 1.5s infinite;
}

@keyframes pulseWave {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.play-icon-btn {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.podcast-card:hover .play-icon-btn,
.podcastSection .swiper-slide-active .play-icon-btn {
    color: #ead187;
    text-shadow: 0 0 10px #ead187;
}

.play-icon-btn svg {
    width: 30px;
    height: 30px;
}

/* --- Swiper Pagination/Nav Customization --- */
.podcastSection .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.2;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

.podcastSection .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ead187;
    box-shadow: 0 0 10px #ead187;
    width: 30px;
    border-radius: 6px;
}

.podcastSection .swiper-button-next,
.podcastSection .swiper-button-prev {
    color: #fff;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.podcastSection .swiper-button-next svg,
.podcastSection .swiper-button-prev svg {
    width: 20px;
    height: 20px;
}

.podcastSection .swiper-button-next:hover,
.podcastSection .swiper-button-prev:hover {
    border-color: #ead187;
    color: #ead187;
    box-shadow: 0 0 15px rgba(234, 209, 135, 0.3);
}

.podcastSection .swiper-button-next::after,
.podcastSection .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}



.youtube-frame {
    position: relative;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
}

/* Active slide ma overlay hataune */
.swiper-slide-active .video-overlay {
    display: none;
}


/**/



.tp-choose-slide-wrap-2 {
    float: left;
    position: relative;
    overflow: hidden;
    width: 100%;


}



.sticky-bg {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sticky-bg:before {
    content: "";
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sticky-bg .container {
    position: relative;
}

.sub-title {
    color: #d8b857;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
}

.main-title {
    color: #333;
    font-size: 52px;
    font-weight: 800;
}

.main-title span {
    color: #d8b857;
    display: block;
}

/* Floating Cards */
.tp-choose-content-area {
    position: relative;
    z-index: 2;
    margin-top: -30vh;
    /* Background mathi card lyauna */
}

.tpchoose {
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background: linear-gradient(239.18deg, rgba(255, 255, 255, 0.2) 17.93%, rgba(255, 255, 255, 0.05) 81.51%);
    background: #333;
    backdrop-filter: blur(20px);
    z-index: 2;
}

.tpchoose .tpchooseTitle {
    color: #ead187;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: normal;
}

.tpchoose p {
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 30px;
}

.pb-150 {
    padding-bottom: 150px;
}









/**/

.tp-portfolio-area {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
    padding: 120px 0 150px;
}

/* STICKY BACKGROUND TEXT - Landor Style */
.portfolio-text-wrapper {
    position: sticky;
    top: 54%;
    transform: translateY(-54%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
    pointer-events: none;
}

.portfolio-text {
    font-size: 8vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    /* text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

/* 4 COMPANY BOXES (CARDS) */
.tpportfolio {
    position: relative;
    z-index: 5;
    margin-bottom: 50px;
    background: #ffffff;
    box-shadow: 0px 0px 60px -10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 15px;
    max-width: 100%;
}

.grid_1:last-child .tpportfolio {
    margin: 0;
}

.tpportfolio__thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
}

.tpportfolio__thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.tpportfolio:hover .tpportfolio__thumb img {
    transform: scale(1.08);
}

.tpportfolio__content {
    padding-top: 25px;
}

.tpportfolio__title {
    font-size: 24px;
    font-weight: 700;
    color: #ead187;
    text-decoration: none;
    line-height: normal;
    margin-bottom: 15px;
}

.tpportfolio__title:hover {
    color: #333;
    text-decoration: underline;
}

.tpportfolio__year {
    color: var(--primary);
    font-weight: 700;
}

.tpportfolio__content p {
    font-size: 18px;
    line-height: 30px;
}


/**/
.vl-fact-area {
    float: left;
    width: 100%;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.mb-60 {
    margin-bottom: 60px;
}

.vl-subtitle-gbg-2 {
    background: linear-gradient(90deg, rgb(234, 209, 135) 0%, rgb(177, 150, 150) 100%);
    display: inline-block;
    padding: 1px;
    border-radius: 50px;
}

.vl-subtitle-gbg-2-white {
    background: #444;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
}

.vl-subtitle-gbg-2-white .subtitle {
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.vl-section-title .title {
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    margin-top: 18px;
}

.vl-featurebox-gflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vl-featurebox-gflex.vl-featurebox-gflex .vl-featurebox-iconbox {
    width: 420px;
    margin-bottom: 30px
}

.vl-featurebox-iconbox-icon span {
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s;
    background: #ead187;
    text-align: center;
}

.vl-featurebox-iconbox-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    margin-top: 20px;
}

.vl-featurebox-iconbox-desc {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
    padding-top: 20px;
}

.p-relative {
    position: relative;
}

.image-anime {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.reveal img {
    height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: left;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.aniamtion-key-4 {
    position: relative;
    animation-name: animation-4;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes animation-4 {
    0% {

        transform: translateY(0);
    }

    100% {

        transform: translateY(40px);
    }
}

.vl-factbox-shape-1 {
    position: absolute;
    top: 77px;
    left: -66px;
}

.br-20 {
    border-radius: 20px;
}

.vl-featurebox-iconbox:hover .vl-featurebox-iconbox-icon span {
    transform: rotate(45deg);
}

.vl-factbox-shape-2 {
    position: absolute;
    bottom: 0px;
    right: -66px;
}

.vl-factbox-shape-3 {
    position: absolute;
    top: -52px;
    right: -30px;
}

.vl-feature-reviewstext .para {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
}

.vl-primary-btn3 {
    background: #ead187;
    border-radius: 54px;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    padding: 10px 20px;
    transition: 0.3s;
    border-radius: 54px;
    display: inline-block;
    color: #333;
    position: relative;
    z-index: 1;
}

.vl-primary-btn3 span img {
    margin-top: -4px;
    transition: 0.3s;
}

.vl-primary-btn3::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 54px;
    left: 0;
    top: 0;
    z-index: -1;
    transform: scaleX(0);
    transition: 0.3s;
}

.vl-primary-btn3:hover::after {
    transform: scaleX(1);
    transition: 0.3s;
}

.vl-primary-btn-32 {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
}

.vl-videobtn-flex {
    margin-top: 32px;
}

.mr-14 {
    margin-right: 14px;
}

.vl-primary-btn-32:hover {
    color: #ead187;
    transition: 0.3s;
}

.vl-primary-btn3:hover span img {
    transform: rotateY(180deg);
    transition: 0.3s;
}



/**/

.adavantages-sec p {
    margin-bottom: 20px;
}

.card {
    margin-bottom: 1.5rem;
    background-color: #FFF;
    transition: all 0.5s ease-in-out;
    position: relative;
    border-radius: 10px;
    border: 1px solid #E4EBF1;
    box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
    color: #4e5561;
    border: 0;
}


.card .card-body {
    padding: 1.25rem;
}



.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.text-truncate.line-clamb-3 {
    -webkit-line-clamp: 3;
}

.section-right-img {
    padding-left: 50px;
    position: relative;
    text-align: right;
}

.section-right-img img {
    width: 100%;
}

.review-rate-top {
    margin-bottom: 1.5rem;
    background-color: #FFF;
    transition: all 0.5s ease-in-out;
    position: relative;
    border-radius: 10px;
    border: 1px solid #E4EBF1;
    box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
    color: #4e5561;
    border: 0;
    position: absolute;
    top: 30px;
    left: 0;
}

.avatar {
    position: relative;
    height: 56px;
    width: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #FFF;
    font-weight: 500;
    background-color: #ead187 !important;
    border: 1px solid #ead187 !important;
    color: #FFF;
    border-radius: 100%;
}

.avatar-list-stacked .avatar {
    margin-inline-end: -0.875rem !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
    transition: transform ease 200ms;
}

.avatar-list-stacked.avatar-group-md .avatar {
    width: 2.25rem;
    height: 2.25rem;
}

.avatar-list-stacked {
    padding: 0;
}

.avatar.avatar-rounded {
    border-radius: 50%;
    overflow: hidden;
}

.fs-12 {
    font-size: 12px;
}

.fs-12 svg {
    color: #FFCA18 !important;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.review-rate-top p {
    margin: 0;
}





.benefits {
    float: left;
    width: 100%;
    padding: 55px 0;
    background: #fff;
}

.benefits h3 {
    text-align: left;
    line-height: normal;
}

.benefits .title_1 {
    text-align: left;
    color: #ead187;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.benefits .cateImage {
    max-width: 460px;
    float: right;
    width: 100%;
    margin: 0 0 15px 15px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.commonEffect {
    position: relative;
}

.commonEffect:after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.commonEffect img {
    width: 100%;
    height: auto;
}

.commonEffect:hover:after {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.catImage2 {
    float: left;
    max-width: 500px;
    width: 100%;
    margin: 0 15px 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

.benefits p {
    margin-bottom: 20px;
}


/**/
.companyMilestones {
    float: left;
    width: 100%;
    padding: 50px 0 0;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.companyMilestones .maxWidth p {
    color: #fff;
}


.year-visual {
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.huge-year {
    font-size: 8vw;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    position: absolute;
    z-index: -1;
    font-weight: bold;
    margin: 0 0 20px;
}

.active-year {
    color: var(--primary-gold);
    -webkit-text-stroke: 0;
    transition: 0.5s ease;
}

/* Right Swiper Part */
.content-slider {
    height: 500px;
}

.journey-card {
    padding: 3rem 0;
    /* backdrop-filter: blur(10px); */
    transition: 0.4s;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .swiper-slide-active .journey-card {
    background: rgba(197, 160, 89, 0.1);
    transform: scale(1.05);
} */

.step-num {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contentTitle {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ead187;
}

.journey-card p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.timelineSwiperButtons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 20px;
}

.prev-btn,
.next-btn {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.timelineSwiperButtons .prev-btn:hover,
.timelineSwiperButtons .next-btn:hover,
.timelineSwiperButtons .prev-btn:focus,
.timelineSwiperButtons .next-btn:focus {
    color: #ead187;
}


/**/
.pressMedia {
    width: 100%;
    float: left;
    margin: 0;
    padding: 40px 0;
    background: #333;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.pressMediaTitle {
    color: #ead187;
    font-family: poppins, Sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    margin-bottom: 20px;

}

.item {
    overflow: hidden;
    margin-bottom: 25px;
    opacity: 1;
}

.item .image {
    transition: 0.8s ease;
}

.lightbox {
    overflow: hidden;
}

.item .info {
    position: relative;
    display: inline-block;
}

.item .description {
    display: grid;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    font-size: 17px;
    line-height: 18px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
    color: #fff;
    transition: 0.8s ease;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.39));
}

.zoom-on-hover:hover .image {
    transform: scale(1.3);
    opacity: 0.7;
}






.shane_tm_section {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}

.shane_tm_talk {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 220px 0 170px;
    position: relative;
    overflow: hidden;
}

video {
    min-width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.shane_tm_talk .shape {
    position: absolute;
    width: 101%;
    left: 0;
    top: -13px;
    z-index: 2;
    transform: rotate(180deg);
}

.shane_tm_talk .shape .svg {
    width: 100%;
    height: 100%;
}

.shane_tm_talk .background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.shane_tm_talk .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .7);
}

.shane_tm_talk .talk_inner {
    width: 100%;
    height: auto;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.shane_tm_talk .text {
    margin-bottom: 35px;
    text-align: center;
}

.shane_tm_talk .text h3 {
    color: #fff;
    font-weight: 600;
    font-size: 72px;
    font-family: "STONE HARBOUR";
    color: #ead187;
}

.shane_tm_talk .button a {
    text-decoration: none;
    color: #222;
    background-color: #ead187;
    display: inline-block;
    padding: 13px 48px;
    border: 2px solid #a08a4b;
    font-size: 18px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.mry-head-bg {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    height: 550px;
    width: 100%;
}

.mry-head-bg img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

.mry-head-bg .mry-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 555px;
    background-image: linear-gradient(0deg, #f7f8fa 1%, rgba(247, 248, 250, 0.94) 100%, rgba(247, 248, 250, 0.89) 100%);
}

/*blog section*/

.wrap-blog-post .blog_post_header {
    color: #fff;
    margin-bottom: 83px;
}

.wrap-blog-post .blog_post_header p {
    font-size: 20px;
    line-height: 30px;
}

.wrap-blog-post .blog_post_header h2 {
    margin-bottom: 15px;
    font-size: 36px;
    color: #e6c769;
}

.blog-section .media-heading>a {
    color: #313d4b;
}

.wrap-blog-post {
    background: #f7f8fa;
    position: relative;
    z-index: 110;
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 0;
}

.wrap-blog-post .l-down {
    top: -100px;
    position: absolute;
    left: 0;
    width: 100%;
}

.wrap-blog-post .blog-post {
    overflow: visible;
    padding: 30px 15px 30px;
    border-radius: 20px;
    box-shadow: 0 0 18px 6px rgba(0, 0, 0, .1);
    margin-bottom: 72px;
    background: #fff;
}

.blog-post .media-heading {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.blog-post .media-heading a {
    color: #e6c769;
}

.blog-post p {
    font-size: 18px;
}

.blog-post .img-blog {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
    margin-top: -54px;
    max-width: 260px;
    width: 100%;
    box-shadow: 0 0 18px 6px rgba(0, 0, 0, .1);
    text-align: center;
    margin-bottom: 20px;
    float: left;
}

.blog-post .img-blog span {
    position: absolute;
    left: 0;
    top: 38%;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.blog-post .img-blog {
    left: -30px;
    max-width: 300px;
    width: 100%;
}

.blog-post .img-blog img {
    display: block;
    width: 100%;
}

/*.blog-post .img-blog:hover img {
    opacity: 0.12;
}
.blog-post .img-blog:hover span {
    opacity: 1;
}*/
.wrap-blog-post .blog-post {
    padding-right: 15px;
    margin-left: 30px;
    padding-left: 0;
}

.media>.pull-left {
    margin-right: 10px;
}

.wrap-blog-post .blog-post .media-body {
    overflow: hidden;
}

.post-links {
    font-size: 14px;
    padding: 0;
}

.post-links a {
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px dashed #b9daee;
    display: inline-block;
    line-height: 1;
    color: #313d4b;
}

.post-links a:hover {
    text-decoration: underline;
}

.post-links a:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.post-links .fa {
    margin-right: 6px;
}

.blog-post .media-body {
    overflow: visible;
}

.article-count {
    display: block;
    font-size: 100px;
    font-weight: 200;
    margin: 0;
    padding: 0 15px;
    line-height: 1.6;
    text-align: right;
    float: none;
    position: relative;
}

.article-count:after {
    border-top: 1px dashed #e6c769;
    left: -24px;
    top: 55%;
    width: 48%;
    display: inline-block;
    content: "";
    position: absolute;
}

.article-count:before {
    border: 1px dashed #fff;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #fff;
    display: inline-block;
    content: "";
    position: absolute;
}

.article-count:before {
    border-color: #e6c769;
    left: 40%;
    top: 55%;
}

.service_offer {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0 50px;
    position: relative;
    background-image: linear-gradient(0deg, #f7f8fa 1%, rgba(247, 248, 250, 0.2) 100%, rgba(247, 248, 250, 0.89) 100%);
}

.service_offer .title_2 {
    color: #222;
    font-size: 26px;
}

.service_offer .col_padding {
    padding-left: 5px;
    padding-right: 5px;
}

.offer_box {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #425563;
    border: 1px solid #eee;
    border-top: 4px solid #E6C769;
    height: 450px;

}

.offer_box .offer_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
}

.offer_box:hover .offer_overlay {
    background: rgba(0, 0, 0, 0.8);
    transition: opacity 250ms;
}

.offer_box .offer_overlay .offer_header {
    padding: 40px 40px 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 250ms 750ms, visibility 0s 750ms;
    padding: 23px 30px 0;

}

.offer_box .offer_description {
    transition: transform 250ms ease-in-out, opacity 250ms 750ms, visibility 0s 750ms;
    transform: translateY(470px);
    color: #fff;
    transition: all 500ms ease;
    font-size: 18px;
    line-height: 1.22222222em;
    padding: 14px 30px 0;
    text-align: center;

}

.offer_box:hover .offer_description {
    transform: translateY(0);
}

.offer_box .offer_overlay .offer_header h2 {
    font-size: 25px;
    line-height: 1em;
    color: #fff;
    text-align: center;
}

.offer_box .offer_description svg {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
    color: #e6c769;
}

.offer_box .offer_description p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.read_more_btn2 {
    padding: 7px 15px;
    background: transparent;
    display: inline-block;
    border: 1px solid #e6c769;
    color: #e6c769;
    font-size: 20px;
    line-height: normal;
}

.offer_box .offer_description .read_more_btn2 svg {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    margin-left: 5px;
}

.read_more_btn2:hover,
.read_more_btn2:focus {
    background: #e6c769;
    color: #222;
}


/**/

.why-choose-section {
    /* Timile use gareko specific background */
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    float: left;
    width: 100%;
}

/* Left Side: Image with Floating Award */
.image-container {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.award-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 200px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b18e27, #ead187);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #000;
}

.award-icon svg {
    width: 40px;
    height: 40px;
}

.awardsTitle {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 134%;
    text-align: center;
}

/* Right Side: Content */


.main-title2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0px 0 25px;
    line-height: 1.2;
    color: #ffffff;
}

/* Tabs Styling */
.custom-tabs {
    background: #ffffff;
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 40px;
}

.nav-pills .nav-link {
    color: #333333;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 18px;
}

.nav-pills .nav-link.active {
    background: linear-gradient(90deg, #b18e27, #ead187);
    color: #000000;
}

.tabTitle {
    font-size: 26px;
    color: #ead187;
    font-weight: 600;
    margin-bottom: 10px;
}

.tab-content p {
    font-size: 22px;
    line-height: normal;
    margin-top: 10px;
    color: #fff;
}

/* List items */

.feature-list {
    margin: 20px 0 20px;
    padding: 0
}

.feature-list li {
    font-size: 22px;
    line-height: 30px;
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
    position: relative;
    color: #fff
}

.feature-list li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../images/check.svg) no-repeat;
    background-size: 100%
}



/* Progress Circles */
.circles-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.circle-item {
    text-align: center;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* Initial background color */
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.progress-circle::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    background: #111111;
    /* Match with section bg */
    border-radius: 50%;
}

.progress-value {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.circle-label {
    font-size: 16px;
    opacity: 0.8;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 991px) {
    .award-box {
        position: static;
        width: 100%;
        margin-top: 20px;
    }


}

/**/
.about-section {
    float: left;
    width: 100%;
    padding: 80px 0 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background: linear-gradient(135deg, #f7f7fb, #ececf4);
    overflow: hidden;
}

.about-section:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 196, 0, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}


/* Background Animated Text */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Cinzel', serif;
}

/* Image Container */
.image-box {
    position: relative;
    padding: 0px;
}

.image-box img {
    width: 85%;
    /* border-radius: 0 50px 0 50px;
    filter: grayscale(20%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
   
    border: 1px solid rgba(212, 175, 55, 0.3); */
    position: relative;
    z-index: 9;
     transition: 0.5s;
     margin-left: 15px;
}

/* .image-box:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
} */

.experience-badge {
position: absolute;
  top: 355px;
  right: -0px;
  background: #ead187;
  color: #000;
  padding: 20px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  z-index: 0;
}

/* Content Area */
.light_2 {
    color: #333;
    letter-spacing: 4px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.about_info_2 .hero-title2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ead187;
}

.about_info_2 .hero-title2 span {
    display: block;
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 2px;
}

.about_info_2 .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    border-left: 3px solid #ead187;
    padding-left: 20px;
    margin-bottom: 40px;
}

.about_info_2 h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
}

/* Achievements List */
.expertise-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.expertise-list li {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    font-size: 16px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.expertise-list li:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #ead187;
    transform: scale(1.03);
}

.expertise-list li svg {
    color: #ead187;
    margin-bottom: 15px;
    display: block;
    width: 35px;
    height: 35px;
}

@media (max-width: 991px) {
    .hero-title2 {
        font-size: 2.5rem;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 60px 0;
    }
}

/**/

.legacySection {
    float: left;
    width: 100%;
    background-color: #f9f9fb;
    padding: 60px 0;
}

.legacySectionTitle {
    font-size: 52px;
    background: linear-gradient(135deg, #b38b47 0%, #d4af37 50%, #8a6d3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.legacySection .sub-text {
    max-width: 800px;
    margin: 0 auto;
    color: #555555;
    font-size: 1.15rem;
    line-height: 1.8;
    padding-bottom: 40px;
    position: relative;
    text-align: center;
}

.legacySection .sub-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ead187;
}


.milestone-row {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    gap: 80px;
}

.milestone-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Video Frame Styling */
.milestone-visual {
    flex: 1.2;
    position: relative;
}

.media-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    border: 8px solid #eee;
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    aspect-ratio: 16 / 9;
}

.milestone-row:nth-child(even) .media-frame {
    transform: perspective(1000px) rotateY(5deg);
}

.media-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(151, 33, 95, 0.2);
}

.media-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(151, 33, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: 0.4s;
}

.media-frame:hover .play-overlay {
    opacity: 0;
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ead187;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.milestone-info {
    flex: 0.8;
}

.year-label {
    color: #ead187;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}

.milestone-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1a1a1a;
}

.milestone-info p {
    color: #555555;
    line-height: 1.8;
    font-size: 1.1rem;
}


/**/
.project-section-2 {
    float: left;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;

}

.section-title-2 {
    margin-bottom: 30px;
}

.section-title-2 .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title-2 .title {
    font-size: 54px;
    text-align: center;
    width: 100%;
    letter-spacing: -0.01em;
    line-height: 116%;
}

.theme-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ead187;
    border-radius: 70px;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    padding: 15px 70px 15px 40px;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 0;
}

.theme-btn .btn-arrow-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    color: #ead187;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 16px;
    height: 43px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    left: 7px;
    position: absolute;
    right: auto;
    scale: 0;
    width: 43px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.theme-btn .btn-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 70px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 10px;
    text-transform: capitalize;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    font-family: "Geist", sans-serif;
}

span {
    margin: 0px;
}

.theme-btn .btn-arrow-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: #ead187;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 43px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: auto;
    line-height: 1;
    position: absolute;
    right: 7px;
    width: 43px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 16px;
}

.theme-btn .btn-arrow-right svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.project-box-items-2 {
    max-width: 750px;
    margin-top: 40px;
    padding: 15px;
}

.project-box-items-2.style-auto {
    margin-left: auto;
}

.project-box-items-2 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.project-box-items-2 .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-box-items-2 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translate(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-2 .thumb .arrow-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #ead187;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all 0.4s ease-in-out;
}

.project-box-items-2 .thumb .arrow-icon svg {
    width: 30px;
    height: 30px;
}

.project-box-items-2:hover .thumb img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translate(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.project-box-items-2:hover .thumb img:nth-child(2) {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.project-box-items-2:hover .thumb .arrow-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.project-box-items-2 .content-items {
    z-index: 99;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.project-box-items-2 .content-items .content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.project-box-items-2 .content-items .content .title a:hover {
    color: #ead187;
}

.project-box-items-2 .content-items .content .tag-items {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.project-box-items-2 .content-items .content .tag-items a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #03070d;
    border: 1px solid rgba(3, 7, 13, 0.15);
    border-radius: 48px;
    padding: 3px 14px;
}

.project-box-items-2 .content-items .year-text {
    display: inline-block;
    line-height: 1;
    font-size: 20px;
    font-weight: 600;
    color: #03070d;
    min-width: 80px;
    text-align: center;
}

.project-section-2 .project-content-2 {
    max-width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    margin-top: 70px;
    text-align: center;
}

.project-section-2 .project-content-2 p {
    font-size: 22px;
    line-height: 155%;
    margin-bottom: 30px;
    transition: all 0.4s ease-in-out;
}



/* Footer General Styles */
.landor-footer {
    float: left;
    width: 100%;
    margin: 0;
    background-color: #020202;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.footer-cta-area {
    padding: 120px 0;
    background-image: linear-gradient(to bottom, rgba(12, 12, 12, 0.8), rgba(12, 12, 12, 1)), url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    position: relative;
    z-index: 1;
    border-radius: 20px 20px 0px 0px;
}

.footer-cta-area:before {
    position: absolute;
    content: "";
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 74%);
    border-radius: 20px 20px 0px 0px;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.footer-cta-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}

.footer-cta-content p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
}

.footerTitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px;
    color: #ead187;
}

.business_partners {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px 0 0;
    gap: 10px;
}

.partners {
    margin: 0;
    max-width: 100px;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Custom Button */
.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #ffffff;
    color: #000;
}

/* Footer Main Links */
.footer-main-area {
    padding: 80px 0 30px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li a {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-contact-info li a:hover,
.footer-contact-info li a:focus {
    color: #ead187;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
}

.footer-links li a:hover {
    color: #ead187;
}

/* Newsletter Form */
.newsletter-widget h3 {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: #fff;
    outline: none;
}

.footer-newsletter-form button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer Bottom (Big Logo) */
.footer-bottom {
    padding-bottom: 80px;
}

.footer-big-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .footer-cta-area {
        padding: 60px 0;
    }

    .footer-cta-title {
        margin-bottom: 30px;
    }
}


ul.bottom_menu {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

ul.bottom_menu li {
    display: inline-block;
    list-style: none;
    font-size: 18px;
    color: #fff;
    margin: 0 15px;
}

ul.bottom_menu li a {
    color: #fff;
    text-decoration: none;
}

ul.bottom_menu li a:hover,
ul.bottom_menu li a:focus {
    color: #ead187;
}


/**/

#scroll-up {
    position: fixed;
    z-index: 8030;
    bottom: 65px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #222;
    font-size: 24px;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: none;
    background: #ead187;
}

#scroll-up svg {
    width: 30px;
    height: 30px;
}

#scroll-up:hover {
    background: #333;
    color: #fff;
}


/* */
.innerBanner {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.innerOverlay {
    width: 100%;
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerOverlay .innerBannerTitle {
    color: #fff;
    font-family: "Stone Harbour";
    color: #ead187;
    font-size: 36px;
    font-weight: 400 !important;
    letter-spacing: 2px;
    background: url(../images/underline1.png) no-repeat center bottom;
    padding-bottom: 40px;
    position: relative;
    background-size: auto;
    text-align: left;
    margin: 0 0 10px;
    width: auto;
    display: inline-block;
    max-width: 850px;
    text-align: center;
}

.inner_caption h2 {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-weight: normal;
}

.inner_caption h2 strong {
    color: #ead187;
}

/**/
.innerBannerAbout {
    float: left;
    width: 100%;
    margin: 0;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, rgba(80, 80, 85, 0.8) 0%, transparent 50%), radial-gradient(circle at 50% 120%, #2c2c2e 0%, #111111 70%, #050505 100%);
}

.my-story {
    color: #ead187;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.innerBannerAboutTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.innerBannerAboutTitle span {
    color: #ead187;
    display: block;
    font-weight: 500;
}

.description {
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
}

.experience_badge_2 {
    position: absolute;
    bottom: 25px;
    right: 30px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #ead187;
    padding: 25px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    text-align: left;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.badge-icon {
    color: #ffff;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #ead187;
}

.badge-text {
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
}

.profile-img {
    width: 100%;
    max-width: 430px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/**/
.about_area {
    float: left;
    width: 100%;
    margin: 0;
    background: #fff;


    padding: 80px 0 20px;
}

/* Image Thumbnail Style */
.thumbnail-image-about-three {
    position: relative;
}

.thumbnail-image-about-three img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 157, 95, 0.2);
}

.thumbnail-image-about-three::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-top: 5px solid #c59d5f;
    border-left: 5px solid #c59d5f;
    border-radius: 20px 0 0 0;
    z-index: -1;
}

/* Section Title Styles */
.subtitle-bg {
    background: rgba(197, 157, 95, 0.1);
    color: #c59d5f;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
}

.sub-title {
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.aboutTitle_2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.aboutTitle_2 span {
    color: #c59d5f;
}

.desc {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Feature List */
.feature_2 {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #c59d5f;
    font-size: 17px;
}

.feature_2 strong {
    display: block;
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Growth Box (Right Side) */
.content-box2 {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(197, 157, 95, 1);
    padding: 40px;
    border-radius: 40px;
    transition: 0.4s;
    backdrop-filter: blur(20px);
}

.content-box2:hover {
    background: rgba(197, 157, 95, 0.05);
    border-color: #c59d5f;
    transform: translateY(-10px);
}

.content-box2 .icon svg path {
    fill: #c59d5f;
}

.content-box2:hover .icon svg path {
    fill: #c59d5f;
}

.content-box2 .title {
    font-size: 1.8rem;
    margin: 20px 0 10px;
    font-weight: 700;
}

.content-text {
    color: #333;
    font-size: 16px;
}

/* Button Style */
.tmp-btn {
    display: inline-flex;
    align-items: center;
    background: #c59d5f;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.tmp-btn:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(197, 157, 95, 0.3);
    color: #000;
}

/**/
.history_before {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.history_before h2 {
    font-size: 48px;
    text-transform: uppercase;
    margin-top: 50px;
}

.history_before h2 span {
    background: #ead187;
    color: #000;
    padding: 0 10px;
}

.history_before .image {
    text-align: center;
}

.history_before .image img {
    max-width: 350px;
}

.history_info {
    padding: 0;
}

.history_bg {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    position: relative;
    text-align: center;
    margin: 0 auto;
    z-index: 900;
    background: #2c2c2c;
}

.history_section .history_box {
    padding: 20px;
    text-align: center;
    margin: 0 auto;
}

.history_section .history_box {
    padding: 20px 20px;
    text-align: center;
    margin: 0 auto;
}

.history_section .history_box h2 {
    color: white !important;
    font-size: 36px;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    font-weight: 500;
}

.history_section .history_box h2 span {
    font-size: 36px;
    letter-spacing: 0.4em;
    color: #ead187;
}

.history_section .timeline-container-2 {
    margin-top: 200px;
}

.history_section .project-name {
    text-align: center;
    padding: 10px 0;
}

.history_section #timeline {
    width: 100%;
    margin: 30px auto;
    position: relative;
    padding: 0 10px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.history_section #timeline:before {
    content: '';
    width: 40px;
    background: #ead187;
    left: 47%;
    top: 0;
    position: absolute;
    height: 1000px;
    border: 1px solid transparent;
    border-top-left-radius: 130px 100px;
    border-top-right-radius: 130px 100px;
    border-bottom-left-radius: 130px 100px;
    border-bottom-right-radius: 130px 100px;
}

.history_section .timeline-container-2 #timeline:before {
    height: 1500px !important;
}

.history_section #timeline:after {
    content: '';
    clear: both;
    display: table;
    width: 100%;
}

.history_section #timeline .timeline-item {
    margin-bottom: 50px;
    position: relative;
    height: 200px;
}

.history_section .timeline-item-3 {
    height: 240px !important;
    margin-top: 40px;
}

.timeline-description h1 {
    color: white;
    font-size: 48px;
}

.timeline-summary h1 {
    font-weight: 500 !important;
}

.history_section #timeline .timeline-item .timeline_image {
    width: 50px;
    height: 50px;
    position: absolute;
    overflow: hidden;
    margin-left: -23px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.history_section .timeline_image_1 {
    left: 34%;
    top: 10%;
    width: 150px !important;
    height: 150px !important;
}

.milestone {
    position: absolute;
    left: 48%;
    top: 19%;
    width: 85px;
    border-bottom: 5px solid #ead187;
}

.milestone img {
    float: right;
    width: 50px;
    top: 5px;
    position: relative;
    left: 1px;
}

.milestone2 {
    left: 42%;
}

.milestone2 img {
    float: left;
    left: -7px;
}

.history_section .timeline_image_2 {
    left: 54%;
    top: 20%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_3 {
    left: 34%;
    top: 10%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_studios {
    left: 34%;
    top: 10%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_office {
    left: 54%;
    top: 10%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_4 {
    top: 15%;
    left: 34%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image-podcast {
    background-size: cover;
    top: 20%;
    left: 54%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_5 {
    top: 15%;
    left: 34%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_6 {
    left: 54%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline_image_7 {
    left: 42%;
    width: 150px !important;
    height: 150px !important;
}

.history_section .timeline-like-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 40px;
    z-index: 1000;
}

.history_section #timeline .timeline-item .timeline_contant {
    width: 42%;
    padding: 15px 45px 15px 15px;
    color: #c9c9c9;

    font-size: 16px;
    letter-spacing: 1.1px;
    line-height: 26px;
    text-align: left;
}

.history_section #timeline .timeline-item .timeline_contant {
    width: 44%;
}

.history_section #timeline .timeline-item .timeline_contant h2 {
    padding: 15px;
    color: #fbc91b;
    margin: 10px -20px 0 -20px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

.history_section #timeline .timeline-item .timeline_contant h3 {
    padding: 15px;
    color: #ead187 !important;
    margin: -20px -20px 0 -20px;
    font-weight: 600;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    font-size: 1.2em;
    text-transform: uppercase;
}

.history_section #timeline .timeline-item .timeline_contant p {
    margin: -20px -20px 0 -20px;
    padding: 15px;
    color: #c9c9c9;
    font-size: 16px;
    letter-spacing: 1.1px;
    line-height: 26px;
}

.history_section #timeline .timeline-item .timeline_contant.right {
    float: right;
}

.history_section #timeline .timeline-item .timeline_contant.right h2 {
    text-align: left;
}

.history_section #timeline .timeline-item .timeline_contant.right h3 {
    text-align: left;
}

.history_section #timeline .timeline-item .timeline_contant.right p {
    text-align: left;
}

.history_section #timeline .timeline-item .timeline_contant h2,
.history_section h3,
.history_section p {
    text-align: right;
    font-weight: 400;
}

.history_section #timeline .timeline-item .timeline_contant span {
    color: #ead187;
    font-size: 1.1em;
}

.history_section #timeline .timeline-item .timeline_contant a {
    text-decoration: underline;
    color: #c9c9c9;
}

.history_section .timeline-description {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.history_section .timeline-description .timeline-description-map {
    /* position: absolute; */
    opacity: 0.3;
    left: 5%;
    width: 90%;
}

.timeline-info-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.history_section .timeline h1 {
    color: white;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.history_section .timeline-description h1 span {
    color: #ead187;
}

.history_section .timeline-description h1 {
    color: white;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.history_section .timeline-description p {
    font-size: 32px;
    font-weight: bolder;
    color: white;
    text-align: center;
    margin-top: 40px;
    letter-spacing: 0.2em;
}

.history_section .timeline-description p span {
    color: #ead187;
}

.history_section .timeline-description .timeline-description-small {
    color: #c9c9c9;
    font-size: 1.3em;
}

.history_section .timeline-summary {
    margin: 0 auto;
    text-align: center;
}

.history_section .timeline-summary h1 {
    color: white;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.history_section .timeline-summary p {
    font-size: 1.5em;
    color: white;
    text-align: center;
    margin-top: 40px;
    line-height: 1.5;
}

.history_section .timeline-summary p span {
    color: #ead187;
}

.about_us {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.about_us .about_info h2 {
    font-size: 40px;
    margin: 0 0 10px;
}

.right_image {
    float: right;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 28px rgb(0 0 0 / 8%);
    padding: 16px;
    margin-top: 80px;
}

.about_bg {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    position: relative;
    text-align: center;
    margin: 0 auto;
    z-index: 900;
    background: #2c2c2c;
}

.about_heading h2 {
    color: white;
    font-size: 36px;
    letter-spacing: normal;
    line-height: 1.5em;
    font-weight: 500;
}

.about_heading h2 span {
    color: #ead187;
}

.team_member {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    height: 190px;
    background: #ead187;
    display: flex;
    padding: 30px 30px 0;
    margin-bottom: 20px;
}

.title_name {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    text-align: left;
}

.title_name h3 {
    font-size: 24px;
    color: #000;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 15px;
}

.title_name p {
    font-size: 16px;
}

.team_member img {
    float: right;
    position: relative;
    margin-top: -20px;
}

.team_member .team_caption {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 20px;
    place-items: center;
    background: rgba(0, 0, 0, 0.9);
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.team_member:hover .team_caption {
    display: block;
    display: grid;
}

.team_member .team_caption p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.overall {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.overall h3 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.overall svg {
    width: 50px;
    height: 50px;
    fill: #ead187;
}

.education_1 {
    float: left;
    width: 100%;
    margin: 30px 0 0;
    padding: 20px;
    text-align: center;
}

.education_1 h5 {
    background: linear-gradient(270deg, #ead187 2.08%, #ddbc5a 2.09%, #ac903b);
    -webkit-background-clip: text;
    background-clip: text;
    -o-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 4px;
    font-size: 60px;
    color: #000;
    font-weight: 700;
    line-height: 84px;
}

.education_1 p {
    margin: 0;
    font-size: 24px;
    color: #000;
    line-height: 33px;
}

.blog_banner {
    height: 75vh;
}

.blog_caption {
    width: 100%;
    height: 100%;
    left: 0;
    top: 18%;
}

.blog_newsletter {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog_newsletter h2 {
    margin-bottom: 47px;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%;
}

#blog_slider .owl-prev,
#blog_slider .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #333;
    border: 0;
    outline: 0;
    background: #fff;
    border-radius: 100%;
    z-index: 9;
}

#blog_slider .owl-nav .owl-prev {
    left: 10px;
    z-index: 50;
}

#blog_slider .owl-nav .owl-next {
    right: 10px;
}

#blog_slider .owl-prev:hover,
#blog_slider .owl-next:hover {
    background: #ead187;
    color: #fff;
}

.blog_detail {
    padding: 15px 24px 20px;
    background: #fff;
    border-top: 1px solid #ccc;
}

.blog-cat {
    font-size: 14px;
    font-weight: 500;
    color: #d7b552;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.blog_detail h3 {
    margin-bottom: 0;
    max-width: 500px;

}

.blog_detail h3 a {
    color: #333;
}

.blog_detail h3 a:hover {
    color: #d7b552;
}

.blog_detail p {
    margin-bottom: 0;
}

.blog_detail p small {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.blog_detail .d-flex {
    justify-content: space-between;
}

.read_article {
    padding: 12px 24px;
    line-height: 150%;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #d7b552;
    border-radius: 4px;
    ext-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid #d7b552;
}

.blog_menu {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.blog_menu.stricky {
    position: fixed;
    top: 48px;
    right: 0;
    z-index: 995;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.blog_category_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.blog_category_list li {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    color: #AAAAAA;
}

.blog_category_list li a {
    color: #666;
    transition: 0.5s ease all;
    padding: 15px 0;
}

.blog_category_list li a.active,
.blog_category_list li a:hover {
    color: #333;
}

.blog_category_list li+li {
    padding-left: 30px;
}

.blog_section {
    float: left;
    width: 100%;
    padding: 40px 0;
    margin: 0;
    background: #fff;
}

.blog_section h2.title_3 {
    float: left;
    width: 100%;
    color: #333;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
    margin-bottom: 35px;
    overflow: visible;
    position: relative;
    text-transform: capitalize;
}

.blog_section h2.title_3:before {
    content: '';
    position: absolute;
    background: #d7b552;
    width: 100px;
    height: 1px;
    left: 0;
    bottom: -2px;
}

.blog_listing {
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.blog_listing:last-child {
    border: 0;
}

.blog_listing .blog_thumb {
    float: left;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    max-width: 100%;
    height: 260px;
    border: 1px solid #eee;
    width: calc(100% - 65%);
}

.blog_listing .blog_thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
}

.blog_listing .blog_content {
    float: left;
    padding: 0;
    position: relative;
    width: calc(100% - 40%);
}

.blog_listing h2.title_small {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0;
    position: relative;
    height: 75px;
    float: left;
    width: 100%;
}

.blog_listing h2.title_small span {
    color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100%;
}

.blog_listing:hover h2.title_small span {
    color: #d7b552;
}

.blog_listing p {
    color: #333;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

.blog_listing .blog_meta {
    margin: 10px 0 5px;
}

.blog_meta span {
    font-size: 16px;
    color: #333;
    margin-right: 8px;
    padding-right: 10px;
    border-right: 1px solid #dedede;
    line-height: 16px;
    display: inline-block;
}

.blog_meta span svg {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 5px;
}

.blog_meta span.post_date {
    border-right: 1px solid #eee;
}

.blog_meta span.post_date:last-child {
    margin: 0;
    border: 0;
    padding-right: 0px;
}

.blog_read_more_btn {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    fill: #e6c769;
    color: #222;
    background-color: #fff;
    border: 2px solid #e6c769;
    display: inline-block;
    border-radius: 0px 0px 0px 0px;
    font-size: 15px;
    padding: 10px 20px;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.blog_read_more_btn:hover,
.blog_read_more_btn:focus {
    background: #e6c769;
}

.left_sidebar {
    float: left;
    width: 100%;
}

.right_news {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #eee;
    background: #fff;
    padding: 15px;
}

.blog_cat {
    float: left;
    width: 100%;
    font-size: 16px;
    color: #d7b552;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 0px;
    text-transform: uppercase;
}

.right_news .image {
    float: left;
    width: 100%;
    margin: 0 0 10px;
    position: relative;
    overflow: hidden;
    height: 186px;
}

.right_news .image img {
    position: absolute;
    max-width: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.right_news h5 {
    float: left;
    width: 100%;
    padding: 0;
    line-height: 30px;
    font-size: 24x;
    margin: 0 0 5px;
}

.right_news h5 a {
    color: #333;
}

.right_news:hover h5 a {
    color: #e6c769;
}

.Subscribe_box {
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.Subscribe_box h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.form-group {
    margin-bottom: 1rem;
}

.Subscribe_box .form-control {
    background: #F2F2F2;
    height: 45px;
    max-width: 361px;
    padding-left: 15px;
    font-size: 14px;
    color: #666;
    border-radius: 4px;
    border: none;
}

.Subscribe_box .subscribe_btn:hover,
.Subscribe_box .subscribe_btn:focus {
    background: #333;
    color: #fff;
    border-color: #333;
}

.tag_wrap {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

.tag_wrap a {
    display: inline-block;
    background: #F2F2F2;
    color: #333;
    border-radius: 50px;
    font-size: 18px;
    padding: 4px 15px;
    margin: 5px 5px 5px 0;
}

.tag_wrap a:hover {
    color: #f2f2f2;
    background: #2C2C2C;
}

/* Blog details*/
.blog_details_banner {
    height: 50vh;
}

.details_caption {
    top: 32%;
}

.title_details {
    color: #333;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

.blog_meta_info {
    float: left;
    width: 100%;
    line-height: 1.2;
}

.blog_meta_info ul {
    display: inline-block;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
    line-height: 1.2;
}

.blog_meta_info ul li a {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.blog_meta_info ul li {
    display: inline-block;
    color: rgba(10, 10, 10, 0.7);
    font-size: 16px;
    text-transform: capitalize;
}

.blog_meta_info ul li+li {
    margin-left: 5px;
}

.sharethis-inline-share-buttons {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}


.blog_details .news_details_image {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
    position: relative;
    text-align: center;
}

.blog_details .news_details_image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

.blog_details p {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    color: #333;
}

.blog_details blockquote {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    border: none;
    font-size: 22px;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 65px;
    color: #232323;
    font-weight: 600;
    line-height: 32px;
}

.blog_details blockquote cite {
    display: block;
    margin-top: 15px;
    color: #999999;
    font-weight: 500;
}

.blog_details blockquote:before {
    position: absolute;
    left: 0;
    top: 5%;
    content: "";
    height: 90%;
    width: 3px;
    background: #ead187;
}

.blog_details blockquote:after {
    position: absolute;
    left: 30px;
    content: '"';
    color: #ead187;
    font-size: 72px;
    top: 5px;
    font-weight: 600;
}

.blog_details blockquote p {
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 28px;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
}

.blog_details ul {
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.blog_details ul li {
    margin-bottom: 10px;
    color: #333;
    position: relative;
    z-index: 1;
    font-size: 15px;
    padding-left: 25px;
    display: block;
}



.blog_details ul li:after {
    position: absolute;
    left: 0;
    top: 0;
    content: "✓";
    height: 100%;
    width: 100%;
    color: #ead187;
    font-weight: 600;
    font-size: 15px;
}




.blog_details h2 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 500;
    color: #cb212a;
}

.blog_details h3 {
    float: left;
    width: 100%;
    font-size: 18px;
    margin: 10px 0 10px;
    font-weight: 600;
    color: #333;
    display: block;
}

.blog_details h4 {
    float: left;
    width: 100%;
    font-size: 18px;
    margin: 10px 0 10px;
    font-weight: 600;
    color: #333;
    display: block;
    padding: 0;
}

.blog_details h5 {
    float: left;
    width: 100%;
    font-size: 16px;
    margin: 10px 0 10px;
    font-weight: 600;
    color: #333;
    display: block;
    padding: 0;
}

.share_and_comments {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.article-_tags {
    float: left;
    width: 100%;
    display: flex;
    margin-top: 20px;
}

.article-_tags h4 {
    width: auto;
    margin-right: 15px;
}

.comments_area {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.comments_area .comments_title {
    margin-bottom: 30px;
    font-size: 24px;
}

.comments_area .comment_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comments_area .comment_body {
    border-bottom: 1px dashed #ccc;
    padding-left: 70px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.comments_area .comment_body .comment_meta {
    background: transparent;
}

.comments_area .comment_author {
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.comments_area .comment_author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px;
}

.comments_area .comment_author .fn {
    font-weight: 600;
}

.comments_area .comment_metadata {
    color: #6b6b84;
    margin-bottom: 10px;
    font-size: 14px;
}

.comments_area .comment_metadata a {
    display: inline-block;
    color: #6b6b84;
}

.comments_area .comment_body .reply {
    margin-top: 15px;
}

.comments_area .comment_body .reply a {
    background: #ead187;
    color: #222;
    display: inline-block;
    padding: 5px 30px;
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.comments_area .children {
    margin-left: 20px;
    list-style: none;
}

.comments_area .comment_respond {
    float: left;
    width: 100%;
    margin-top: 30px;
}

.comments_area .comment_respond .comment_reply_title {
    margin-bottom: 0;
    font-size: 24px;
}

.comments_area .comment_respond .comment_form {
    overflow: hidden;
}

.comments_area .comment_espond .comment_notes {
    margin-top: 10px;
    margin-bottom: 20px;
}

.comments_area .comment_respond .comment_notes .required {
    color: red;
}

.comments_area .comment_respond .comment_form_author {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 20px;
}

.comments_area .comment_respond .cookies {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
}

.form-group {
    position: relative;
    font-size: 15px;
    color: #666;
}

.form-group+.form-group {
    margin-top: 15px;
}

.form-group .form-label {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 10px;
    transition: .3s;
    background: #fff;
    padding: 0px;
    color: #777;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
}

.form-group.focused .form-label {
    font-size: 12px;
    top: -9px;
    left: 10px;
    z-index: 5;
    padding: 0 5px;
    background: #fff;
}

.form-group .form-control:focus+.form-label,
.form-group .form-input:disabled+.form-label {
    font-size: 12px;
    top: -9px;
    left: 10px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
}

.form-group .form-input:focus+.form-label,
.form-group .form-input:valid+.form-label {
    font-size: 12px;
    top: -9px;
    left: 10px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
}

.form-input {
    position: relative;
    padding: 12px 15px 5px 15px;
    width: 100%;
    outline: 0;
    border: 0;
    box-shadow: 0 1px 0 0 #e5e5e5;
    -webkit-transition: box-shadow 150ms ease-out;
    transition: box-shadow 150ms ease-out;
    font-size: 14px;
    font-weight: normal;
    background: transparent;
    z-index: 100;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    z-index: 2;
    color: #0e3553;

}

.form-input:focus {
    box-shadow: 0 1px 0 0 #0e3553;
}

.form-input.filled {
    box-shadow: 0 1px 0 0 #0e3553;
}

.form-inputinput:-webkit-autofill~label {
    top: -20px;
}

.contact_btn {
    padding: 12px 35px;
    background: #333;
    font-size: 16px;
    color: #fff;
    border: 0;
    border-radius: 3px;
    z-index: 1;
}

.contact_btn:hover,
.contact_btn:focus {
    color: #222;
    background: #ead187;
}

.course_wrap {
    margin-top: 22px;
}

.share-article h4,
.course_wrap h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.c-CreatorCard {
    position: relative;
    max-width: 416px;
    position: relative;
    height: 275px;
    margin: 12px 0;
    border-radius: 12px;
    transition: 50ms ease-in;
    background-size: cover;
    background: #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
}

.c-CreatorCard__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 12px 15px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);

}

.c-CreatorCard__top-row p {
    font-size: 22px;
    font-weight: 700;
    line-height: 136%;
    color: #fff;
}

.c-CreatorCard__bottom-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.c-CreatorCard__bottom-row p.c-Text {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    padding-right: 15px;
}

.c-CreatorCard__bottom-row p.c-Text .c-Text--newline {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.013rem;
    display: block;
}

.c-CreatorCard__bottom-row .btn-white-border {
    border: 1px solid #fff;
    color: #fff;
    min-width: 140px;
    padding: 12px 30px;
    line-height: normal;
}

/* Traning */
.training_banner {
    height: 80vh;
}

.breadcrumbs p {
    font-size: 16px;
    padding: 5px 0;
    word-spacing: 0;
    text-align: left;
    letter-spacing: 0;
    color: #fff;
}

.breadcrumbs p a {
    color: #fff;
}

.breadcrumbs svg {
    display: inline-block;
    padding: 0 2px;
    color: #fff;
}

.breadcrumbs .breadcrumb_last {
    color: #e6c769;
}

.banner_info h1 {
    color: #fff;
    font-size: 30px;
    line-height: 35px;
    padding: 10px 0;
    font-weight: 600;
    background: transparent;
    font-family: 'Roboto', sans-serif;
    letter-spacing: normal;
}

.banner_info .star_ratings {
    padding: 8px 10px;
    font-size: 14px;
    display: inline-block;
    background: rgba(255, 255, 255, .13);
    border-radius: 4px;
}

.banner_info .seller_badge {
    border-radius: 3px;
    font-size: 13px;
    padding: 2px 10px;
    background: #e6c769;
    border: none;
    color: #000;
    min-width: inherit;
    display: inline-block;
    font-weight: 700;
    line-height: 15px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    z-index: 0;
    vertical-align: baseline;
    margin-right: 20px;
}

.banner_info .seller_badge:after {
    background: inherit;
    content: '';
    height: 15px;
    position: absolute;
    top: 2px;
    transform: rotate(45deg);
    width: 15px;
    display: block;
    border-radius: 3px;
    right: -5px;
    z-index: -1;
}

.banner_info .star_ratings .filled {
    color: #ffb606;
}

.banner_info p {
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
    text-align: justify;
}

.banner_info .banner_content a {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    margin: 0;
    font-weight: 600;
    padding: 10px 25px;
    color: #e6c769;
    background: transparent;
    border: 2px solid #e6c769;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    -ms-box-shadow: 0 3px 10px -8px #000;
    -o-box-shadow: 0 3px 10px -8px #000;
    margin-right: 8px;
}

.banner_info .banner_content a svg {
    margin: 0px 5px 0px 0;
    width: 18px;
    height: 18px;
}

.banner_info .banner_content a:hover,
.banner_info .bannershow a:focus {
    color: #333;
    background: #e6c769;
}

.video_widget_1 {
    background: #fff;
    height: 100%;
    border-radius: 0;
    padding: 10px;
    -webkit-box-shadow: -2px 5px 10px -6px #000;
    -moz-box-shadow: -2px 5px 10px -6px #000;
    box-shadow: -2px 5px 10px -6px #000;
}

.video_popup {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.video_popup a {
    display: block;
    width: 100%;
    height: auto;
}

.video_popup img {
    width: 100%;
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
}

.video_widget_1:hover .video_popup img {
    transform: scale(1.1);
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out
}

.play_btn {
    z-index: 99;
    position: absolute;
    top: 35%;
    width: 100%;
    height: auto;
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
}

.play {
    background: red;
    border-radius: 50%/10%;
    color: #fff;
    opacity: .8;
    height: 3em;
    margin: 5px auto;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: .1em;
    transition: all 150ms ease-out;
    width: 4em
}

.play::before {
    background: inherit;
    border-radius: 5%/50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%
}

.play::after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, .75);
    content: ' ';
    font-size: .75em;
    height: 0;
    margin: -1em 0 0 -.75em;
    top: 50%;
    position: absolute;
    width: 0
}

.video_widget_1:hover .play {
    background: red;
    opacity: 1
}

.video_overlay {
    background: rgba(0, 0, 0, .3);
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.overallbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 0;
}

.enroll_btn {
    margin: 0 10px;
}

.enroll_btn p a {
    border: 1px solid #e6c769;
    background: #e6c769;
    display: inline-block;
    width: 100%;
    padding: 5px 25px;
    border-radius: 0;
    line-height: 25px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
}

.download_btn p a {
    border: 1px solid #e6c769;
    display: inline-block;
    width: 100%;
    padding: 5px 25px;
    border-radius: 0;
    font-weight: 600;
    line-height: 25px;
    color: #e6c769;
    font-size: 15px;
    text-align: center;
    transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .3s cubic-bezier(.905, .395, .12, .55);
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
}

.dividerline {
    position: relative;
    margin: 5px 0 10px;
}

.dividerline::before {
    content: "";
    background: #ccc;
    width: 250px;
    height: 1px;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: .4;
    bottom: 0;
}

.quotes {
    text-align: left;
    padding-left: 70px;
    padding-right: 70px;
    line-height: 15px;
    font-size: 12px;
    font-weight: 600;
}

.overallquotes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.quote_left {
    text-align: center;
    padding-right: 10px;
}

.quote_left svg {
    font-size: 36px;
    color: #e6c769;
    width: 30px;
    height: 30px;
}

.quote_right {
    text-align: left;
    padding-right: 5px;
}

.quote_right p {
    padding: 0;
    margin: 0;
}

.quote_right p a {
    font-size: 20px;
    display: block;
    color: #e6c769;
    font-weight: 600;
}

.quote_right span {
    font-size: 11px;
    display: block;
    color: #3b3b3b;
    font-weight: 600;
}

.feature_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.overallfeature {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee
}

.feature_assignment,
.feature_duration,
.feature_learners,
.feature_skill,
.feature_support,
.feature_widget_assignment,
.feature_widget_duration,
.feature_widget_learners,
.feature_widget_skill,
.hike_fiftypercent {
    background-image: url(../images/featureimages.png);
    background-repeat: no-repeat
}

.feature_skill {
    padding: 34px 50px 16px 30px;
    background-position: -77px -9px
}

.feature_duration {
    padding: 34px 50px 16px 30px;
    background-position: -231px -18px
}

.feature_learners {
    padding: 34px 50px 16px 30px;
    background-position: -11px -17px
}

.feature_assignment {
    padding: 34px 50px 16px 30px;
    background-position: -315px -19px
}

.feature_support {
    padding: 40px 50px 16px 30px;
    background-position: -160px -10px
}

.hike_fiftypercent {
    background-position: -77px 17px
}

.feature_widget_skill {
    background-position: -80px -2px
}

.feature_widget_duration {
    background-position: -234px -5px
}

.feature_widget_learners {
    background-position: -12px -10px
}

.feature_widget_assignment {
    background-position: -312px -6px
}

.feature_thumb {
    height: 100%;
    align-items: center;
    display: flex
}

.feature_content {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column
}

.feature_content h5 {
    color: #e6c769;
    font-size: 16px;
    padding: 5px 0;
    line-height: 20px;
    margin: 0;
}

.feature_content p {
    font-size: 13px;
    padding: 0;
    line-height: 20px;
    color: #333;
    font-weight: 600;
}

#features .owl-next,
#features .owl-prev {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    opacity: 1;
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    background: transparent;
}

.feature_slider:hover #features .owl-prev {
    opacity: 1;
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out
}

.feature_slider:hover #features .owl-next {
    opacity: 1;
    transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out
}

#features .owl-prev {
    left: 0
}

#features .owl-next {
    right: 0
}

#features .owl-next span,
#features .owl-prev span {
    font-size: 36px;
    color: #4a4747;
}

.training_section {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f9f9f9;
}

.batch_info h2 {
    margin: 0;
    padding: 10px 0;
    line-height: 30px;
    font-weight: 600;
    font-size: 22px;
    color: #565555;
}

.batch_info p {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #2e3d49;
    text-align: left;
    word-spacing: .5px;
}

.cus_btchschedule {
    margin: 10px 0;
    background: #fff;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
    border: 1px solid #eee;
}

.thiru_schedule {
    padding: 0;
    margin: 0;
}

.thiru_schedule li {
    /* margin: 8px 15px; */
    border-bottom: 1px solid #dee2e6;
    display: block;
    padding: 12px 0;
}

.scherow {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.batchdate {
    width: 15%;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0 10px;
}

.batchdate:after {
    content: "";
    border-right: 1px solid #d8c9c9;
    position: absolute;
    right: 10px;
    display: block;
    top: -10px;
    height: 30px;
}

.batchday {
    display: inline-block;
    width: 25%;
    font-size: 16px;
    line-height: 20px;
    color: #4c4747;
    margin: 0 10px;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
}

.batchday i {
    display: block;
    font-size: 13px;
    color: #b59b4e;
    font-weight: 700;
    font-style: normal;
}

.batchday:after {
    content: "";
    border-right: 1px solid #d8c9c9;
    position: absolute;
    right: 10px;
    display: block;
    top: 5px;
    height: 30px;
}

.batchtime {
    width: 30%;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: #4c4747;
    margin: 0 10px;
    font-weight: 600;
}

.batchtime i {
    display: block;
    font-size: 13px;
    color: #b59b4e;
    font-weight: 700;
    font-style: normal;
}

.batch_btn {
    background: 0 0;
    color: #333;
    padding: 8px 20px;
    font-size: 13px;
    line-height: 18px;
    border-radius: 0;
    box-shadow: 0 2px 2px 0 #ccc;
    border-color: #e6c769;
    font-weight: 600;
    margin: 0 10px;
    text-transform: uppercase;
}

.batch_btn:hover,
.batch_btn:focus {
    background: #333;
    border-color: #333;
    color: #fff;
}

.request_batch {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.req_left {
    text-align: center;
    padding: 0 15px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.req_left img {
    width: 50px;
}

.req_right {
    padding: 0 15px;
}

.req_right h4 {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #333;
    margin: 0;
}

.req_btn .btn.btn-primary {
    margin: 5px 0;
    display: table;
    font-size: 13px;
    text-transform: uppercase;
    line-height: normal;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #333;
    border-color: #333;
    color: #fff;
}

.master_offerwidgets {
    margin: 0px 0 15px 15px;
    background: #fff;
    border: 1px solid #f7f2f2;
    padding: 33px;
    box-shadow: 0 2px 8px 0 #0000001a;
    position: relative;
}

.master_ribon {
    position: absolute;
    left: -30px;
    top: -15px;
    width: 90px;
    z-index: 0;
    overflow: hidden;
}

.master_offerwidgets p {
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    font-weight: 600;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #333;
}

.master_offerwidgets p i {
    font-weight: 600;
    color: #bda250;
    font-size: 22px
}

.master_offerwidgets a {
    margin: 0 auto;
    display: table;
    border: 1px solid #e6c769;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    background: #e6c769;
    color: #333;
    text-transform: uppercase;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.master_offerwidgets a:hover {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    background: #333;
    border-color: #333;
    color: #fff;
}

.training_section .row {
    align-items: center;
}


.discdetailsdiv {
    background: #fcfdff;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #eee;
}

.discdetails {
    width: 75%;
    margin: 5px 0;
}

.discdetails_image {
    width: 25%;
    margin: 5px 0;
    text-align: center;
}

.discdetails h3 {
    padding-top: 0;
    text-align: center;
    font-size: 24px;
    color: #333;
    line-height: 20px;
    margin: 0 0 10px;
}

.discdetails p {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    padding: 5px 0;
    color: #756868;
    letter-spacing: 0;
    word-spacing: 0;
}

.discdetails img {
    width: 100%;
}

.discdetails .discbtn {
    margin: 0 auto;
    display: table;
    border: 1px solid #e6c769;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    background: #e6c769;
    color: #333;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: normal;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.boost_carrier {
    display: flex;
    width: 95%;
    padding: 13px;
    background: #fff;
    margin: 0px 0 15px 5%;
    ;
    -webkit-box-shadow: 0 2px 8px -5px #000;
    -moz-box-shadow: 0 2px 8px -5px #000;
    box-shadow: 0 2px 8px -5px #000;
}

.boost_carrier_left {
    width: 26%;
    text-align: center;
    padding: 0 10px;
    align-items: center;
    display: flex;
    justify-content: center;

}

.boost_carrier_right {
    width: 70%;
    padding: 0 10px;
}

.boost_carrier_right h4 {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    margin: 0;
}

.boost_carrier_right a.btn.btn-primary {
    margin: 5px 0;
    display: table;
    font-size: 13px;
    text-transform: uppercase;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    line-height: normal;
    background: #333;
    border-color: #333;
}

.rrs_redirdiv {
    margin-top: 20px;
    background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(81, 78, 70));
    background-size: cover, contain;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 #0000001a;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px 0 #0000001a;
    border: 1px solid #dde6ed;
    padding: 20px;
    text-align: center;
    position: relative
}

.discthumb {
    position: absolute;
    top: 0;
    right: 30px;
    opacity: .1;
    height: 100%;
    width: 20%
}

.rrs_redirdiv_middlecontnt h2 {
    color: #fff;
    margin: 0 0 0;
    font-size: 26px
}

.rrs_redirdiv_middlecontnt h2 span {
    display: block;
    font-size: 18px;
    padding: 5px 0;
    color: #e6c769
}

.rrs_redirdiv_middlecontnt p {
    text-align: center;
    margin: 0 auto;
    width: 80%;
    color: #fff;
    font-size: 16px;
    line-height: 28px
}

.rrs_redirdiv_rightbtn {
    position: relative
}

.rrs_redirdiv_rightbtn a {
    margin: 10px 0 10px;
    display: inline-block;
    color: #333;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    line-height: 23px;
    background: #e6c769;
    line-height: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.rrs_redirdiv_rightbtn a:hover {
    text-decoration: none;
    color: #e6c769;
    background: #fff
}

.course_offerwidgets {
    background: #56ccf2;
    background-image: linear-gradient(to right, rgb(181, 152, 64), rgb(230, 199, 105));
    overflow: hidden;
    box-shadow: 0 2px 8px 0 #0000001a;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 8px 0 #0000001a;
    border: 1px solid #dde6ed;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 25px;
}

.course_offerwidgets h4 {
    color: #fff;
    position: relative;
    width: 70%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 28px;
}

.course_offerwidgets h4 svg {
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.rrs_offericon {
    background-image: url(../images/discount.svg);
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    opacity: .1;
    background-attachment: scroll;
    position: absolute;
    right: 0
}


/* fixed*/
.fixed_tabs {
    float: left;
    width: 100%;
    padding: 0;
    height: 40px;
    line-height: 40px;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 0 10px -5px #000;
    box-shadow: 0 0 10px -5px #000;
    display: none;
}

.fixed_tabs.tab_stricky {
    position: fixed;
    display: block;
    top: 48px;
    right: 0;
    z-index: 995;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.fixed_box span {
    float: left;
    margin: 0 0px;
    font-size: 16px;
    padding: 0 20px;
    position: relative;
    width: 20%;
    text-align: center;

}

.fixed_box span:after {
    content: "";
    background: #ddd;
    width: 1px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: 0px
}

.fixed_box span:nth-child(1):after,
.fixed_box span:nth-child(5):after {
    display: none
}

.fixed_box {
    margin: 0 auto;
    display: block;
    text-align: left
}

.fixed_box span svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
}

.cb_box {
    background: #ff4141;
    width: 20%
}

.cb_box_inner svg {
    color: #fff;
    position: relative;
}

.cb_box_inner a {
    color: #fff !important;
    font-size: 15px !important
}

.fixed_box a {
    display: block;
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.cb_box_inner,
.ct_box_inner,
.dq_box_inner,
.en_box_inner,
.in_box_inner {
    display: table;
    width: 100%
}

.cb_box_inner svg {
    color: #fff;
}

.dq_box_inner svg {
    color: #d5b658;
}

.ct_box_inner svg {
    color: #d5b658;
}

.en_box_inner a {
    display: inline;
    padding: 7px 35px 7px 10px;
    border-radius: 0;
    background: #e6c769;
    color: #333;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    font-size: 15px
}

.tutorial_bread {
    background: #f0f0f0
}

.en_box_inner p {
    position: absolute;
    font-size: 12px;
    right: 0px;
    color: #fff;
    top: 10px;
    padding: 2px 5px;
    line-height: 18px;
    background: red;
    border-radius: 2px
}

.en_box_inner {
    position: relative
}

.in_box_inner svg {
    color: #ff585c !important
}

.in_box_inner a {
    color: #ff585c
}

.fixed_menu {
    float: left;
    margin: 0;
    background: #fff;
    width: 100%;
    padding: 40px 0;
}

.sticky {
    position: sticky;
    top: 12%;
    width: 100%;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    margin: 0 0
}

.secondary_menu ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0
}

.secondary_menu ul li {
    margin: 0;
    list-style: none;
    background: #ccae53;
    border-bottom: 1px solid #e1c570;
    padding: 0
}

.secondary_menu ul li a {
    color: #fff;
    font-size: 16px;
    padding: 13px 10px;
    display: block;
    line-height: 24px;
    position: relative;
    font-weight: 600;
    transition: .5s;
    -webkit-transition: .5s
}

.secondary_menu ul li a svg {
    width: 20px;
    height: 20px;
}

.secondary_menu ul li a:hover {
    background-image: linear-gradient(to right, rgb(181, 152, 64), rgb(230, 199, 105));
}

/*.secondary_menu ul li a:hover:after{content: "";
width: 0;
height: 0;
border-top: 25px solid transparent;
border-left: 25px solid #e6c769;
border-bottom: 25px solid transparent;
position: absolute;
right: -25px;
bottom: 0;}
*/
.secondary_menu li a.active {
    background-image: linear-gradient(to right, rgb(181, 152, 64), rgb(230, 199, 105));
}

.secondary_menu li a.active:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 25px solid #e6c769;
    border-bottom: 25px solid transparent;
    position: absolute;
    right: -25px;
    bottom: 0;
}

.fixedbtn {
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all 1s cubic-bezier(.905, .395, .12, .55);
    position: relative;
    margin: 25px 0
}

.secondary_menu li a i {
    display: inline-block;
    padding: 0 10px;
    min-width: 40px;
    text-align: center
}

.secondary_menu li a span {
    display: inline-block;
    padding: 0 2px
}

.course_contents {
    width: 100%;
    background: #fff;
    border-radius: 0;
    border: 1px solid #f7f2f2;
    padding: 20px;
    box-shadow: 0 2px 8px 0 #0000001a;
}

.main_sections section {
    padding: 0 0 25px 0;
}

.mb25 {
    margin-bottom: 25px;
}

.showmore_content {
    position: relative;
    overflow: hidden;
}

.d_syllabus {
    float: right;
    position: relative;
}

.d_syllabus a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    background: #ccae53;
    color: #fff;
    border-radius: 0;
    z-index: 1;
    position: relative;
    -moz-transition: all .5s ease;
    line-height: 22px;
    -o-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    font-weight: 600;
    text-transform: capitalize;
}

.d_syllabus a svg {
    padding-right: 5px;
    width: 24px;
    height: 24px;
}

.course_contents h2 {
    position: relative;

    margin-bottom: 20px
}

.course_contents p {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

.course_contents h4 {
    margin-bottom: 0;
}

.course_contents h3 {
    margin-bottom: 8px;
}

.course_contents ul {
    margin: 5px 0;
    padding-left: 0
}

.course_contents li {
    font-size: 16px;
    padding: 5px 0;
    line-height: 24px;
    margin-left: 0;
    display: block;
    color: #2e3d49;
    word-spacing: .5px;
    font-weight: 400;
}

.course_contents li::before {
    content: "❖";
    padding-right: 10px;
    font-size: 14px;
    color: #83878c;
}

.showmore_trigger {
    width: 100%;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
}

.common_sections {
    display: table;
    width: 100%;
    background: #fbf8f0;
    padding: 15px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    border-top: 5px solid #ccae53;
}

.common_div {
    width: 100%;
    clear: both
}

.common_div h4 {
    color: #1984cb;
    text-align: center;
    font-size: 24px;
    padding: 10px 0;
    text-align: center;
    line-height: 30px
}

.common_div p {
    font-size: 14px;
    text-align: center;
    line-height: 25px;
    color: #777
}

.common_div a {
    display: table;
    margin: 20px auto 0;
    font-size: 14px;
    background-image: linear-gradient(to left, #248de4, #0c5397);
    padding: 8px 30px;
    line-height: 23px;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    -webkit-box-shadow: 0 3px 4px -1px #a3a3a2;
    -moz-box-shadow: 0 3px 4px -1px #a3a3a2
}


.left_div {
    position: relative
}

.left_div:after {
    content: "";
    background: #ecdfb7;
    width: 1px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -20px
}

.left_div h4 {
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.left_div p {
    text-align: center;
    line-height: 25px;
    font-size: 16px;
}

.right_div h4 {
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    color: #000
}

.arrs_thumb {
    text-align: center
}

.expertsright a {
    font-size: 20px;
    padding: 5px 0;
    display: block;
    text-align: center;
    font-weight: 700;
    color: #ccae53;
}

.avail_btn {
    border-radius: 0;
    background: #333;
    color: #fff;
    padding: 10px 15px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    -moz-box-shadow: 0 3px 10px -8px #000;
    -ms-box-shadow: 0 3px 10px -8px #000;
    -o-box-shadow: 0 3px 10px -8px #000;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.avail_btn:hover {
    background: #ccae53;
    ;
    color: #fff
}

.avail_btn svg {
    float: left;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.vertical-align {
    align-items: center;
}

.course_offerwidgets a {
    margin: 10px 0 0px;
    display: inline-block;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    line-height: 23px;
    background: #333;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    line-height: normal;
}

.course_offerwidgets a:hover {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    /*background: #ccae53*/
}

.certificate_details {
    margin: 15px 0
}

.certifi_widget h5 {
    color: #333;
    text-align: center;
    padding: 10px 0 20px;
    font-size: 20px;
    line-height: 25px;
    position: relative;
    margin-bottom: 20px
}

.certifi_widget h5::after {
    content: "";
    background: #ccae53;
    width: 50px;
    display: block;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0
}

.certifi_widget p {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px
}

.cartificate_thumb {
    padding: 5px;
    background: #ccc;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px
}

.preview_certificate {
    cursor: pointer;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9;
    padding: 5px;
    border: 5px solid #b0b0b0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.cartificate_thumb img {
    transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.cartificate_thumb:hover img {
    transform: scale(1.1);
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.cartificate_thumb a {
    display: block
}

.preview_certificate p {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    opacity: .8;
    transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.preview_certificate:hover {
    transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all 10.8ss cubic-bezier(.905, .395, .12, .55);
    background: rgba(0, 0, 0, .7)
}

.preview_certificate:hover p {
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    opacity: 1
}

.preview_certificate p span {
    display: block;
    text-align: center;
    padding: 5px 0;
    font-size: 30px
}

.preview_certificate p span svg {
    width: 22px;
    height: 22px;
}

.get_certified a {
    color: #fff;
    border: 1px solid #ccae53;
    display: table;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 2px;
    min-width: 250px;
    text-align: center;
    margin: 15px auto 10px;
    background: #ccae53;
    -webkit-box-shadow: 0 3px 0 0 #333;
    -moz-box-shadow: 0 3px 0 0 #333;
    box-shadow: 0 3px 0 0 #333;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    font-weight: 600;
    line-height: normal;
}

.get_certified svg {
    margin-left: 10px;
    display: inline-block;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    width: 24px;
    height: 24px;
}

.get_certified a:hover {
    border: 1px solid #333;
    background: #333;
    -webkit-box-shadow: 0 3px 0 0 #333;
    -moz-box-shadow: 0 3px 0 0 #333;
    box-shadow: 0 3px 0 0 #333;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.get_certified a:hover i {
    padding-left: 13px;
    transition: all 1s cubic-bezier(.905, .395, .12, .55);
    -webkit-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -moz-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -ms-transition: all .8s cubic-bezier(.905, .395, .12, .55);
    -o-transition: all .8s cubic-bezier(.905, .395, .12, .55)
}

.rrs_commonenq {
    padding: 30px;
    background: #fff;
    width: 100%;
    clear: both;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0 #0000001a;
    border: 1px solid #f7f2f2;
}

.rrs_commonenqleft {
    width: 60%;
    float: left
}

.rrs_commonenqright {
    width: 40%;
    float: left
}

.rrs_commonenqleft h4 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    color: #1f1b28
}

.rrs_commonenqbtnone {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: inline-block;
    padding: 12px 18px;
    font-size: 13px;
    margin-right: 30px;
    margin-bottom: 10px;
    line-height: 1.1;
    border: 2px solid #ccae53;
    border-radius: 2px;
    color: #fff;
    background-color: #ccae53;
    text-decoration: none;
    font-weight: 600;
}

.rrs_commonenqbtnone:hover:not(:active) {
    color: #ccae53;
    background-color: transparent;
    text-decoration: none
}

.rrs_commonenqbtntwo {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #006edb;
    overflow: hidden
}

.rrs_commonenqbtntwo:hover {
    text-decoration: none
}

.rrs_commonenqbtntwo:before {
    z-index: 1;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.rrs_commonenqbtntwo:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.rrs_commonenqbtntwo:after {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.rrs_commonenqbtntwo:hover:after {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.rrs_commonenqbtntwo:after,
.rrs_commonenqbtntwo:before {
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor
}

.rrs_commonenqright img {
    margin: 10px auto;
    display: table
}

.featuredivone {
    width: 80%;
    position: relative;
    top: 0
}

.featuredivone::after {
    content: "";
    width: 100%;
    display: block;
    height: 2px;
    right: -80px;
    position: absolute;
    border-bottom: 2px solid #ccae53;
    bottom: 0
}

.featuredivoneall {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative
}

.featuredivoneright {
    padding: 10px;
    border: 3px solid #ccae53;
    border-radius: 50%;
    position: absolute;
    right: -45px;
    z-index: 0;
    height: 80px;
    width: 80px;
    background-color: #fff
}

.featuredivoneleft {
    border: 3px solid #ccae53;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 100%;
    overflow: hidden;
    padding: 5px 30px 5px 0;
    height: 80px;
    position: relative
}

.featuredivoneleft::after {
    content: "";
    width: 50px;
    display: block;
    height: 50px;
    background: #ccae53;
    position: absolute;
    right: 0;
    z-index: 0;
    top: -30px;
    float: left;
    overflow: hidden;
    transform: rotateZ(50deg);
    border-radius: 0
}

.featuredivoneright img {
    width: 50px
}

.featuredivoneleft h3 {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
    font-size: 18px;
    color: #3c3a3a;
    line-height: 20px;
    margin: 0;
}

.featuredivoneleft h6 {
    padding: 0;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #8e8c8c;
    margin: 0;
}

.featuredivtwo {
    width: 80%;
    position: relative;
    top: 80px
}

.featuredivtwo::after {
    content: "";
    width: 100%;
    display: block;
    height: 2px;
    right: -137px;
    position: absolute;
    border-bottom: 2px solid #ccae53;
    bottom: 0
}

.featuredivtwoall {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative
}

.featuredivtworight {
    padding: 10px;
    border: 3px solid #ccae53;
    border-radius: 50%;
    position: absolute;
    right: -45px;
    z-index: 0;
    height: 80px;
    width: 80px;
    background-color: #fff
}

.featuredivtwoleft {
    border: 3px solid #ccae53;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 100%;
    overflow: hidden;
    padding: 5px 30px 5px 0;
    height: 80px;
    position: relative
}

.featuredivtwoleft::after {
    content: "";
    width: 50px;
    display: block;
    height: 50px;
    background: #ccae53;
    position: absolute;
    right: 0;
    z-index: 0;
    bottom: -30px;
    float: left;
    overflow: hidden;
    transform: rotateZ(50deg);
    border-radius: 0
}

.featuredivtworight img {
    width: 50px
}

.featuredivtwoleft h3 {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
    font-size: 18px;
    color: #3c3a3a;
    line-height: 20px;
    margin: 0;
}

.featuredivtwoleft h6 {
    padding: 0;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #8e8c8c;
    margin: 0;
}

.featuredivthree {
    width: 80%;
    position: relative;
    top: 0
}

.featuredivthree:before {
    content: "";
    width: 100%;
    display: block;
    height: 2px;
    left: -20px;
    position: absolute;
    border-bottom: 2px solid #ccae53;
    bottom: 0
}

.featuredivthreeall {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative
}

.featuredivthreeright {
    padding: 10px;
    border: 3px solid #ccae53;
    border-radius: 50%;
    position: absolute;
    right: -45px;
    z-index: 0;
    height: 80px;
    width: 80px;
    background-color: #fff
}

.featuredivthreeleft {
    border: 3px solid #ccae53;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 100%;
    overflow: hidden;
    padding: 5px 30px 5px 0;
    height: 80px;
    position: relative
}

.featuredivthreeleft::after {
    content: "";
    width: 50px;
    display: block;
    height: 50px;
    background: #ccae53;
    position: absolute;
    right: 0;
    z-index: 0;
    top: -30px;
    float: left;
    overflow: hidden;
    transform: rotateZ(50deg);
    border-radius: 0
}

.featuredivthreeright img {
    width: 50px
}

.featuredivthreeleft h3 {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
    font-size: 18px;
    color: #3c3a3a;
    line-height: 20px;
    margin: 0;
}

.featuredivthreeleft h6 {
    padding: 0;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #8e8c8c;
    margin: 0;
}

.featuredivfour {
    width: 80%;
    position: relative;
    top: 80px
}

.featuredivfour::before {
    content: "";
    width: 100%;
    display: block;
    height: 2px;
    left: -83px;
    position: absolute;
    border-bottom: 2px solid #ccae53;
    bottom: 0
}

.featuredivfourall {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative
}

.featuredivfourright {
    padding: 10px;
    border: 3px solid #ccae53;
    border-radius: 50%;
    position: absolute;
    right: -45px;
    z-index: 0;
    height: 80px;
    width: 80px;
    background-color: #fff
}

.featuredivfourleft {
    border: 3px solid #ccae53;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 100%;
    overflow: hidden;
    padding: 5px 30px 5px 0;
    height: 80px;
    position: relative
}

.featuredivfourleft::after {
    content: "";
    width: 50px;
    display: block;
    height: 50px;
    background: #ccae53;
    position: absolute;
    right: 0;
    z-index: 0;
    bottom: -30px;
    float: left;
    overflow: hidden;
    transform: rotateZ(50deg);
    border-radius: 0
}

.featuredivfourright img {
    width: 50px
}

.featuredivfourleft h3 {
    padding-top: 10px;
    padding-bottom: 0;
    text-align: center;
    font-size: 18px;
    color: #3c3a3a;
    line-height: 20px;
    margin: 0;
}

.featuredivfourleft h6 {
    padding: 0;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #8e8c8c;
    margin: 0;
}

.featuredivcentercontetnt {
    display: table;
    padding: 25px;
    border: 2px dotted #ccae53;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto
}

.featuredivcenterdiv {
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-box-shadow: 11px 11px 39px -13px rgba(0, 0, 0, .75);
    -moz-box-shadow: 11px 11px 39px -13px rgba(0, 0, 0, .75);
    box-shadow: 11px 11px 39px -13px rgba(0, 0, 0, .75)
}

.featuredivleft {
    width: 33.333%;
    float: left;
    padding: 0 10px
}

.featuredivcenter {
    float: left;
    width: 33.33%;
    padding: 0 10px
}

.featuredivright {
    float: left;
    width: 33.33%;
    padding: 0 10px
}

.featurediv {
    clear: both;
    width: 100%;
    display: flex;
    margin: 30px 0
}

.featuredivcenterdiv h4 {
    font-size: 22px;
    color: #ccae53;
    margin: 0;
}

.featuredivcenterdiv h4 span {
    display: block
}


.checked {
    color: #ffb606 !important;
}

.testimoni_names {
    display: flex;
    align-items: center
}

.review_thumb p {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 70px;
    background: #ccae53;
}

.review_thumb {
    margin-right: 20px
}

.discount_box {
    background: #f4f4f4;
    margin: 10px 0 0
}

.discount_box p {
    background: #e3e3e3;
    padding: 10px;
    text-align: center;
    line-height: 18px
}

.discount_box h4 {
    padding: 10px;
    text-align: center
}

.discount_btn .btn.btn-primary {
    display: table;
    margin: 15px auto;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 10px 15px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    border-radius: 0;
    box-shadow: 0 3px 10px -8px #000;
    line-height: normal;
    background: #ccae53;
}

.discount_btn .btn.btn-primary:hover {
    background: #9b843d;
    color: #fff;
    border-color: #9b843d;
}

.sunscribediv {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
}

.rrs_googlereviewwidgets,
.rrs_reviewwidgets,
.rrs_studentreviewwidgets {
    background: #fff;
    padding: 15px;
    height: 100%;
    width: 100%;
    box-shadow: 0 2px 10px 2px #ccc;
    -webkit-box-shadow: 0 2px 10px 2px #ccc;
    margin: 0 0
}

.rrs_reviewicons {
    text-align: center;
    margin: 5px 0
}

.rrs_reviewtitle {
    margin: 5px 0
}

.rrs_reviewtitle h3 {
    text-align: center;
    text-transform: uppercase;
    color: #f44336;
    padding: 5px 0;
    margin: 0 0 5px;
}

.rrs_reviewtitle p {
    font-size: 16px;
    word-spacing: 0;
    text-align: center;
    line-height: 24px;
    color: #938f8f
}

.rrs_reviewsubscibe {
    display: flex;
    width: 100%;
    margin: 15px 0 10px
}

.rrs_reviewsubscibeleft {
    width: 50%;
    margin: 0 5px
}

.rrs_reviewsubsciberight {
    display: flex;
    width: 100%;
    justify-content: center
}

.rrs_reviewsubsciberight a {
    font-size: 16px;
    text-align: center;
    display: block;
    background: #e62117;
    padding: 10px 15px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    line-height: normal;
}

.rrs_googlereviewicons {
    text-align: center;
    margin: 5px 0
}

.rrs_googlereviewtitle h3 {
    text-align: center;
    text-transform: uppercase;
    color: #ccae53;
    padding: 5px 0;
    margin: 0 0 5px;
}

.rrs_googlereviewtitle p {
    font-size: 16px;
    word-spacing: 0;
    text-align: center;
    line-height: 24px;
    color: #938f8f
}

.rrs_googlereviewsubscibe {
    display: flex;
    width: 100%;
    margin: 15px 0 10px;
    justify-content: center
}

.rrs_googlereviewsubscibe a {
    font-size: 16px;
    text-align: center;
    display: block;
    background: #ccae53;
    padding: 10px 15px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    line-height: normal;
}

.rrs_studentreviewicons {
    text-align: center;
    margin: 5px 0
}

.rrs_studentreviewtitle h3 {
    text-align: center;
    text-transform: uppercase;
    color: #ccae53;
    padding: 5px 0;
    margin: 0 0 5px;
}

.rrs_studentreviewtitle p {
    font-size: 16px;
    word-spacing: 0;
    text-align: center;
    line-height: 24px;
    color: #938f8f
}

.rrs_studentreviewsubscibe {
    display: flex;
    width: 100%;
    margin: 15px 0 10px;
    justify-content: center
}

.rrs_studentreviewsubscibe a {
    font-size: 16px;
    text-align: center;
    display: block;
    background: #ccae53;
    padding: 10px 15px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 10px -8px #000;
    -webkit-box-shadow: 0 3px 10px -8px #000;
    line-height: normal;
}



/* */
.faqaccodian .card,
.faqaccodian .card:first-of-type,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) {
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 0px;
    font-size: 14px;
    color: #716b6b;
    text-decoration: none;
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid #eee;
}

.faqaccodian .card.active-acc .card-heading .card-link::before,
.faqaccodian .card:first-of-type.active-acc .card-heading .card-link::before,
.faqaccodian .card:not(:first-of-type):not(:last-of-type).active-acc .card-heading .card-link::before {
    color: #24aeb1;
}

.faqaccodian .card .card-heading,
.faqaccodian .card:first-of-type .card-heading,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-heading {
    padding: 10px 15px 10px 15px;
    background: #f2f2f2;
}

.faqaccodian .card .card-heading .card-link,
.faqaccodian .card:first-of-type .card-heading .card-link,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    display: block;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding-right: 30px;
}

.faqaccodian .card .card-heading .card-link:hover,
.faqaccodian .card:first-of-type .card-heading .card-link:hover,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link:hover {
    color: #ccae53;
}

.faqaccodian .card .card-heading .card-link:after,
.faqaccodian .card:first-of-type .card-heading .card-link:after,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link:after {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-weight: 700;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    font-size: 18px;
    color: #333;
    position: absolute;
    right: 0;
}

.faqaccodian .card .card-heading .card-link.collapsed:after,
.faqaccodian .card:first-of-type .card-heading .card-link.collapsed:after,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-heading .card-link.collapsed:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.faqaccodian .card .card-body,
.faqaccodian .card:first-of-type .card-body,
.faqaccodian .card:not(:first-of-type):not(:last-of-type) .card-body {
    color: #333;
    padding: 20px 20px 20px 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px
}

.faqaccodian .card:last-of-type {
    margin-bottom: 0
}

.office-tab {
    width: 100%;
}

.office-tab a {
    background: #e1e1e1 !important;
    border-radius: 0 !important;
    color: #333;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 3px
}

.office-tab a:hover,
.office-tab a.active {
    color: #fff !important;
    background-color: #ccae53 !important;
}

.office-tabcontent {
    padding: 20px;
    border-right: 1px solid #d1d1d1;
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
    border-left: 1px solid #d1d1d1;
    height: 100%
}

.tab_cntct p {
    padding: 0;
    font-weight: 600
}

.tab_cntct p i {
    font-size: 16px;
    color: #0775be;
    padding: 0 5px
}

.tab_cntct p a {
    color: #ccae53
}

.form-group {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;

}

.form_input {
    position: relative;
    padding: 12px 15px 5px 15px;
    padding: 25px 20px 8px;
    width: 100%;
    outline: 0;
    border: 0;
    box-shadow: 0 1px 0 0 #e5e5e5;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-size: 16px;
    font-weight: normal;
    background: transparent;
    z-index: 100;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 2;
    height: 60px;
}

.input_label {
    position: relative;
    display: block;
    width: 100%;
}

.input_label.active .placeholder {
    font-size: 14px;
    top: 7px;
    left: 18px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
    color: #ac903b;
}

.input_label.current .placeholder {
    font-size: 14px;
    top: 7px;
    left: 18px;
    z-index: 5;
    background: #fff;
    padding: 0 5px;
    color: #ac903b;
}


.input_label.active .form_input:not(:focus):not(:hover)~.placeholder {
    color: #ac903b;
}

.input_label .form_input:focus,
.input_label .form_input:hover {
    border-color: rgba(172, 144, 59, 0.5);
}

.form-group .placeholder {
    position: absolute;
    z-index: 1;
    left: 18px;
    top: 18px;
    transition: .3s;
    background: #fff;
    padding: 0px;
    color: #777;
    font-weight: normal;
    line-height: 20px;
    font-size: 16px;

}

.focus_input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/*
.focus_input:before {
    background: #0c71a2;
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input_label .form_input:focus + .placeholder + .focus_input:before {
    width: 100%
}*/



.apply_online_section {
    float: left;
    width: 100%;
    padding: 0;
    background: #fff;
    margin: 0;
}

.apply_online_section .cs_panel_left {
    background: url(../images/job-bg1.jpg) no-repeat center;
    background-size: cover;

    padding: 80px 50px;
}

.apply_online_section .cs_panel_left h2 {
    color: #fff;
}

.apply_online_section .cs_panel_left p {
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}

.apply_online_section .cs_panel_left ul {
    float: left;
    width: 100%;
    margin: 0 0 10px 15px;
    padding: 0;
}

.apply_online_section .cs_panel_left ul li {
    list-style: circle;
    margin: 3px 0;
    font-size: 16px;
    color: #fff;
}

.apply_online_section .cs_panel_right {
    padding: 80px 50px;
    background: #fff;
}

.form-steps {
    display: none
}

.form-steps.active {
    display: block
}

.form-steps.active h3 {
    font-size: 22px;
}

.online_form {
    max-width: 100%
}

.online_form .progress {
    background: #eff1f3;
    height: 8px;
    overflow: visible;
    border-radius: 4px;
    margin-bottom: 20px
}

.online_form .progress .progress-bar {
    position: relative;
    overflow: visible;
    line-height: 1.7;
    border-radius: 4px;
    background: #ac903b
}

.online_form .progress .progress-bar .step-text {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 14px;
    font-weight: 400;
    color: #546274;
    text-transform: uppercase
}

.online_form .prev {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #97a2ae;
    margin-bottom: 20px
}

.online_form .prev i {
    margin-right: 8px
}

.form-group.check-gender {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-top: 25px
}

.form-group.check-gender .lebel-text {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1c2437;
}

.form-group.check-gender .custom-radio {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 135px;
    flex: 0 0 135px;
    height: 60px;
    margin-right: 20px
}

.form-group.check-gender .custom-radio .custom-control-input {
    display: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none
}

.form-group.check-gender .custom-radio .custom-control-label {
    cursor: pointer;
    background: #fff;
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #b2becc;
    padding-left: 58px;
    text-transform: capitalize;
    position: relative;
    top: 0;
    left: 0
}

.form-group.check-gender .custom-radio .custom-control-label:before {
    height: 18px;
    width: 18px;
    border-radius: 5px;
    content: '';
    background: #e1e7ee;
    border: 0;
    top: 19px;
    left: 20px;
    position: absolute;
}

.form-group.check-gender .custom-radio .custom-control-label:after {
    height: 18px;
    width: 18px;
    top: 20px;
    left: 20px
}

.form-group.check-gender .custom-radio .custom-control-input:checked~.custom-control-label {
    border-color: #ac903b;
    color: #ac903b
}

.form-group.check-gender .custom-radio .custom-control-input:checked~.custom-control-label:before {
    background: #ac903b;
    content: '✓';
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.step_btn {
    height: 60px;
    /*width: 200px;*/
    display: block;
    background: #ac903b;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.step_btn_submit {
    height: 60px;
    width: 320px;
    display: block;
    background: #ac903b;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.datepicker {
    border-radius: 0 !important;
    padding-top: 0 !important;
    border-color: #ac903b !important;
    box-shadow: none;
    color: #333
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    border-top-color: #ac903b !important
}

.datepicker-days {
    border-radius: 0 !important;
    box-shadow: none !important
}

.datepicker table tr td,
.datepicker table tr th {
    border-radius: 0;
    padding: 3px 9px
}

.datepicker table tr th.dow {
    background: #ac903b;
    color: #fff
}

.datepicker table tr td:hover {
    background: #ac903b
}

.datepicker table tr td.active.active {
    background: #ac903b;
    border: 1px solid #ac903b
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #ac903b;
    cursor: pointer;
    color: #fff
}

.form-group.check-group {
    margin-bottom: 15px
}

.form-group.check-group:nth-last-child(2) {
    margin-bottom: 25px
}

.form-group.check-group .custom-checkbox .custom-control-input {
    height: 18px;
    width: 18px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0;
    display: none;
}

.form-group.check-group .custom-checkbox .custom-control-input:checked~.custom-control-label:before {
    background: #ac903b;
    background: #ac903b;
    content: '✓';
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.form-group.check-group .custom-checkbox .custom-control-label {
    width: 100%;
    text-align: left;
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding-left: 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    color: #546274;
    z-index: 2;
    margin-bottom: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.form-group.check-group .custom-checkbox .custom-control-label:before {
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    content: "";
    position: absolute;
    display: block;
}

.form-group.check-group .custom-checkbox .custom-control-label:after {
    top: 4px;
    left: 0;
    height: 18px;
    width: 18px
}

.form-group.check-group .custom-checkbox .custom-control-label a {
    color: #ac903b;
    display: inline-block;
}

.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.submit_button {
    height: 60px;
    /*width: 200px;*/
    padding: 0 50px;
    display: block;
    background: #ac903b;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea.form_input {
    height: 120px;
}

.contact_info p {
    font-size: 16px;
}

.contact_info ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact_info ul li {
    line-height: 28px;
    display: flex;
    list-style: none;
    font-size: 16px;
    color: #363636;
    margin-bottom: 5px;
}

.contact_info ul li svg {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    color: #363636;
}

.contact_info ul li:first-child svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contact_info ul li a {
    text-decoration: none;
    color: #ac903b;
}

.contact_info ul.social {
    float: left;
    margin: 15px 0 0px;
    list-style: none;
    padding: 0px;
}

.contact_info ul.social li {
    margin: 0px 0px 0px 0px;
    display: inline-block;
}

.contact_info ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    padding: 5px;
}

.contact_info ul.social li a svg {
    color: #fff;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
}

.contact_info ul.social li.facebook a {
    background: #3C5B9B;
}

.contact_info ul.social li.twitter a {
    background: #359BED;
}

.contact_info ul.social li.linkedin a {
    background: #027ba5;
}

.contact_info ul.social li.youtube a {
    background: #f70000;
}

.contact_info ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 25px;
    background: #fff;
}

.gallery_item {
    float: left;
    width: 100%;
    -webkit-box-shadow: 0px 4px 10px 0px rgb(191 186 186 / 53%);
    box-shadow: 0px 4px 10px 0px rgb(191 186 186 / 53%);
    margin-bottom: 30px;
    text-align: center;
}

.galley_thumb {
    position: relative;
    width: 100%;
    height: 238px;
}

.galley_thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
}

.galley_thumb:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(172, 144, 59, 0.8);
    z-index: 100;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.galley_thumb svg {
    position: absolute;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 200;
    font-size: 30px;
    color: #fff;
    width: 100px;
    height: 100px;
    padding: 30px;
    border: 1px dashed #fff;
    text-align: center;
    line-height: 100px;
    border-radius: 100%;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.gallery_item:hover .galley_thumb svg {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    top: 50%;
}

.gallery_item:hover .galley_thumb:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.galley_info h4 {
    font-size: 20px;
    line-height: 30px;
    margin: 0px;
    padding: 15px 0;
    color: #ac903b;
}

.galley_info p {
    font-size: 14px;
    line-height: 24px;
    padding: 0px 20px;
    color: #7a8a9e;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.video_gallery {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    transition: all .3s ease-in-out
}

.video_gallery:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .5);
    padding-top: -2px;
}

.video_gallery svg {
    line-height: inherit;
    color: #ff9900;
    font-size: 20px;
}

.video_gallery iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 5px;
}

.video_gallery h3 {
    font-size: 16px;
    color: #333;
    padding: 0;
    line-height: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    display: flex;
}

.video_gallery h3 svg {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: #e02f2f;
    border: 1px solid #ce2626;
    text-align: center;
    line-height: 45px;
    float: left;
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    padding: 10px;
}

.terms_Conditions {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.terms_Conditions h2 {
    font-size: 22px;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.terms_Conditions h3 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 600;
    color: #ac903b;
}

.terms_Conditions p {
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}

.terms_Conditions ul {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 15px;
    color: #363636;
}

.terms_Conditions ul li {
    width: auto;
    height: auto;
    padding: 0 0 0 25px;
    line-height: 25px;
    list-style: none;
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400
}

.terms_Conditions ul li:before {
    position: absolute;
    top: 3px;
    left: 0;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'><path d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/></svg>");
    font-size: 16px;
    display: inline-block;
    color: #ac903b
}

.terms_Conditions ul li a {
    color: #ac903b;
    display: inline-block;
}

.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.sitemap {
    border-left: 1px solid #666;
    padding: 0;
    margin: 0;
}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_line.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 5px;
}

.sitemap li:before {
    content: "" !important;
    margin-right: 0px !important;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li a {
    color: #363636;
    font-size: 16px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li ul {
    margin-bottom: 20px;
}

.sitemap li ul li a {
    font-size: 14px;
}

.sitemap li a:hover {
    color: #ac903b;
}

.job_listing_section {
    float: left;
    width: 100%;
    padding: 40px 0;
    margin: 0;
    background: #fff;
}

.job_list {
    border: 1px solid #ebf0f6;
    padding: 24px 24px 16px;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0 1px 2px 0 rgb(234 209 135 / 20%);
    box-shadow: 0 1px 2px 0 rgb(234 209 135 / 20%);
    -webkit-transition: -webkit-box-shadow .2s linear;
    transition: -webkit-box-shadow .2s linear;
    -o-transition: box-shadow .2s linear;
    transition: box-shadow .2s linear;
    transition: box-shadow .2s linear, -webkit-box-shadow .2s linear;
    margin-bottom: 15px;
}

.job_list h2 {
    display: block;
    line-height: normal;
    margin: 0 0 10px;
    padding: 0;
    font-size: 18px;
}

.job_list h2 a {
    color: #565555;
}

.job_list:hover h2 a {
    color: #ac903b;
}

.job_list .meta {
    float: left;
    width: 100%;
    margin-bottom: 5px;
    padding-left: 0;
    list-style: none;
    color: #6b6b6b;
}

.job_list .meta li {
    margin-top: 0;
    margin-right: 20px;
    line-height: 24px;
    font-size: 14px;
    color: #333;
    display: inline-block;
}

.job_list .meta li:last-child {
    margin-right: 0;
}

.job_list .meta li svg {
    font-size: 16px;
    margin-right: 3px;
}

.job_list .meta li .starRating {
    color: #333;
    font-weight: 600;
}

.job_list .meta li .starRating svg {
    color: #ffab00;
}

.job_list .meta li.time {
    float: right;
}

.job_list .meta li.time span {
    font-size: 12px;
    padding: 5px 10px;
    background: #28a745;
    color: #fff;
    border-radius: 4px;
}

.job_description {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin: 0 0 10px;
    padding: 0;
}

.tags_1 {
    max-height: 20px;
    overflow: hidden;
    margin: 0 0 10px;
    padding: 0;
}

.tags_1 li {
    padding-right: 15px;
    padding-left: 0;
    font-size: 13px;
    line-height: 16px;
    display: inline-block;
}

.apply_now_btn,
.view_details_btn {
    padding: 10px 20px;
    font-size: 15px;
    line-height: normal;
    color: #fff;
    background: #333;
    border-radius: 4px;
    display: inline-block;
}

.apply_now_btn {
    background: #ffab00;
    color: #333;
}

.view_details_btn:hover {
    background: #ac903b;
    color: #fff;
}

.apply_now_btn:hover {
    background: #ac903b;
    color: #fff;
}

.job_details_section {
    float: left;
    width: 100%;
    padding: 40px 0;
    margin: 0;
    background: #fff;
}

.job_details_section .meta {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 0;
    list-style: none;
    color: #6b6b6b;
}

.job_details_section .meta li {
    margin-top: 0;
    margin-right: 20px;
    line-height: 24px;
    font-size: 16px;
    color: #333;
    display: inline-block;
}

.job_details_section .meta li:last-child {
    margin-right: 0;
}

.job_details_section .meta li svg {
    font-size: 16px;
    margin-right: 3px;
    width: 18px;
    height: 18px;
}

.job_details_section .meta li .starRating {
    color: #333;
    font-weight: 600;
}

.job_details_section .meta li .starRating svg {
    color: #ffab00;
}

.full_job_description {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
}

.full_job_description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 0;
}

.full_job_description p {
    font-size: 16px;
    line-height: 25px;
    color: #333;
    margin: 0 0 10px;
    padding: 0;
    text-align: justify;
}

.full_job_description ul {
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
}

.full_job_description ul li {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 25px;
    list-style: none;
    position: relative;
    color: #333;
}

.education_experience {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0 0 15px;
}

.education_experience h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 0;
}

.education_experience ul {
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
}

.education_experience ul li {
    margin-bottom: 10px;
    font-size: 16px;
    padding-left: 25px;
    list-style: none;
    position: relative;
    color: #333;
}

.education_experience ul li:before {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' viewBox='0 0 16 16'><path d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/></svg>");
    width: 20px;
    height: 20px;
    margin: 0px;
    color: #ac903b;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 999;
}

.education_experience ul li i {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    left: 0;
    position: absolute;
    top: 0;
}

.apply_now_btn_1 {
    padding: 12px 35px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    line-height: normal;
    color: #333;
    background: #ffab00;
    border-radius: 4px;
    display: inline-block;
}

.apply_now_btn_1:hover {
    background: #ac903b;
    color: #fff;
}

.job_right_box {
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.job_right_box h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
}

.job_right_box ul {
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
}

.job_right_box ul li {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 25px;
    list-style: none;
    position: relative;
    color: #333;
}

.full_apply_btn {
    float: left;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    line-height: normal;
    color: #333;
    background: #ffab00;
    border-radius: 4px;
    display: block;
}

.full_apply_btn:hover {
    background: #ac903b;
    color: #fff;
}

.social_list_2 {
    float: right;
    width: 100%;
    padding: 0px;
    margin: 10px 0 0;
}

.social_list_2 span {
    margin-right: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #4d4d4d;
}

.social_list_2 a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin: 2px 0 2px 0;
    border-radius: 5%;
}

.facebook-bg {
    background: #4867aa;
    color: #fff;
}

.twitter-bg {
    background: #33CCFF;
    color: #fff;
}


.linkedin-bg {
    background: #0177b5;
    color: #fff;
}

.whatsapp-bg {
    background: #01e675;
    color: #fff;
}

.pinterest-bg {
    background: #bd081c;
    color: #fff;
}

.facebook-bg:hover {
    background: #3b589e;
    color: #fff;
}

.twitter-bg:hover {
    background: #56d7fe;
    color: #fff;
}

.linkedin-bg:hover {
    background: #1c82ca;
    color: #fff;
}

.job_image {
    float: left;
    width: 100%;
    height: 380px;
    position: relative;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.job_image img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}

.modal-header .btn_close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
    box-sizing: content-box;
    color: #000;
    border: 0;
    border-radius: 0;
    opacity: .5;
    background: transparent;

}

.modal-header .btn_close svg {
    width: 24px;
    height: 24px;
}

#subscribe_form .modal-content {
    border-top: 8px solid #ac903b;
    border-radius: 12px;
}

#subscribe_form .modal-header .modal-title {
    color: #ac903b;
    font-size: 20px;
    line-height: normal;
}

#subscribe_form .modal-header .close {
    color: #1178ba;
    font-weight: normal;
    opacity: 1;
}

.view_more_btn {
    padding: 10px 40px;
    border-radius: 4px;
    background: #e6c769;
    display: inline-block;
    font-size: 18px;
    color: #333;
    /*float: right; */
    margin-bottom: 40px;
    margin-top: 0px;
}

.view_more_btn:hover {
    background: #ac903b;
    color: #fff;
}