<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {font-family: Helvetica; src: url('../fonts/HelveticaNeueW23forSKY-Reg.ttf');}
body{
    font-family: Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
ul {list-style: none;padding: 0;margin: 0;}
a {text-decoration: none !important;}
p {margin-bottom: 0;}
.clear {clear: both;}
/* -- Header -- */

header {
    padding: 10px 0;
    background: #17144c;
}
header.main {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    padding-bottom: 25px;
    background: rgba(23,20,76,0.2);
    background: linear-gradient(rgba(23,20,76,0.9),rgba(23,20,76,0));
}
header .logo {
    max-height: 80px;
}
header ul.socail {
    margin-top: 25px;
    text-align: right;
    padding-right: 25px;
}
header ul.socail li {
    display: inline-block;
    margin-left: 15px;
    font-size: 20px;
}
header ul.socail i {
    color: #fff;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
header ul.socail i:hover {
    color: #aaa;
}
@media (max-width:767px) {
    header .col-sm-3 {
        text-align: center;
        margin-bottom: 10px;
    }
    header ul.socail {
        margin-top: 0;
        text-align: center;
        padding: 0;
    }
    header ul.socail li {
        margin-left: 8px;
        margin-right: 8px;
    }
}

/* -- ./Header -- */

/* -- Search -- */

.search-area {
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(23,20,76,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.5) rotateY(90deg);
    transition: all .5s ease-in-out;
}
.search-area.open {
    transform: scale(1) rotateY(0);
}
.search-area .search {
    direction: rtl;
    width: 90%;
    margin: 0 5%;
    position: relative;
}
.search-area .search input {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 0;
    border-bottom: 2px solid #888;
    color: #fff;
    outline: none;
    transition: all .5s ease-in-out;
}
.search-area .search input:focus {
    border-color: #fff;
}
.search-area .search input::placeholder {
    color: #eee;
}
.search-area .search button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 2px;
    padding: 0 10px;
    border: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.search-area .close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* -- ./Search -- */

/* -- Main Menu -- */

.overlay-all {
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(23,20,76,0.5);
    display: none;
}
.main-menu {
    position: fixed;
    top: 0;
    right: -200px;
    bottom: 0;
    background: #17144c;
    width: 200px;
    z-index: 11;
    padding: 15px 25px;
    box-shadow: 0 0 5px rgba(23,20,76,0.5);
    transition: all .5s ease-in-out;
}
.main-menu.open {
    right: 0;
}
.main-menu li {
    margin-bottom: 15px;
}
.main-menu li a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: all .5s ease-in-out;
}
.main-menu li a:hover {
    color: #aaa;
}
.main-menu .close-btn {
    float: right;
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
    cursor: pointer;
}

/* -- ./Main Menu -- */

/* -- Main Slider -- */

.main-slider {
    height: 100vh;
    overflow: hidden;
}
.main-slider .flickity-viewport {
    height: 100vh !important;
}
.main-slider .item {
    width: 100%;
    height: 100%;
}
.main-slider .item img,
.main-slider .item iframe {
    height: 100vh;
    width: 100%;
}
.main-slider .item img {
    object-fit: cover;
}
.main-slider .item a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-slider .item i {
    position: absolute;
    font-size: 70px;
    color: #fff;
    transition: all .5s ease-in-out;
}
.main-slider .item:hover i {
    color: #d00;
}
.main-slider .flickity-prev-next-button {
    bottom: 0px;
    top: auto;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    background: transparent;
    outline: none;
    transition: all .5s ease-in-out;
}
.main-slider .flickity-prev-next-button:hover {
    border: 2px solid #17144c;
    box-shadow: 0 0 15px rgba(255, 255, 255, .7);
}
.main-slider .flickity-prev-next-button.previous {
    left: calc(50% - 50px);
}
.main-slider .flickity-prev-next-button.next {
    right: calc(50% - 50px);
}
.main-slider .flickity-prev-next-button .arrow {
    fill: #fff;
    transition: all .5s ease-in-out;
}
.main-slider .flickity-prev-next-button:hover .arrow {
    fill: #17144c;
}

/* -- ./Main Slider -- */

/* -- About Us -- */

.about-box {
    padding: 100px 0 50px;
    background: #f0f0eb;
}
.about-box .about-txt {
    direction: rtl;
    margin-top: 50px;
}
.about-box .about-txt h2 {
    color: #17144c;
}
.about-box .about-txt p {
    font-size: 16px;
    color: #999;
}
@media (max-width: 767px) {
    .about-box {
        padding: 25px 0;
    }
    .about-box .about-txt {
        margin: 0 0 25px;
    }
}

/* -- ./About Us -- */

/* -- Services -- */

.services-box {
    display: flex;
}
.services-box .sub-block {
    width: calc(100% / 6);
    height: 500px;
    overflow: hidden;
    position: relative;
}
.services-box .sub-block a{
color: white;
}
.services-box .sub-block a:hover{
color: gainsboro;
}
.services-box .sub-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-box .sub-block .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(0,0,0,0.4);
    transition: all .5s ease-in-out;
}
.services-box .sub-block:hover .overlay {
    background: rgba(0,0,0,0.1);
}
.services-box .sub-block .info {
    position: absolute;
    top: calc(50% + 50px);
    text-align: center;
    color: #fff;
    left: 0;
    right: 0;
    z-index: 6;
}
.services-box .sub-block .info i {
    font-size: 25px;
}
.services-box .sub-block:nth-child(1) .info p {
    padding: 5px 0;
    position: relative;
}
.services-box .sub-block:nth-child(1) .info p span {
    position: relative;
    z-index: 5;
}
.services-box .sub-block:nth-child(1) .info p:after {
    background: #d0063c;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
}
.services-box .sub-block:nth-child(2) .info:after {
    content: '';
    position: absolute;
    top: -15px;
    font-size: 50px;
    transform: rotate(-45deg);
    width: 100px;
    height: 100px;
    z-index: 3;
    right: calc(50% - 50px);
    border-top: 3px solid #d0063c;
    border-right: 3px solid #d0063c;
}
.services-box .sub-block:nth-child(2) .info:before {
    content: '';
    position: absolute;
    bottom: -25px;
    font-weight: bold;
    transform: rotate(45deg);
    width: 100px;
    height: 100px;
    z-index: 3;
    right: calc(50% - 50px);
    border-bottom: 3px solid #d0063c;
    border-right: 3px solid #d0063c;
}
.services-box .sub-block:nth-child(3) .info:after {
    border-left: 3px solid #d0063c;
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    bottom: 10px;
}
.services-box .sub-block:nth-child(3) .info:before {
    border-right: 3px solid #d0063c;
    position: absolute;
    content: '';
    right: 0;
    top: 10px;
    bottom: 10px;
}
.services-box .sub-block:nth-child(4) .info:after {
    content: '';
    position: absolute;
    right: 25px;
    top: 30px;
    font-weight: bold;
    transform: rotate(-50deg);
    width: 60px;
    height: 60px;
    z-index: 3;
    border-bottom: 3px solid #d0063c;
    border-right: 3px solid #d0063c;
}
.services-box .sub-block:nth-child(4) .info:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 30px;
    font-weight: bold;
    transform: rotate(140deg);
    width: 60px;
    height: 60px;
    z-index: 3;
    border-bottom: 3px solid #d0063c;
    border-right: 3px solid #d0063c;
}
.services-box .sub-block:nth-child(4) .info p {
    position: relative;
    display: inline-block;
}
.services-box .sub-block:nth-child(4) .info p::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    border-bottom: 2px solid #d0063c;
}
.services-box .sub-block:nth-child(5) .info i {
    width: 50%;
    padding-bottom: 5px;
    position: relative;
}
.services-box .sub-block:nth-child(5) .info i:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    border-bottom: 1px solid #d0063c;
}
.services-box .sub-block:nth-child(5) .info:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    content: '';
    border-bottom: 2px solid #d0063c;
}
.services-box .sub-block:nth-child(6) .info:after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    border: 3px solid #d0063c;
    border-right: 0;
    content: '';
}
.services-box .sub-block:nth-child(6) .info:before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    border: 3px solid #d0063c;
    border-left: 0;
    content: '';
}
.services-box .sub-block:nth-child(1):hover .info p:after {
    animation: block1 .5s ease-in-out;
}
@keyframes block1 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.services-box .sub-block:nth-child(2):hover .info:before {
    animation: block2-before .5s ease-in-out;
}
@keyframes block2-before {
    0% {
        bottom: 50%;
        opacity: 0;
    }
    100% {
        bottom: -25px;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(2):hover .info:after {
    animation: block2-after .5s ease-in-out;
}
@keyframes block2-after {
    0% {
        top: 50%;
        opacity: 0;
    }
    100% {
        top: -15px;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(3):hover .info:before {
    animation: block3-before .5s ease-in-out;
}
@keyframes block3-before {
    0% {
        right: 50%;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(3):hover .info:after {
    animation: block3-after .5s ease-in-out;
}
@keyframes block3-after {
    0% {
        left: 50%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(4):hover .info:before {
    animation: block4-before .5s ease-in-out;
}
@keyframes block4-before {
    0% {
        left: 50%;
        opacity: 0;
    }
    100% {
        left: 25px;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(4):hover .info:after {
    animation: block4-after .5s ease-in-out;
}
@keyframes block4-after {
    0% {
        right: 50%;
        opacity: 0;
    }
    100% {
        right: 25px;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(4):hover .info p::after {
    animation: block4-para .5s ease-in-out;
}
@keyframes block4-para {
    0% {
        bottom: -20px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(5):hover .info i:after {
    animation: block5-after .5s ease-in-out;
}
@keyframes block5-after {
    0% {
        bottom: -20px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(5):hover .info:after {
    animation: block5-before 1s ease-in-out;
}
@keyframes block5-before {
    0% {
        bottom: -30px;
        opacity: 0;
    }
    100% {
        bottom: -5px;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(6):hover .info:before {
    animation: block6-before .5s ease-in-out;
}
@keyframes block6-before {
    0% {
        right: 50%;
        opacity: 0;
    }
    100% {
        right: 0;
        opacity: 1;
    }
}
.services-box .sub-block:nth-child(6):hover .info:after {
    animation: block6-after .5s ease-in-out;
}
@keyframes block6-after {
    0% {
        left: 50%;
        opacity: 0;
    }
    100% {
        left: 0;
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .services-box {
        display: block;
    }
    .services-box .sub-block {
        width: 33.33%;
        float: left;
    }
}
@media (max-width: 767px) {
    .services-box .sub-block {
        width: 50%;
    }
}
@media (max-width: 450px) {
    .services-box .sub-block {
        width: 100%;
        float: none;
        height: 400px;
        margin-bottom: 15px;
    }
    .services-box .sub-block .info {
        top: 50%;
    }
}


/* -- ./Services -- */

/* -- Contact Area -- */

.contact-area {
    background: #d0063c;
    padding: 25px 0 40px;
    text-align: center;
    color: #fff;
}
.contact-area p {
    margin-bottom: 25px;
}
.contact-area a {
    padding: 5px 15px;
    border-radius: 30px;
    background: #fff;
    color: #d0063c;
    border: 2px solid #fff;
    font-size: 18px;
    transition: all .5s ease-in-out;
}
.contact-area a:hover {
    background: #d0063c;
    color: #fff;
}

/* -- ./Contact Area -- */

/* -- Clients -- */

.clients {
    margin-top: 75px;
    margin-bottom: 75px;
}
@media (min-width: 992px) {
    .clients {
        max-width: 800px;
    }
}
.clients h2 {
    text-align: center;
    margin-bottom: 50px;
}
.clients img {
    height: 110px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 10px;
}

/* -- ./Clients -- */

/* -- Footer -- */

footer {
    background: #17144c;
    padding: 25px 0 10px;
}
footer.fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
footer img {
    max-height: 100px;
}
footer li {
    display: inline-block;
    margin-right: 15px;
}
footer li a {
    color: #fff;
    transition: all .5s ease-in-out;
}
footer li a:hover {
    color: #aaa;
}
footer .site-map {
    margin-top: 40px;
}
footer ul.socail {
    position: absolute;
    right: 0;
    top: 40px;
    font-size: 18px;
}
@media (max-width: 1200px) {
    footer ul.socail {
        position: static;
    }
    footer .site-map {
        margin-top: 20px;
        margin-bottom: 5px;
    }
    footer li {
        margin-bottom: 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    footer .site-map,
    footer .socail {
        text-align: center;
    }
    footer img {
        margin: 0 auto;
    } 
}

/* -- ./Footer -- */


/* 
======
======
======
&lt;&lt; INNER PAGES &gt;&gt;
======
======
======
*/

/* -- Features -- */

.inner-page {
    padding-top: 25px;
    padding-bottom: 50px;
    direction: rtl;
}
.inner-page h2.inner-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}
.inner-page h2.inner-title:after {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #17144c;
    content: '';
    transform: rotate(45deg);
    bottom: -17px;
    right: calc(50% - 5px);
}
.inner-page h2.inner-title a {
    color: #17144c;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #ccc;
}
.inner-page h2.inner-title a:after {
    position: absolute;
    content: '';
    bottom: -1px;
    right: 50%;
    left: 50%;
    border-bottom: 1px solid #17144c;
    transition: all .5s ease-in-out;
}
.inner-page h2.inner-title a:hover:after {
    left: 0;
}
.inner-page h2.inner-title a:before {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 50%;
    right: 50%;
    border-bottom: 1px solid #17144c;
    transition: all .5s ease-in-out;
}
.inner-page h2.inner-title a:hover:before {
    right: 0;
}
.sub-feature {
    padding: 15px;
    border: 1px solid #e1e1e1;
    margin-top: 40px;
    position: relative;
    transition: all .5s ease-in-out;
}
.sub-feature:hover {
    border-color: #17144c;
    box-shadow: 0 0 5px rgba(23,20,76,0.5);
}
.sub-feature .number {
    position: absolute;
    top: -20px;
    right: 25px;
    background: #17144c;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-feature .number span {
    transform: rotate(-45deg);
    display: inline-block;
    color: #fff;
    font-size: 25px;
}
.sub-feature h2 {
    font-size: 20px;
    font-weight: bold;
    color: #17144c;
    margin-bottom: 15px;
}
.sub-feature p {
    margin-bottom: 15px;
    color: #777;
}
.sub-feature button {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    background: #17144c;
    color: #fff;
    border: 2px solid #17144c;
    border-top-right-radius: 15px;
    outline: none;
}

/* -- ./Features -- */

/* -- Impression -- */

.white-box {
    width: 80%;
    margin: 25px 10% 0;
    border: 1px solid #e1e1e1;
    padding: 25px 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.white-box img {
    width: 100px;
    height: 100px;
    float: left;
    box-shadow: 0 0 5px rgba(23,20,76,0.5);
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
.white-box p {
    line-height: 30px;
    font-size: 16px;
    color: #666;
}

/* -- ./Impression -- */

/* -- Blog -- */

.blog .col-xs-12 {
    float: right;
}
.blog .sub-block {
    background: #eee;
    padding-bottom: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 3px solid #888;
    position: relative;
}
.blog .sub-block:after {
    position: absolute;
    bottom: -3px;
    content: '';
    right: 0;
    left: 100%;
    border-bottom: 3px solid #17144c;
    transition: all .5s ease-in-out;
}
.blog .sub-block:hover:after {
    left: 0;
}
.blog .sub-block .img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog .sub-block .img-box i {
    position: absolute;
    z-index: 9;
    font-size: 40px;
    transition: all .5s ease-in-out;
    color: #fff;
}
.blog .sub-block:hover .img-box i {
    color: #d0063c;
}
.blog .sub-block img,
.blog .sub-block iframe {
    width: 100%;
    height: 100%;
}
.blog .sub-block img {
    object-fit: cover;
    transition: all 2s ease-in-out;
}
.blog .sub-block:hover img {
    transform: scale(1.2);
}
.blog .sub-block .date {
    padding: 5px;
    display: block;
    color: #888;
    font-size: 14px;
    text-align: left;
}
.blog .sub-block .date i {
    font-size: 18px;
}
.blog .sub-block p {
    padding: 0 10px;
    height: 40px;
    overflow: hidden;
    font-size: 16px;
    color: #444;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.blog .sub-block:hover p {
    color: #777;
}

.page-navigation {
    clear: both;
    display: block;
    padding: 25px 0;
    text-align: center;
}

.page-navigation a,
.page-navigation span {
    border: 1px solid #17144c;
    padding: 5px;
    margin-bottom: 15px;
    display: inline-block;
    color: #17144c;
    min-width: 30px;
    line-height: 1.5;
}

.page-navigation span:hover {
    cursor: not-allowed;
}

.page-navigation span,
.page-navigation a:hover {
    color: #fff;
    background: #17144c;
}

/* -- ./Blog -- */

/* -- Blog Details -- */

.blog-details {
    font-size: 16px;
}
.blog-details .col-xs-12 {
    float: right;
}
.blog-details .blog-box {
    border: 1px solid #e1e1e1;
    padding: 15px;
    box-shadow:  0 0 5px rgba(0,0,0,0.1);
}
.blog-details .blog-box h1 {
    font-size: 18px;
    color: #17144c;
    line-height: 1.5;
    margin: 10px;
    margin-bottom: 15px;
}
.blog-details .blog-box .img-box {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-details .blog-box .img-box i {
    font-size: 50px;
    position: absolute;
    z-index: 5;
    color: #fff;
    transition: all .5s ease-in-out;
}
.blog-details .blog-box .img-box:hover i {
    color: #d0063c;
}
.blog-details .blog-box .img-box p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0,0,0,0.4);
    color: #fff;
}
.blog-details .blog-box .img-box img,
.blog-details .blog-box .img-box iframe {
    width: 100%;
    max-height: 500px;
    min-height: 250px;
}
.blog-details .blog-box .img-box img {
    object-fit: cover;
}
.blog-details .share {
    margin-bottom: 15px;
}
.blog-details .share li {
    display: inline-block;
    margin-left: 10px;
}
.blog-details .share li span {
    font-weight: bold;
    font-size: 13px;
    color: #777;
    position: relative;
    top: -5px;
}
.blog-details .share li a {
    width: 25px;
    height: 25px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #444;
    transition: all .5s ease-in-out;
}
.blog-details .share li a:hover {
    background: transparent;
    color: #444;
}
.blog-details .share li.facebook a {
    background: #4867aa;
}
.blog-details .share li.facebook a:hover {
    color: #4867aa;
    background: transparent;
}
.blog-details .share li.twitter a {
    background: #1da1f2;
}
.blog-details .share li.twitter a:hover {
    color: #1da1f2;
    background: transparent;
}
.blog-details .share li.telegram a {
    background: #2fa7db;
}
.blog-details .share li.telegram a:hover {
    color: #2fa7db;
    background: transparent;
}
.blog-details .share li.whatsapp a {
    background: #33bc48;
}
.blog-details .share li.whatsapp a:hover {
    color: #33bc48;
    background: transparent;
}
.blog-details ul.info li {
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 1px solid #e1e1e1;
}
.blog-details ul.info li:last-child {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
}
.blog-details ul.info li i {
    font-size: 16px
}
.blog-details .blog-txt {
    line-height: 1.5;
    margin-bottom: 15px;
}
.blog-details .blog-txt img,
.blog-details .blog-txt iframe {
    width: 100%;
    max-height: 600px;
    min-height: 250px;
    margin: 15px 0;
}
.blog-details .blog-txt img {
    object-fit: cover;
    object-position: center;
}
.blog-details .tags {
    margin-bottom: 20px;
}
.blog-details .tags li {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 10px;
}
.blog-details .tags li a {
    padding: 5px 10px;
    background: #17144c;
    border: 2px solid #17144c;
    border-right: 5px solid #aaa;
    color: #fff;
    display: inline-block;
    transition: all .5s ease-in-out;
}
.blog-details .tags li a:hover {
    background: #fff;
    color: #17144c;
}
.blog-details .option-list li {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 15px;
}
.blog-details .option-list button,
.blog-details .option-list a {
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid #17144c;
    background: #17144c;
    color: #fff;
    border-radius: 15px;
    outline: none;
    transition: all .5s ease-in-out;
}
.blog-details .option-list button:hover,
.blog-details .option-list a:hover {
    box-shadow: 0 0 10px rgba(23,20,76,0.7);
}
.blog-details .related-blog {
    border: 1px solid #e1e1e1;
    padding: 15px;
    box-shadow:  0 0 5px rgba(0,0,0,0.1);
    margin-top: 25px;
}
.blog-details .related-blog h3 {
    margin: 0 0 15px;
}
.blog-details .related-blog h3 a {
    color: #17144c;
    font-size: 22px;
}
.blog-details .related-blog .sub-block {
    background: #eee;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 3px solid #888;
    position: relative;
}
.blog-details .related-blog .sub-block:after {
    position: absolute;
    bottom: -3px;
    content: '';
    right: 0;
    left: 100%;
    border-bottom: 3px solid #17144c;
    transition: all .5s ease-in-out;
}
.blog-details .related-blog .sub-block:hover:after {
    left: 0;
}
.blog-details .related-blog .sub-block .img-box {
    width: 100%;
    height: 170px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-details .related-blog .sub-block .img-box i {
    position: absolute;
    z-index: 9;
    font-size: 40px;
    transition: all .5s ease-in-out;
    color: #fff;
}
.blog-details .related-blog .sub-block:hover .img-box i {
    color: #d0063c;
}
.blog-details .related-blog .sub-block img,
.blog-details .related-blog .sub-block iframe {
    width: 100%;
    height: 100%;
}
.blog-details .related-blog .sub-block img {
    object-fit: cover;
    transition: all 2s ease-in-out;
}
.blog-details .related-blog .sub-block:hover img {
    transform: scale(1.2);
}
.blog-details .related-blog .sub-block .date {
    padding: 5px;
    display: block;
    color: #888;
    font-size: 14px;
    text-align: left;
}
.blog-details .related-blog .sub-block .date i {
    font-size: 18px;
}
.blog-details .related-blog .sub-block p {
    padding: 0 10px;
    height: 40px;
    overflow: hidden;
    font-size: 16px;
    color: #444;
    font-weight: bold;
    transition: all .5s ease-in-out;
}
.blog-details .related-blog .sub-block:hover p {
    color: #777;
}
.blog-details .lastest-blog {
    border: 1px solid #e1e1e1;
    padding: 15px;
    box-shadow:  0 0 5px rgba(0,0,0,0.1);
}
.blog-details .lastest-blog h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}
.blog-details .lastest-blog h3 a {
    font-size: 22px;
    color: #17144c;
}
.blog-details .lastest-blog .sub-block {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e1e1e1;
    position: relative;
}
.blog-details .lastest-blog .sub-block .img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-details .lastest-blog .sub-block .img-box i {
    position: absolute;
    color: #fff;
    font-size: 35px;
    z-index: 9;
    transition: all .5s ease-in-out;
}
.blog-details .lastest-blog .sub-block:hover .img-box i {
    color: #d0063c;
}
.blog-details .lastest-blog .sub-block img,
.blog-details .lastest-blog .sub-block iframe {
    width: 100%;
    height: 100%;
}
.blog-details .lastest-blog .sub-block img {
    object-fit: cover;
    object-position: center;
    transition: all 2s ease-in-out;
}
.blog-details .lastest-blog .sub-block:hover img {
    transform: scale(1.2);
}
.blog-details .lastest-blog .sub-block .date {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 5px;
    background: #17144c;
    color: #fff;
    font-size: 14px;
}
.blog-details .lastest-blog .sub-block .date:after {
    position: absolute;
    top: 0;
    left: -26px;
    border-style: solid;
    border-width: 0 26px 26px 0;
    border-color: transparent #17144c transparent transparent;
    content: '';
}
.blog-details .lastest-blog .sub-block .date i {
    font-size: 16px;
}
.blog-details .lastest-blog .sub-block p {
    margin-top: 10px;
}
.blog-details .lastest-blog .sub-block p a {
    color: #17144c;
}

@media (max-width: 767px) {
    .blog-details .blog-txt img, 
    .blog-details .blog-txt iframe {
        min-height: 200px;
    }
}

/* -- ./Blog Details -- */

/* -- Modal -- */

.modal {
    direction: rtl;
}
.modal-header .close {
    float: left;
}
.modal form input,
.modal form textarea,
.modal form select {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    padding: 10px;
    outline: none;
    transition: all .5s ease-in-out;
}
.modal form input:focus,
.modal form textarea:focus,
.modal form select:focus {
    border-color: #17144c;
}
.modal form textarea {
    height: 125px;
    resize: none;
}
.modal form button[type="submit"] {
    padding: 5px 10px;
    background: #17144c;
    border: 2px solid #17144c;
    margin-top: 5px;
    outline: none;
    color: #fff;
    transition: all .5s ease-in-out;
}
.modal form button[type="submit"]:hover {
    background: #fff;
    color: #17144c;
}


/* -- ./Modal -- */

/* -- Contact us -- */

#dle-content{
	padding: 20px 15%;
}

#dle-content img {
    max-width: 100%;
    width: auto;
}

#dle-content h3{
	display: none;
}

#dle-content input,
#dle-content textarea,
#dle-content select {
	outline: none;
	margin-bottom: 20px;
	width: 100%;
	padding: 10px;
	border: 1px solid #e1e1e1;
}

#dle-content textarea {
    height: 200px;
    resize: none;
}

#dle-content select :focus,
#dle-content input:focus,
#dle-content textarea:focus {
    border-color: #17144c;
}

#dle-content .c-capcha{
	text-align: center;
}

#dle-content .c-capcha input{
	width: 100px;
    display: block;
    margin: 5px auto 25px;
}

#dle-content button.btn{
	display: block;
	margin: 5px auto;
	outline: none;
	border: 1px solid #17144c;
	color: #fff;
    background: #17144c;
    transition: all 0.5s ease-in-out;
}

#dle-content button.btn:hover{
	background: #fff;
	color: #17144c;
}

.phone-email a{
	color: #333;
}

.addform .combo .combo_field {
    margin-top: 15px;
}

.form_submit .c-captcha {
    float: none !important;
    margin-bottom: 15px;
}

@media (max-width:767px) {

    #dle-content{
        padding: 15px;
    }
    .phone-email ul {
        margin-bottom: 15px;
        padding-bottom: 15px;
        text-align: center;
        border-bottom: 1px solid #e1e1e1;
    }
}

/* -- ./Contact us -- */

.event-page {
    text-align: center;
}

.event-page img,
.event-page iframe {
    object-fit: cover;
    overflow: hidden;
    width: 250px;
    height: 250px;
    display: inline-block;
    margin: 5px;
}
.event-page img {
    cursor: pointer;
}
.event-page br {
    display: none;
}

.popup-box {
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all .5s ease-in-out;
}

.popup-box.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.popup-box span {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.popup-box img {
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    height: auto;
    width: auto;
    object-fit: contain;
}</pre></body></html>