@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.woff2') format('woff2'),
        url('../fonts/Roboto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: #d25131;
    /* --preloaderBg:  green; */

}


/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #828282;
    letter-spacing: normal;
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    /*padding: 15px 0;*/
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu {
    margin-right: 100px;
}

.menu ul li {
    list-style: none;
    display: inline-block;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
    color: #5A5A5A;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

.menu ul li a:hover {
    color: #5680bc;

}


/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: #34495e;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: #fff;
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: .8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}



/*===========================================================
 Hamberger
===========================================================*/


.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}




.menu ul li .dropdown-menu li {
    display: block;
}

.menu ul li .dropdown-menu li a {
    padding: 5px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown>a:hover::after {
    color: #5680bc;

}

.dropdown>a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;

}

/*===========================================================

===========================================================*/
h1 {
    font-size: 30px;
    margin: 20px 0 20px 0;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 28px;
    color: #d25131;
}

h2 {
    font-size: 30px;
    margin: 20px 0 20px 0;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 28px;
    color: #d25131;
}

h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: normal;
    line-height: 28px;
    color: #333333;
}

p {
    margin: 0 0 30px 0;
}

p,
ul,
ol {
  font-size: 16px !important;
  line-height: 1.7;
  color: #828282;
  letter-spacing: normal;
}

/*===========================================================
 Header
===========================================================*/


.menu-left ul {}


.menu-left ul li {
    list-style: none;
    display: inline-block;
}

.menu-left a {
    display: block;
    padding: 16px 22px;
    color: #5A5A5A;
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}

.menu ul li.active a {
    color: #5680bc;
}

.menu-left .active {
    background-color: #d25131;
}

.menu-left .active a {
    color: #fff;
}

.slick-dots li {
    opacity: 0;
}

.banner-inner {
    position: relative;
}

.logo {
    position: absolute;
    top: 50px;
    left: 80px;
}

.logo img {
    width: 250px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.banner-img img {
    width: 100%;
}

.media-area {
    margin-top: 40px;
    padding-bottom: 22px;
}

.media-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.media-left {
    max-width: 480px;
    width: 100%;
}

.media-right {
    max-width: calc(100% - 480px);
    width: 100%;
    padding-left: 50px;
}

.media-cont {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 20px 20px 20px 20px;
    background-color: #ededed;
    margin-bottom: 20px;
    transition: .4s;
    border-radius: 3px;
}

.media-cont-btns{
    display: flex;
    align-items: center;
}
.media-cont:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    transform: translateY(-3px);
}


.footer-area {
    padding: 40px 0 90px 0;
    background: #d25131;

}

.footer-left-area {
    display: flex;
    flex-wrap: wrap;
}

.footer-left {
    width: 70%;
}

.footer-right {
    text-align: right;
}

.footer-bttn {}

.secondary-btn:hover{
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
}
.secondary-btn{
    color: #fff !important;
    background-color: #5680bc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 3px;
    border: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    line-height: 3;
    width: auto;
    justify-content: center !important;
    font-size: 14px;
    padding: 0;
    max-width: 230px;
    width: 100%;
    /* margin-left: 4%; */
    transition: .3s;
}
.media-cont .primary-btn{
    max-width: 140px;
}
.secondary-btn span{
    line-height: 42px;
}
.primary-btn span{
    display: inline-block;
    padding-left: 5px;
    color: #fff;
    line-height: 42px;

}
.primary-btn{
    background-color: #d25131;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 3px;
    border: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    line-height: 3;
    width: auto;
    justify-content: center !important;
    font-size: 14px;
    padding: 0;
    max-width: 230px;
    width: 100%;
    transition: .3s;
}
.footer-area,
.footer-area a {
    color: #fff;
    display: block;
}

a {
    text-decoration: none;

}

ul li {
    list-style: none;
}

.address span {
    position: relative;
}

.address span:before {
    position: absolute;
    content: "";
    background-image: url(../img/map-marker.svg);
    width: 18px;
    height: 20px;
    left: -33px;
    top: 0px;
    background-size: contain;
    background-repeat: no-repeat;
}

.call {
    position: relative;
}

.call:before {
    position: absolute;
    content: "";
    background-image: url(../img/call.svg);
    width: 18px;
    height: 20px;
    background-size: contain;
    left: -33px;
    top: 2px;
    background-repeat: no-repeat;
}

.mail {
    position: relative;
}

.mail:before {
    position: absolute;
    content: "";
    background-image: url(../img/email.svg);
    width: 100%;
    height: 20px;
    background-size: contain;
    left: -33px;
    top: 5px;
    background-repeat: no-repeat;
}

.footerNav span {
    margin-bottom: 18px;
    display: block;
}

/*===========================================================
 Radio
===========================================================*/



.single-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.content-img {
    max-width: 14%;
}

figcaption {
    font-size: 14px;
    color: #333;
    line-height: 18px;
    padding: 8px 0 0 0;
}

.content-text {
    max-width: calc(100% - 14%);
    padding-left: 3%;
}

.content-text a {
    color: #d25131;
}

.service-area {
    padding-top: 40px;
}

.service-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.service-left {
    max-width: 66%;
    width: 100%;
}

.service-right {
    max-width: 34%;
    width: 100%;
    padding-left: 4%;
}

.single-form {
    padding: 13px 0;
}

.single-form input {
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding: 2px 11px;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #a6a6a6;
    border-image: initial;
}

.service-right button {
    width: 100%;
    max-width: 100%;
    /* color: #fff;
    cursor: pointer;
    border: none;
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
    background-color: #5680bc;
    width: 100%;
    max-width: 100%;
    margin: 13px 0; */

}

.service-right button:hover {
    background-color: #d25131;
}

/* Audio Player */
.ppq-audio-player .play-pause-btn .play-pause-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.audio-player-medium {
    width: 100%;
    max-width: 385px;
}

.audio-player {
    background-color: #5680bc;
    color: #fff;
    border: 0;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    border-radius: 2px;
}

.audio-player-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ppq-audio-player .play-pause-btn .play-pause-icon:after {
    background-image: url("/wp-content/uploads/2023/10/play.svg");
}

.ppq-audio-player.player-playing .play-pause-icon:after {
    background-image: url("/wp-content/uploads/2023/10/pause.svg");
}

.audio-player p {
    color: #fff;
    text-align: left;
    margin-bottom: 0;
}

.audio-player .download img,
.primary-btn img {
  width: 40px;
  height: 40px;
}

.player-time {
    position: absolute;
}

.player-bar-time {
    padding-left: 5px;
    position: relative;
}

.ppq-audio-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ppq-audio-player audio {
    position: absolute;
    vertical-align: baseline
}

.ppq-audio-player .play-pause-btn {
    float: left;
}

.ppq-audio-player .play-pause-btn .play-pause-icon {
    position: relative;
    display: block;
    width: 47px;
    height: 47px;
    border: 3px solid #5680bc;
    border-radius: 100%;
    background: #fff;
}

.ppq-audio-player .play-pause-btn .play-pause-icon:after {
    display: block;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}

.ppq-audio-player .player-time {
    width: 51px;
}

.ppq-audio-player .player-time-duration {

    right: 0;
}

.player-time-current {
    left: 0;
}

.player-bar-time {
    width: 100%;
}

.ppq-audio-player .player-bar {
    position: relative;
    overflow: hidden;
    height: 5px;
    background-color: #fff
}

.ppq-audio-player .player-bar .player-bar-loaded {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff
}

.ppq-audio-player .player-bar .player-bar-played {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #d25131
}

.audio-player {
  padding: 5px 20px 15px 20px;
}

.media-cont-btns .audio-player {
  padding: 0;
}

.audio-title {
    margin-bottom: 5px;
}

.audio-player-small {
    max-width: 140px;
    margin-bottom: 0;
    /* box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    border-radius: 2px;
    padding-top: 5px;
    padding-bottom: 5px; */
}

.audio-player-small .ppq-audio-player .play-pause-btn .play-pause-icon {
    width: 30px;
    height: 30px;
}

.audio-player-small .ppq-audio-player .play-pause-btn {
    padding-left: 0;
}

.audio-player-small .audio-player-inner {
    justify-content: flex-start;
}

.audio-player-small .ppq-audio-player {
    padding-bottom: 0;
    padding-right: 5px;
}

.audio-player-small .player-bar-time {
    display: none;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}



/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1240px;
    }
}




@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {

    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 200px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;

    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;

    }

    .menu ul li a {
        color: #fff;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown>a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1199px) {
    .logo {
        top: 30px;
        left: 30px;
    }

    .logo img {
        width: 200px;
    }

    .footer-left {
        padding-left: 30px;
    }

    .footer-bttn button {
        max-width: 180px;
    }

    .content-img {
        max-width: 150px;
        width: 100%;
    }

    .content-text {
        max-width: calc(100% - 150px);
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .service-area {
        padding: 30px 0;
    }

    .media-right,
    .media-left {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .logo img {
        width: 160px;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    .footer-bttn button {
        max-width: 180px;
        margin-bottom: 16px;
    }

    .footer-area {
        padding: 50px 0 50px 0;
    }

    .logo img {
        display: none;
    }

    .service-right,
    .service-left {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .content-text {
        padding-left: 30px;
    }

}

@media (max-width: 767px) {
    .content-text {
        padding-left: 20px;
    }

    .footer-right {
        text-align: left;
        margin-top: 35px;
    }

    .mobile-logo {
        width: 150px;
    }

    .logo {
        top: 10px;
        left: 10px;
    }

    .logo img {
        width: 130px;
    }

    .service-area {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer-bttn button {
        max-width: 180px;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 15px;
    }
}

@media (max-width: 575px) {
    .logo {
        display: none;
    }

    h2 {
        font-size: 27px;
        margin: 10px 0 20px 0;
    }

    h1 {
        font-size: 28px;
    }

    .footerNav span {
        margin-bottom: 0;
        display: block;
        margin-top: 0;
    }

    .content-img {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .content-img img {
        width: 100%;
    }

    figcaption {
        padding: 15px 0 0 0;
    }

    .content-text {
        padding-left: 0;
        max-width: 100%;
        margin-top: 5px;
    }


    .footer-bttn button {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 10px;
    }

    .footer-right {
        text-align: left;
        margin-top: 5px;
    }

    .footer-left {
        margin-bottom: 10px;
    }



    .footerNav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin: 5px 0;
    }

    .footerNav ul {
        display: flex;
    }

    .footerNav ul {
        gap: 15px;
    }

    .footer-bttn {
        display: flex;
        justify-content: space-between;
    }

    .footer-bttn button {
        max-width: 46%;
    }

    .service-area {
        padding-top: 20px;
    }
    .footerNav{
        flex-direction: column;
    }
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 25px;
    }
}

@media (max-width: 379px) {
    .footer-bttn{
        flex-direction: column;
    }
    .footer-bttn button{
        width: 100%;
        max-width: 100%;
    }
}
