/*================================================
 [  Table of contents  ]
 ================================================

#1.  Fonts
#2.  Global css
#3.  Common Style (Pagination, Main Titles, Preloader, Back to top)
#4.  Header
     4.1 Header style 1
     4.2 Header style 2
#5.  Home Start Page
     5.1 Start Home Demo1
     5.1 Start Home Demo2
     5.3 Start Home Demo3
     5.4 Start Home Demo4
     5.5 Start Home Demo5
     5.6 Start Home Demo6
     5.7 Start Home Demo7
#6.  Features
     6.1 Features style-1
     6.2 Features style-2
     6.3 Features style-3
     6.4 Features style-4
#7. Blog
#8. Contact
#9. Responsive
 ======================================
 [ End table content ]
 ======================================*/

/* ============================================================================= 
#1. Fonts
============================================================================= */

/******  Google fonts ******/
@import url('https://fonts.googleapis.com/css?family=Rakkas');
@import url('https://fonts.googleapis.com/css?family=Jomhuria');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700);


/* ============================================================================= 
#2. Global css
============================================================================= */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Rakkas', sans-serif;
    font-size: 21px;
    direction: rtl;
    text-align: right;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    font-weight: 600;
    font-size: 35px;
    color: #333;
}
a{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    outline: none;
    color: #bb3571;
}
a:hover{
    text-decoration: none;
}
li {
    list-style: none;
}
p {
    line-height: 1.9;
    color: #77838f;;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
ol {
    margin: 0;
    padding: 0;
}
/* ============================================================================= 
#3. Common Style (Pagination, Main Titles)
============================================================================= */
.section-block{
    padding: 0px 0;
    background-color: #ededed;
}
.section-header{
    margin-bottom: 80px;
    text-align: center;
}
.section-header h2 {
    font-size: 34px;
    line-height: 48px;
    color: #263b5e;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.section-header p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.section-header-style2 h2{
    font-size: 30px;
    text-transform: capitalize;
}
.section-header-style2 p{
    font-size: 16px;    
}
/*------------- Page Preloader --------------*/
#preloader {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
    top: 0;
}
#preloader-circle {
    position:relative;
    width: 80px;
    height: 80px;
    top: 43%;
    margin: 0 auto;
}
#preloader-circle span {
    position:absolute;
    border: 8px solid #bb3571;
    border-top: 8px solid transparent;
    border-radius:999px;
}

#preloader-circle span:nth-child(1){
    width:80px;
    height:80px;
    animation: spin-1 2s infinite linear;
}
#preloader-circle span:nth-child(2){
    top: 20px;
    left: 20px;
    width:40px;
    height:40px;
    animation: spin-2 1s infinite linear;
}
@keyframes spin-1 {
    0% {transform: rotate(360deg); opacity: 1;}
    50% {transform: rotate(180deg); opacity: 0.5;}
    100% {transform: rotate(0deg); opacity: 1;}
}
@keyframes spin-2 {
    0% {transform: rotate(0deg); opacity: 0.5;}
    50% {transform: rotate(180deg); opacity: 1;}
    100% {transform: rotate(360deg); opacity: 0.5;}
}
/* ============================================================================= 
#6. Features
============================================================================= */
/************ 6.1 Features style-1 *******************/
.features-style1 {
    position: relative;
    padding-bottom: 0;
}
@-webkit-keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}

@keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}
.feature-block {
    margin-bottom: 30px;
    text-align: center;
    padding: 0px;
    border-radius: 10px;
}

.feature-block h3{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 8px;  
}
/* ============================================================================= 
#13. Blog
============================================================================= */
#blog {

}
.blog-item {
    margin: 35px 5px;
    border-radius: 0px;
}
.blog-article {
    position: relative;
    box-shadow: 0 10px 20px 0 rgba(0, 51, 204,0.1);
    border-radius: 0px;
    overflow: hidden;
}
.blog-articl.style-1{
    padding: 15px;
}
.article-img {
    overflow: hidden;
    position: relative;
}
.article-img img {
    height: auto;
    margin-bottom: 0;
    width: 100%;
    transform: scale(1);
    transition: transform 0.5s ease-in-out 0s;
    position: relative;
    border: 2px solid #bb3571;
    border-radius: 0px;
}
.article-img::after {
    /*background: rgba(0, 0, 0, 0.4);*/
    transition: all 0.5s ease-in-out;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
    border-radius: 15px;
}
/* ============================================================================= 
#14. Contact
============================================================================= */
#contact{
    position: relative;
    padding-right: 60px;
}
#contact .section-header-style2 {
    margin-bottom: 40px;
}
#contact .section-header-style2 h2 {
    font-size: 35px;
    font-weight: 500;
}
#contact .section-header-style2 p{
    font-size: 14px;
}
/*============ keyframes animation  =============*/
@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@-webkit-keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

@keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}
@-webkit-keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}

@keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}
.contact-form-block {
    background: #fff;
    position: relative;
    box-shadow: 0px 0px 29px 6px rgba(154, 161, 171, 0.18);
    -webkit-box-shadow: 0px 0px 29px 6px rgba(154, 161, 171, 0.18);
    padding: 60px 50px;
    margin: 0 60px;
    margin-top: 35px;
    border-radius: 30px;
}
.contact-block i{
    font-size: 35px;
}
.contact-block {
    margin-bottom: 25px;
}
.contact-block h4 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.contact-block-side {
    position: relative;
    padding-right: 70px;
}
.contact-block-side i{
    position: absolute;
    right: 0;
    top: -7px;
    background-color: #bb3571;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-block-side i:before{
    font-size: 45px;
    margin: 0;
}
.contact-block-side p{
    margin-bottom: 0
}
.contact-block-side p span {
    display: block;
    margin-bottom: 5px;
}
.contact-block-side p span:last-child{
    margin-bottom: 0;
}
/* ============================================================================= 
#23. Responsive
============================================================================= */
@media(max-width:768px) {
    .blog-item {
        margin: 20px 0;
    }
    .section-block {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 60px;
    }
    .blog-side {
        padding-right: 0;
        margin-top:30px;
    }
    .blog-details h1 {
        font-size: 26px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .img-box img {
        max-height: auto;
        margin-bottom: 25px;
        height: auto;
    }
    #logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        
    }   
}
@media(max-width: 980px) {
    #logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 390px;
    }    
}
@media(min-width: 980px) {
    #logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 508px;
    }    
}