/* CSS Document */
.hero-fullscreen img {
    width: 100%;
    height: 100%;
}

.show-reel {
    margin-top: 20px;
    padding: 10px 0px;
}

.show-reel a {
    background: #007FDF;
    font-size: 22px;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.show-reel a i {
    font-size: 24px;
    margin-left: 20px;
}

#background-video {
    display: none;
}

#background-video1 {
    display: none;
}

.new_press a {
    font-size: 18px;
    color: #fff;
    padding: 7px 12px;
}

.button {
    margin-left: 0 3%;
    width: 2rem;
    cursor: pointer;
    top: 35%;
    position: absolute;
    z-index: 100;
}

.button--inactive {
    opacity: 0.2;
}

/*=====start sujit======*/
.main_banner .fa-caret-left,
.main_banner .fa-caret-right {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #fff !important;
}

.nav_marq {
    display: none;
}

.read-article {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 999;
    color: #000;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: arial;
    text-decoration: none;
    box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px -15px;
}

.read-article:hover {
    background: #d5d5d5;
    box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px 0px;
}

iframe[sandbox] .read-article {
    display: none;
}


/*=====end sujit======*/
.button i {
    font-size: 50px;
    color: #007fdf;
}

.btn-right {
    right: 0;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards__container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 100%;
}

.box {
    /*     margin: -1.5rem; */
    width: 12rem;
    height: 25rem;
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: relative;
    /* transition: 1s all; */
    border-radius: 20px;
    cursor: pointer;
}

.box img {
    width: 97%;
    border-radius: 20px;
    box-shadow: 0px 0px 2rem 0px #888888;
}

.box:nth-child(2n) {
    transform: scale(0.85);
    z-index: -1;
}

.box h6 {
    text-align: center;
    color: #007fdf;
    font-size: 13px;
}

.box:nth-child(2) {
    left: 0%;
}

.box:nth-child(4) {
    left: -0%;
}

.box:nth-child(4n + 1) {
    transform: scale(0.75);
    z-index: -2;
}

.box:nth-child(1) {
    left: 1.5%;
}

.box:nth-child(5) {
    left: -1.5%;
}

.card__text-content {
    text-align: center;
    width: 75%;
}

.slide_box {
    padding: 30px 0px;
}

#section1 .fp-tableCell {
    display: block;
    vertical-align: unset;
    width: 100%;
    height: 100%;
}

.card__title {
    padding: 1rem;
}

.box--hide {
    display: none;
}

.move-out-from-left {
    animation: moveOutLeft 0.5s ease-in-out;
}

.move-out-from-right {
    animation: moveOutRight 0.5s ease-in-out;
}

.move-to-position5-from-left {
    animation: moveToP5Left 0.5s ease-in-out;
}

.move-to-position4-from-left {
    animation: moveToP4Left 0.5s ease-in-out;
}

.move-to-position3-from-left {
    animation: moveToP3Left 0.5s ease-in-out;
}

.move-to-position2-from-left {
    animation: moveToP2Left 0.5s ease-in-out;
}

.move-to-position1-from-left {
    animation: moveToP1Left 0.5s ease-in-out;
}

.move-to-position5-from-right {
    animation: moveToP5Right 0.5s ease-in-out;
}

.move-to-position4-from-right {
    animation: moveToP4Right 0.5s ease-in-out;
}

.move-to-position3-from-right {
    animation: moveToP3Right 0.5s ease-in-out;
}

.move-to-position2-from-right {
    animation: moveToP2Right 0.5s ease-in-out;
}

.move-to-position1-from-right {
    animation: moveToP1Right 0.5s ease-in-out;
}

@media only screen and (min-width: 1400px) {}

@keyframes moveOutLeft {
    0% {
        transform: scale(0.75) translateX(0%);
        opacity: 1;
    }

    50% {
        transform: scale(0.5) translateX(-150%);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.25) translateX(0%);
        opacity: 0;
    }
}

@keyframes moveOutRight {
    0% {
        transform: scale(0.75) translateX(0%);
        opacity: 1;
    }

    50% {
        transform: scale(0.5) translateX(150%);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.25) translateX(0%);
        opacity: 0;
    }
}

@keyframes moveToP5Left {
    from {
        transform: scale(0.75) translateX(100%);
    }

    to {
        transform: scale(0.75) translateX(0);
    }
}

@keyframes moveToP4Left {
    from {
        transform: scale(0.75) translateX(100%);
    }

    to {
        transform: scale(0.85) translateX(0);
    }
}

@keyframes moveToP3Left {
    from {
        transform: scale(0.85) translateX(100%);
    }

    to {
        transform: scale(1) translateX(0);
    }
}

@keyframes moveToP2Left {
    from {
        transform: scale(1) translateX(100%);
    }

    to {
        transform: scale(0.85) translateX(0);
    }
}

@keyframes moveToP1Left {
    from {
        transform: scale(0.85) translateX(100%);
    }

    to {
        transform: scale(0.75) translateX(0);
    }
}

@keyframes moveToP1Right {
    from {
        transform: scale(0.75) translateX(-100%);
    }

    to {
        transform: scale(0.75) translateX(0);
    }
}

@keyframes moveToP2Right {
    from {
        transform: scale(0.75) translateX(-100%);
    }

    to {
        transform: scale(0.85) translateX(0);
    }
}

@keyframes moveToP3Right {
    from {
        transform: scale(0.85) translateX(-100%);
    }

    to {
        transform: scale(1) translateX(0);
    }
}

@keyframes moveToP4Right {
    from {
        transform: scale(1) translateX(-100%);
    }

    to {
        transform: scale(0.85) translateX(0);
    }
}

@keyframes moveToP5Right {
    from {
        transform: scale(0.85) translateX(-100%);
    }

    to {
        transform: scale(0.75) translateX(0);
    }
}

.our_story {
    margin-top: 10%;
    text-align: justify;
}

.main_box h1 {
    text-align: right;
    font-size: 100px;
    color: #007fdf;
    font-weight: 600;
    line-height: 100px;
}

.main_box h5 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: justify;
}

.services-accordion h3 {
    text-align: center;
    font-size: 24px;
    color: #007fdf;
    font-weight: 600;
    margin-bottom: 5px;
}

.services-accordion h5 {
    text-align: center;
    font-size: 20px;
    color: #007fdf;
    font-weight: 500;
}

.press_title {
    text-align: center;
}

.press_title h2 {
    font-size: 32px;
    font-weight: 600;
    padding-top: 0;
    color: #007fdf;
    position: relative;
    margin-bottom: 90px;
    margin-top: 20px;
}

.modal-body .close {
    position: absolute;
    right: -25px;
    top: -35px;
}

.modal-body .close i {
    font-size: 22px;
    color: #0381df;
}

.press_title h2:before {
    position: absolute;
    content: '';
    height: 5px;
    width: 182px;
    background: #007fdf;
    bottom: 0;
}

.awards {
    text-align: center;
    margin-bottom: 50px;
}

.box_awards {
    margin-bottom: 25px;
}

.box_awards h5 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #007fdf;
    padding: 65px 35px;
    position: relative;
    height: 200px;
}

.box_awards h5:before {
    position: absolute;
    content: '';
    background: url("../img/index/awards-l.png");
    width: 82px;
    height: 200px;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}

.box_awards h5:after {
    position: absolute;
    content: '';
    background: url("../img/index/awards-r.png");
    width: 82px;
    height: 200px;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
}

.awards h2:before {
    width: 335px;
}

.profile-box {
    padding: 80px 20px 0px;
    display: inline-flex;
}

.profile-box img {
    width: 30%;
    border-radius: 50%;
    margin: 50px 0px;
    margin-right: 20px;
    height: 50%;
}

.profile-box .box1 h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007fdf;
    font-weight: 600;
}

.profile-box .box1 h6 {
    font-size: 14px;
    text-align: justify;
    font-weight: 500;
    color: #000;
}

.collab {
    text-align: left;
    margin-bottom: 70px;
}

.collab h2:before {
    width: 210px;
}

.box_collab {
    text-align: center;
    margin-bottom: 30px;
    background: #007fdf;
    border-radius: 12px;
}

.box_collab h5 {
    padding: 30px;
    color: #fff;
    font-size: 18px;
}

/*==========pop up ============*/
.box-popup {
    position: fixed;
    top: 0;
    z-index: 100000;
    background: #000000d1;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
}

.pop_up {
    border-radius: 20px;
    background: #fff;
    max-width: 850px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 15px;
    overflow-y: scroll;
    height: 600px;
}

.pop_up::-webkit-scrollbar {
    width: 8px;
    padding-right: 10px;
}

.pop_up::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.pop_up::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 20px;
    outline: 1px solid slategrey;
}

.video_pop iframe {
    width: 100%;
    border-radius: 20px;
}

.close_btn {
    position: absolute;
    right: 5px;
    top: 6px;
}

.close_btn i {
    color: #fff;
    font-size: 30px;
}

.video_pop h4 {
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 600;
    color: #007fdf;
}

.video_pop p {
    padding: 0px 10px 5px;
    font-size: 15px;
    font-weight: 400;
}

.pop_up .owl-prev span {
    font-size: 38px;
    position: relative;
    top: -5px;
    color: #fff;
    left: 35px;
    font-weight: 600;
}

.pop_up .owl-next span {
    font-size: 38px;
    position: relative;
    top: -5px;
    color: #fff;
    right: 35px;
    font-weight: 600;
}

.pop_up .owl-next,
.pop_up .owl-prev:focus,
.pop_up .owl-next,
.pop_up .owl-prev:focus {
    outline: none;
}

.foot-1 {
    text-align: center;
    margin: 75px 0px;
}

.cont-2 ul {
    display: inline-flex;
}

.cont-2 ul li {
    margin: 0px 50px;
    font-size: 16px;
}

.cont-2 ul li a:hover {
    color: #007fdf;
    padding-left: 10px;
}

.cont-2 ul li a {
    color: #fff;
    cursor: pointer;
    transition: all .5s ease-in-out;
    font-weight: 600;
}

.cont-3 {
    text-align: center;
}

.cont-3 h4 {
    font-weight: 600;
    color: #007fdf;
    font-size: 16px;
    text-transform: uppercase;
}

.cont-3 h4 span {
    color: #fff;
}

.carousel-wrap {
    overflow: hidden;
}

.carousel-wrap img {
    width: 100%;
    border-radius: 20px;
}

.center-block-menu h2 {
    font-weight: 600;
    font-size: 30px;
    color: #007fdf;
    padding-bottom: 66px;
    text-align: center;
}

.brackets {
    text-align: left;
    padding-left: 50px;
}

/*=====start sujit footer popup=====*/
/*Trigger Button*/
.login-trigger {
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to bottom right, #B05574, #F87E7B);
    padding: 15px 30px;
    border-radius: 30px;
    position: relative;
    top: 100%;
    text-align: center;
}

/*Modal*/
.modal-body h2 {
    font-weight: bold;
    color: #007FDF;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 25px;
}

.close {
    color: #fff;
    transform: scale(1.2);
}

.modal-content {
    font-weight: bold;
    background: #ffff;
    padding: 50px 50px;
    /*	border:1px solid red;*/
}

.footer_popup input {
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
}

.modal-body button {
    color: #000000 !important;
    font-size: 30px !important;
}

.footer_popup textarea {
    height: 100px;
    width: 100%;
    margin-top: 20px;
    color: #000000;
    background: transparent;
    border: 1px solid #ccc;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.footer_popup input:focus {
    border-bottom: 1px solid #F1E8E8;
}

.form-control {
    margin: 1em 0;
}

.form-control:hover,
.form-control:focus {
    box-shadow: none;
}

.footer_popup input {
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    font-weight: 600;
    width: 100%;
    background: transparent;
    padding-bottom: 10px;
}

.form-control::-webkit-input-placeholder {
    color: #000000;
}

.form-control:focus::-webkit-input-placeholder {
    font-weight: 500;
    color: #000000f;
}

.footer_popup .login {
    padding: 10px 35px;
    border-radius: 20px;
    background: none;
    border: 1px solid #007FDF;
    color: #007FDF;
    font-weight: bold;
    transition: all .5s;
    margin-top: 1em;
}

.login:hover {
    background: #007FDF;
    color: #fff;
    transition: 0.5s;
}

/*=====end sujit footer popup=====*/
.sec1 {
    padding: 0px 0px 100px;
}

.sec2 {}

.sec2 h2 {
    font-size: 40px;
    color: #007fdf;
    font-weight: 600;
    text-align: center;
}

.sec1 .text-title-secondary-contact {
    margin-top: 25px;
}

.brac-foot li {
    margin-bottom: 30px;
}

.brac-foot li a {
    font-size: 22px;
    color: #007fdf;
    font-weight: 600;
}

.fott-sec h3 {
    text-align: center;
    font-size: 16px;
    color: #007fdf;
    font-weight: 600;
}

.fott-sec h3 span {
    margin-left: 60px;
}

.projects .awards {
    text-align: center;
    margin-bottom: 35px;
}

.projects .awards h2:before {
    width: 125px;
}

.services-accordion p {
    font-size: 16px;
    margin-bottom: 10px;
}

.img_767 {
    display: none;
}

.projects .awards h2 {
    padding-top: 0px;
}

.slider_767 {
    display: none;
}

#section4 .slick-prev {
    top: 25%;
}

#section4 .slick-next {
    top: 25%;
}

.slick-right-about .fa-caret-left {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
}

.slick-right-about .fa-caret-right {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
    right: 0;
}

.main_banner .fa-caret-left {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
}

.main_banner .fa-caret-right {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
    right: 0;
}

.slick-services .fa-caret-left {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
}

.slick-services .fa-caret-right {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
    font-size: 50px;
    color: #007fdf;
    right: 0;
}

.slick-right-about1 .fa-caret-left {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 25%;
    font-size: 50px;
    color: #007fdf;
}

.slick-right-about1 .fa-caret-right {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 25%;
    font-size: 50px;
    color: #007fdf;
    right: 0;
}

.coont-1 {
    padding: 0px 90px !important;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.video_pop iframe {
    height: 350px;
}

.text2 .height-correction {
    margin-top: 20%;
}

.footer_popup {
    text-align: center;
}

.my_popup {
    position: fixed;
    top: 0;
    z-index: 999999;
    background: #00000052;
    right: 0;
    left: 0;
    bottom: 0;
}

.modal-dia {
    max-width: 550px;
    margin: 0 auto;
    margin-top: 100px;
    background: #f7f7f7;
    padding: 60px 40px;
    border-radius: 10px;
    position: relative;
}

.modal-dia h2 {
    text-align: center;
    font-size: 28px;
    color: #0280df;
    font-weight: 600;
}

.modal-dia .close1 {
    position: absolute;
    top: 4px;
    right: 12px;
    font-size: 24px;
}


.projects h2 {
    margin-bottom: 40px;
}



/*================== Video Pop UP  ==============*/
#video-wrapper iframe {
    width: 1200px;
    height: 600px
}

.background-main {
    position: relative;
}

#lightbox {
    /* ----- Positioning ----- */
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;

    /* The code above makes sure that the
  lightbox covers the entire page*/

    /* ----- Visibility ----- */
    display: none;

    /* ----- Styling ----- */
    background-color: rgb(0 0 0 / 80%);

    /* Normally, most lightboxes do not use
  a completely solid black, but with about
  90-95% opacity so that the background is
  somewhat visible */
}

#video-wrapper {
    /* ----- Positioning ----- */
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    /* The code above makes sure the video is
  both vertically and horizontally centered
  to the screen */

    /* ----- Styling ----- */
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);

    /* The code above is used to add a little shadow to the video making blend in better */
}

#close-btn {
    /* ----- Text ----- */
    color: grey;
    font-size: 25px;

    /* ----- Positioning ----- */
    position: fixed;
    top: 3%;
    right: 3%;
    z-index: 2;

    /* The code above is used to put the button on the upper right corner of the lightbox */

    /* ----- Transformations ----- */
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);

    /* The code above is used to initialize the scale for the button so that it can be used in transitions */

    /* ----- Transitions ----- */
    -webkit-transition: transform .5s ease, color .5s ease;
    -moz-transition: transform .5s ease, color .5s ease;
    -ms-transition: transform .5s ease, color .5s ease;
    -o-transition: transform .5s ease, color .5s ease;
    transition: transform .5s ease, color .5s ease;
}

#close-btn:hover {
    /* ----- Text ----- */
    color: white;

    /* ----- Styling ----- */
    cursor: pointer;

    /* ----- Transformations ----- */
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);

    /* ----- Transitions ----- */
    -webkit-transition: transform .5s ease, color .5s ease;
    -moz-transition: transform .5s ease, color .5s ease;
    -ms-transition: transform .5s ease, color .5s ease;
    -o-transition: transform .5s ease, color .5s ease;
    transition: transform .5s ease, color .5s ease;
}





/*================== Video Pop UP  ==============*/




.mobile-banner {
    display: none;
}



.fp-tableCell {
    vertical-align: bottom;
}

.fott-sec p {
    text-align: center;
    margin-top: 35px;
    font-weight: 700;
}

.fott-sec {
    margin-bottom: 45px;
}

/* -- podcast page -- */
.pod_head_section {
    padding-top: 50px;
    padding-bottom: 70px;
    overflow: visible;
}

.pod_head {
    width: auto;
    display: flex;
    justify-content: center;
}

.pod_head a {
    text-align: center;
}

.pod_head a img {
    width: 100px;
    display: inline-block;
    border-radius: 50%;
}

.pod_head a span {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

.pod_head a p {
    font-weight: 700;
    transition: all 0.5s ease;
}

.pod_head a:hover span {
    color: #000;
}


.youtube_video_card img {
    width: 100%;
    display: block;
    margin-bottom: 13px;
}

.youtube_video_card .image {
    position: relative;
}

.youtube_video_card .image span {}

.video-play-button {
    display: flex;
    width: 60px;
    height: 60px;
    background: #aa8453;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-play-button:before,
.video-play-button:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.video-play-button:before {
    z-index: 0;
    background: #ffffff;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    z-index: 1;
    background: red;
    transition: all 200ms;
}

.video-play-button i {
    color: #FFF;
    position: relative;
    z-index: 3;
    font-size: 24px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.6);
        opacity: 0;
    }
}


.youtube_video_card {
    text-align: center;
}

.youtube_video_card p {
    font-size: 17px;
    font-weight: 700;
    color: #007fdf;
    line-height: 19px;
    margin-bottom: 8px;
}

.youtube_video_card span {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.youtube_video_row {
    gap: 35px 0;
    margin-top: 50px;
}

.padcast_slider .owl-prev,
.padcast_slider .owl-next {
    color: #000;
    font-size: 32px;
}

.pod_head_section .container-fluid {
    padding: 0 45px;
}

.pod_links_row {
    gap: 20px 0;
    margin-top: 0;
    padding-left: 25px;
}

.pod_links {
    background: #f1f1f1;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px 23px;
    height: 100%;
    padding: 7px 10px;
    border-radius: 5px;
    box-shadow: -1px 4px 10px 0 rgb(0 0 0 / 20%);
    transition: all 0.5s ease;
}

.pod_links:hover {
    box-shadow: 1px 7px 20px 0 rgb(0 0 0 / 40%);
    transform: translateY(-5px);
}

.pod_links img {
    display: inline-block;
    width: auto;
    max-height: 50px;
    max-width: 80px;
}

.pod_links span {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.sticky_links {
    position: sticky;
    top: 19px;
    height: fit-content;
    margin-top: 50px;
}

.podcast_nav_button {
    background: #007FDF;
    font-size: 16px !important;
    color: #FFF !important;
    padding: 13px 25px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin: 20px 0 0 66px;
    display: inline-block;
    letter-spacing: 1.5px !important;
    box-shadow: -1px 4px 12px 0 rgb(0 0 0 / 20%);
}

.podcast_nav_button:hover {
    background: #333;
}

nav.navigation-menu ul.social-icons {
    display: flex;
    gap: 0 20px;
    margin-top: 35px;
    justify-content: center;
}

nav.navigation-menu ul.social-icons li a {
    margin: 0;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 18px;
    background: #017ad5;
    color: #FFF;
    box-shadow: -1px 4px 12px 0 rgb(0 0 0 / 20%);
}

nav.navigation-menu ul.social-icons li {
    margin: 0;
    padding: 0;
}


.sec2.footer_section {
    background: #f8f8f8;
    padding: 60px 0 0 0;
}

.hero_section h2 {
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.view_all {
    background: #007FDF;
    font-size: 16px !important;
    color: #FFF !important;
    padding: 11px 30px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1.5px !important;
    box-shadow: -1px 4px 12px 0 rgb(0 0 0 / 20%);
    transition: all 0.5s ease;
}

.view_all:hover {
    background: #333;
}

/* -- image popup -- */
.popup_module {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(0deg 0% 0% / 50%);
    z-index: 9999;
}

.popup_module .popup_module_in {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_module .popup_module_in .popup_container {
    width: 850px;
    max-width: 90%;
    position: relative;
}

.banner_popup .popup_container img {
    width: 100%;
    display: block;
}

.popup_module .popup_module_in .popup_container span.pop_close {
    position: absolute;
    right: -14px;
    top: -14px;
    width: 30px;
    height: 30px;
    background: #FFF;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    border-radius: 50%;
    color: red;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease;
}

#banner_popup .popup_container img {
    width: 100%;
    display: block;
}

.popup_module .popup_module_in .popup_container span.pop_close:hover {
    background: red;
    color: #FFF;
}

.main-cpt {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 15px;
    margin-top: 15px;
    margin-bottom: 14px;
}

.main-cpt input {
    width: 120px;
    margin: 0;
}

#section6 {
    padding: 0 60px;
}

#section6 .fp-tableCell {
    vertical-align: middle;
}

.podcast_banner {
    width: 100%;
}

.podcast_banner img {
    width: 100%;
    display: block;
}

.podcast_content_dn {
    height: 100%;
    background: #f1f1f1;
    padding: 40px;
}


.podcast_banner_content {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin-top: 15px;
}

.podcast_banner_content img {
    min-width: 85px;
    max-width: 85px;
    border-radius: 50px;
}

.podcast_banner_content h2 {
    margin: 0 !important;
}

.podcast_content_dn h2,
.podcast_banner_content h2 {
    color: #007fdf;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.podcast_content_dn h2 span,
.podcast_banner_content h2 span {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.podcast_content_dn p {
    font-size: 14px;
}

.podcast_content_2 {
    margin-top: 20px;
}

.podcast_content_2 .podlink {
    font-weight: bold;
    font-size: 18px;
}

.podcast_content_dn h4 {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
    line-height: 1;
    color: #007fdf;
}

.pod_listing {
    margin: 5px 0 20px 0;
    max-height: 100%;
    overflow: auto;
}

.pod_listing ul li {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

.pod_listing ul li img {
    width: 100%;
    display: block;
}

.pod_listing ul li .content {
    width: calc(100% - 130px);
    padding: 5px 5px 5px 15px;
}

.pod_listing ul li .img {
    width: 130px;
}

.pod_listing ul li .content p {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.pod_listing ul li .content span {
    font-weight: 600;
    font-size: 13px;
}

.play_all {
    background: #007fdf;
    color: #FFF;
    padding: 7px 23px;
    float: right;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 13px;
}

.play_all:hover {
    color: #FFF;
}

.cs_scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.cs_scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.cs_scrollbar::-webkit-scrollbar-thumb {
    background-color: #007fdf;
    border-radius: 5px;
}

.press_title.pod h2 {
    margin-bottom: 20px;
}

.press_title.pod h2:before {
    width: 123px;
}

.hero_section ul {
    display: flex;
    justify-content: center;
    gap: 0 21px;
    margin-top: 15px;
}

.hero_section ul li {
    width: 100px;
    background: #FFF;
    padding: 5px;
    border-radius: 4px;
}

.hero_section ul li img {
    display: block;
    width: 100%;
}


@media only screen and (min-width: 1600px) {}

@media only screen and (max-width: 1600px) {
    .box img {
        height: 450px;
    }

    .press_title {
        margin-bottom: 50px;
    }

    .height-correction {
        margin-top: 5%;
    }

    .text2 .height-correction {
        margin-top: 10%;
    }

    .brac-foot li {
        margin-bottom: 10px;
    }

    .pod_links img {
        max-height: 45px;
    }

    .pod_links {
        gap: 10px 20px;
        padding: 5px 10px;
    }

    nav.navigation-menu li {
        margin: 0 0 15px 0;
        padding-bottom: 7px;
    }

    .podcast_nav_button {
        font-size: 15px !important;
        margin-left: 30px;
    }

    nav.navigation-menu {
        width: 300px;
    }

    .brackets {
        padding-left: 35px;
    }

    .hero_section {
        padding: 200px 0 50px 0;
    }

    .hero_section .title {
        font-size: 40px;
    }

    .video-play-button,
    .video-play-button:before,
    .video-play-button:after {
        width: 50px;
        height: 50px;
    }

    .pod_listing ul {
        max-height: 390px;
        overflow: auto;
    }

    .podcast_banner_content h2 {
        font-size: 23px;
    }

    .podcast_banner_content img {
        min-width: 75px;
        max-width: 75px;
    }
}

@media only screen and (min-width: 1400px) {
    .box {
        width: 15rem;
        height: 25rem;
    }

    .button {
        top: 46%;
    }

    .box_awards {
        margin-bottom: 40px;
    }

    .background-main #light {
        bottom: 275px !important;
    }

}

@media only screen and (max-width: 1320px) {

    .background-main #light {
        bottom: 424px !important;

    }

    .founder_hero_section .overlay_content {
        left: -20px;
    }

    .podcast_content_dn {
        padding: 25px;
    }

    .pod_listing ul li .img {
        width: 100px;
    }

    .pod_listing ul li .content {
        width: calc(100% - 100px);
    }
}


@media only screen and (max-width: 1200px) {
    .box_awards h5 {
        font-size: 14px;
    }

    .sec2 h2 {
        font-size: 30px;
    }

    .sec1 .text-title-secondary-contact {
        margin-top: -40px;
    }

}

@media only screen and (max-width: 1080px) {
    .background-main #light {
        bottom: 92px !important;
    }
}

@media only screen and (max-width: 992px) {

    /*	====start sujit====*/
    .height-correction {
        margin-top: 0px !important;
    }

    .main_banner.slick-initialized .slick-slide {
        display: block;
        height: 435px;
    }

    .hero_width {
        height: unset !important;
    }

    .header_part {
        background: #007fdf;
        width: 100%;
        height: 100px;
    }

    .introduction {
        left: 7%;
        top: 20%;
    }

    .services-container {
        height: none !important;
    }

    .slick-slide img {
        height: auto !important;
    }

    .profile-box img {
        width: 120px !important;
        height: 120px !important;
    }

    .services-accordion p {
        font-size: 13px !important;
    }

    .slick-services .fa-caret-right,
    .slick-services .fa-caret-left {
        top: 43%;
    }

    .button {
        top: 47%;
    }

    /*	====endsujit====*/
    .hero-fullscreen {
        width: 100%;
        height: auto;
    }

    .text-title-secondary h4 {
        font-size: 22px;
    }

    .hero-fullscreen img {
        width: 100%;
        height: auto;
    }

    h2.home-page-main-title {
        font-size: 16px;
        margin-left: 0;
        line-height: 22px;
        margin-top: 0;
        letter-spacing: 0.6px;
    }

    h4.home-page-main-title {
        font-size: 16px;
        margin-top: 5px;
    }

    .show-reel a i {
        font-size: 18px;
        margin-left: 10px;
    }

    .show-reel a {
        font-size: 14px;
    }

    .show-reel {
        margin-top: 10px;
    }

    .overlay-video:before {
        position: unset;
    }

    .section .fp-tableCell {
        height: unset !important;
    }

    #section0 .fp-tableCell {
        height: 435px !important;
    }

    ul.social-icons {
        font-size: 18px;
    }

    .social-icons-wrapper ul li {
        margin: 0 5px;
    }

    .sec2 h2 {
        font-size: 26px;
    }

    .social-icons-wrapper {
        margin: 15px auto 0px auto;
    }

    .brac-foot li a {
        font-size: 18px;
    }

    .brac-foot li {
        margin-bottom: 10px;
    }

    .sec1 {
        padding: 85px 0px;
    }

    .press_title h2 {
        padding-top: 40px;
        font-size: 32px;
        margin-bottom: 50px;
    }

    .box_awards {
        margin-bottom: 30px;
    }

    .section-bg-contact {
        height: 40vh;
    }

    .ytplayer-player {
        width: 100% !important;
        height: 100% !important;
    }

    .services-container {
        width: 100%;
        height: unset;
        margin: 160px 0px 50px;
    }

    .brackets {
        padding: 25px 0px 20px 50px;
    }

    .press .slick-slide {
        height: unset !important;
    }

    .main_banner .fa-caret-left {
        top: 40%;
    }

    .main_banner .fa-caret-right {
        top: 40%;
    }

    .main-menu {
        position: absolute !important;
    }

    #section1 {
        height: unset !important;
        margin-bottom: 50px;
    }

    #section2 {
        height: unset !important;
        margin-bottom: 50px;
    }

    .background-main #light {
        bottom: 199px !important;
    }

    .founder_hero_section img {
        display: block;
    }

    .founder_hero_section .overlay_content {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        background: #168ba2;
    }

    .founder_hero_section .overlay_content h1 {
        line-height: normal;
    }

    .new_founder_note .row.profile1_row {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 40px;
    }

    .new_founder_note .profile1 {
        margin-top: 0;
        width: 100%;
    }

    .profile1_pic_content {
        margin-top: 0;
    }

    .new_founder_note .founder_top_content {
        padding-bottom: 40px;
    }

    .profile1_content {
        margin-top: 0;
        top: 0;
        width: 100%;
        border: 1px solid #c7c7c7;
        border-top: 0;
        left: 0;
        box-shadow: none;
    }

    .new_founder_note .row.profile1_row {
        flex-direction: column-reverse;
    }

    .new_founder_note img {
        display: block;
    }

    .founded_section img {
        margin-bottom: 30px;
    }

    .other_program_mg {
        background: transparent !important;
        height: auto;
        min-height: auto;
    }

    .other_program_mg img {
        display: block;
        margin: 0;
    }

    .other_program.firstchild {
        margin-top: 30px;
    }

    #section5 {
        height: unset !important;
        min-height: 80vh !important;
    }

    #section5 .sec1 {
        position: relative;
    }

    .row_mgtop {
        margin-top: 30px;
    }

    .pod_head_section .container-fluid {
        padding: 0 15px;
    }

    .pod_links_row {
        padding-left: 0;
    }

    .hero_section .title {
        font-size: 30px;
    }
    #section6 {
        padding: 40px 20px;
    }
    .podcast_banner_content {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 767px) {
    #section2 .slick-slide {
        height: 850px;
    }

    .mobile-banner {
        display: block;
    }

    .webscreen_banner {
        display: none;
    }

    #video-wrapper {
        position: absolute;
        top: 5%;
        left: 24px;
        right: 0;
        transform: unset;
        box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 10%);
    }

    #video-wrapper iframe {
        width: 350px;
        height: 300px;
    }

    .projects .awards {
        padding-top: 20px;
    }

    .mobile-banner .owl-carousel {
        z-index: 0;
    }

    h2.home-page-main-title {
        font-size: 24px;
        margin-left: 0;
        line-height: 34px;
        margin-top: 0;
        letter-spacing: 0.4px;
    }

    h4.home-page-main-title {
        font-size: 19px;
        margin-top: 10px;
    }

    #section0 .fp-tableCell {
        height: 300px !important;
    }

    .slide_box {
        display: none !important;
    }

    .slider_767 {
        display: block;
    }

    .sec2 {
        margin-top: 25px;
    }

    .text-title-secondary-contact {
        padding-bottom: 25px;
    }

    .fott-sec h3 span {
        margin-left: 0px;
    }

    .fott-sec h3 {
        font-size: 14px;
    }

    .brackets {
        padding-bottom: 25px;
    }

    /*.img_1300{display: none;}*/
    .img_767 {
        display: block;
    }

    .main_box h1 {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 10px;
    }

    .profile-box img {
        width: 10%;
    }

    .profile-box {
        padding: 0px 30px 10px;
    }

    .height-correction {
        margin-top: 50px;
    }

    .our_story {
        margin-top: 0 !important;
    }

    .slider_767 .fa-caret-left {
        position: absolute;
        z-index: 100;
        top: 0%;
        font-size: 50px;
        color: #007fdf;
        left: 50px;
    }

    .press_title h2 {
        margin-bottom: 15px;
    }

    .slider_767 .fa-caret-right {
        position: absolute;
        z-index: 100;
        top: 0%;
        font-size: 50px;
        color: #007fdf;
        right: 50px;
    }

    .slider_767 .owl-carousel .owl-item img {
        margin: 0 auto;
        text-align: center;
        max-width: 175px;
    }

    .coont-1 {
        padding: 0px 25px !important;
    }

    .sec1 .text-title-secondary-contact {
        margin-top: -30px;
    }

    .services-accordion p {
        font-size: 13px;
    }

    .services-accordion h3 {
        font-size: 18px;
    }

    .news-page-img-wrapper {
        height: 100%;
    }

    .slick-right-about1 .fa-caret-left {
        top: 47%;
    }

    .slick-right-about1 .fa-caret-right {
        top: 47%;
    }

    .center-container {
        position: relative;
    }

    .slid_h9 h6 {
        text-align: center;
        color: #007fdf;
        font-size: 14px;
        margin-top: 15px;
    }

    nav.navigation-menu.show {
        width: -webkit-calc(100% - 60%);
        width: -moz-calc(100% - 60%);
        width: calc(100% - 60%);
    }

    .press img {
        height: auto;
    }

    .press .img-fullwidth {
        height: auto;
    }

    .profile-box .box1 h6 {
        font-size: 12px;
    }

    .main_box h5 {
        font-size: 12px;
    }

    .news-page-img-wrapper .slick-slide {
        height: auto;
    }

    #section1 .slick-slide {
        height: 100%;
    }

    .pop_up {
        margin: 50px 25px;
    }

    .video_pop iframe {
        height: 250px;
    }

    .video_pop h4 {
        font-size: 18px;
    }

    .video_pop p {
        font-size: 13px;
    }

    .modal-body .close {
        position: absolute;
        right: 0px;
        top: -26px;
    }

    .modal-content {
        padding: 30px 10px;
    }

    .modal-dialog {
        margin: 76px 20px 0px;
    }

    .nav_marq {
        display: block;
        position: relative;
        top: 0;
        z-index: 3000;
        color: #007FDF;
        font-size: 15px;
    }

    .main_banner .fa-caret-left {
        top: 29%;
    }

    .main_banner .fa-caret-right {
        top: 29%;
    }

    .services-container {
        margin: 0 !important;
    }

    .founder_hero_section .overlay_content {
        padding: 25px;
    }

    .founder_hero_section .overlay_content h1 {
        font-size: 30px;
    }

    .new_founder_note .founder_top_content,
    .profile1_content,
    .other_program .other_program_dv {
        padding: 20px 25px;
    }

    .new_founder_note .founder_top_content p {
        width: 100%;
    }

    .new_founder_note .founder_top_content h2 {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 38px;
    }

    .profile1_content h3,
    .founded_section h3 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 32px;
    }

    .fott-sec {
        margin-bottom: 0;
    }

    .sticky_links {
        position: relative;
        top: 0;
    }

    .hero_section .title {
        font-size: 25px;
    }
}

@media only screen and (max-width: 580px) {
    .press_title h2 {
        padding-top: 0;
        font-size: 26px;
    }

    .projects h2 {
        font-size: 26px;
        margin-top: 0;
        padding-top: 20px !important;
    }



    .projects .awards h2:before {
        width: 102px;
        height: 3px;
    }

    .profile-box img {
        width: 20%;
        height: 20% !important;
    }

    .our_story {
        padding: 0px 15px;
    }

    .profile-box .box1 h4 {
        font-size: 16px;
    }

    .profile-box .box1 h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    #section0 .fp-tableCell {
        height: 220px !important;
    }

    .extra_box {
        width: 100%;
    }

    .brackets {
        padding: 24px 0px 20px 15px;
    }

    nav.navigation-menu.show {
        width: -webkit-calc(100% - 45%);
        width: -moz-calc(100% - 45%);
        width: calc(100% - 45%);
    }

    .main_banner .fa-caret-right {
        top: 20%;
    }

    .main_banner .fa-caret-left {
        top: 20%;
    }

    .main-menu {
        top: 30px;
    }

    .upper {
        top: -45px;
        position: absolute;
    }

    .press_title h2:before {
        height: 3px;
        width: 148px;
    }

    .modal-dia {
        margin: 100px 20px 0 !important;
        padding: 35px 20px;
    }

    .logo-img:before {
        background-size: 170px;
    }

    .header_part {
        height: 85px;
    }

    .header_part.other_page {
        height: 85px;
    }
}

@media only screen and (max-width: 480px) {
    .slid_h9 h6 {
        padding: 0 40px;
    }

    h2.home-page-main-title {
        font-size: 15px;
        line-height: 22px;
        margin-top: 25px;
    }

    h4.home-page-main-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .show-reel {
        padding: 0;
    }

    .show-reel a {
        font-size: 13px;
    }

    .show-reel a i {
        font-size: 17px;
        margin-left: 8px;
    }

    #section0 .fp-tableCell {
        height: 310px !important;
    }

    .logo-img:before {
        background-size: 60%;
    }

    .logo {
        top: 11px;
    }

    .introduction {
        top: 15%;
    }

    h2.home-page-main-title {
        font-size: 15px;
        line-height: 24px;
    }

    .show-reel a {
        padding: 6px 5px;
        top: -4px;
    }

    #section5 .sec1 {
        position: relative;
        padding: 100px 0 0 0;
        display: block;
        min-height: 250px;
    }

    .section-bg-contact {
        height: 100%;
    }

    .upper {
        top: 0;
        position: relative;
    }

    .text-title-secondary h4 {
        font-size: 17px;
    }

    #section0 .fp-tableCell {
        height: 215px !important;
    }

    #section2 {
        margin-bottom: 0px !important;
    }

    .main_banner.slick-initialized .slick-slide {
        height: unset;
    }

    .sec1 {
        padding: 90px 0px;
    }

    .awards1 h2:before {
        width: 270px !important;
    }

    .founder_hero_section .overlay_content h1 {
        font-size: 26px;
    }

    .new_founder_note .founder_top_content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .new_founder_note .row.profile1_row {
        margin-bottom: 25px;
    }

    .founded_section img {
        margin-bottom: 15px;
    }

    .profile1_content h3,
    .founded_section h3 {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 28px;
    }

    .header_part.other_page {
        height: 80px;
    }

    .new_founder_note .founder_top_content p {
        font-weight: 300;
        line-height: inherit;
    }

    .main-cpt input {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    h2.home-page-main-title {
        font-size: 13px;
        line-height: 19px;
    }

    h4.home-page-main-title {
        font-size: 12px;
    }

    .show-reel a {
        font-size: 12px;
        padding: 6px 5px;
    }

    nav.navigation-menu.show {
        width: -webkit-calc(100% - 30%);
        width: -moz-calc(100% - 30%);
        width: calc(100% - 30%);
    }

    h2.home-page-main-title {
        font-size: 12px;
    }

    .main_banner .fa-caret-left {
        top: 15%;
    }

    .main_banner .fa-caret-right {
        top: 15%;
    }

    #section0 .fp-tableCell {
        height: 170px !important;
    }

    #section2 {
        margin-bottom: 0px !important;
    }
}