/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
/* Reset Code */
body {
    padding: 0;
    margin: 0;
    background: #FFF;
    font-family: 'Josefin Sans', sans-serif;
}

body button,
.btn,
body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.btn:hover,
body button:hover {
    opacity: .8;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

body a:hover {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.9;
    color: #999;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

/* //Reset Code */

/* colors code */
.text-bl {
    color: #343a40;
}

.text-da {
    color: #000;
}

.text-wh {
    color: #fff;
}

.text-li {
    color: #f8f9fa;
}

.bg-li {
    background: #f8f9fa;
}

.bg-wh {
    background: #fff;
}

.let {
    letter-spacing: 1px;
}

/* //colors code */

/* bottom-to-top */
a.move-top {
    position: absolute;
    bottom: 4%;
    right: 2%;
}

a.move-top span {
    color: #fff;
    font-size: 30px;
}

/* //bottom-to-top */

/* header */
header {
    position: absolute;
    z-index: 999;
    width: 100%;
}

.main-top {
    position: relative;
    z-index: 1;
}

/* navigation */
/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

#logo a {
    font-size: 40px;
    color: #fff;
    text-shadow: 2px 5px 3px rgba(239, 238, 238, 0.06);
    font-weight: 300;
    word-spacing: -9px;
    position: relative;
    float: left;
}

#logo a span {
    font-size: 28px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    margin: 0 16px;
    font-weight: 400;
}

nav a:hover {
    color: #fff;
    opacity: .8;
}

/* Background color change on Hover */

.menu li a.active,
nav a:hover {
    color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 25px;
    background: #fff;
    padding: 10px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 9;
    /* has to be the same number as the "line-height" of "nav a" */
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

nav ul ul li a {
    color: #000;
    display: block;
    font-size: 15px;
    margin: 10px;
}

nav ul ul li a:hover {
    color: #000;
}

nav ul ul li a.drop-text.active {
    color: #000;
    opacity: .7;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li>a:only-child:after {
    content: '';
}

/* Media Queries
--------------------------------------------- */
@media(max-width: 1280px) {
    nav a {
        font-size: 16px;
    }

    #logo a {
        font-size: 36px;
    }

    #logo a span {
        font-size: 26px;
    }
}

@media(max-width: 991px) {
    nav a {
        font-size: 14px;
    }

    nav ul ul li a {
        font-size: 14px;
    }
}

@media all and (max-width : 736px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    #logo a {
        font-size: 34px;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle+a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 8px 14px;
        font-size: 15px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #000;
        -webkit-border-radius: 4px;
        -o-border-radius: 4px;
        -ms-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        max-width: 106px;
        padding: 5px;
        font-weight: normal;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        transition: 0.5s all;
        -webkit-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -o-transition: 0.5s all;
        -ms-transition: 0.5s all;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 4px 0;
        text-align: center;
        width: 100%;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #fff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }

    nav a {
        color: #000;
        font-size: 15px;
        padding: 0;
        margin: 0;
    }

    nav ul ul li a {
        color: #000;
        padding: 0;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    .menu li a.active,
    nav a:hover {
        color: #000;
    }

    .toggle {
        padding: 8px 10px 6px;
        font-size: 14px;
    }
}

@media all and (max-width : 440px) {
    .toggle {
        padding: 7px 12px;
        font-size: 14px;
    }

    #logo a {
        font-size: 32px;
    }
}

@media all and (max-width : 375px) {

    nav a,
    .menu .toggle {
        font-size: 13px;
    }
}

/* dropdown */
#demo {
    margin: 10px 0 0px 0;
}

#demo .wrapper {
    display: inline-block;
    position: relative;
}

#demo .parent {
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 30px;
    height: 30px;
    color: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
    -webkit-transition-delay: .8s;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover~.parent {
    -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover~.parent {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 0;
}

#demo .content {
    position: absolute;
    top: 0;
    display: block;
    z-index: 1;
    height: 0;
    width: 150px;
    padding-top: 30px;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content:hover {
    height: 150px;
    z-index: 3;
    -webkit-transition-delay: 0s;
}

#demo .content ul {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#demo .content ul a {
    text-decoration: none;
    padding: 0;
}

#demo .content li:hover {
    background: #f8f9fa;
}

#demo .content li {
    list-style: none;
    text-align: left;
    color: #999;
    font-size: 16px;
    line-height: 30px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //header */

/* banner */
.main-banner {
    background: url(../images/bg1.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    min-height: 800px;
    z-index: 0;
    overflow: hidden;
}

.img-banner-w3 {
    position: absolute;
    right: 186px;
    top: 67px;
    z-index: 0;
}

.style-banner {
    padding-top: 12em;
    max-width: 640px;
}

.style-banner h3 {
    font-size: 6em;
    line-height: 1.3;
    position: relative;
    text-shadow: 8px 5px 3px rgba(0, 0, 0, 0.31);
    font-family: 'Great Vibes', cursive;
}

.style-banner h3:after {
    content: "";
    background: rgba(255, 255, 255, 0.38);
    width: 170px;
    height: 1px;
    position: absolute;
    bottom: -13px;
    left: 0;
}

.style-banner h3 span {
    display: block;
}

.style-banner p {
    font-size: 16px;
    max-width: 570px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

.button-style {
    padding: 12px 25px;
    border: none;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
}

.button-style:hover {
    opacity: .9;
    color: #fff;
}

/* background bubbles */
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.07);
    bottom: -160px;
    -webkit-animation: square 25s infinite;
    animation: square 25s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
    left: 10%;
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 17s;
    animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    -webkit-animation-duration: 22s;
    animation-duration: 22s;
    background-color: rgba(255, 255, 255, 0.07);
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
}

.bg-bubbles li:nth-child(6) {
    left: 80%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 10px;
    height: 10px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s;
    background-color: rgba(255, 255, 255, 0.07);
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 160px;
    height: 160px;
    -webkit-animation-delay: 11s;
    animation-delay: 11s;
}

@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
        transform: translateY(-700px) rotate(600deg);
    }
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
        transform: translateY(-700px) rotate(600deg);
    }
}

/* //background bubbles */
/* //banner */

/* photo graphy */
.team-w3ls-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.box20 {
    position: relative;
    overflow: hidden;
}

.box20:after,
.box20:before {
    position: absolute;
    content: ""
}

.box20:before {
    width: 90%;
    height: 220%;
    background: rgba(89, 5, 253, 0.47);
    top: -68%;
    left: -100%;
    z-index: 1;
    transform: rotate(21deg);
    transform-origin: center top 0;
    transition: all .5s ease 0s;
}

.box20:hover:before {
    left: 10%
}

.box20 .box-content,
.box20 .icon {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    left: 0;
    z-index: 2;
    transition: all 1.1s ease 0s
}

.box20:hover:after {
    bottom: -70%
}

.box20 img {
    width: 100%;
    height: auto
}

.box20 .box-content {
    top: -100%;
    color: #fff
}

.box20:hover .box-content {
    top: 60px
}

.box20 .title {
    font-size: 30px;
    margin: 0;
    color: #fff;
    font-weight: bold;
}

.box20 .icon li a,
.box20 .post {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1px;
}

.box20 .post {
    margin-top: 5px
}

/* //photo graphy */

/* welcome */
.what-w3ls {
    padding: 6em 0 7em;
    position: relative;
    margin: 8em 0 10em;
    border-radius: 400px 0px 0px 300px;
    -webkit-border-radius: 400px 0px 0px 300px;
    -o-border-radius: 400px 0px 0px 300px;
    -ms-border-radius: 400px 0px 0px 300px;
    -moz-border-radius: 400px 0px 0px 300px;
    background: #fd0017;
}

.ab-w3-img {
    position: absolute;
    top: -6.5em;
    left: 0;
    z-index: 0;
}

/* //welcome */

/* testimonials */
.events-w3 {
    background: #f5f5f5;
}

.events-w3 .testi-w3ls-content {
    box-shadow: 3px 2px 18px 2px rgba(20, 20, 21, 0.14);
    -webkit-box-shadow: 3px 2px 18px 2px rgba(20, 20, 21, 0.14);
    -moz-box-shadow: 3px 2px 18px 2px rgba(20, 20, 21, 0.14);
}

p.sub-test-w3ls {
    color: #212121;
    font-size: 17px;
}

.w3_testi_grid p {
    font-size: 14px;
}

h3.title-w3 {
    font-size: 44px;
    color: #0042de;
}

h3.title-w3 span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #fd041b;
    letter-spacing: 2px;
    margin-top: 5px;
}

.event-lins p span {
    color: #0042de;
    margin-right: 8px;
}

.testi-w3ls-content h4 a {
    color: #fd041b;
    font-size: 26px;
}

/* //testimonials */

/* slides images */
.slide-imaes {
    background-image: url(../images/bg2.jpg);
    background-repeat: repeat-x;
    animation: slideleft 20000s infinite linear;
    -webkit-animation: slideleft 20000s infinite linear;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 420px;
}

@keyframes slideleft {
    from {
        background-position: 0%;
    }

    to {
        background-position: 90000%;
    }
}

@-webkit-keyframes slideleft {
    from {
        background-position: 0%;
    }

    to {
        background-position: 90000%;
    }
}

/* //slides images */

/* footer */
footer {
    background: #fd0017;
}

/* newsletter */
h3.tittle,
h2.tittle {
    font-size: 36px;
    letter-spacing: 1px;
    position: relative;
}

h3.tittle:before,
h2.tittle:before {
    content: "";
    background: rgba(255, 255, 255, 0.6);
    width: 100px;
    height: 1px;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.n-right-w3ls .form-control {
    background: #fff;
    border: none;
    padding: 12px 15px;
    letter-spacing: 1px;
    font-size: 15px;
}

.n-right-w3ls button {
    background: #000;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 13px 25px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    width: 100%;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

/* //newsletter */

/* copyright */
p.copy-right-grids {
    font-size: 15px;
    color: #eee;
}

p.copy-right-grids a {
    color: #fff;
    font-weight: 600;
}

/* //copyright */

/* social-icons */
.w3social-icons ul li {
    display: inline-block;
}

.w3social-icons ul li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: inline-block;
    margin: 0 3px;
}

.w3social-icons ul li a span {
    color: #fff;
    font-size: 13px;
    line-height: 36px;
}

/* //social-icons */

/* footer nav */
ul.footer-nav-wthree li {
    display: inline-block;
}

ul.footer-nav-wthree li a {
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
    margin: 0 12px;
    display: block;
}

/* //footer nav */
/* //footer */

/* inner pages */
.main-banner-2 {
    background: url(../images/banner3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 350px;
}

/* page details */
.breadcrumb-w3ls {
    background: #e9ecef;
    box-shadow: 2px 3px 12px 1px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 2px 3px 12px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 3px 12px 1px rgba(0, 0, 0, 0.15);
}

.breadcrumb li a {
    color: #fd041b;
    font-weight: bold;
}

.breadcrumb li {
    letter-spacing: 1px;
    color: #000;
    font-size: 15px;
}

/* //page details */

/* about page */
/* about */
h6.subheading-w3ls {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(41, 40, 40, 0.25);
}

.wthree-bottom {
    max-width: 400px;
}

/* //about */

/* team */
.team-grids {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-grids h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.social-icons-section a {
    background: #fff;
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
}

.social-icons-section a span {
    color: #fd041b;
    font-size: 16px;
    line-height: 32px;
}

.social-icons-section a:hover {
    opacity: .8;
}

.team-info {
    position: absolute;
    bottom: -227px;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #fff;
    padding: 26px 0;
    -webkit-transition: .5s all;
    transition: .5s all;
    -moz-transition: .5s all;
    width: 92%;
    text-align: center;
}

.team-grids:hover div.team-info {
    bottom: 0;
}

.caption {
    padding: 0px;
}

/* team responsive */
@media(max-width:1080px) {
    .team-info {
        width: 90.5%;
    }
}

@media(max-width:991px) {
    .team-info {
        width: 93%;
    }

    .team-grids {
        padding: 0 .5em;
    }

    .team-grids h4 {
        font-size: 18px;
    }

    .team-info {
        padding: 20px 0;
    }
}

@media(max-width:736px) {
    .team-info {
        width: 65%;
        left: 95px;
    }
}

@media(max-width:480px) {
    .team-info {
        width: 76%;
        left: 56px;
    }
}

@media(max-width:440px) {
    .team-info {
        width: 83%;
        left: 36px;
    }
}

@media(max-width:414px) {
    .team-info {
        width: 88%;
        left: 24px;
    }
}

@media(max-width:384px) {
    .team-info {
        width: 92%;
        left: 14px;
    }

    .team-grids {
        padding: 0 1em;
    }
}

@media(max-width:320px) {
    .team-info {
        width: 90%;
        left: 15px;
    }
}

/* //team responsive */
/* //team */
/* //about page */

/* contact page */
/* contact form */
.contact-us1-bottom input[type="text"],
.contact-us1-bottom input[type="email"],
.contact-us1-bottom textarea {
    border: 1px solid #b5b3b3;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    outline: none;
    padding: 10px;
    font-size: 15px;
}

.contact-us1-bottom textarea {
    min-height: 150px;
    resize: none;
}

.contact-us1-bottom button {
    background: #fd041b;
    color: #fff;
    outline: none;
    padding: 12px 50px;
    font-size: 15px;
    letter-spacing: 1px;
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
}

/* //contact form */
/* contact address */
.home-radio-clock ul li {
    color: #777;
    font-size: 15px;
    letter-spacing: 1px;
}

.home-radio-clock ul li i {
    font-size: 18px;
    color: #0042de;
}

.home-radio-clock-right ul li span {
    display: block;
}

/* //contact address */
/* map */
.map iframe {
    width: 100%;
    min-height: 400px;
    display: block;
}

/* //map */
/* //contact page */

/* gallery page */
.gallery {
    background: url(../images/gallery.jpg) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 789px;
}

.gal-img img {
    padding: 10px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.gal-img:hover.gal-img img {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* popup */
.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    max-width: 520px;
    position: relative;
    margin: 8em auto;
    padding: 3em 2em 2em;
}

.popup img {
    box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
    -webkit-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
    -moz-box-shadow: 0px 14px 23px 0 rgba(56, 56, 56, 0.23);
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    opacity: 1;
}

.popup .close:hover {
    color: #fd041b;
}

/* //popup */
/* //gallery page */

/* responsive */
@media(max-width: 1440px) {
    .img-banner-w3 {
        right: 60px;
    }

    .ab-w3-img {
        top: -8em;
    }

    .style-banner p {
        font-size: 16px;
    }

    .style-banner h3 {
        font-size: 5em;
    }
}

@media(max-width: 1366px) {

    .button-style {
        font-size: 13px;
    }

    .style-banner p {
        font-size: 15px;
    }

    .img-banner-w3 {
        right: 10px;
    }

    .img-banner-w3 img {
        width: 90%;
    }

    .ab-w3-img {
        top: -3em;
    }

    .ab-w3-img img {
        width: 90%;
    }

    .main-banner-2 {
        min-height: 300px;
    }
}

@media(max-width: 1280px) {
    .main-banner-2 {
        min-height: 280px;
    }
}

@media(max-width: 1080px) {
    .main-banner {
        min-height: 690px;
    }

    .style-banner {
        padding-top: 11em;
    }

    h3.title-w3 {
        font-size: 43px;
    }

    .img-banner-w3 img {
        width: 80%;
    }

    .img-banner-w3 {
        right: 10px;
        text-align: right;
    }

    .lead {
        font-size: 1rem;
    }

    p {
        font-size: 15px;
    }

    .ab-w3-img {
        top: -1em;
    }

    .ab-w3-img img {
        width: 71%;
    }

    .what-w3ls {
        padding: 4em 0 5em;
        margin: 2em 0 7em;
    }

    p.sub-test-w3ls {
        font-size: 16px;
    }

    ul.footer-nav-wthree li a {
        letter-spacing: 1px;
        margin: 0 10px;
    }

    .testi-w3ls-content h4 a {
        font-size: 24px;
    }

    p.sub-test-w3ls {
        font-size: 15px;
    }

    h3.tittle,
    h2.tittle {
        font-size: 32px;
    }

    .box20 .title {
        font-size: 24px;
    }

    .box20 .icon li a,
    .box20 .post {
        font-size: 13px;
    }

    .style-banner h3 {
        font-size: 4.5em;
    }
}

@media(max-width: 1050px) {
    .style-banner p {
        font-size: 14px;
    }

    .button-style {
        padding: 11px 20px;
    }

    .style-banner p {
        max-width: 500px;
    }
}

@media(max-width: 1024px) {
    .map iframe {
        min-height: 350px;
    }

    .ab-w3-img img {
        width: 68%;
    }

    .what-w3ls {
        margin: 2em 0 5em;
    }
}

@media(max-width: 991px) {
    .style-banner {
        padding-top: 4.5em;
    }

    .style-banner {
        padding-top: 9.5em;
    }

    .box20 .title {
        font-size: 28px;
    }

    .wthree-bottom {
        max-width: inherit;
    }

    .style-banner {
        max-width: 500px;
    }

    .img-banner-w3 img {
        width: 70%;
    }

    h3.title-w3 {
        font-size: 36px;
    }

    h3.tittle,
    h2.tittle {
        font-size: 32px;
    }

    .ab-w3-img {
        text-align: center;
        position: static;
    }

    .ab-w3-img img {
        width: 54%;
    }

    .what-w3ls {
        margin: 0;
        padding: 4em 0;
        border-radius: 220px 0px 0px 400px;
        -webkit-border-radius: 220px 0px 0px 400px;
        -o-border-radius: 220px 0px 0px 400px;
        -ms-border-radius: 220px 0px 0px 400px;
        -moz-border-radius: 220px 0px 0px 400px;
    }

    .main-banner {
        min-height: 650px;
    }

    .style-banner h3 {
        font-size: 4em;
    }
}

@media(max-width: 900px) {
    .main-banner-2 {
        min-height: 200px;
    }

    .main-banner {
        min-height: 600px;
    }

    .style-banner {
        padding-top: 11em;
    }

    .style-banner p {
        max-width: 410px;
        font-size: 13px;
    }

    .style-banner {
        padding-top: 9em;
    }
}

@media(max-width: 800px) {
    .map iframe {
        min-height: 320px;
    }

    .style-banner {
        max-width: 441px;
    }

    .ab-w3-img img {
        width: 60%;
    }

    .slide-imaes {
        min-height: 400px;
    }

    .what-w3ls {
        border-radius: 120px 0px 0px 400px;
        -webkit-border-radius: 120px 0px 0px 400px;
        -o-border-radius: 120px 0px 0px 400px;
        -ms-border-radius: 120px 0px 0px 400px;
        -moz-border-radius: 120px 0px 0px 400px;
    }

    .style-banner p {
        max-width: 353px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

@media(max-width: 768px) {
    .img-banner-w3 img {
        width: 60%;
    }

    .main-banner {
        min-height: 560px;
    }

    .style-banner {
        padding-top: 9.5em;
    }

    .box20 .title {
        font-size: 26px;
    }

    .style-banner h3 {
        font-size: 3.5em;
    }

    .style-banner {
        padding-top: 8.5em;
    }

    .popup {
        margin: 1.5em auto;
    }
}

@media(max-width: 736px) {
    p.sub-test-w3ls {
        font-size: 15px;
    }

    .box20 .title {
        font-size: 25px;
    }

    .box20 .icon li a,
    .box20 .post {
        font-size: 13px;
    }

    .box20:hover .box-content {
        top: 40px;
    }

    h3.title-w3 {
        font-size: 36px;
    }

    h6.subheading-w3ls {
        font-size: 26px;
    }

    p {
        font-size: 15px;
    }

    .style-banner p {
        font-size: 13px;
    }

    .button-style {
        font-size: 12px;
    }

    .style-banner {
        max-width: 380px;
    }

    .img-banner-w3 {
        right: 0;
    }

    h3.title-w3 {
        font-size: 32px;
    }

    h3.title-w3 span {
        font-size: 14px;
    }

    .what-w3ls {
        border-radius: 200px 0px 0px 300px;
        -webkit-border-radius: 200px 0px 0px 300px;
        -o-border-radius: 200px 0px 0px 300px;
        -ms-border-radius: 200px 0px 0px 300px;
        -moz-border-radius: 200px 0px 0px 300px;
    }

    .box20 .title {
        font-size: 20px;
    }

    .box20 .icon li a,
    .box20 .post {
        font-size: 11px;
    }

    #logo a span {
        font-size: 24px;
        
    }

    .style-banner p {
        max-width: 275px;
    }

    .style-banner {
        padding-top: 8em;
    }
}

@media(max-width: 667px) {
    .main-banner {
        min-height: 520px;
    }

    .style-banner {
        padding-top: 7em;
    }

    .style-banner h3 {
        font-size: 3.2em;
    }

    .img-banner-w3 img {
        width: 56%;
    }

    .ab-w3-img img {
        width: 70%;
    }

    .slide-imaes {
        min-height: 330px;
    }

    .what-w3ls {
        border-radius: 150px 0px 0px 220px;
        -webkit-border-radius: 150px 0px 0px 220px;
        -o-border-radius: 150px 0px 0px 220px;
        -ms-border-radius: 150px 0px 0px 220px;
        -moz-border-radius: 150px 0px 0px 220px;
    }

    .style-banner h3 {
        font-size: 3.2em;
    }
}

@media(max-width: 640px) {}

@media(max-width: 600px) {
    p.copy-right-grids {
        font-size: 13px;
    }

    .style-banner p {
        max-width: 242px;
    }

    .style-banner {
        max-width: 354px;
    }

    .what-w3ls {
        border-radius: 100px 0px 0px 220px;
        -webkit-border-radius: 100px 0px 0px 220px;
        -o-border-radius: 100px 0px 0px 220px;
        -ms-border-radius: 100px 0px 0px 220px;
        -moz-border-radius: 100px 0px 0px 220px;
    }

    .style-banner h3 {
        font-size: 3em;
    }

    .img-banner-w3 {
        top: 109px;
    }
}

@media(max-width: 568px) {
    .box20 {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-banner-2 {
        min-height: 180px;
    }

    h3.tittle,
    h2.tittle {
        font-size: 28px;
    }

    .ab-w3-img img {
        width: 80%;
    }

    .box20 .icon li a,
    .box20 .post {
        font-size: 11px;
    }

    .box20 .title {
        font-size: 24px;
    }

    .box20 .icon li a,
    .box20 .post {
        font-size: 12px;
    }

    .img-banner-w3 img {
        width: 95%;
    }

    .img-banner-w3 {
        position: static;
    }

    .style-banner {
        max-width: 100%;
    }

    .style-banner p {
        max-width: 100%;
        letter-spacing: 2px;
    }

    .button-style {
        font-size: 11px;
        padding: 12px 15px;
    }

    .main-banner {
        min-height: 100%;
        padding-bottom: 3em;
    }
}

@media(max-width: 480px) {
    .breadcrumb li {
        font-size: 14px;
    }

    ol.breadcrumb {
        padding: 10px 0;
    }

    .home-radio-clock ul li {
        font-size: 14px;
    }

    .style-banner p {
        font-size: 12px;
    }

    .main-banner {
        min-height: 440px;
    }

    .testi-w3ls-content h4 a {
        font-size: 22px;
    }

    #logo a {
        font-size: 30px;
    }

    #logo a span {
        font-size: 22px;
    }

    .popup {
        margin: 1.5em 1em;
    }
}

@media(max-width: 440px) {

    h3.tittle,
    h2.tittle {
        font-size: 25px;
    }

    .lead {
        font-size: .9rem;
    }

    .w3_testi_grid h5 {
        font-size: 18px;
    }

    .w3_testi_grid p {
        font-size: 12px;
    }

    .testi-img-res {
        padding: 0 .5em;
    }

    p.sub-test-w3ls {
        font-size: 15px;
    }

    .events-w3 .row.mt-5 {
        margin-top: 2em !important;
    }

    h3.title-w3 {
        font-size: 28px;
    }

    h6.subheading-w3ls {
        font-size: 23px;
    }

    p {
        font-size: 14px;
    }

    .ab-w3-img img {
        width: 90%;
    }

    p.sub-test-w3ls {
        font-size: 14px;
    }
}

@media(max-width: 414px) {

    input.form-control {
        font-size: 14px;
    }

    .newsletter_right_w3w3pvt-lau {
        padding-bottom: 1em !important;
    }

    ul.footer-nav-wthree li a {
        font-size: 14px;
    }

    .w3social-icons ul li a {
        font-size: 15px;
        width: 38px;
        height: 38px;
    }

    p {
        font-size: 14px;
    }

    .contact-us1-bottom input[type="text"],
    .contact-us1-bottom input[type="email"],
    .contact-us1-bottom textarea {
        font-size: 13px;
    }

    .map iframe {
        min-height: 300px;
    }

    .d-flex.event-lins p {
        font-size: 13px;
    }

    .popup {
        margin: 2.5em 1em;
        padding: 2.5em 1.5em 1.5em;
    }
}

@media(max-width: 384px) {

    h3.tittle,
    h2.tittle {
        font-size: 23px;
    }

    .events-w3 .bg-white.rounded {
        padding: 2em !important;
    }

    p.sub-test-w3ls {
        font-size: 14px;
    }

    h3.title-w3 {
        font-size: 30px;
    }

    h3.title-w3 {
        margin-bottom: 1em !important;
    }

    h3.title-w3 {
        font-size: 25px;
    }

    .what-w3ls {
        border-radius: 80px 0px 0px 120px;
        -webkit-border-radius: 80px 0px 0px 120px;
        -o-border-radius: 80px 0px 0px 120px;
        -ms-border-radius: 80px 0px 0px 120px;
        -moz-border-radius: 80px 0px 0px 120px;
    }

    h3.title-w3 span {
        font-size: 12px;
    }
}

@media(max-width: 375px) {
    ul.footer-nav-wthree li {
        margin-right: .8em !important;
    }

    p.copy-right-grids {
        letter-spacing: 1px;
    }

    .breadcrumb li {
        font-size: 13px;
    }

    ul.footer-nav-wthree li a {
        margin: 0 2px;
    }

    h3.tittle,
    h2.tittle {
        font-size: 22px;
    }
}

@media(max-width: 320px) {

    .testi-img-res {
        padding: 0;
    }

    .w3_testi_grid h5 {
        font-size: 16px;
    }

    .w3_testi_grid p {
        font-size: 11px;
    }

    p.sub-test-w3ls {
        font-size: 13px;
    }

    input.form-control {
        font-size: 13px;
    }

    .n-right-w3ls button,
    .n-right-w3ls .form-control {
        font-size: 14px;
    }

    h6.subheading-w3ls {
        font-size: 20px;
    }

    p {
        font-size: 13px;
    }

    .home-radio-clock .col-4 {
        padding-right: 0;
    }

    .home-radio-clock ul li {
        font-size: 13px;
    }

    .home-radio-clock ul li i {
        font-size: 15px;
    }

    .map iframe {
        min-height: 250px;
    }

    .style-banner h3:after {
        width: 60px;
        height: 2px;
    }

    .style-banner {
        padding-top: 6em;
    }

    .button-style {
        font-size: 11px;
        padding: 10px 16px;
    }

    .slide-imaes {
        min-height: 300px;
    }

    .testi-w3ls-content h4 a {
        font-size: 19px;
    }

    .ab-w3-img img {
        width: 100%;
    }

    .d-flex.event-lins p {
        font-size: 12px;
    }

    .box20 .title {
        font-size: 22px;
    }

    h3.title-w3 span {
        font-size: 10px;
    }

    #logo a {
        font-size: 26px;
    }

    .toggle {
        padding: 6px 9px;
        font-size: 14px;
    }

    .main-banner {
        padding-bottom: 2em;
    }
}

/* //responsive */