@import url(../fonts/fontiran.css);
@import url(../icons/style.css);

/* Theme Colors */
:root{
   --background1 : #ffffff;
   --background2 : #F5F5F5;
   --background3 : #FAFAFA;
   --background4 : #F5F4F9;
   --text1 : #6D6D6D;
   --text2 : #4A4A4A;
   --text3 : #AFAFAF;
   --primary1 : #007C91;
   --primary2 : #40C1C7;
   --accent : #FFB300;
   --shadow1 : 0 2px 10px #ffb3007a;
   --shadow2 : 0 5px 10px #40c1c766;
   --shadow3 : 0 5px 10px #007c9147;
   --hover : #00000006;
}

/* General Styles */
html{
    scroll-behavior: smooth;
}
body{
    font-family: KalamehWebFaNum;
    direction: rtl;
    background: var(--background3);
    color: var(--text2);
}
ul , li , ol{
    margin: 0;
    padding: 0;
}
a , a:hover , a:active , a:visited{
    text-decoration: none;
    color: inherit;
}
h1,h2,h3,h4,h5,h6{
    margin: 0;
}
img{
    max-width: 100%;
    height: auto;
}
p{
    line-height: 1.8;
}
::selection{
    background: var(--primary2);
    color: var(--background1);
}
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #0000001f;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
}
.overlay.show{
    visibility: visible;
    opacity: 1;
}
.owl-carousel{
    direction: ltr;
}
.owl-carousel .item{
    direction: rtl;
}
input,input:focus,button,button:focus,select,select:focus{
    outline: none;
    border: none;
}
a.btn-ic.small {
    padding: 8px 20px 10px 50px;
    border-radius: 5px;
    font-weight: 400;
}
a.btn-ic.small i {
    top: 15px;
}
input,textarea,select {
    display: block;
    background: var(--background1);
    width: 100%;
    border: 2px solid #ECECEC;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 5%);
    border-radius: 5px;
    padding: 12px 18px;
    transition: 0.3s all;
    outline: none;
}
select{
    width: auto;
    padding: inherit;
}
input:focus,textarea:focus,select:focus{
    border: 2px solid var(--primary2);
    outline: none;
}
button {
    display: block;
    width: 100%;
    background: var(--primary2);
    color: var(--background2);
    border-radius: 5px;
    font-size: 18px;
    padding: 6px;
    margin-top: 15px;
    box-shadow: var(--shadow2);
    transition: 0.3s all;
}
button:hover{
    opacity: 0.8;
}
button:focus{
    background: var(--accent);
    box-shadow: var(--shadow1);
}
/* TopMenu Styles */
header {
    position: relative;
    z-index: 9999;
}
.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
 }
.top-menu{
    background: var(--background2);
}
.top-menu ul li{
    list-style: none;
    display: inline-block;
}
.right-menu > ul > li > a {
    display: block;
    font-weight: normal;
    font-size: 14px;
    padding: 10px;
    transition: 0.3s all;
    color: var(--text2);
    position: relative;
}
.left-menu ul li a {
    display: block;
    font-weight: normal;
    font-size: 14px;
    padding: 10px;
    transition: 0.3s all;
    color: var(--text2);
    position: relative;
}
.top-menu ul li:hover > a{
    background: #00000006;
}
.right-menu ul li{
    float: right;
    position: relative;
}
a.topmenu-btn {
    position: relative;
    margin-left: 15px;
}
a.topmenu-btn:after {
    content: " ";
    position: absolute;
    width: 1px;
    height: 25px;
    left: -9px;
    top: 7px;
    background: var(--text3);
    opacity: 0.4;
}
.left-menu ul li {
    float: left;
}
.left-menu a {
    min-width: 35px;
    height: 41px;
}
.left-menu i {
    position: absolute;
    right: 10px;
    font-size: 16px;
    top: 12px;
    color: var(--text3);
}
.right-menu > ul > li > ul {
    position: absolute;
    background: var(--primary2);
    width: 200px;
    z-index: 9;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
}
.right-menu > ul > li:hover > ul{
    visibility: visible;
    opacity: 1;
}
.right-menu > ul > li > ul:after {
    content: " ";
    width: 10px;
    height: 10px;
    background: var(--primary2);
    position: absolute;
    transform: rotate(45deg);
    top: -5px;
    right: 40px;
    transition: 0.3s all;
}
.right-menu > ul > li:hover > ul:after{
    right: 20px;
}
.right-menu > ul > li > ul li {
    display: block !important;
    color: #fff;
    width: 100%;
}
.right-menu > ul > li > ul li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
}

/* Main Header Styles */
.main-header {
    background: var(--background1);
    box-shadow: 0 8px 15px #0000000a;
    z-index: 2;
    position: inherit;
}
a.header-logo {
    display: flex;
    align-items: center;
    height: 80px;
    width: max-content;
    width: -moz-max-content;
}
a.header-logo h1{
    font-weight: 600;
    font-size: 25px;
    color: var(--text1);
    margin-right: 10px;
    transition: 0.4s all;
}
a.header-logo:hover h1{
    color: var(--primary2);
}
a.header-logo img {
    width: 45px;
    height: 45px;
}

/* Main Menu Styles */
.main-menu > ul > li {
    float: right;
    list-style: none;
}
.main-menu > ul > li > a {
    display: flex;
    height: 80px;
    align-items: center;
    position: relative;
    padding: 0 40px 0 10px;
    font-size: 18px;
    font-weight: normal;
    color: var(--text1);
}
.main-menu > ul > li > a > i {
    position: absolute;
    right: 10px;
    font-size: 20px;
    color: var(--text3);
}
.main-menu > ul > li > a:after {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    height: 2px;
    background: var(--text3);
    transition: 0.2s all;
}
.main-menu > ul > li:hover > a:after{
    right: 0;
    left: 0;
}
.main-menu > ul > li:hover > a > i{
    color: var(--primary2);
}

/* Header CTA Section */
.header-cta {
    width: max-content;
    width: -moz-max-content;
    display: flex;
    height: 80px;
    align-items: center;
    float: left;
    position: relative;
}
a.header-phone {
    color: var(--primary1);
    position: relative;
    transition: 0.3s all;
    margin-left: 10px;
}
a.header-phone:hover{
    color: var(--primary2);
}
a.header-phone i {
    position: absolute;
    left: 10px;
    font-size: 26px;
    top: -1px;
    animation: pulse 1.5s infinite;
    border-radius: 5px;
}
@keyframes pulse{
    0%{box-shadow: #40C1C7 0 0 0 0;}
    80%{box-shadow: #40C1C700 0 0 0 8px;}
}
a.header-phone:hover i{
    animation: none;
}
a.header-phone span {
    padding-left: 45px;
    font-weight: 800;
    font-size: 18px;
}
.header-account {
    position: relative;
    background: var(--accent);
    color: var(--background1);
    padding: 8px 38px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s all;
cursor: pointer;}
.header-account i {
    position: absolute;
    right: 14px;
    font-size: 16px;
    top: 11px;
}
.header-account:after {
    content: "\e90d";
    font-family: 'shabakieh';
    position: absolute;
    font-size: 20px;
    left: 11px;
    top: 6px;
}
.header-account:hover {
    background: var(--primary2);
    box-shadow: var(--shadow2);
}

/* Mega Menu */
.header {
    position: relative;
}
.mega-menu {
    position: absolute;
    background: #fff;
    right: 0;
    width: 100%;
    min-height: 302px;
    box-shadow: 0 5px 15px #0000000f;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
z-index: 2;}
.mega-menu img {
    position: absolute;
    left: 20px;
    height: 256px;
    bottom: 20px;
    z-index: 0;
}
li:hover .mega-menu{
    visibility: visible;
    opacity: 1;
}
.mega-menu ul {
    list-style: none;
    display: flex;
    padding: 15px;
    width: 50%;
    flex-direction: column;
    height: 302px;
    flex-wrap: wrap;
    z-index: 1;
    position: inherit;
}
.mega-menu ul li a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--text1);
    margin-bottom: 2px;
    padding: 8px 60px 8px 30px;
    position: relative;
    border-radius: 5px;
    transition: 0.3s all;
    position: relative;
    margin-left: 10px;
}
.mega-menu ul li a i {
    position: absolute;
    right: 5px;
    top: 10px;
    font-size: 25px;
    color: var(--primary2);
    transition: 0.3s all;
    background: #40c1c714;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    padding-top: 10px;
}
.mega-menu ul li a:hover{
    background: #f0fafb;
}
.mega-menu ul li a:hover i{
    background: transparent;
    transform: scale(1.2);
}
.mega-menu ul li a span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--text3);
    margin-top: 5px;
    transition: 0.3s all;
}
.mega-menu ul li a:hover span {
    color: var(--text2);
}

/* Header Account Button */
.header-account:hover .account-menu{
    visibility: visible;
    opacity: 1;
}
.account-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #ffffff;
    box-shadow: 0 5px 10px #00000014;
    border-radius: 0 0 5px 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
z-index: 999;cursor: auto;}
.account-menu ul {
    list-style: none;
    text-align: right;
    padding: 15px;
}
.account-menu ul a {
    color: var(--text2);
    position: relative;
    padding: 8px 35px 8px 8px;
    display: block;
    transition: 0.3s all;
    border-radius: 5px;
}
.account-menu ul a i {
    right: 10px;
    top: 12px;
}
.account-menu ul a:hover{
    background: var(--hover);
}
.account-menu i.ic-wifi {
    transform: scale(1.2);
}

/* Mian Slider Styles */
.main-slider {
    padding: 15px 0 0 0;
}
.main-slider .item{
    position: relative;
    z-index: -1;
    height: 480px;
}
.main-slider img{
    filter: none !important;
}
.slide-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 480px;
}
.slide-content strong {
    display: block;
    font-size: 40px;
    color: var(--text2);
    margin-top: 110px;
}
.slide-content span {
    color: var(--text1);
    font-size: 15px;
    display: block;
    margin-top: 16px;
}
form.slider-form {
    position: relative;
    margin-top: 50px;
}
form.slider-form input {
    width: 100%;
    border: 2px solid #F0F0F0;
    font-size: 15px;
    direction: ltr;
    padding: 20px 20px 15px 30px;
    border-radius: 50px;
    max-width: 500px;
    box-shadow: 0 2px 10px #00000012;
}
form.slider-form input:focus{
    border: 2px solid var(--primary2);
    box-shadow: 0 2px 10px #40c1c73b;
}
form.slider-form button {
    position: absolute;
    right: 10px;
    width: 45px;
    height: 45px;
    top: 8px;
    border-radius: 50%;
    background: #40c1c71f;
    color: var(--primary2);
    font-size: 22px;
    padding-top: 8px;
    transition: 0.3s all;
margin: 0;box-shadow: none;}
form.slider-form button:hover{
    background: var(--primary2);
    color: var(--background1);
}
.main-slider .owl-prev,.main-slider .owl-next {
    position: absolute;
    left: 60px;
    width: 45px;
    height: 45px;
    top: calc(50% - 22px);
    background: var(--background1) !important;
    color: var(--text2) !important;
    border-radius: 50%;
    font-size: 30px !important;
    box-shadow: 0 5px 10px #00000008;
    transition: 0.3s all;
}
.main-slider .owl-next{
    left: auto;
    right: 60px !important;
}
.main-slider .owl-prev:hover,.main-slider .owl-next:hover{
    opacity: 0.6;
}
/* Quick Access Items */
.quick-access{

    background: #F5F4F9;
    position: relative;
padding-bottom: 100px;}
a.show-services {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--background2);
    text-align: center;
    right: calc(50% - 25px);
    transform: rotate(45deg);
    top: -25px;
    z-index: 2;
    box-shadow: #fafafa 0 0 0 12px;
    transition: 0.3s all;
}
a.show-services i {
    font-size: 35px;
    display: block;
    transform: rotate(-45deg);
    position: absolute;
    right: 6px;
    top: 8px;
}
a.show-services:hover{
    background: var(--primary2);
}
.section-title {
    text-align: center;
    padding: 60px 0;
}
.section-title strong {
    display: block;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title span {
    font-size: 15px;
    font-weight: 300;
    color: var(--text3);
}
.services a {
    display: block;
    background: var(--background1);
    margin-bottom: 25px;
    box-shadow: 0 4px 10px #0000000a;
    text-align: center;
    padding: 30px 0;
    transition: 0.3s all;
border-radius: 5px;}
.services a img {
    display: block;
    margin: 0 auto 18px auto;
    height: 55px;
    width: auto;
    opacity: 0.7;
    transition: 0.3s all;
}
.quick-access a strong {
    font-weight: 400;
    color: var(--text1);
}
.services a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px #00000014;
}
.services a:hover img{
    opacity: 1;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 80px 0 60px;
    position: relative;
}
.about-content h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--text1);
    padding: 30px 0 60px;
    position: relative;
}
.about-content > h4:after {
    content: " ";
    background: var(--primary2);
    width: 90px;
    height: 5px;
    position: absolute;
    right: 0;
    bottom: 30px;
    border-radius: 10px;
}
.about-content p {
    font-size: 16px;
    text-align: justify;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text2);
}
a.btn-ic {
    display: block;
    width: fit-content;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px 12px 50px;
    border-radius: 8px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s all;
}
a.about-btn {
    margin-top: 35px;
}
a.btn-ic i {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 14px;
}
a.btn-ic:hover {
    background: var(--primary2);
    box-shadow: var(--shadow2);
}
a.about-video {
    display: block;
    position: relative;
}
a.about-video i {
    background: var(--primary2);
    color: var(--background2);
    display: block;
    position: absolute;
    left: 60px;
    top: 140px;
    width: 90px;
    height: 90px;
    text-align: center;
    border-radius: 50%;
    font-size: 30px;
    padding-top: 29px;
    padding-left: 10px;
    animation: pulse 1.5s infinite;
    transition: 0.3s all;
}
a.about-video:hover i {
    transform: scale(1.1);
}
a.about-video img{
    transition: 0.3s all;
}
a.about-video:hover img{
    opacity: 0.8;
}
a.about-video:before {
    content: " ";
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary2);
    border-radius: 25px;
    opacity: 0.5;
    transform: rotate(16deg);
    left: 35px;
    top: -70px;
    transition: 0.5s all;
    pointer-events: none;
}
a.about-video:after {
    content: " ";
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary2);
    border-radius: 12px;
    opacity: 0.5;
    transform: rotate(16deg);
    left: -18px;
    top: -120px;
    transition: 0.4s all;
    pointer-events: none;
}
a.about-video:hover img {
    transform: rotate(-16deg);
}
a.about-video:hover::before {
    left: 250px;
    top: 100px;
    opacity: 0;
}
a.about-video:hover::after {
    left: 250px;
    top: 100px;
    opacity: 0;
}
a.about-video .shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary2);
    border-radius: 15px;
    opacity: 0.4;
    transform: rotate(16deg);
    right: 10px;
    bottom: 4px;
    transition: 0.4s all;
    pointer-events: none;
    z-index: -1;
}
a.about-video:hover .shape{
    right: 200px;
    bottom: 200px;
    opacity: 0;
}

/* Feedbacks */
.feedbacks {
    background: #f5f4f9;
    padding: 20px 0 40px;
}
.number-box {
    background: var(--background1);
    padding: 50px 0;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 4px 30px rgb(0 0 0 / 3%);
}
.number-box strong {
    color: var(--primary2);
    display: block;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 5px;
}
.number-box.mt {
    transform: translateY(-35px);
}
.feedback-counters {
    margin: 45px 0 60px 0;
}
.number-box span {
    font-size: 16px;
    color: var(--text1);
    font-weight: 500;
}

/* Feedback Slider */
.feedback-slider{
    position: relative;
}
.feedback-slider::before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 400px;
    background: linear-gradient(270deg, #F5F4F9 25.98%, rgba(245, 244, 249, 0) 96.77%);
    transform: rotate(180deg);
    z-index: 2;
}
.feedback-slider::after{
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;
    background: linear-gradient(270deg, #F5F4F9 25.98%, rgba(245, 244, 249, 0) 96.77%);
    z-index: 2;
}
.feedback-item {
    position: relative;
}
.feedback-text{
    background: var(--background1);
    padding: 30px 30px 20px;
    border-radius: 10px;
    transition: 0.3s all;
}
.center .feedback-text{
    background: var(--primary2);
}
.feedback-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text2);
}
.center .feedback-text p{
    color: var(--background1);
}
.feedback-item img {
    width: 85px !important;
    margin: -42.5px auto 0;
    border: 10px solid #f5f4f9;
    border-radius: 50%;
    filter: grayscale(0) !important;
    background:#fff;
}
.feedback-text span {
    position: absolute;
    left: 30px;
    font-size: 12px;
    color: var(--text3);
    bottom: 62px;
}
.center .feedback-text span,.center .feedback-text strong{
    color: var(--background1);
}
.feedback-text strong {
    color: var(--text1);
}

/* Customers Logo */
.customers {
    background: var(--background1);
    padding: 50px 0 40px;
}
.customers img{
    height: 100px !important;
    width: auto !important;
    opacity: 0.6;
    transition: 0.3s all;
}
.customers img:hover{
    opacity: 1;
filter: grayscale(0);}

/* Host Section */
.host-section {
    padding: 100px 0 60px;
}
.host-section h4 {
    font-size: 45px;
    font-weight: 600;
    color: var(--text1);
    margin-bottom: 10px;
}
.host-section span{
    font-size: 16px;
    color: var(--text3);
    margin-bottom: 60px;
    display: block;
}
.host-infobox {
    background: var(--background1);
    margin-bottom: 25px;
    box-shadow: 0 2px 10px #0000000d;
    padding: 12px 50px 12px 0;
    position: relative;
}
.host-infobox i {
    color: var(--primary2);
    font-size: 22px;
    position: absolute;
    right: 14px;
    top: 12px;
}
.host-section p {
    color: var(--text3);
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Last Posts Section */
.last-posts {
    background: var(--background1);
    box-shadow: 0 0 15px #00000005;
padding-bottom: 50px;}
.section-title.right {
    text-align: right;
    position: relative;
}
.section-title.right a {
    position: absolute;
    left: 0;
    top: 74px;
}
.post-box {
    background: var(--background1);
    border: 1px solid #F0F0F0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 15px;
    position: relative;
    margin-bottom: 25px;
}
.post-box img {
    display: block;
    width: 100%;
    transition: 0.3s all;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
}
.post-box:hover img{
    opacity: 0.8;
}
a.post-box-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text2);
    display: block;
    height: 55px;
    overflow: hidden;
    margin: 20px 0 10px;
}
.post-box-date {
    background: var(--primary2);
    color: var(--background1);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    box-shadow: 0px 2px 4px rgb(64 193 199 / 29%);
    position: absolute;
    top: 25px;
    left: 25px;
    opacity: 0;
    transition: 0.3s all;
}
.post-box:hover .post-box-date {
    opacity: 1;
}
p.post-box-descriptions {
    font-weight: 200;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    height: 44px;
    overflow: hidden;
    color: var(--text3);
}
.post-box-meta > div {
    display: inline-block;
    color: var(--text3);
    position: relative;
    padding-right: 22px;
}
.post-box-meta > div i{
    position: absolute;
    right: 0;
    top: 3px;
}
a.post-box-readmore {
    float: left;
    color: var(--text2);
    position: relative;
    padding-left: 30px;
}
a.post-box-readmore i{
    position: absolute;
    font-size: 12px;
    left: 5px;
    top: 6px;
}

/* Phone Number */
a.phone-number {
    display: block;
    color: var(--background1);
    position: relative;
    margin-top: 50px;
    border-radius: 10px;
    background-color: var(--primary2);
    background-image: url(../images/operators.png);
    background-repeat: no-repeat;
    height: 110px;
    transition: 0.3s all;
}
a.phone-number i {
    font-size: 40px;
    width: 65px;
    height: 65px;
    background: #0000001f;
    display: block;
    position: absolute;
    text-align: center;
    top: 24px;
    border-radius: 10px;
    padding-top: 14px;
    right: 24px;
}
a.phone-number span {
    font-size: 30px;
    position: absolute;
    right: 110px;
    top: 32px;
    font-weight: 400;
    color: #fff;
}
a.phone-number strong {
    position: absolute;
    font-size: 40px;
    left: 200px;
    top: 28px;
    font-weight: 400;
}
a.phone-number:hover{
    background-color: var(--primary1);
box-shadow: var(--shadow3);}

/* Footer Section */
.footer-widget {
    padding: 60px 0 60px 30px;
}
h4.widget-title {
    font-size: 26px;
    color: var(--text2);
    font-weight: 600;
    margin-bottom: 35px;
}
ul.contact-items {
    list-style: none;
margin-bottom: 40px;}
ul.contact-items li {
    display: block;
    position: relative;
    margin-bottom: 15px;
    padding-right: 32px;
    font-size: 16px;
    color: var(--text2);
}
ul.contact-items li i{
    position: absolute;
    color: var(--primary2);
    right: 0;
    top: 2px;
    font-size: 20px;
}
a.link-btn {
    display: inline-block;
    background: var(--primary2);
    color: var(--background1);
    padding: 6px 14px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 16px;
    transition: 0.3s all;
    box-shadow: var(--shadow2);
}
a.link-btn:hover{
    background: var(--accent);
    box-shadow: var(--shadow1);
}
a.link-btn.yellow{
    background: var(--accent);
    box-shadow: var(--shadow1);
}
a.link-btn.yellow:hover{
    background: var(--primary2);
    box-shadow: var(--shadow2);
}
a.link-btn.green{
    background: var(--primary1);
    box-shadow: var(--shadow3);
}
a.link-btn.green:hover{
    background: var(--primary2);
    box-shadow: var(--shadow2);
}
.footer-widget p {
    font-size: 16px;
    color: var(--text2);
}
.social-links-footer {
    margin-top: 35px;
}
.social-links-footer a {
    display: inline-block;
    width: 90px;
    height: 110px;
    background: #cc2b81;
    color: var(--background1);
    border-radius: 10px;
    text-align: center;
    margin-left: 13px;
    transition: 0.3s all;
}
.social-links-footer a:hover{
    opacity: 0.8;
}
.social-links-footer a i {
    display: block;
    font-size: 36px;
    margin: 22px 0 8px;
}
a.instagram {
    background: linear-gradient(211.75deg, #F58529 4.9%, #DD2A7B 93.7%);
    box-shadow: 0px 2px 10px rgb(226 63 104 / 45%);
}
a.telegram {
    background: linear-gradient(135deg, #33BEF0 14.65%, #057DCF 85.35%);
    box-shadow: 0px 2px 10px rgb(13 136 213 / 45%);
}
a.youtube {
    background: linear-gradient(135deg, #FF3D00 14.65%, #DE4514 85.35%);
    box-shadow: 0px 2px 10px rgb(235 65 12 / 45%);
}
form.email-subscribe button {
    width: 60px;
    position: absolute;
    top: 9px;
    margin: 0;
    font-size: 16px;
    left: 10px;
    padding: 5px;
    box-shadow: none;
}
form.email-subscribe input {
    padding-right: 58px;
}
form.email-subscribe:after {
    content: "\e92c";
    font-family: 'shabakieh';
    position: absolute;
    color: var(--primary2);
    right: 15px;
    top: 9px;
    font-size: 22px;
}
form.email-subscribe {
    position: relative;
    margin-top: 35px;
}
p.subscribe-msg {
    color: var(--primary2);
    margin-top: 25px;
    font-size: 16px;
    font-weight: 500;
}
p.subscribe-msg i {
    font-size: 20px;
    margin-left: 8px;
    transform: translateY(4px);
    display: inline-block;
}

/* Copyright Section */
.copyright-section {
    background: var(--background1);
    box-shadow: 0 0 15px #00000005;
    position: relative;
    margin-top: 40px;
    height: 80px;
}
.copyright-section .show-services i {
    transform: rotate(136deg);
}
.copyright-text {
    position: relative;
    padding: 20px 55px 0 0;
}
.copyright-text i {
    position: absolute;
    right: 0;
    font-size: 40px;
    top: 20px;
    color: var(--text1);
    transition: 0.3s all;
}
.copyright-text span {
    display: block;
    font-size: 13px;
    color: var(--text1);
    padding-bottom: 2px;
}
.copyright-text a {
    font-weight: 600;
    color: var(--text2);
}
a.link-btn.black {
    filter: grayscale(1);
}
a.link-btn.black:hover {
    filter: grayscale(0);
}
.footer-logo-section {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: end;
}
.copyright-text:hover i {
    color: var(--primary2);
}
.footer-logo img {
    filter: grayscale(1);
    transition: 0.3s all;
    opacity: 0.5;
    margin-left: 10px;
}
.footer-logo img:hover{
    opacity: 1;
    filter: grayscale(0);
}
.footer-logo-section a.link-btn {
    margin-right: 15px;
}

/* Mobile Menu */
button#menubtn {
    background: transparent;
    box-shadow: none;
    color: var(--text1);
    font-size: 27px;
    padding-top: 10px;
}
#mobile-menu {
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 300px;
    height: 100%;
    box-shadow: 0 0 30px #0000000d;
    transition: 0.3s all;
}
.mobile-menu.hidden {
    left: -350px !important;
    visibility: hidden;
}
#mobile-menu ul li {
    list-style: none;
    display: block;
}
#mobile-menu ul li a {
    display: block;
    font-size: 16px;
    padding: 12px 68px 12px 10px;
    position: relative;
    transition: 0.3s all;
}
#mobile-menu ul li a i {
    position: absolute;
    color: var(--text3);
    font-size: 22px;
    right: 30px;
    top: 12px;
}
.menu-header img {
    margin-bottom: 15px;
}
#mobile-menu ul li a:hover {
    background: #0000000a;
}
a.slide-btn {
    display: inline-block;
    color: #fff;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 5px;
    margin-top: 40px;
    transition: 0.3s all;
}
a.slide-btn:hover{
    background:var(--text2) !important;
}
.elementor-tab-title.elementor-active {
    background: #40c1c7;
    border-radius: 5px;
    color: #fff !important;
}

/* Article Page */
.post-header {
    background: var(--background1);
    margin: 40px 0;
    box-shadow: 0 0 15px #0000000a;
}
.post-header img{
    width: 100%;
    pointer-events: none;
}
.title-area {
    padding: 30px 30px 30px 0;
    position: relative;
    height: 100%;
}
.title-area h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text2);
    margin-bottom: 20px;
}
section.post-breadcrumb {
    color: var(--text2);
    font-size: 14px;
    position: relative;
}
section.post-breadcrumb i {
    font-size: 18px;
    display: inline-block;
    transform: translateY(3px);
}
section.post-breadcrumb a {
    margin: 0 5px;
    transition: 0.3s all;
}
section.post-breadcrumb i.ic-location{
    margin-left: 2px;
}
section.post-breadcrumb i.ic-arrow-left{
    font-size: 16px;
}
section.post-breadcrumb a:hover{
    color: var(--accent);
}
p.post-descriptions {
    font-size: 14px;
    font-weight: 300;
    color: var(--text3);
    display: block;
    overflow: hidden;
    height: 77px;
    margin-top: 24px;
    padding-left: 30px;
}
.author-info {
    position: relative;
    margin-top: 25px;
}
.author-info img {
    width: 60px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px #00000024;
}
.author-info strong {
    position: absolute;
    font-size: 18px;
    color: var(--color2);
    right: 75px;
    top: 6px;
    font-weight: 600;
}
.author-info span {
    position: absolute;
    right: 75px;
    font-size: 12px;
    top: 38px;
    color: var(--text3);
    font-weight: 400;
}
.post-meta-items > div,.post-meta-items > a {
    display: inline-block;
    margin-left: 4px;
}
.wpulike-robeen .count-box {
    font-weight: 600;
    padding: 0 8px;
    font-size: 24px;
}
.wpulike .wp_ulike_general_class{
    transform: scale(0.8);
}
.meta-box {
    position: relative;
    padding: 0 30px 0 10px;
}
.meta-box i {
    position: absolute;
    right: 0;
    top: 8px;
    color: #aab8c2;
    font-size: 22px;
}
.meta-box span {
    font-size: 20px;
    font-weight: 500;
    display: block;
    transform: translateY(5px);
}
.post-meta-items {
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.kk-star-ratings .kksr-stars{
    direction: ltr;
}
.post-rating {
    position: absolute;
    left: 0;
}
.kksr-legend {
    position: absolute;
    left: -4px;
    bottom: 35px;
    font-size: 12px;
    color: var(--text3);
}
.post-rating {
    position: absolute;
    left: 30px;
    bottom: -7px;
}
.post-content {
    background: var(--background1);
    padding: 30px;
    box-shadow: 0 0 15px #0000000a;
}
.post-content p {
    line-height: 2;
    color: var(--text2);
    font-size: 16px;
}
.post-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0;
}
.post-content h2:first-child{
    margin-top: 0;
}
.post-content h3,.post-content h4,.post-content h5,.post-content h6{
    font-size: 18px;
}
/* Blog Sidebar */
.sidebar-widget {
    position: sticky;
    position: -webkit-sticky;
    top: 125px;
}
.widget-box{
    background: var(--background1);
    box-shadow: 0 0 15px #0000000a;
    padding: 30px;
}
.sidebar-widget ul{
    list-style: none;
}
.widget-title {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-right: 30px;
    color: var(--text2);
}
.widget-title i {
    position: absolute;
    right: 0;
    top: 3px;
}
.content-padding {
    padding-left: 15px;
}
.post-content ul {
    padding-right: 25px;
}
.post-content ul li {
    margin-bottom: 10px;
}
.post-links-widget ul {
    margin: 20px 0 0;
}
.post-links-widget ul li {
    position: relative;
    padding: 6px 20px 3px 0;
    font-size: 15px;
    color: var(--text1);
}
.post-links-widget ul li:before {
    content: "\e90d";
    font-family: 'shabakieh';
    position: absolute;
    right: 2px;
    transform: rotate(90deg);
    top: 5px;
    color: var(--primary2);
}
.post-links-buttons a {
    display: block;
    text-align: center;
    background: var(--primary1);
    color: var(--background1);
    padding: 8px 0;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s all;
    margin-top: 20px;
}
.post-links-buttons a:hover{
    background: var(--primary2);
}
.single-page {
    position: relative;
}
.post-share-links {
    position: absolute;
    right: -45px;
    height: 100%;
}
.share-links {
    position: sticky;
    top: 100px;
    border-radius: 5px;
}
.share-links a {
    display: block;
    font-size: 22px;
    border-radius: 3px;
    width: 35px;
    height: 35px;
    text-align: center;
    padding-top: 5px;
    color: var(--text3);
    transition: 0.3s all;
    margin-bottom: 5px;
}
.share-links a:hover{
    color: var(--background1);
}
a.whatsapp-share:hover{background: #25d366}
a.telegram-share:hover{background: #0088cc}
a.twitter-share:hover{background: #1da1f2}
a.linkedin-share:hover{background: #0a66c2}
a.post-footer {
    color: var(--background1);
    padding: 15px 60px 15px 15px;
    border-radius: 5px;
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: 0.3s all;
}
a.post-footer i {
    position: absolute;
    right: 16px;
    font-size: 28px;
    top: 14px;
}
a.post-footer span {
    float: left;
    font-size: 16px;
    font-weight: 400;
    background: #0000001f;
    display: block;
    padding: 5px 15px;
    border-radius: 5px;
    transform: translateY(-3px);
    transition: 0.3s all;
}
a.post-footer:hover{
    opacity: 0.8;
}
.shortlink-widget {
    margin-top: 40px;
}
.shortlink-widget p {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 15px;
}
form.shortlink input {
    border: 1px solid #00000012;
    padding: 5px 10px;
    font-size: 14px;
    direction: ltr;
    border-radius: 5px;
    font-family: monospace;
    color: var(--text3);
    text-align: center;
}
.nav-links {
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 60px;
}
.nav-links a, .nav-links span {
    display: inline-block;
    background:var(--primary2);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 2px;
    min-width: 33px;
}
.nav-links a:hover, .nav-links span {
    background: var(--primary1);
}
.section-padding {
    margin: 30px 0;
}
span.section-description {
    margin-top: -15px;
    display: block;
    margin-bottom: 30px;
    color: var(--text3);
    font-weight: 300;
    font-size: 14px;
}
.comment-form-cookies-consent{
    display: none;
}
.comments textarea {
    margin-bottom: 25px;
}
.comments input#submit {
    background: var(--accent);
    color: var(--background1);
    margin-top: 25px;
    font-size: 18px;
    font-weight: 500;
    padding: 8px;
}
.comments input#submit,.comments input#submit:focus{
    outline: none;
    border: none;
}
.comments input#submit:hover{
    background: var(--primary2);
}
.comment-body {
    background: var(--background1);
    box-shadow: 0 0 15px #0000000a;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}
li.comment {
    list-style: none;
}
.comment-body img {
    border-radius: 50%;
    margin-left: 10px;
}
.comment-body span.says {
    display: none;
}
.comment-body cite {
    display: inline-block;
    font-style: normal;
    transform: translateY(-14px);
    font-size: 18px;
    font-weight: 500;
    color: var(--text2);
}
.comment-meta.commentmetadata {
    position: absolute;
    right: 105px;
    top: 65px;
    font-size: 13px;
    font-weight: 300;
    color: var(--text3);
}
.comment-author.vcard {
    margin-bottom: 20px;
}
.comment-body p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text2);
}
.reply a {
    display: block;
    background: var(--accent);
    width: fit-content;
    color: var(--background2);
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s all;
}
.reply a:hover{
    background: var(--primary2);
}
.aiowps-captcha{
    margin-top: 20px;
}
input#aiowps-captcha-answer {
    margin-top: 25px;
}
.comment-respond {
    background: var(--background1);
    padding: 30px 30px 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px #00000008;
    margin-top: 30px;
}
li.comment ul.children {
    padding-right: 60px;
    margin-top: 20px;
    position: relative;
}
li.comment ul.children:before {
    content: " ";
    position: absolute;
    right: 15px;
    top: -35px;
    width: 2px;
    height: 75px;
    background: linear-gradient(180.13deg, rgba(217, 217, 217, 0) 33.22%, #E9E9E9 99.89%);
}
li.comment ul.children:after {
    content: " ";
    position: absolute;
    right: 15px;
    top: 40px;
    width: 62px;
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 42.37%, #E9E9E9 100%);
}
h3#reply-title {
    position: relative;
    font-size: 20px;
    margin-bottom: 30px;
}
h3#reply-title small {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
h3#reply-title a {
    display: block;
    background: var(--text3);
    color: var(--background1);
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 5px;
    transition: 0.3s all;
}
h3#reply-title a:hover{
    background: var(--accent);
}

/* Register Domain Page */
.wp24-dc form {
    position: relative;
}
.wp24-dc form input {
    width: 100% !important;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 16px 90px 16px 245px;
}
.wp24-dc form input#dc-submit-1 {
    width: auto !important;
    left: 8px;
    right: auto;
    background: var(--primary2);
    color: var(--background1);
    transition: 0.3s all;
    padding: 8px 22px;
    top: 8px;
}
.wp24-dc form input#dc-submit-1:hover{
    background: var(--accent);
}
.wp24-dc form select {
    position: absolute;
    left: 130px;
    top: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s all;
    opacity: 0.8;
    text-align: left;
    padding-left: 10px;
}
.wp24-dc form select:hover{
   opacity: 1;
}
.wp24-dc span {
    position: absolute;
    z-index: 5;
    font-size: 24px;
    right: 22px;
    top: 10px;
    opacity: 0.4;
}
div#dc-result-1 {
    margin-top: 50px;
}
div#dc-result-1 .table-row {
    background: #ffffff17;
    width: 100% !important;
    position: relative;
    margin-bottom: 15px !important;
    display: block;
    border: none;
    border-radius: 5px;
    padding: 15px 20px 12px;
    color: #fff;
}
div#dc-result-1 .table-row strong {
    padding: 0 0 0 2px;
}
div#dc-result-1 .table-row.registered .table-cell-status {
    position: absolute;
    left: 28px;
    top: 18px;
}
div#dc-result-1 .table-row .table-cell-domain {
    font-size: 22px;
}
div#dc-result-1 .table-row a {
    position: absolute;
    left: 12px;
    background: #fff;
    border-radius: 5px;
    color: #51c7cc;
    padding: 8px 15px;
    top: 14px;
    transition: 0.3s all;
    font-weight: 600;
}
div#dc-result-1 .table-row a:hover{
    background: var(--primary1);
    color: #fff;
}
.table-row.available .table-cell-status {
    position: absolute;
    left: 185px;
    top: 20px;
}
.elementor-flip-box > div {
    box-shadow: 0 5px 10px #0000000a;
}
.page404 {
    padding: 80px 40px;
}
.page404 strong {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent);
    margin-top: 30px;
}
.page404 span {
    font-size: 14px;
    color: var(--text1) !important;
    display: block;
    margin-bottom: 30px;
    line-height: 2;
}
.page404 form {
    position: relative;
}
.page404 form button {
    position: absolute;
    left: 6px;
    width: 110px;
    top: -9px;
}

/* Archive Styles */
.archive-title {
    background: #f5f5f5;
    padding: 65px 0;
    color: #6d6d6d;
    margin-bottom: 40px;
    border-bottom: 1px solid #00000012;
}
.archive-title .post-breadcrumb * {
    color: #adadad !important;
}
.archive-title h1 {
    font-size: 0;
}
.archive-title h1 span {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}
.archive-title .post-breadcrumb * {
    color: #fff;
}
.archive-search {
    position: relative;
}
.archive-search button {
    position: absolute;
    left: 5px;
    top: -10px;
    width: 42px;
    height: 42px;
    padding-top: 11px;
}
a.prev.page-numbers {
    transform: rotate(180deg);
}
h1.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary1);
    margin-bottom: 30px;
}
form.login-form label {
    display: block;
    margin: 25px 0 10px 0;
}
form.login-form button {
    padding: 10px 25px;
    margin-top: 30px;
    display: block;
}
.service-login img {
    float: left;
}
.service-login {
    padding: 60px 0 80px;
}
.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px #0000001f;
    margin: 40px 0 60px;
    position: relative;
}
.login-related-posts .last-posts {
    box-shadow: 0 10px 15px #00000005;
}
ul.portfolio-colors {
    list-style: none;
    position: absolute;
    top: 175px;
    right: 30px;
}
ul.portfolio-colors li {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 10px #00000038;
    margin-left: -20px;
    transition: 0.3s all;
}
.portfolio a.post-box-title{
    margin: 35px 0 25px;
}
.post-box:hover li.color-box {
    margin-left: -15px;
}
li.color-box:hover{
    transform: scale(1.1);
    z-index: 5;
}
a.portfolio-link {
    background: #fff;
    color: var(--text2);
    padding: 8px 10px;
    border-radius: 5px;
    display: block;
    text-align: center;
    border: 1px solid #00000021;
    transition: 0.3s all;
}
a.portfolio-link:hover{
    background: var(--primary1) !important;
    color: #fff;
    border-color: var(--primary1) !important;
}
/* Captcha Form */
.captcha-holder {
    position: relative;
}
.captcha-holder svg {
    width: 28px;
    transition: 0.3s all;
    opacity: 0.8;
}
.captcha-holder svg path {
    fill: #40c1c7;
}
.captcha-holder svg:hover{
    opacity: 1;
}
.captcha-holder img {
    position: absolute;
    left: 12px;
    top: 42px;
    height: 35px;
    cursor: pointer;
}
.captcha-holder a {
    position: absolute;
    left: 114px;
    top: 46px;
}
p.alert-box {
    display: block;
    box-shadow: 0 3px 10px #ffb3003d;
    border-radius: 5px;
    padding: 10px;
    background: var(--accent);
    color: #fff;
}
p.alert-box svg {
    width: 30px;
    margin-left: 6px;
}
img.adsl-img {
    width: 490px;
    pointer-events: none;
}
.blog-header h1 {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 8px;
}
.blog-search {
    position: relative;
}
.blog-search input {
    padding-right: 50px;
}
.blog-search i {
    position: absolute;
    color: var(--primary2);
    font-size: 20px;
    right: 16px;
    top: 16px;
}
.blog-search button {
    position: absolute;
    top: -7px;
    width: auto;
    left: 9px;
    padding: 5px 15px;
}
a.register-link {
     position: absolute;
     left: 30px;
     top: 30px;
     background: #40c1c736;
     color: var(--primary2);
     font-weight: 500;
     font-size: 16px;
     padding: 5px 15px;
     border-radius: 5px;
     transition: 0.3s all;
 }
a.register-link:hover {
      background: var(--primary2);
      color: #fff;
  }
h4.form-title {
    font-weight: 600;
    color: #40c1c7;
    font-size: 22px;
}
.login-container p {
    font-size: 14px;
    font-weight: 300;
    color: #9d9d9d;
    margin-top: 6px;
}
a.pricing-link {
    display: block;
    margin-top: 30px;
    color: #767676;
}
a.pricing-link i {
    color: #ffb300;
    display: inline-block;
    transform: translateY(3px);
    margin-left: 6px;
    font-size: 18px;
}
.w-desc * {
    font-size: 14px;
    font-weight: 300;
}
.w-desc {
    padding: 0 15px;
    margin-bottom: 20px;
}
.w-desc ul {
    list-style: none;
}
.w-desc ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
    padding-right: 6px;
}
.w-desc ul li:before {
    content: "\e92d";
    font-family: 'shabakieh';
    position: absolute;
    right: -15px;
    color: #22c15e;
}
.ws a.post-box-title {
    margin-bottom: 0;
}
.w-info {
    margin-bottom: 30px;
}
.w-info strong {
    color: #007c91;
    display: block;
    font-size: 18px;
}
.w-info span {
    font-size: 15px;
    font-weight: 400;
    color: #c7c7c7;
}
a.post-box-img {
    position: relative;
}
h4.widget-title.fw, .footer-widget.fw h4 {
    padding-right: 0;
}
button.btn-close {
    position: absolute;
    left: 20px;
    box-shadow: none;
}
button.btn.btn-primary {
    box-shadow: none;
}
.w100 {
    width: 100%;
    text-align: center;
    padding: 10px !important;
}
.post-box.ws .post-box-meta a {
    display: inline-block;
    width: 47%;
}
a.portfolio-link.demo {
    margin-left: 10px;
}
.site-code ,.site-level{
    background: #40c1c733;
    width: fit-content;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    color: #40c1c7;
    font-weight: 700;
    margin-bottom: 22px;
}
.sc-link {
    box-shadow: none;
    position: relative;
    color: #c3c3c3;
    padding: 1px 30px 1px 0;
    text-align: right;
}
.sc-link:hover,.sc-link:focus,.sc-link.active{
    box-shadow: none !important;
    background: #fff !important;
    color: #0a58ca !important;
}
.sc-link:before {
    content: "";
    background: #fff;
    width: 18px;
    height: 18px;
    position: absolute;
    right: 2px;
    top: 6px;
    border: 2px solid;
    border-radius: 5px;
}
.sc-link.active:before{
    background: #0a58ca;
}
.site-categories {
    margin: 30px 0 0 0 !important;
    display: block !important;
}
.site-level {
    background: #ffb3001f;
    color: #ffb300;
    float: left;
    margin-left: 10px;
}
.widget-box.sites-widget {
    margin-left: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}