@charset "UTF-8";

/*
Theme Name: RASAM
Theme URI: https://www.rasamplus.com
Author: Amin haghighati
Author URI: https://www.rasamplus.com
Description: a professional theme with wordpress website
Version: 1.0.0
Text Domain: rasam 
*/
:root {
    --main-font-size: 15px;
    --main-color: #3764EB;
    --second-color: #c58a00;
    --hover-color: #091f4f;
    --main-text-color: #555;
    --main-font-family: 'IRANYekan';
}

@font-face {
    font-family: 'IRANSans';
    src: url(fonts/IRANSansWeb%28FaNum%29.eot);
    src: url(fonts/IRANSansWeb%28FaNum%29.eot?#iefix) format('embedded-opentype'),
        url(fonts/IRANSansWeb%28FaNum%29.otf) format('otf'),
        url(fonts/IRANSansWeb%28FaNum%29.svg#IRANSansWeb%28FaNum%29) format('svg'),
        url(fonts/IRANSansWeb%28FaNum%29.ttf) format('truetype'),
        url(fonts/IRANSansWeb%28FaNum%29.woff) format('woff'),
        url(fonts/IRANSansWeb%28FaNum%29.woff2) format('woff2');
}

@font-face {
    font-family: 'IRANSansBlack';
    src: url('fonts/IRANSansFaNum-Black.eot');
    src: url('fonts/IRANSansFaNum-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/IRANSansFaNum-Black.woff2') format('woff2'),
        url('fonts/IRANSansFaNum-Black.woff') format('woff'),
        url('fonts/IRANSansFaNum-Black.ttf') format('truetype'),
        url('fonts/IRANSansFaNum-Black.svg#IRANSansFaNum-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANYekan';
    src: url('fonts/IRANYekanWebFn.woff2') format('woff2'),
        url('fonts/IRANYekanWebFn.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: var(--main-font-family);
    color: var(--main-text-color);
    text-align: right;
    font-size: var(--main-font-size);
    line-height: 27px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: #091f4f;
}

h1 {
    font-size: 27px;
    margin-top: 30px;
    margin-bottom: 25px;
    line-height: 40px;
}

h2 {
    font-size: 23px;
    margin-bottom: 23px;
    margin-top: 25px;
    line-height: 37px;
}

h3 {
    font-size: 21px;
    margin-bottom: 21px;
    margin-top: 30px;
    line-height: 35px;
}

h4 {
    font-size: 19px;
    margin-bottom: 19px;
    margin-top: 30px;
    line-height: 33px;
}

h5 {
    font-size: 17px;
    margin-bottom: 17px;
    margin-top: 25px;
    line-height: 30px;
}

h6 {
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 25px;
    line-height: 30px;
}

.h6 {
    line-height: 30px;
}

p {
    line-height: 27px;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1200px;
}

.main-color {
    color: var(--main-color);
}

.second-color {
    color: var(--second-color);
}

.site-btn {
    color: #fff;
    padding: 11px 30px;
    display: inline-block;
    font-weight: 500;
    background: var(--second-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.site-btn:hover {
    background: var(--main-color);
    color: #fff;
}
.btn-blue {
    background: var(--main-color);
    color: #fff;
    padding: 13px 35px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.btn-blue:hover {
    background: var(--hover-color);
    color: #fff;
}
.site-title-wrap {
    text-align: center;
    margin-bottom: 35px;
}

.site-title {
    font-family: IRANYekan;
    font-weight: bold;
    position: relative;
    font-size: 49px;
    line-height: 60px;
    display: table;
    padding-top: 30px;
}

.site-title::after {
    content: "";
    background: var(--second-color);
    width: 85px;
    height: 4px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}

.site-title::before {
    top: -10px;
}

.navbar {
    padding: 0;
}

.heading-divider {
    display: inline-block;
    position: relative;
    background: var(--second-color);
    width: 90px;
    height: 4px;
    overflow: hidden;
}

.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 6px;
    width: 15px;
    border-radius: 0px;
    background-color: #fff;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}


@keyframes heading-move {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    width: 13px;
}

::-webkit-scrollbar-thumb {
    background: var(--hover-color);
}

.form-control:focus {
    border-color: none;
    box-shadow: none;
}

#scroller {
    background-color: #fff;
    border: 2px solid var(--main-color);
    position: fixed;
    font-size: 29px;
    right: 20px;
    bottom: 15px;
    color: var(--main-color);
    width: 50px;
    height: 50px;
    line-height: 51px;
    text-align: center;
    z-index: 999;
    border-radius: 50%;
}

#header-bottom-sec .row {
    justify-content: flex-end;
}

/*------------------------
      Header Section
------------------------*/
#header-top-sec {
    background: var(--main-color);
    color: #fff;
    padding: 5px 0;
}

#header-top-right {
    display: flex;
    justify-content: space-between;
}

#header-top-right i {
    font-size: 19px;
    position: relative;
    top: 2px;
    margin-left: 5px;
}

#header-top {
    padding: 10px 0;
}

#header-bottom-sec {
    padding: 15px 0;
}

#main-nav-sec {
    display: flex;
    justify-content: center;
    position: relative;
}

#header-top-right a {
    color: #fff;
}

#top-phone i {
    float: left;
    top: 3px;
    margin-left: 0px;
    margin-right: 7px;
    float: left;
}

#header-top-left ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

#header-top-left ul a {
    color: #333;
    display: inline-block;
    margin-right: 15px;
    font-size: 19px;
}

#header-top-left ul a:hover {
    color: var(--main-color);
}

#header-bottom-left nav {
    justify-content: end;
}

#mega-menu-wrap-main,
#mega-menu-wrap-main #mega-menu-main,
#mega-menu-wrap-main #mega-menu-main ul.mega-sub-menu,
#mega-menu-wrap-main #mega-menu-main li.mega-menu-item,
#mega-menu-wrap-main #mega-menu-main li.mega-menu-row,
#mega-menu-wrap-main #mega-menu-main li.mega-menu-column,
#mega-menu-wrap-main #mega-menu-main a.mega-menu-link,
#mega-menu-wrap-main #mega-menu-main span.mega-menu-badge {
    text-align: right !important;
}

#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-item>a.mega-menu-link:focus,
#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link,
#mega-menu-wrap-main_left #mega-menu-main_left>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-main_left #mega-menu-main_left>li.mega-menu-item>a.mega-menu-link:focus {
    color: var(--main-color) !important;
}

.sticky {
    background: #fff;
    top: 0 !important;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 3;
    padding: 7px 0 !important;
    box-shadow: 0px 2px 10px -8px #000;
}

/*--------------------------------
    Top Section
--------------------------------*/
.top-section {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    padding: 130px 0;
}

.top-section h1 {
    margin-top: 0;
    color: var(--main-color);
    font-size: 19px;
    line-height: 35px;
    margin-bottom: 10px;
}

.top-section span {
        color: var(--hover-color);
    font-family: 'IRANYekan';
    font-weight: bold;
    font-size: 49px;
    line-height: 70px;
    margin-bottom: 35px;
}

/*--------------------------------
    Services Section
--------------------------------*/

.services-item h3 {
    color: #fff;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 13px;
}

.services-item p {
    font-size: 13px;
}

.services-section .site-title::after,
.why-us-section .site-title::after,
.products-section .site-title::after,
.video-section .site-title::after{
    right: 0;
    left: 0;
    margin: auto;
}

.services-icon-sec img {
    height: 300px;
    object-fit: cover;
}

.services-item-details-sec {
    background: linear-gradient(180deg, transparent 20%, var(--hover-color) 80%);
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 20px 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transform: translateY(23%);
    -webkit-transform: translateY(23%);
    -moz-transform: translateY(23%);
    -ms-transform: translateY(23%);
    -o-transform: translateY(23%);
}

.services-item:hover .services-item-details-sec {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.services-item-details-sec img {
    height: 50px;
    margin-bottom: 13px;
}

/*-----------------------------
    Products Section
-------------------------------*/
.products-section {
    direction: ltr;
    padding: 100px 0 50px;
}

.products-pic-sec img {
    width: 100% !important;
    height: 230px;
    object-fit: cover;
}

.products-item-section h3 {
    text-align: center;
    font-size: 17px;
    padding: 10px 15px;
    margin: 0;
    line-height: 35px;
}

.owl-carousel {
    position: relative;
}

.owl-nav button {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .3);
    width: 40px;
    height: 40px;
    line-height: 42px !important;
    background: var(--main-color) !important;
    position: absolute;
    top: 130px;
}

.owl-nav button span {
    font-size: 29px;
    color: #fff;
}

.products-item-section {
    border: 2px solid #d4dfff;
}

.owl-prev {
    left: -15px;
}

.owl-next {
    right: -15px;
}

/*------------------------
    About Us Section
------------------------*/
.about-us-section {
    font-size: 14px;
    padding: 55px 0;
}

.about-us-section .site-title::before {
    display: none;
}

.about-us-img-sec img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/*-----------------------------
    Blog Section
-------------------------------*/
.blogs-section{
    padding: 70px 0;
}
.blog-item {
    border: 2px solid #d4dfff;
}

.blog-img-sec img {
    height: 290px;
    width: 100%;
    object-fit: cover;
}

.blog-date-sec {
    color: #999;
    margin: 23px 0 13px;
    font-size: 17px;
}

.blog-date-sec i {
    color: var(--second-color);
    font-size: 17px;
    position: relative;
    top: 2px;
}

.blog-item-detail h3 {
    margin: 15px 0 10px;
    font-size: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blogs-section .site-btn {
    margin-bottom: 15px;
}

/*------------------------
    Content Section
------------------------*/
.content-section{
    background: var(--hover-color);
    color: #fff;
    padding: 75px 0;
}
.content-wrap {
    background: #0d2864;
    height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
}
.content-wrap h2 , .content-wrap h3, .content-wrap h4, .content-wrap h5, .content-wrap h6{
    color: #fff;
}

.content-wrap::-webkit-scrollbar {
    width: 9px;
}

.content-wrap::-webkit-scrollbar-track {
    width: 9px;
}

.content-wrap::-webkit-scrollbar-thumb {
    background: #fff;
}

/*------------------------
    Video Section
------------------------*/
.video-section {
    background: #f5f5f5;
    padding: 55px 0;
}

.video-items-sec video {
    width: 100%;
}

/*-----------------------------
    Why Us Section
-------------------------------*/
.why-us-section {
    padding: 130px 0;
}

.why-us-item {
    border: 2px solid #d4dfff;
    padding: 40px 35px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.why-us-item:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.why-us-item img {
    height: 63px;
}

.why-us-item h3 {
    font-size: 17px;
    margin: 17px 0 9px;
}

.why-us-item p {
    color: #999;
    font-size: 13px;
}

/*------------------------
    Form Section
------------------------*/
.cta-section {
    background: var(--hover-color);
    color: #fff;
    padding: 55px 0;
}

.cta-section .site-title {
    color: #fff;
}

.cta-right-title {
    color: var(--second-color);
    font-size: 18px;
    margin-bottom: 10px;
}

#cta-address-detail,
#cta-phones-detail {
    margin-bottom: 20px;
}

#cta-phones-detail,
#cta-email-detail {
    font-size: 19px;
    line-height: 33px;
}

.gform_title {
    position: relative !important;
    font-weight: 700 !important;
    font-size: 31px !important;
    line-height: 55px !important;
    margin-top: 0 !important;
    margin-bottom: 30px;
    text-align: center;
}

.cta-section .gform_title {
    color: #fff;
}

.gform_fields_1 {
    position: relative !important;
}

.gform_required_legend {
    display: none !important;
}

.gform-body input {
    border: 1px solid #00000020;
    font-size: 14px !important;
    padding: 9px !important;
    border-radius: 0px !important;
}

.gform-body textarea {
    border: 1px solid #00000020;
    resize: none;
    height: 100px !important;
    font-size: 14px !important;
    padding: 11px !important;
}

.gform_button {
    color: #fff !important;
    padding: 10px 30px !important;
    display: inline-block !important;
    font-weight: 500 !important;
    background: var(--second-color) !important;
    transition: all 0.5s !important;
    -webkit-transition: all 0.5s !important;
    -moz-transition: all 0.5s !important;
    -ms-transition: all 0.5s !important;
    -o-transition: all 0.5s !important;
    border: none !important;
}

.gform_button:hover {
    background: var(--main-color) !important;
    color: #fff !important;
}

/*------------------------
    Counter Section
------------------------*/
.counter-section {
    background-color: var(--second-color);
    position: relative;
    padding: 10px 0 45px;
    margin-top: 75px;
}

.counter-section-overlay {
    background-image: url(img/counter-bg-pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.counter-icon-sec {
    width: 120px;
    height: 120px;
    background: var(--main-color);
    border-radius: 50%;
    border: 5px solid #fff;
    padding: 20px;
    display: table;
    margin: auto;
    position: relative;
    z-index: 1;
}

.counter-items-sec {
    position: relative;
    margin-top: 20px;
}

.counter-items-sec::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 8px;
    left: 50%;
    top: -12px;
    transform: translateX(-50%) rotate(45deg);
    z-index: 0;
}

.counter-items-sec::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50px;
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
    z-index: 0;
}

.counter-number-sec {
    color: #fff;
    font-size: 53px;
    line-height: 75px;
    margin-top: 10px;
    font-weight: 900;
}

.counter-title-sec {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

/*------------------------
    Team Section
------------------------*/
.team-section {
    padding: 100px 0;
}

.team-items-sec {
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.team-items-sec:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.team-items-img-sec img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.team-items-text-sec {
    padding: 10px;
    margin-top: -50px;
    background: #fff;
    border-bottom: 4px solid var(--second-color);
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    position: relative;
    text-align: center;
}

.team-items-text-sec h3 {
    margin: 0;
    color: var(--main-color);
    font-size: 19px;
}

.team-items-text-sec span {
    display: block;
    color: var(--second-color);
    margin-top: 7px;
    font-weight: 900;
    margin-bottom: 5px;
    font-size: 14px;
}

/*------------------------
    Brands Section
------------------------*/
.brands-section {
    padding: 50px 0;
}

.brands-section img {
    width: 170px;
    height: 45px;
    object-fit: contain;
}

/*------------------------
    Footer
------------------------*/
.footer-section {
    background: url('img/footer-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 14px;
    padding: 50px 0 0;
    position: relative;
}

.footer-section a {
    font-size: 13px;
    color: #bbb;
}

.footer-title {
    color: #fff;
    font-size: 22px;
    position: relative;
    font-weight: 700;
    padding-bottom: 35px;
}
#copyright-wrap .container {
    border-top: 1px solid #ffffff20;
    margin-top: 35px;
    padding: 20px 0;
    font-size: 13px;
}

#copyright-wrap a {
    color: var(--second-color);
    font-weight: 700;
}

#copyright-sec-two {
    text-align: left;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 7px;
}

.footer-section ul li a {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

#footer-sec-one img {
    margin-bottom: 15px;
    filter: brightness(100);
}

.footer-contact li i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-left: 15px;
    border-radius: 50px;
    background: var(--second-color);
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
}
#footer-contact a {
    font-size: 17px;
    margin-top: 10px;
    display: inline-block;
}
.footer-contact a::before {
    display: none !important;
}

.footer-contact a:hover {
    color: #fff !important;
    margin-right: 0px !important;
}

.footer-contact {
    font-size: 16px;
}

.footer-contact li {
    margin-bottom: 15px !important;
}

#footer-address,
.footer-phone,
.footer-mobile,
.footer-fax {
    margin: 7px 10px;
}

#footer-address i,
.footer-phone i,
.footer-mobile i,
.footer-fax i {
    font-size: 17px;
    margin-left: 2px;
}

.footer-mobile i {
    font-size: 21px;
}

#footer-contact {
    display: flex;
    flex-wrap: wrap;
}

.phone-fix {
    position: fixed;
    left: 20px;
    bottom: 50px;
    z-index: 2;
}
.phone-fix span {
    background: var(--main-color);
    font-size: 13px;
    padding: 9px 17px 9px 13px;
    border-radius: 0 20px 20px 0;
    color: #fff;
    position: relative;
    left: -12px;
}
.phone-fix img {
    background: #fff;
    border: 2px solid var(--main-color);
    padding: 10px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: relative;
}

/*------------------------
    Single
------------------------*/
.single-header {
    padding: 40px 0 20px;
    position: relative;
}

.blog-header {
    background: var(--main-color);
    padding: 75px 0;
}

.blog-header h1 {
    position: relative;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 23px;
}

.single-header-overlay {
    background-color: rgba(1, 25, 63, .85);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.single-header h1 {
    position: relative;
    margin-bottom: 10px;
    margin-top: 0;
}

.single-header h1::before {
    content: "";
    background-image: url(img/title-before.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -25px;
}

.single-header .breadcrumb,
.blog-header .breadcrumb {
    justify-content: center;
    background: transparent;
    font-size: 14px;
    position: relative;
    padding: 0;
    margin: 0;
    color: var(--second-color);
}

.blog-header .breadcrumb a {
    color: #fff;
}

aside {
    position: sticky;
    top: 95px;
}

.ez-toc-widget-container {
    direction: rtl !important;
}

.ez-toc-widget-container ul li a {
    padding-left: unset !important;
    padding-right: 10px !important;
}

.ez-toc-widget-container nav ul li a::before {
    margin-right: unset !important;
    float: right !important;
    margin-left: 5px !important;
}

.elementor-post {
    position: relative !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1) !important;
}

.elementor-post__thumbnail img {
    filter: none !important;
    top: 0 !important;
    left: 0 !important;
    position: relative !important;
    width: 100% !important;
    object-fit: cover !important;
    transform: unset !important;
    height: 230px !important;
}

aside .ez-toc-title {
    font-size: 15px;
    position: relative;
    margin-bottom: 20px;
    display: block;
    margin-top: 7px;
    color: #000;
    text-align: right;
    font-weight: 700;
    padding-bottom: 10px;
}

aside .ez-toc-widget-container ul {
    list-style: none;
}

aside .ez-toc-widget-container a {
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    padding-bottom: 5px;
    margin-bottom: 13px;
}

aside .widget-area {
    background: #f5f5f5;
    padding: 10px;
}

aside .widget-area .ez-toc-title-toggle {
    display: none;
}

aside .ez-toc-list li:last-child a.ez-toc-link {
    border-bottom: none;
    margin-bottom: 0;
}

.single-main-img {
    margin-bottom: 20px;
}

.single-main-img img {
    width: 100%;
}

.footer-contact-title {
    font-size: 15px;
}

.footer-contact-title i {
    margin-left: 7px;
}

.footer-contact-detail {
    margin-bottom: 10px;
}

.footer-contact-detail a {
    color: #fff;
    font-size: 17px;
}

.page-sec {
    padding: 50px 0;
}


.elementor-post {
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%) !important;
}

.elementor-post__text {
    padding: 20px !important;
}

.elementor-post__thumbnail__link {
    margin-bottom: 0 !important;
}

.elementor-post__read-more {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    padding: 11px 30px !important;
    position: relative !important;
    border-radius: 0px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    text-align: center !important;
    overflow: hidden !important;
    border: none !important;
    background: var(--second-color) !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%) !important;
    z-index: 1 !important;
    transition: all 0.5s !important;
    -webkit-transition: all 0.5s !important;
    -moz-transition: all 0.5s !important;
    -ms-transition: all 0.5s !important;
    -o-transition: all 0.5s !important;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -ms-border-radius: 0px !important;
    -o-border-radius: 0px !important;
}

.elementor-post__read-more::before {
    content: "";
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background: var(--main-color) !important;
    transform-style: preserve-3d !important;
    transform: scale(1, 0) !important;
    transition: 0.5s ease !important;
    z-index: -1 !important;
    -webkit-transform: scale(1, 0) !important;
    -moz-transform: scale(1, 0) !important;
    -ms-transform: scale(1, 0) !important;
    -o-transform: scale(1, 0) !important;
    -webkit-transition: 0.5s ease !important;
    -moz-transition: 0.5s ease !important;
    -ms-transition: 0.5s ease !important;
    -o-transition: 0.5s ease !important;
}

.elementor-post__read-more::after {
    content: "\f060" !important;
    font-family: 'FontAwesome' !important;
    margin-right: 9px !important;
    position: relative !important;
    top: -1px !important;
}

.elementor-post__read-more:hover {
    color: #fff !important;
}

.elementor-post__read-more:hover::before {
    transform-origin: center center !important;
    transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.pagination .current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.pagination .prev, .pagination .next {
    font-weight: bold;
}


/*------------------------
    Breadcrumb
------------------------*/
.site-beradcamb {
    text-align: left;
}

.breadcrumb a {
    color: var(--main-color);
}

.breadcrumb i {
    position: relative;
    top: 5px;
    color: #fff;
}

.breadcrumb i.fa-home {
    top: 0;
}

#mega-menu-wrap-main_left #mega-menu-main_left>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    direction: rtl !important;
    text-align: right !important;
}

#mega-menu-wrap-main_right,
#mega-menu-wrap-main_right #mega-menu-main_right,
#mega-menu-wrap-main_right #mega-menu-main_right ul.mega-sub-menu,
#mega-menu-wrap-main_right #mega-menu-main_right li.mega-menu-item,
#mega-menu-wrap-main_right #mega-menu-main_right li.mega-menu-row,
#mega-menu-wrap-main_right #mega-menu-main_right li.mega-menu-column,
#mega-menu-wrap-main_right #mega-menu-main_right a.mega-menu-link,
#mega-menu-wrap-main_right #mega-menu-main_right span.mega-menu-badge {
    text-align: right !important;
}

#mega-menu-wrap-main_left #mega-menu-main_left li.mega-menu-item-has-children li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
    float: left !important;
    left: 0 !important;
    right: unset !important;
    margin-left: 0;
    margin-right: 5px !important;
}

#mega-menu-wrap-main_left #mega-menu-main_left li.mega-menu-flyout li.mega-menu-item a.mega-menu-link>span.mega-indicator:after {
    rotate: 180deg !important;
}

#mega-menu-wrap-main_right #mega-menu-main_right>li.mega-menu-flyout ul.mega-sub-menu {
    min-width: max-content !important;
}

#mega-menu-wrap-main_left #mega-menu-main_left>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
    left: unset !important;
    right: 100% !important;
}
#mobile-menu-sec{
    display: none;
}