@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body::-webkit-scrollbar {
    width: 4px;
    background: #ddd;
    overflow-x: hidden;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: #2cb9e6;
    border-radius: 5px;
}
.header {
    transition: 0.5s all ease ;
}
.header.sticky {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9999999;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    transition: 0.5s all ease ;
}
.header .headerTop{}
.headerTop .headerUp{
    background: #2cb9e6;
}
.headerTop .headerUp p{
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.5px;
}
.headerTop .headerUp .tmenu{
    display: none;
}
.headerTop .headerUp .tmenu li a{
    color: #fff;
}
.headerTop .headerUp .today{
    background: #000;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.5px;
    padding: 5px 15px;
}
.goog-te-gadget img {

    width: auto;
}
.headerTop .headerDown{
    border-bottom: 1px solid #ddd;
    padding: 0px 0;
}
.headerTop .headerDown ul{
    gap: 20px;
}
.headerTop .headerDown ul li{}
.headerTop .headerDown ul li a{
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: 15px;
}
.headerTop .headerDown ul li a i{
    margin-right: 10px;
}
.headerTop .headerDown ul li a span{}
.headerTop .headerDown p{
    font-size: 13px;
    letter-spacing: 0.5px;
}
.headerTop .headerDown p span{}
.headerTop .headerDown p span b{}

.logoButton{
    padding: 35px 0 25px 0;
    transition: 0.5s all ease;
}
.header.sticky .logoButton{
    display: none;
    transition: 0.5s all ease;
}
.logoButton .logo{
    display: flex;
    justify-content: center;
}
.logoButton .logo a{
    color: #000;
}
.logoButton .logo a img{
    width: 450px;
}
.logoButton .logo h1{
    font-size: 25px;
    font-family: "Lato", sans-serif;
    margin-bottom: 5px;
}
.logoButton .logo h1 span{
    font-style: italic;
    font-weight: 400;
}
.logoButton .logo p{
    font-family: "Lato", sans-serif;
    font-weight: 13px;
    font-weight: 400;
}
.logoButton .search{
    position: absolute;
    bottom: -65px;
    right: 0;
    display: flex;
    align-items: center;
}
.logoButton .search ul{
    display: flex;
}
.logoButton .search ul li{
    border: 1px solid #ddd;
    border-left: none;
    display: grid;
    place-items: center;
    padding: 6px 15px;
    cursor: pointer;
}

.logoButton .search ul li:first-child{
    border-left: 1px solid #ddd;
}
.logoButton .search ul li:nth-child(3){
    border-left: 1px solid #ddd;
}
.logoButton .search ul li:last-child{
    padding: 3px 5px;
}
.logoButton .search a.ld{
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
    color: #000;
}
.logoButton .search li:hover{
    border: 1px solid #2cb9e6;
    background: #2cb9e6;
    color: #fff;
    transition: 0.5s;
}
/* .logoButton .search ul li:last-child:hover{
    border: 1px solid #ddd;
    background: #fff;
    transition: 0.5s;
} */
.logoButton .search li:hover a ,
.logoButton .search li:hover a i{
    color: #fff;
    transition: 0.5s;
}
.logoButton .search .ld h5{
    color: #ff1104;

}
.logoButton .search li:hover h5{
    color: #fff;
    transition: 0.5s;
}
.logoButton .search .ld p{
    font-size: 10px;
}
.logoButton .search i{
    font-size: 15px;
}
.logoButton .search a {
    display: inline-block;
    margin-top: 3px;
}
.logoButton .search i.icon-whatsapp{
    transition: 0.5s;
    font-size: 18px;

}
.logoButton .search li:hover{
    border: 1px solid #2cb9e6;
    background: #2cb9e6;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}


nav{
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
nav .dragging{}


nav ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
    /* width: 80%; */
    flex-wrap: wrap;
    cursor: pointer;
}
nav ul li{
    font-size: 14px;
    font-weight: 700;
	font-family: "Merriweather";
    position: relative;
    cursor: pointer;
}
nav ul li a{
    color: #000;
    transition: 0.5s;
    cursor: pointer;
}
nav ul li.active a,
nav ul li a:hover{
    color: #2cb9e6;
    transition: 0.5s;
}
nav ul li ul{
    position: absolute;
    background: #fff;
    padding: 10px 15px;
    width: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px #ddd;
    top: 32px;
    gap: 0;
    transform: rotateX(90deg);
    transform-origin: top;
    transition: 0.5s all ease;
    z-index: 9999999999999;
}
nav ul li ul.active{
    transition: 0.5s all ease;
    transform: rotateX(0deg);
    transform-origin: top;
    z-index: 9999999999999;
}
nav ul li:hover ul{
    transition: 0.5s all ease;
    transform: rotateX(0deg);
    transform-origin: top;
}
nav ul li ul li{
    text-align: left;
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 7px 0;
    cursor: pointer;
}
nav ul li ul li:last-child{
    border-bottom: none;
}
nav ul li ul li a{}


.news{
    padding: 10px 0;
}
.news p{
    background: #ff1104;
    padding: 10px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.news ul{
    width: 100%;
    height: 29px;
    padding: 4px 30px;
    background: #f1f1f1;
    overflow: hidden;
    position: relative;
}
.news ul li.hide{
    margin-bottom: 6px;
    padding: 4px 0;
    position: absolute;
    opacity: 0;
    font-size: 13px;
    margin-bottom: 15px;
    transition: 0.5s;
}
.news ul li.active{
    opacity: 1;
    margin-bottom: 0px;
    transition: 0.5s;
}
.news ul li a{
    color: #000;
}
.news ul li :hover{
    color: #2cb9e6;
}
.news .arrow{
    height: 29px;
    padding: 4px 30px;
    background: #f1f1f1;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 3px;
}
.news .arrow span{
    border: 1px solid #ddd;
    padding: 3px;
    font-size: 15px;
    cursor: pointer;
}




article {
    width: 65%;
}
.gp{
    gap: 4%;
}
.article .allArticle {
    display: flex;
    gap: 5%;
    flex-wrap: wrap;
}
.article .allArticle.home .postInfo{
    position: absolute;
    bottom: 0px;
    left: 0;
    background: linear-gradient(#00000000, #000000);
    width: calc(100% - 40px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    transition: 0.5s ease;
}
.article .allArticle .postImg{
    width: 100%;
}
.article .allArticle .postImg iframe{
    width: 100%;
    height: 400px;
}
.article .allArticle .postInfo h2 a{
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.article .allArticle .postInfo h4{
    font-size: 15px;
    font-weight: 400;
    margin: 15px 0 0 0;
    color: #fff;
}
.article .allArticle h4{
    font-size: 15px;
    font-weight: 400;
    margin: 15px 0 0 0;
}
aside {
    width: 28%;
}

aside h3 {
    font-size: 25px;
    line-height: 1.2em;
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
    color: #2e2e2e;
    margin-bottom: 15px;
}

aside h5.tag{
    margin-bottom: 15px;
}
aside h5.tag span{
    background: #2cb9e6;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding: 8px 15px;
    border-radius: 3px;
}
aside h2.title{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}
aside h4.date{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}
aside h4.date b{}
aside h4.date span{

}
aside p.des{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}
aside p.des i{}
aside .all {}

aside .all .sin {
    display: flex;
    margin-bottom: 20px;
}

aside .all .sin img {
    width: 120px;
    height: 95px;
    object-fit: cover;
}

aside .all .sin .info {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

aside .all .sin .info a h2 {
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    color: #2e2e2e;
}

aside .all .sin .info p {
    font-size: 12px;
    line-height: 2em;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
}

aside .all .sin .info p a {
    font-size: 10px;
    font-weight: normal;
    line-height: 1em;
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    background-color: #2cb9e6;
    padding: 5px 10px;
    display: inline-block;
}

aside .all .sin:nth-child(even) .info p a {
    background: #ff1104;
}

.postImg img {
    height: 400px;
    object-fit: cover;
}


.postInfo {
    margin-top: 15px;
}

.postInfo h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #002244;
}

.postInfo p {
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
    margin-bottom: 15px;
    text-align: justify;
}
.postInfo ul{
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}
.postInfo ul li {
    font-size: 14px;
    line-height: 24px;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
    margin-bottom: 5px;
    text-align: justify;
}

.redmr {
    font-size: 13px;
    font-weight: normal;
    line-height: 1em;
    letter-spacing: 3px;
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    background-color: #2cb9e6;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .content {
        max-width: 360px;
        flex-direction: column;
        gap: 0;
    }

    article {
        width: 100%;
    }

    .article .allArticle .sinArt {
        width: 100%;
    }

    aside {
        width: 100%;
        margin-top: 10px;

    }

    .postImg img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .postInfo h2 {
        font-size: 20px;
    }
    .postInfo p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    aside .all .sin .info a h2 {
        font-size: 11px;
        line-height: 16px;
    }
    aside .all .sin .info p {
        font-size: 10px;
        line-height: 15px;
    }
}





.latestNews{
    background: #fcfcfc;
    padding: 35px 0;
}
.latestNews h4,
.videos h4{
    font-size: 25px;
    margin-bottom: 25px;
}
.latestNews h4 span,
.videos h4 span{
    padding-bottom: 10px;
    border-bottom: 5px solid #2cb9e6;
}
.latestNews .left{
    width: 30%;

}
.latestNews .left .item {
    overflow: hidden;
    box-shadow: 0 0px 5px #ddd;
}

.latestNews .left .item .box {
    position: relative;
    cursor: pointer;
    transition: 0.5s ease;
    height: 480px;
}

.latestNews .left .item .box:hover img {
    transform: scale(1.1);
    transition: 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.latestNews .left .item .box .info {
    position: absolute;
    bottom: -6%;
    left: 0;
    background: linear-gradient(#00000000, #000000);
    width: calc(100% - 40px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    transition: 0.5s ease;
}

.latestNews .left .item .box .info:hover {
    bottom: 0%;
    transition: 0.5s ease;
}

.latestNews .left .item .box .info h5 a{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.latestNews .left .item .box .info p {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
    line-height: 20px;
}

.latestNews .left .item .box .info p.More {
    margin-bottom: 0px;
}


.latestNews .right{
    width: 67%;
}
.latestNews .right .all{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
}
.latestNews .all .sin {
    display: flex;
    margin-bottom: 15px;
    width: calc(49% - 20px);
    background: #fff;
    box-shadow: 0 0 5px #ddd;
    padding: 10px;
    border-radius: 3px;
}

.latestNews .all .sin img {
    width: 130px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.latestNews .all .sin .info {
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latestNews .all .sin .info a h2 {
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    color: #2e2e2e;
}

.latestNews .all .sin .info p {
    font-size: 12px;
    line-height: 2em;
    margin: 0px;
    padding: 0px;
    color: #5c5c5c;
}

.latestNews .all .sin .info p a {
    font-size: 10px;
    font-weight: normal;
    line-height: 1em;
    color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 10%);
    background-color: #2cb9e6;
    padding: 5px 10px;
    display: inline-block;
}

.latestNews .all .sin:nth-child(even) .info p a {
    background: #ff1104;
}







.videos{
    padding: 35px 0;
    background: #fcfcfc;
}
.videos .allvideos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5%;
}

.videos .allvideos .sinvideos {
    width: calc(22% - 16px);
    background: #fcfcfc;
    overflow: hidden;
    margin-bottom: 20px;
    /* box-shadow: 0 0 10px #ddd; */
    margin: 0 8px;
}
.videos .allvideos .sinvideos.ltNews{
    width: 30.5%;
}

.videos .allvideos .sinvideos .videosImg {
    width: 100%;
    height: 160px;
    position: relative;
}

.videos .allvideos .sinvideos .videosImg iframe {
    height: 100%!important;
    /* width: 100%!important; */
}

.videos .allvideos .sinvideos .videosImg img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.videos .allvideos .sinvideos .videosImg .icon span {
    margin-right: 10px;
}

.videos .allvideos .sinvideos .videosInfo {
    padding: 10px;
}

.videos .allvideos .sinvideos .videosInfo h6 {
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos .allvideos .sinvideos .videosInfo h6 img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.videos .allvideos .sinvideos .videosInfo h6 span.icons {
    margin-right: 10px;
}

.videos .allvideos .sinvideos .videosInfo h5 {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.videos .allvideos .sinvideos .videosInfo h5 a {
    color: #081640;
}

.videos .allvideos .sinvideos .videosInfo p {
    font-size: 14px;
    line-height: 20px;
    color: #818181;
    margin-bottom: 10px;
}

.videos .allvideos .sinvideos .videosInfo p a {
    color: #ff0000;
}


.pagination {
    justify-content: center;
    margin-bottom: 30px !important;
}

.pagination li {
    padding: 7px 15px;
    border: 1px solid #ddd;
}

.pagination li a {}

.pagination li.active {
    background: #2cb9e6;
}



.advertisment{
    background: #fff;
    padding: 35px 0;
}
.advertisment .allAddvertish{
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    row-gap: 20px;
}
.allAddvertish .sinAddvertish{
    width: 48%;
}
.allAddvertish .sinAddvertish .addvertishImg img{
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.allAddvertish .sinAddvertish .addvertishInfo{}
.allAddvertish .sinAddvertish .addvertishInfo p{
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    padding: 5px 0;
}
.allAddvertish .sinAddvertish .addvertishInfo p a{
    color: #000;
}
.allAddvertish .sinAddvertish .addvertishInfo h6{
    margin-top: 5px;
    font-size: 10px;
    font-weight: 500;
}
.allAddvertish .sinAddvertish .addvertishInfo h6 span{}
.allAddvertish .sinAddvertish .addvertishInfo h6 span b{}
.allAddvertish .sinAddvertish .addvertishInfo h6 a{
    color: #000;
    border: 1px solid #818181;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
}
.allAddvertish .sinAddvertish .addvertishInfo h6 a:hover{
    background: #2cb9e6;
    color: #fff;
    border: 1px solid #2cb9e6;
    transition: 0.5s;
}




/* footer start */
.footer{
    padding-top: 50px;
    background: #000000;
}
.footer .logo{
    width: 20%;
}
.footer .logo a{
    display: block;
}
.footer .logo img{}
.footer .pricing{}
.footer .pricing li{
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 15px;
}
.footer .pricing li a{
    color: #fff;
}
.footer .insider{}
.footer .insider h5{
    font-size: 15px;
    font-weight: 700;
    padding-bottom: 20px;
    color: #fff;
}
.footer .insider form{
    margin-bottom: 20px;
}
.footer .insider form input[type="email"]{
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border: none;
    box-shadow: 0px 0px 5px #2cb9e6;
}
.footer .insider form input[type="submit"]{
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border: none;
    background: #2cb9e6;
    color: #fff;
    cursor: pointer;
}
.footer .social{}
.footer .social ul{
    width: 50%;
}
.footer .social ul li{
    font-size: 25px;
}
.footer .social ul li a{
    color: #2cb9e6;
}
.footerBottom p{
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0px 0px 2px #fff;
    padding: 15px 0px;
    margin-top: 25px;
    border-top: 1px solid #3c3c3c;
}
/* Footer end */









.sintitle{
    background: #2cb9e6;
    padding: 40px 0;
}
.sintitle h1{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
.conlocHo{
    padding: 80px 0 0 0;
}
.conlocHo .sinCon{
    width: 27%;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 40px #ddd;
}
.conlocHo .sinCon h2{
    font-size: 22px;
    font-weight: 600;
    color: #111;
    text-align: center;
    margin-bottom: 15px;
}
.conlocHo .sinCon .phone b{
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.conlocHo .sinCon .phone a{
    color: #000;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 3%;
}
.conlocHo .sinCon .phone a{
    color: #000;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 3%;
}
.conlocHo .sinCon .phone.Location a{
    align-items: flex-start;
}

.conlocHo .sinCon .phone a .icon{
    margin-top: 5px;
    color: #fff;
    background: #2cb9e6;
    display: inline-block;
    padding: 12px;
    border-radius: 50%;
}
.conlocHo .sinCon .phone a .icon-phone{
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactUs {
    background: #fff;
    padding: 100px 0px 33px 0px;
    overflow: hidden;
    /* clip-path: polygon(0 0, 0 51%, 0 85%, 50% 100%, 100% 85%, 100% 48%, 100% 0, 50% 15%); */
}

.contactUs .contactData {
    display: flex;
    align-items: flex-end;
}

.contactUs .contactData .conLeft {
    margin-bottom: -40px;
    width: 43%;
}

.contactUs .contactData .conLeft img {}

.contactUs .contactData .conRight {
    width: 100%;
}

.contactUs .contactData .conRight h2 {
    font-size: 25px;
    color: #2cb9e6;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.contactUs .contactData .conRight h4 {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.contactUs .contactData .conRight p {
    font-size: 14px;
    line-height: 20px;
    color: #111;
    margin-bottom: 30px;
}

.contactUs .contactData .conRight form {
    background: #fff;
    padding: 30px;
    box-shadow: inset 0px 0px 20px #ddd;
}

.contactUs .contactData .conRight form .name {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contactUs .contactData .conRight form input[type="text"] {
    border: none;
    width: 45%;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    font-size: 14px;
    background: none;
}
.contactUs .contactData .conRight form input[type="text"]::placeholder ,
.contactUs .contactData .conRight form input[type="email"]::placeholder ,
.contactUs .contactData .conRight form textarea::placeholder {
    color: #000;
}

.contactUs .contactData .conRight form input[type="email"] {
    width: 45%;
    padding: 10px 12px;
    border: none;
    border: 1px solid #bdbdbd;
    font-size: 14px;
    background: none;
}

.contactUs .contactData .conRight form select {
    width: 49%;
    padding: 10px;
    border: none;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
}

.contactUs .contactData .conRight form label {
    font-size: 14px;
    color: #3c3c3c;
}


.contactUs .contactData .conRight form textarea {
    border: none;
    width: 97%;
    padding: 10px 12px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    background: none;
}

.contactUs .contactData .conRight form input[type="submit"] {
    display: inline-block;
    align-items: center;
    background: #2cb9e6;
    color: #fff;
    padding: 10px 100px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.contactUs .contactData .conRight form input[type="submit"]:hover {
    background: #2cb9e6;
    color: #fff;
}



.loc{
    padding: 50px 0;
}
/* .gp2{
    gap: 4%;
} */
.loc .left{
    /* width: calc(48% - 60px); */
    width: calc(100% - 60px);
    box-shadow: 0 0 5px #ddd;
    padding: 15px 30px 30px 30px;
}
.loc h4{
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    color: #2cb9e6;
}
.loc iframe{
    width: 100%;
}










.slick-next::before,
.slick-prev::before{
	color: #1D1D1F;
	font-size: 20px;
    position: absolute;
    top: 50%;
}
/* .logoSlider .item:hover{
	display: block;
	transition: all ease 0.3s;
	transform: scale(1.1);
} */


.slick-prev:before{
    content:'\e314';
    font-family: icomoon!important;
    background: #2cb9e6;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.slick-prev:before{content:'\e314';
    font-family: icomoon!important;
    background: #2cb9e6;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.slick-next{right:15px}[dir=rtl] 
.slick-next{right:auto;left:15px}
.slick-next:before{
    content:'\e315';
    font-family: icomoon!important;
    background: #2cb9e6;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;}[dir=rtl] 
.slick-next:before{content:'\f104';font-family: icomoon!important;
    background: #2cb9e6;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.article .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    bottom: 20px!important;
}
.article .slick-dots li button {
    padding: 4px;

}
.article .slick-dots li.slick-active button {
   background: #2cb9e6;

}


/* #google_translate_element{
    position: absolute;
    right: 0;
}
#google_translate_element{} */










.whatsapp{
    position: fixed;
    top: 92vh;
    left: 20px;
    cursor: pointer;
    place-content: center;
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: none;
}
.whatsapp p{
    display: flex;
    align-items: center;
}
.whatsapp p i{
    width: 40px;
    height: 40px;
    background: #49e670;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
    position: relative;
}
.whatsapp p i::after{
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #49e670;
}
.whatsapp p span{
    background: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px #000;
    color: #000;
    font-size: 13px;
}