/* styles.css */
@font-face {
    font-family: 'IRANSans';
    src: url('../fonts/IRANSans(FaNum).ttf') format('truetype');
    /* Add additional formats here if necessary */
    /* Example for additional format:
       src: url('/fonts/your-font-file.woff') format('woff'); */
    /* Repeat for other formats as needed */
    /* You can also add font-weight and font-style properties if required */
}

:root {
    --top-increment: 40px; /* Set the default increment */
}
.sweet-alert-rtl {
    direction: rtl;
    text-align: right;
    z-index: 800;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
    font-family: 'IRANSans', sans-serif !important;
    overflow-x: hidden;
}

ul {
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #353535;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 18px;
    color: #464646;
    margin: 0;
}

a {
    text-decoration: none;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Adjust background color and opacity */
    z-index: 9999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.go-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #FFBE2A;
    text-align: center;
    padding-top: 12.5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    cursor: pointer;
    z-index: 9999;
}

.go-to-top img {
    animation: floatUpDown 1s infinite;
}

@media (max-width: 778px) {
    .go-to-top {
        bottom: 122px;
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Adjust this value to control the animation height */
    }
}

.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 100px; /* Adjust width as necessary */
    height: auto;
    margin-bottom: 20px; /* Space between logo and loader */
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db; /* Loader color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.swiper-button-next,
.swiper-button-prev {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}


.swiper-slide {
    height: 675px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 79.79%, rgba(255, 190, 42, 0.5) 100%);
    border: 2px solid #FFD02A;
    border-radius: 57px;
}

.swiper-slide a {
    text-decoration: none;
}

.sample-work__image {
    height: 75%;
    border-radius: 55px 55px 0 0;
}

.dir-rtl {
    direction: rtl;
}

.ckeditor-content {
    padding: 1rem;
}

.ckeditor-content p {
    text-align: justify !important;
}

.ckeditor-content * {
    text-align: justify !important;
    line-height: 30px;
}

.mb-6 {
    margin-bottom: 5rem !important;
}

.dir-ltr {
    direction: ltr !important;
}

.align-items-logo {
    align-items: unset;
}

.yellow-color {
    color: #FFD02A;
}

.links-box {
    margin: 0 40px;
}

.links-box-en {
    margin: 0;
}

ul.navbar-nav li:not(:first-child):not(:last-child) {
    margin: 0 30px;
}

ul.navbar-nav-en li:not(:first-child):not(:last-child) {
    margin: 0 15px;
}

ul.navbar-nav li:first-child {
    margin-left: 30px;
}

ul.navbar-nav-en li:first-child {
    margin: 0 15px;
}

ul.navbar-nav li:last-child {
    margin-right: 30px;
}

ul.navbar-nav-en li:last-child {
    margin: 0 15px;
}

.navbar {
    background: #ffffff;
    height: 118px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999999;
    transition: top 0.3s ease-in-out;
}

.hidden {
    top: -50px;
}

.contact-us-buttons {
    width: 100%;
    display: flex;
    direction: rtl;
    justify-content: space-around;
    margin-top: 6rem;
}

.navbar-container {
    padding: 0 7rem;
}

.hide {
    top: -118px;
}

.menu-btn {
    display: block;
    cursor: pointer;
    padding: 10px;
}

.contact-us-buttons a:nth-child(1) {
    background: #00E0FF;
    margin-left: 1rem;
}

.contact-us-buttons a:nth-child(2) {
    background: #92E749;
    margin-left: 1rem;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -410px; /* Start off-screen */
    bottom: 0;
    transition: all 0.3s ease;
    z-index: 999999999999999;
    height: 100vh;
    width: 410px;
    background: #FFFFFF;
    overflow-y: scroll;
}

.sidebar-en {
    right: unset;
    left: -410px; /* Start off-screen */
}

.line-header-en {
    transform: scaleX(-1);
    width: 103%;
    bottom: 0rem;
}

input#menu-toggle:checked ~ .sidebar {
    right: 0; /* Slide in */
}

input#menu-toggle:checked ~ .sidebar-en {
    left: 0; /* Slide in */
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    position: relative;
    transition: background-color 0.3s ease;
    background: #FFD02A;
    border-radius: 5px;
}

.hamburger:before,
.hamburger:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.3s ease;
    background: #FFD02A;
    border-radius: 5px;
}

.hamburger:before {
    top: -10px;
}

.hamburger:after {
    top: 10px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ccc;
}


.menu li {
    margin-bottom: 10px;
    position: relative;
    width: 90%;
}

.menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ccc;
    text-align: right;
    font-size: 18px;
    padding-bottom: 20px;
}

.menu-en a {
    text-align: left;
}

.menu a img {
    padding-left: 10px;
}

.menu-en a img {
    padding-left: 0;
    margin-right: 10px;
}

.menu li:last-child a {
    border-bottom: none;
}

.menu li:first-child {
    margin-top: 10px;
}

.menu .submenu {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    min-width: 100%;
    background-color: #fff;
    box-shadow: unset;
    z-index: 1;
    padding-right: 3rem;
}

.menu li.has-submenu.active .submenu {
    display: block;
}

.submenu li {
    list-style-type: none;
}

.submenu a {
    padding: 10px;
    color: #333;
    text-decoration: none;
    display: block;
    border-bottom: unset;
}

.submenu li:last-child a {
    border-bottom: none;
}

#menu-toggle {
    display: none;
}

/*.menu a:hover {*/
/*    background-color: #ffe588;*/
/*}*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 99;
    pointer-events: none; /* Allow click-through on the overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.close-btn {
    padding: 5px;
    cursor: pointer;
    font-size: 45px;
    background: transparent;
    border: none;
    color: #626262;
    margin-right: 10px;
    padding-left: 15px;
}

.sidebar-header {
    border-bottom: 1px solid rgba(98, 98, 98, 0.25);
    padding-bottom: 2.5rem !important;
}

.langs-sidebar {
    position: absolute;
    bottom: 5px;
    right: 15px;
}

.langs-sidebar-en {
    right: unset;
    left: 15px;
}

.langs-sidebar img {
    width: 35px;
}

#menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto; /* Enable clicks on the overlay */
}

.main-blur {
    filter: blur(5px); /* Adjust the blur strength as needed */
}

.contacts-buttons-single {
    border-radius: 10px;
    width: 48px;
    height: 48px;
    background: #00E0FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts-buttons-single img {
    width: 24px;
    height: 24px;
}

.contacts-buttons-2 {
    background: #92E749;
}

.contacts-buttons-3 {
    background: #448809;
}

/*input#menu-toggle[type="checkbox"]:checked ~ .menu {*/
/*    display: block;*/
/*}*/

input#menu-toggle[type="checkbox"]:checked ~ .menu-btn .hamburger {
    background-color: transparent;
}

input#menu-toggle[type="checkbox"]:checked ~ .menu-btn .hamburger:before {
    transform: translateY(10px) rotate(45deg);
}

input#menu-toggle[type="checkbox"]:checked ~ .menu-btn .hamburger:after {
    transform: translateY(-10px) rotate(-45deg);
}

.sidebar-department {
    padding-top: 20px;
}

.sidebar-department-single__title div {
    width: 90px;
    height: 90px;
    background: #D9D9D9;
    border-radius: 20px;
}

.sidebar-department-single p {
    margin-bottom: 0;
    height: 100%;
    margin-top: 35px;
    text-align: right;
    padding-right: 20px;
    padding-left: 15px;
}

.sidebar-department-single {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.call-to-action {
    position: fixed;
    right: 0;
    bottom: 10rem;
    z-index: 999;
    width: 93px;
    height: 270px;
    background: #000;

    border-radius: 20px 0px 0px 20px;
    box-shadow: 0 0 8px -3px rgba(0, 0, 1, 1);
    transition: all 0.2s ease;
}

.call-to-action-en {
    right: unset;
    left: 0;
    border-radius: 0 20px 20px 0;
    height: 113px;
}

.call-to-action .call-to-action__link {
    cursor: pointer;
}

.swiper-container-blog, .swiper-container-blog1 {
    padding: 0 30px;
}

.cta-button {
    display: block;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .call-to-action {
        bottom: auto;
        top: 50%; /* Adjust the top position as needed */
        transform: translateY(-50%);
    }
}

.call-to-action__mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
    height: 110px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 8px -3px rgba(0, 0, 1, 1);
}

.call-to-action__mobile div {
    width: 50px !important;
    height: 50px !important;
    margin-bottom: 8px;
}

.call-to-action__mobile img {
    width: 27px !important;
    height: 27px !important;
}

.call-to-action__mobile a {
    text-decoration: none;
    color: #292929;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.call-to-action__mobile-en a:nth-child(2) span {
    font-family: ui-monospace;
}

.logo-hat {
    margin-left: 11px;
    width: 57px;
}

.logo-fa {
    margin-bottom: 7px;
}

.logo-fa, .logo-en {
    width: 80px;
}

.logo-box {
    position: relative;
}

.departmet {
    position: relative;
    display: flex;
    top: 3px;
    align-items: center;
}

.departmet-box {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.portfolio-padding {
    padding: 2rem 5rem;
    padding-bottom: 0;
}

/*.logo-box:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 80%;*/
/*    border: 1px solid #FFD02A;*/
/*    right: -10px;*/
/*    top: -65rem;*/
/*    bottom: 0px;*/
/*    border-width: 0 2px 2px 0;*/
/*    border-radius: 0 0 15px 0;*/
/*}*/

.logo-departmet {
    width: 30px;
}

.departmet-title {
    font-weight: 600;
}

.departmet-title-en {
    font-size: 14px;
}

/*.departmet:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 34%;*/
/*    border: 1px solid #FFD02A;*/
/*    left: -33px;*/
/*    top: -0.66rem;*/
/*    bottom: -7px;*/
/*    border-width: 2px 0 0 2px;*/
/*    border-radius: 15px 0 0 0;*/
/*}*/

.phone-company {
    display: flex;
    padding: 14px 20px;
    background: #FFD02A;
    border-radius: 10px;
    height: 40px;
    align-items: center;
    flex-direction: row-reverse;
    margin-left: 35px;
}

.phone-company-en {
    margin-left: 0;
    margin-right: 10px;
}

a.phone-company:hover {
    text-decoration: none;
}

.phone-company span {
    margin-left: 10px;
    direction: ltr;
}

.phone-company-en span {
    margin-left: 0;
    margin-right: 10px;
    font-family: ui-monospace;
}

.langs img {
    width: 32px;
}

.flag {
    position: absolute;
    bottom: -178px;
    left: -10px;
}

.flag-en {
    left: unset;
    right: -10px;
}

.flag1 {
    position: relative;
    left: -8px;
    display: none;
    height: 118px;
    width: 50px;
    background: #F00;
}

.flag1-en {
    left: unset;
    right: -8px;
}

.flag span, .flag1 span {
    position: absolute;
    transform: rotate(-90deg);
    color: #fff;
    left: 12px;
    top: 50px;
}

.flag1 span {
    position: absolute;
    transform: rotate(-90deg);
    color: #fff;
    left: -14px;
    top: 50px;
    width: 5rem;
}

.flag img, .flag1 img {
    width: 100px;
}

.nav-item a {
    text-decoration: none;
}

.nav-item .dropdown-item {
    text-decoration: none;
    border-bottom: 1px solid #96909057;
    padding: 10px 12px;
}

.dropdown:hover .dropdown-menu {
    width: 250px;
}

.header-text-section {
    background: #ffffff;
    padding-top: 2px;
    padding-bottom: 60px;
}

.header-text-section__landing {
    padding-top: 160px !important;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-text div {
    width: 720px;
    margin-top: 43px;
}

.rahat-code-services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 122px;
}

.rahat-code-services h2 {
    direction: rtl;
}

.rahat-code-services-container {
    margin: 75px 0;
}

.single-service {
    border: 2px solid #FFD02A;
    border-radius: 20px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.single-service h3 {
    margin-top: 50px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-image-box {
    position: absolute;
    top: -50px;
    right: 22%;
    background: #fff;
    width: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image-box img {
    height: 80px;
    width: auto;
}

.single-service-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 60%;
    margin-top: 20px;
}

.single-service-description p {
    padding: 0 20px;
    text-align: center;
    direction: rtl;
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-service-description__paragraph.dir-ltr * {
    direction: ltr;
}

.single-service-description div {
    margin-bottom: 10px;
}

.single-service-description a {
    background: #FFD02A;
    border: 1px solid #848282;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    color: #404040;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    direction: rtl;
    margin-bottom: 10px;
}

.single-service-description-en a {
    direction: ltr !important;
}

.single-service-description a:first-child {
    background: #00E0FF;
}

.single-service-description a:nth-child(2) {
    background: #92E749;
}

.single-service-description a img, .sample-work-link__img {
    width: 20px;
    margin-left: 10px;
}

.single-service-description-en a img {
    margin-left: unset;
    margin-right: 10px;
}

.department-rahat-code {
    padding: 54px 0;
    padding-bottom: 0;
}

.rahat-code-departments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; /* Adjust the gap between columns as needed */
    margin-top: 122px;
    direction: rtl;
}

.single-department {
    background: #FFFFFF;
    border: 2px solid #FFD02A;
    border-radius: 20px;
    margin-bottom: 82px;
    height: 230px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    position: relative;
    align-items: center;
}

.single-department .comiong-soon {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background: #d6d6d69c;
    z-index: 1000;
    border-radius: 19px;
    display: flex;
    justify-content: center;
}

.single-department .comiong-soon .title {
    padding: 12px 15px;
    background: #FFD02A;
    z-index: 1100;
    border-radius: 10px;
    height: 50px;
    margin-top: 44%;
}

@media all and (max-width: 775px) {

    .single-department .comiong-soon .title {
        margin-top: 13%;
    }
}

.single-department a {
    text-decoration: none;
}

.department-image-box {
    position: absolute;
    top: -41px;
    right: 26%;
    background: #F5F5F5;
    width: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.department-image-box img {
    width: 70px;
}

.department-image-box::after {
    position: absolute;
    content: '';
    background: #FFFFFF;
    width: 100px;
    height: 30px;
    z-index: -1;
    top: 41px;
    right: -4px;
}

.single-department h3 {
    text-align: center;
    margin-top: 40px;
    color: #404040;
}

.single-department-description {
    margin-top: 15px;
}

.single-department-description p {
    padding: 0 5px;
    text-align: center;
    direction: rtl;
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.single-department-description-en p {
    direction: ltr;
}

.single-department-link {
    background: #FFD02A;
    border: 1px solid #848282;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    color: #404040;
    font-weight: 500;
    text-decoration: none;
    width: 120px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 1rem;
}

.about-rahat-code {
    background: #fff;
    position: relative;
}

.about-rahat-code h2 {
    padding-top: 154px;
    text-align: center;
}

.rahat-code-about-container {
    margin-top: 54px;
    padding-bottom: 50px;
}

.about-rahat-code-video {
    background: #F1F1F1;
    border: 1px solid #000000;
    border-radius: 25px;
    max-width: 665px;
    /*height: 370px;*/
    overflow: hidden;
    height: fit-content;
}

.h_iframe-aparat_embed_frame {
    position: relative;
    width: 100%;
    height: 104%;
    margin-top: -15px;
}

.h_iframe-aparat_embed_frame
.ratio {
    display: block;
    width: 100%;
    height: auto;
}

.h_iframe-aparat_embed_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rahat-code-about-container p {
    text-align: right;
    font-weight: 400;
    line-height: 38px;
    padding-left: 50px;
}

.shape1 {
    position: absolute;
    top: 14%;
    right: 20%;
    opacity: 0.6;
}

.shape2 {
    position: absolute;
    top: 24%;
    right: 30%;
    opacity: 0.6;
}

.shape3 {
    position: absolute;
    top: 9%;
    right: 38%;
    opacity: 0.6;
}

.shape4 {
    position: absolute;
    top: 10%;
    right: 49%;
    opacity: 0.6;
    transform: rotate(20deg);
}

.shape5 {
    position: absolute;
    top: 14%;
    left: 37%;
    opacity: 0.6;
    transform: rotate(20deg);
}

.shape6 {
    position: absolute;
    top: 6%;
    left: 28%;
    opacity: 0.6;
    transform: rotate(-40deg);
}

.shape7 {
    position: absolute;
    top: 24%;
    left: 22%;
    opacity: 0.6;
    transform: rotate(-39deg);
}

.goal-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal-rahat-code {
    background: rgba(242, 242, 242, 0.8);
    padding-top: 60px;
    padding-bottom: 70px;
}

.goal-rahat-code .container {
    margin-top: 100px;
}

.goal-text {
    text-align: right;
    line-height: 38px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal-text p {
    text-align: right;
    line-height: 38px;
}

.swiper-container {
    overflow: hidden;
}

.sample-work-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sample-work-desc h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #464646;
}

.sample-work-desc h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 31px;
    text-align: center;
    color: #353535;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    direction: rtl;
    padding: 0 20px;
}

.sample-work-desc-en h4 {
    direction: ltr;
}

.sample-work-section {
    background: #ffffff;
    padding: 60px 0;
}

.sample-work-desc a.sample-work-link, .contact-us-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    background: #FFD02A;
    border: 1px solid #161616;
    border-radius: 10px;
    width: 80%;
    text-decoration: none;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-us-button-en img {
    margin-left: unset;
    margin-right: 10px;
}

.sample-work-link__1 {
    direction: rtl;
    background: #00E0FF !important;
    margin-bottom: 10px;
}

.sample-work-link__2 {
    background: #92E749 !important;
}

.all-sample-works {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    border: 1px solid #626262;
    border-radius: 10px;
    margin-top: 35px;
    width: 210px;
    height: 68px;
}

.colleagues-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.colleagues-section h2 {
    position: relative;
    z-index: 2;
}

.top-section {

}

.brush-img {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.brush-img-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.colleague-box {
    border: 3px solid #A3A3A3;
    border-radius: 25px;
    width: 169px;
    height: 169px;
    margin-bottom: 30px;
}

.colleagues-container {
    margin-top: 100px;
}

.rahat-code-blog {
    padding: 60px 0;
    background: rgba(242, 242, 242, 0.8);
}

.rahat-code-contact {
    padding: 60px 0;
    background: #ffffff;
}

.map-box {
    background: #D9D9D9;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    height: 320px;
    width: 80%;
}

.contact-location-box h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 41px;
    /* identical to box height */

    text-align: center;

    color: #464646;
    margin: 0;
}

.location-text {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 41px;
    text-align: center;

    color: #464646;
    margin-top: 5px;
}

.container-form-contact {
    margin-top: 65px;
}

.contact-form-input {
    border: 2px solid #FFD02A;
    border-radius: 10px;
    text-align: right !important;
    direction: rtl;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 31px;
    color: #A3A3A3;
    height: 50px;
}

input.contact-form-input:focus,
textarea.contact-form-input:focus {
    box-shadow: none;
    outline: none;
    border-color: #FFD02A;
}


.form-group-contact {
    position: relative;
    margin-bottom: 20px;
}

.form-label {
    position: absolute;
    top: 15px;
    right: 25px;
    pointer-events: none;
    transition: 0.2s;
    color: #999;
    font-size: 14px;
    direction: rtl;
    padding-right: 7px;
}

.has-value {
    top: -10px !important;
    font-size: 12px !important;
    color: #555 !important;
    background: #ffffff !important;
    padding: 0 8px !important;
}

.contact-form-input:focus + .form-label {
    top: -10px;
    font-size: 12px;
    color: #555;
    background: #ffffff;
    padding: 0 8px;
}


.form-group-contact {
    margin-bottom: 2.2rem;
}

.contact-form-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    background: #FFD02A;
    border: 1px solid #848282;
    border-radius: 10px;
}

/* services page */

.our-services {
    background: #ffffff;
    padding: 151px 0 60px;
}

.our-services-text, .about-us-text, .faq-text {
    position: relative;
}

.our-services-text:before, .about-us-text:before, .faq-text:before {
    content: "";
    position: absolute;
    background-image: url(../img/shadow.png);
    background-size: cover;
    background-position: center;
    width: 550px;
    height: 550px;
    top: -70%;
    right: 0;
}

.about-us-text:before {
    top: -70%;
    right: 0;
}

.faq-text:before {
    top: -90%;
    right: -5%;
}

.about-video-box {
    height: 620px;
    background: #D9D9D9;
    border: 1px solid #000000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-video-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-text {
    padding: 0 190px;
    line-height: 35px;
}

.main-page-img {
    width: 30rem;
}

.our-services-text h1, .main-page-text h1 {
    text-align: center;
    margin-bottom: 30px;
}

.our-services-text p, .main-page-text p {
    text-align: right;
    position: relative;
}

.our-services-detail {
    background: #ffffff;
    padding: 60px 0;
}

.our-services-row {
    height: 200px;
    border: 2px solid #FFD02A;
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    direction: rtl;
}

.our-services-row ul {
    margin-left: 3rem;
}

.our-services-row ul > :not(:last-child) {
    margin-left: 5rem;
}

.our-services-row li {
    list-style: none;

    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    /* identical to box height */


    color: #464646;

}

.our-services-title {
    /*margin: 85px 95px 35px 0;*/
    position: relative;
    min-width: 220px;
    margin-left: 6rem;
}

.our-services-title:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
    left: -40%;
    top: 50%;
}

.our-services-buttons {
    margin-left: 30px;
    position: relative;
}

.our-services-buttons:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
    right: -100%;
    top: 50%;
}

a.our-services-buttons__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    background: #FFD02A;
    border: 1px solid #848282;
    border-radius: 10px;
    height: 42px;
    text-decoration: none;
    margin-bottom: 14px;
    color: #404040;
    font-size: 20px;
}

a.our-services-buttons__sample {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    border: 1px solid #626262;
    border-radius: 10px;
    text-decoration: none;
    color: #626262;
    font-size: 20px;
    height: 42px;
}

.our-services-title img {
    width: 100px;
    height: 80px;
    margin-bottom: 10px;
    background: #FFFFFF;
    z-index: 9;
}

/* blog */

.main-blog-img {
    width: 100%;
    height: 320px;
}

.single-blog-header h1 {
    line-height: 50px;
}

.single-blog-info {
    display: flex;
    flex-direction: row;
    direction: rtl;
    width: 100%;
    justify-content: space-around;
    /* padding: 4px; */
    position: relative;
}

.single-blog-info::before {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    background: #000000;
    top: -12px;
}

.summary-blog {
    width: 100%;
    height: auto;
    position: relative;
    border: 2px solid #FFD02A;
    border-radius: 20px;
}

.summary-blog h2 {
    position: absolute;
    top: -13px;
    right: 2rem;
    padding: 0 15px;
    background: #FFFFFF;
}

.summary-blog-en h2 {
    left: 2rem;
    right: unset;
}

.summary-blog p {
    padding: 35px 20px;
    text-align: right;
    line-height: 40px;
}

.summary-blog-en p {
    text-align: left;
    direction: ltr;
}

/* landing page */

.why-rahat-code {
    padding: 60px 0;
}

.why-rahat-code .container {
    margin-top: 30px;
}

.why-rahat-code .row {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.reason-img-box {
    width: 170px;
    height: 170px;
    border: 3px solid #464646;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reason-box h3 {
    margin-top: 10px;
    text-align: center;
    min-height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.why-site-design {
    padding-top: 150px !important;
}

.header-why {
    position: relative;
    z-index: 1;
}

.why-site-design > .container:nth-child(2) {
    margin-top: 150px;
}

.why-site-design > .container:nth-child(3) {
    margin-top: 100px;
}

.why-site-design > .container:nth-child(4) {
    margin-top: 100px;
    margin-bottom: 100px;
}


/*.header-why::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-image: url(../img/shadow1.png);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    width: 1113px;*/
/*    height: 302px;*/
/*    right: 12%;*/
/*    bottom: -9rem;*/
/*    z-index: -1;*/
/*}*/

.odd-reason {
    border: 3px solid #FFD02A;
    border-radius: 0 30px 30px 0;
    border-left: unset;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    padding-right: 1rem;
}

.even-reason {
    border: 3px solid #FFD02A;
    border-radius: 30px 0 0 30px;
    border-right: unset;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}


.odd-reason .ckeditor-content, .even-reason .ckeditor-content {
    margin: 20px 0;
    font-size: 18px;
    color: #464646;
    line-height: 30px;
}

.padding-60 {
    padding: 60px 0;
}

.most-important-reason {
    border: 7px solid #FFBE2A;
    border-radius: 30px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px 75px 30px 150px;
}

.most-important-reason h2 {
    margin-bottom: 10px;
    direction: rtl;
    text-align: center;
}

.danger-img {
    position: absolute;
    left: -7.6rem;
    top: 2rem;
}

.most-important-reason p {
    text-align: center;
    line-height: 41px;
}

.fear-design {
    border: 5px solid #FFD02A;
    border-radius: 20px;
    position: relative;
}

.fear-1 {
    margin-top: 95px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: right;
    padding: 0 95px;
    direction: rtl;
}

.blog-section {
    padding: 0 !important;
}

.fear-1 h3 {
    margin-bottom: 35px;
    direction: rtl;
    position: relative;
    z-index: 1;
}

.fear .ckeditor-content {
    padding: unset;
}

.fear .ckeditor-content p {
    text-align: justify !important;
}

.fear .ckeditor-content * {
    text-align: justify !important;
    line-height: 31px;
}

.blog-section-en h3, .blog-section-en p {
    text-align: left;
    font-family: sans-serif;
    direction: ltr;
}

.blog-section h3:after {
    left: 51% !important;
}

.tips {
    border: 2px solid #FFD02A;
    border-radius: 20px 0 20px 0;
}

.tips h3 {
    padding: 45px;
    line-height: 40px;
}

.blog-call {
    width: 300px;
    height: 50px;
    background: #FFD02A;
    border-radius: 10px;
    font-size: 22px;
    color: #404040;
}

.blog-call:hover {
    text-decoration: none;
    color: #404040;
}

.accordion {
    width: 100%;
    direction: rtl;
}

.accordion-item {
    margin-bottom: 20px;
    border: 2px solid #FFD02A;
    border-radius: 5px;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-weight: 400;
    font-size: 19px;
    line-height: 41px;
    color: #464646;
    text-align: right;
    direction: rtl;
}

.accordion-header-en h3 {
    direction: ltr;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.accordion-icon {
    transition: transform 0.3s ease-in-out;
    margin-left: 10px;
}

.accordion-icon-en {
    margin-left: unset;
    margin-right: 10px;
    transform: scale(-1);
}

.faq-content {
    text-align: right;
    padding: 0 20px;
}

.faq-content-en {
    text-align: left;
    direction: ltr;
}

.success-message {
    width: 100%;
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
    font-weight: 700;
    font-size: 23px;
    line-height: 40px;
}

.fail-message {
    border-bottom: unset;
}

.fail-image {
    width: 7rem;
}

.thanks-message {
    font-weight: 400;
    font-size: 23px;
    line-height: 40px;
    color: #000000;
    margin-top: 2rem;
    direction: rtl;
    text-align: center;
}

.reciept-table-text {
    font-weight: 400;
    font-size: 23px;
    line-height: 40px;
    direction: rtl;
    color: #B3261E;
}

.print-reciept {
    width: 240px;
    height: 55px;
    border: 3px solid #9747FF;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #9747FF;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
}

.print-reciept:hover {
    color: #9747FF;
    text-decoration: none;
}

.factor-box {
    width: 100%;
    height: auto;
    border: 2px solid #FFD02A;
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

table {
    direction: rtl;
    text-align: right;
    width: 70% !important;
}

table td {
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
    .contact-us-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
    }

    .contact-us-buttons a {
        margin-bottom: 15px;
        margin-left: 0;
    }

    .contact-us-button {
        margin-left: 0 !important;
    }

    .map-box {
        width: 100%;
        margin-bottom: 2rem;
    }

    .our-services-text:before {
        top: -43%;
        right: 18%;
        width: 280px;
        height: 280px;
    }

    .danger-img {
        left: -2.3rem;
        width: 7rem;
    }

    .most-important-reason {
        padding: 36px 30px 30px 65px;
    }

    .even-reason, .odd-reason {
        flex-direction: column;
    }

    .odd-reason p, .even-reason p {
        width: 100%;
        margin-right: 0;
    }

    .even-reason p {
        margin-left: 0;
    }

    .even-reason h3, .odd-reason h3 {
        margin-top: 1rem;
    }

    .accordion-icon {
        margin-top: 5px;
    }

    .accordion-header h3 {
        font-size: 18px;
        line-height: 35px;
    }

    .faq-content {
        padding-bottom: 25px;
    }
}

.fear-design-header {
    position: relative;
    z-index: 1;
    top: -16px;
    background: #fff;
    min-width: 40rem;
}

.fear-design-header:after {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 29rem;
    height: 74px;
    position: absolute;
    left: 29%;
    top: -95%;
    z-index: -1;
}

.fear {
    margin-top: 65px;
}

.last-fear {
    margin-bottom: 55px;
}

.timeline {
    background: #ffffff;
    padding: 60px 0;
}

.timeline h2 {
    position: relative;
    z-index: 2;
}

.timeline h2:after {
    content: "";
    display: block;
    background-image: url(../img/brush.svg);
    background-size: cover;
    width: 650px;
    height: 85px;
    position: absolute;
    left: 28%;
    top: -95%;
    z-index: -1;
}

.contact-box-landing {
    background: #000000;
    border-radius: 20px;
    height: 133px;
    width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-box-landing__single {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-box-landing__single h5 {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.contact-box-landing__single__icon1, .contact-box-landing__single__icon2, .contact-box-landing__single__icon3 {
    background: #00E0FF;
    border-radius: 10px;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes example {
    0% {
        transform: translateX(-30px) rotate(-15deg);
        opactiy: 0;
    }
    25% {
        transform: translateX(-5px) rotate(10deg);
        opactiy: 0.7;
    }
    50% {
        transform: translateX(0) rotate(20deg);
        opactiy: 1;
    }
    75% {
        transform: translateX(5px) rotate(10deg);
        opactiy: 0.7;
    }
    100% {
        transform: translateX(50px) rotate(-15deg);
        opactiy: 0;
    }
}

@keyframes example1 {
    0% {
        transform: rotate(-20deg) scale(0.8);
    }
    50% {
        transform: rotate(45deg) scale(1);
    }
    100% {
        transform: rotate(-20deg) scale(0.8);
    }
}

@keyframes example2 {
    0% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(-5px);
    }
}

.contact-box-landing__single__icon1 img {
    animation: example 2s linear infinite;
}

.contact-box-landing__single__icon2 img {
    animation: example1 2s linear infinite;
}

.contact-box-landing__single__icon3 img {
    animation: example2 1s linear infinite;
}

.contact-box-landing__single__icon2 {
    background: #92E749;
}

.contact-box-landing__single__icon3 {
    background: #448809;
}

.arrive-section {
    padding-top: 120px;
}

.arrive-single {
    min-height: 205px;
    border: 3px solid #FFD02A;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.arrive-single p {
    margin-bottom: 0;
    text-align: justify;
}

.arrive-section .container {
    margin-top: 140px;
}

.arrive-single-heading {
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    align-items: center;
    border-left: 1px solid #A3A3A3;
    flex: 3;
}

.arrive-single .ckeditor-content {
    flex: 7;
}

.arrive-single-heading-en {
    padding-left: unset;
    border-left: unset;
    border-right: 1px solid #A3A3A3;
}

.arrive-single-heading img {
    margin-left: 1rem;
}

.arrive-single-heading-en img {
    margin-left: unset;
    margin-right: 1rem;
}

/*.header-why::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-image: url(../img/shadow1.png);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    width: 1113px;*/
/*    height: 302px;*/
/*    right: 12%;*/
/*    bottom: -9rem;*/
/*    z-index: -1;*/
/*}*/

.sample-work-rahat {
    padding-top: 140px;
    padding-bottom: 60px;
}

.sample-work-rahat h2 {
    position: relative;
    z-index: 1;
}

/*.sample-work-rahat h2::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-image: url(../img/shadow1.png);*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    width: 1113px;*/
/*    height: 302px;*/
/*    right: 12%;*/
/*    bottom: -9rem;*/
/*    z-index: -1;*/
/*}*/

.header-about::before {
    display: none;
}

select.categories-select-box {
    border: 2px solid #FFD02A;

    background-image: linear-gradient(45deg, transparent 50%, #FFD02A 60%),
    linear-gradient(135deg, #FFD02A 40%, transparent 50%) !important;
    background-position: calc(10% - 29px) 20px,
    calc(10% - 19px) 20px,
    55% 0;
    background-size: 10px 10px,
    10px 10px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;

    border-radius: 5px;
    width: 330px;
    height: 50px;
    margin-top: 130px;
    direction: rtl;
    position: relative;
}

select.categories-select-box option:first-child {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 41px;
    /* identical to box height */

    text-align: right;

    /* Blank Filed */

    color: #A3A3A3;
}

select.categories-select-box:focus {
    outline: 1px solid #FFD02A !important;
    border-color: #FFD02A !important;
    box-shadow: unset;
}

#app-cover {
    top: 0;
    right: 0;
    left: 0;
    height: 42px;
    margin: 140px auto 0 auto;
    z-index: 500;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    /* Primary */

    border: 2px solid #FFD02A;
    /* DropD Blur */

    backdrop-filter: blur(7.5px);
    /* Note: backdrop-filter has minimal browser support */

    border-radius: 5px;
    width: 330px;
}

#select-button {
    position: relative;
    height: 16px;
    padding: 12px 14px;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

#options-view-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

#selected-value {
    font-size: 16px;
    line-height: 1;
    color: #A3A3A3;
}

.option i {
    width: 16px;
    height: 16px;
}

.option, .label {
    color: #2d3667;
    font-size: 16px;
}

#chevrons {
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 0;
    width: 12px;
    padding: 9px 14px;
}

/*#chevrons i {*/
/*    display: block;*/
/*    height: 50%;*/
/*    color: #d1dede;*/
/*    font-size: 12px;*/
/*    text-align: right;*/
/*}*/

/*#options-view-button:checked + #select-button #chevrons i {*/
/*    color: #2d3667;*/
/*}*/

.options {
    position: absolute;
    left: 0;
    width: 250px;
}

#options {
    position: absolute;
    top: 42px;
    right: 0;
    left: 0;
    width: 330px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 1);
    border: 2px solid #FFD02A !important;
    backdrop-filter: blur(7.5px);
    border-radius: 5px;
    margin-right: -1px;
    z-index: 10000;
}

#options-view-button:not(:checked) ~ #options {
    display: none;
}

#options-view-button:checked ~ #options {
    border: 1px solid #e2eded;
    border-color: #eaf1f1 #e4eded #dbe7e7 #e4eded;
}

.option {
    position: relative;
    line-height: 1;
    transition: 0.3s ease all;
    z-index: 2;
}

.option i {
    position: absolute;
    left: 14px;
    padding: 0;
    display: none;
}

#options-view-button:checked ~ #options .option i {
    display: block;
    padding: 12px 0;
}

.label {
    display: none;
    padding: 0;
    margin-left: 27px;
}

#options-view-button:checked ~ #options .label {
    display: block;
    padding: 12px 14px;
}

.s-c {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
}

.s-c.top {
    top: 0;
}

.s-c.bottom {
    bottom: 0;
}

input[type="radio"] {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.s-c:hover ~ i {
    color: #fff;
    opacity: 0;
}

.s-c:hover {
    height: 100%;
    z-index: 1;
}

.s-c.bottom:hover + i {
    bottom: -25px;
    animation: moveup 0.3s ease 0.1s forwards;
}

.s-c.top:hover ~ i {
    top: -25px;
    animation: movedown 0.3s ease 0.1s forwards;
}

@keyframes moveup {
    0% {
        bottom: -25px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes movedown {
    0% {
        top: -25px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

.label {
    transition: 0.3s ease all;
}

.opt-val {
    position: absolute;
    left: 14px;
    width: 217px;
    height: 21px;
    opacity: 0;
    background-color: #fff;
    transform: scale(0);
}

.option input[type="radio"]:checked ~ .opt-val {
    opacity: 1;
    transform: scale(1);
}

.option input[type="radio"]:checked ~ i {
    top: 0;
    bottom: auto;
    opacity: 1;
    animation: unset;
}

.option input[type="radio"]:checked ~ i,
.option input[type="radio"]:checked ~ .label {
    color: #2d3667;
}

.option input[type="radio"]:checked ~ .label:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

#options-view-button:not(:checked)
~ #options
.option
input[type="radio"]:checked
~ .opt-val {
    top: -30px;
}

.option input[type="radio"]:checked ~ .label:before {
    background-color: #E9E9E9;
    border-radius: 4px 4px 0 0;
}

/*.option:nth-child(1) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #000;*/
/*    border-radius: 4px 4px 0 0;*/
/*}*/

.option:nth-child(1) input[type="radio"]:checked ~ .opt-val {
    top: -31px;
}

/*.option:nth-child(2) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #ea4c89;*/
/*}*/

.option:nth-child(2) input[type="radio"]:checked ~ .opt-val {
    top: -71px;
}

/*.option:nth-child(3) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #0057ff;*/
/*}*/

.option:nth-child(3) input[type="radio"]:checked ~ .opt-val {
    top: -111px;
}

/*.option:nth-child(4) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #32c766;*/
/*}*/

.option:nth-child(4) input[type="radio"]:checked ~ .opt-val {
    top: -151px;
}

/*.option:nth-child(5) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #f48024;*/
/*}*/

.option:nth-child(5) input[type="radio"]:checked ~ .opt-val {
    top: -191px;
}

/*.option:nth-child(6) input[type="radio"]:checked ~ .label:before {*/
/*    background-color: #006400;*/
/*    border-radius: 0 0 4px 4px;*/
/*}*/

.option:nth-child(6) input[type="radio"]:checked ~ .opt-val {
    top: -231px;
}

.option .fa-codepen {
    color: #000;
}

.option .fa-dribbble {
    color: #ea4c89;
}

.option .fa-behance {
    color: #0057ff;
}

.option .fa-hackerrank {
    color: #32c766;
}

.option .fa-stack-overflow {
    color: #f48024;
}

.option .fa-free-code-camp {
    color: #006400;
}

#option-bg {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 40px;
    transition: 0.3s ease all;
    z-index: 1;
    display: none;
}

#options-view-button:checked ~ #options #option-bg {
    display: block;
}

.option {
    text-align: right;
}

.option:hover .label {
    color: #000 !important;
    background: #E9E9E9 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}


.option:hover ~ #option-bg {
    background-color: #E9E9E9;
}

/*.option{*/
/*    top: calc(var(--top-increment) * var(--n));*/

/*}*/

.option:hover ~ #option-bg {
    /* Calculate top using the custom property */
    top: calc(var(--top-increment) * var(--n));
    border-radius: 4px 4px 0 0;
    background: #000;
}

.sample-work-single {
    height: 520px;
    width: 100%;
    border: 2px solid #FFD02A;
    border-radius: 20px;
    margin-bottom: 72px;
}

.sample-work-image {
    height: 240px;
    width: 100%;
    background: #D9D9D9;
    border-radius: 20px 20px 0 0;
}

.sample-work-rahat .container {
    margin-top: 70px;
}

.sample-work-landing__links a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    border: 1px solid #626262;
    border-radius: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 34px;
    color: #626262;
    width: 170px;
    height: 40px;
    text-decoration: none;
}

.sample-work-landing__links a:first-child {
    border: 1px solid #626262;
    margin-bottom: 15px;
}


.sample-work-landing__links a:last-child {
    background: #FFD02A;
    border: 1px solid #848282;
}

.sample-work-landing__desc {
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.sample-work-landing__desc h3 {
    line-height: 32px;
}

/* footer section */

.footer {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    height: auto;
    margin-top: -40px;
    background-image: linear-gradient(to bottom, #fff6d5, #ffeeb2, #ffe58f, #ffdc6a, #ffd341);
}

.footer h5 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    text-align: center;
    color: #000000;
    border-bottom: 1px solid #000000;
}

.logo-rahat-code {
    border-radius: 15px;
    width: 130px;
    height: 130px;
}

.logo-rahat-code img {
    width: 197px !important;
}

.footer-block-header h5 {
    /*border-bottom: unset;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*background: #FFF2C7;*/
}

.footer-block-header {
    /*border-bottom: 1px solid #000000;*/
    position: relative;
}

.certificate-single {
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    width: 130px;
    height: 130px;
    display: block;
}

a.related-link {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
    text-align: right;
    color: #000000;
    text-decoration: none;
}

.landing-box {
    direction: rtl !important;
}

.landing-box a.related-link {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 31px;
    text-align: right;
    color: #000000;
    text-decoration: none;
    margin-right: 10px;
}

.landing-box a.related-link-ltr {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 31px;
    text-align: right;
    color: #000000;
    text-decoration: none;
    margin-left: 10px;
}

.landing-box a.related-link::before {
    content: "\025CF";
    position: absolute;
    top: 0;
    right: 8px;
}

.landing-box a.related-link-ltr::before {
    content: "\025CF";
    position: absolute;
    top: 0;
    left: 8px;
}

.below-footer-section h5 {
    border-bottom: unset;
}

.wrapper {
    max-width: 1080px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

.wrapper .center-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #FFD02A;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.wrapper .row {
    display: flex;
}

.wrapper .row-1 {
    justify-content: flex-start;
}

.wrapper .row-2 {
    justify-content: flex-end;
}

.wrapper .row section {
    background: #fff;
    width: calc(50% - 40px);
    padding: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #FFD02A;
    backdrop-filter: blur(7.5px);
    border-radius: 20px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .row section::before {
    position: absolute;
    content: "";
    top: 28px;
    z-index: -1;
    transform: rotate(90deg);
    border-width: 0 15px 15px 15px;
    border-style: solid;
    border-color: transparent transparent #FFD02A transparent;
}

.row-1 section::before {
    right: -22px;
}

.row-2 section::before {
    left: -21px;
    transform: rotate(270deg) !important;
}

.row section .icon,
.center-line .scroll-icon {
    position: absolute;
    background: #ffffff;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: #FFD02A;
    font-size: 23px;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.center-line .scroll-icon {
    bottom: 0px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
}

.row-1 section .icon {
    top: 15px;
    right: -60px;
}

.row-2 section .icon {
    top: 15px;
    left: -60px;
}

.row section .details,
.row section .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 5;
}

.row section .timeline-box-content .ckeditor-content {
    flex: 5;
    padding: unset;
}

.row section .details img {
    margin-bottom: 18px;
}

.timeline-box-content ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-box-content ul li {
    margin-bottom: 10px;
}

.row section .details .title {
    font-size: 22px;
    font-weight: 600;
}

.row section p {
    margin: 10px 0 17px 0;
}

.row section .bottom a {
    text-decoration: none;
    background: #3ea0e2;
    color: #fff;
    padding: 7px 15px;
    border-radius: 5px;
    /* font-size: 17px; */
    font-weight: 400;
    transition: all 0.3s ease;
}

.row section .bottom a:hover {
    transform: scale(0.97);
}

@media (max-width: 790px) {
    .wrapper .center-line {
        left: 40px;
    }

    .wrapper .row {
        margin: 30px 0 3px 60px;
    }

    .wrapper .row section {
        width: 100%;
    }

    .row-1 section::before {
        left: -7px;
    }

    .row-1 section .icon {
        left: -60px;
    }
}

@media (max-width: 440px) {
    .wrapper .row {
        margin: 10px 0;
    }
}

.custom-select1 {
    position: relative;
    width: 52px;
    margin-left: 68px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #FFD02A;
    backdrop-filter: blur(10px);
    border-radius: 5px;
}

.select-selected {
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: auto;
    max-height: 200px;
}

.select-option {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    justify-content: center;
}

.select-option:hover {
    background-color: #f0f0f0;
}

.select-option img {
    width: 24px;
    height: 24px;
}

.custom-select1.open .select-options {
    display: block;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #FFD02A;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    width: 52px;
}

.select-selected img {
    z-index: -1;
}

/* Timeline Container */
.timeline1 {
    margin: 20px auto;
    padding: 20px;
    width: 45%;
}

/* Card container */
.card1 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
    /*max-width: 400px;*/
}

/* setting padding based on even or odd */
.card1:nth-child(odd) {
    padding: 30px 0 30px 30px;
}

.card1:nth-child(even) {
    padding: 30px 30px 30px 0;
    justify-content: start;
}

.card1:nth-child(even) .info1::before {
    right: -5px;
    left: unset;
}

.card1:nth-child(even) .info1 p {
    right: 1.5rem;
    left: unset;
    top: 9.1rem;
}

/* Global ::before */
.card1::before {
    content: "";
    position: absolute;
    width: 50%;
    border: 5px dashed #FFD02A;
}

/* Setting the border of top, bottom, left */
.card1:nth-child(odd)::before {
    left: 0px;
    top: -4.5px;
    bottom: -4.5px;
    border-width: 5px 0 5px 5px;
    border-radius: 50px 0 0 50px;
}

/* Setting the border of top, bottom, right */
.card1:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 5px 5px 5px 0;
    border-radius: 0 50px 50px 0;
}

/* Removing the border if it is the first card */
.card1:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
}

/* Removing the border if it is the last card  and it's odd */
.card1:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
}

/* Removing the border if it is the last card  and it's even */
.card1:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
}

/* Information about the timeline */
.info1 {
    display: flex;
    flex-direction: column;
    color: gray;
    border-radius: 10px;
    padding: 10px;
    width: 300px;
    align-items: center;
}

.info1 p {
    position: absolute;
    left: 1.5rem;
    top: 9.1rem;
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    /* identical to box height, or 143% */

    text-align: center;

    color: #000000;
}

/* Title of the card */
.title1 {
    color: orangered;
    position: relative;
}

/* Timeline dot  */
.info1::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FFD02A;
    border-radius: 999px;
    border: 3px solid #FFD02A;
    left: -5px;
    top: 10rem;
}

/* text right if the card is even  */
.card:nth-child(even) > .info > .title {
    text-align: right;
}

/* setting dot to the left if the card is odd */
.card:nth-child(odd) > .info > .title::before {
    left: -45px;
}

/* setting dot to the right if the card is odd */
.card:nth-child(even) > .info > .title::before {
    right: -45px;
}

.principles {
    margin-top: 120px;
}

.line-portfolio {
    width: 85%;
}

.border-blog {
    border: 2px solid #FFD02A !important;
}

.swiper-slide-blog {
    height: auto;
    background: #ffffff;
    border: unset;
    border-radius: 25px;
}

.swiper-slide a {
    text-decoration: none;
}

.blog-date {
    display: flex;
    justify-content: space-between;
    direction: rtl;
    padding: 10px;
}

.swiper-slide-blog h3 {
    text-align: right;
    direction: rtl;
    padding: 10px;
}

.swiper-slide-blog p {
    text-align: right;
    direction: rtl;
    padding: 10px;
    font-size: 16px;
}

.blog-link-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 22px;
    background: #FFD02A;
    border: 1px solid #848282;
    border-radius: 10px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    /* identical to box height */

    text-align: center;

    color: #404040;
    height: 42px;
}

.padding-12-rem {
    padding: 0 12rem;
}

.margin-top-5 {
    margin-top: 0;
}

#popupContainer1 {
    position: fixed;
    bottom: -200%;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: bottom 0.3s ease-in-out;
    padding: 20px;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999999;
}

#popupContent1 {
    text-align: center;
}

#closeButton1 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #000000;
    top: 4rem;
    left: 2rem;
    font-size: 20px;
    font-weight: 900;
    line-height: 40px;
}

.lang-and-number {
    flex-direction: row;
}

.menu-btn {
    display: none;
}

.padding-header {
    padding: 0;
}

.our-services-detail h2:first-child {
    margin-bottom: 3rem;
}

.even-reason h3, .odd-reason h3 {
    text-align: center;
    flex: 2;
}

.even-reason .ckeditor-content, .odd-reason .ckeditor-content {
    text-align: center;
    flex: 8;
}

@media only screen and (max-width: 3500px) {
    .why-rahat-code .row .col-4 {
        padding: 0;
    }

    .colleagues-section h2:after, .timeline h2:after {
        left: 41%;
    }

    .header-why::before {
        right: 33%;
    }

    .sample-work-rahat h2::before {
        right: 35%;
    }
}

@media only screen and (max-width: 3000px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 37%;
    }

    .header-why::before {
        right: 30%;
    }

    .sample-work-rahat h2::before {
        right: 30%;
    }
}

@media only screen and (max-width: 2500px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 37%;
    }

    .header-why::before {
        right: 28%;
    }

    .sample-work-rahat h2::before {
        right: 27%;
    }
}

@media only screen and (max-width: 2300px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 35%;
    }

    .header-why::before {
        right: 25%;
    }

    /*.sample-work-rahat h2::before{*/
    /*    right: 27%;*/
    /*}*/
}

@media only screen and (max-width: 2000px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 34%;
    }

    .header-why::before {
        right: 21%;
    }

    .sample-work-rahat h2::before {
        right: 35%;
    }

    .sample-work-rahat h2::before {
        right: 21%;
    }
}

@media only screen and (max-width: 1700px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 31%;
    }

    .header-why::before {
        right: 17%;
    }

    /*.header-why::before {*/
    /*    right: 22%;*/
    /*}*/
    /*.sample-work-rahat h2::before{*/
    /*    right: 27%;*/
    /*}*/
}

@media only screen and (max-width: 1580px) {
    .padding-12-rem {
        padding: 0 7rem;
    }
}

@media only screen and (max-width: 1476px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 28%;
    }

    .navbar-container {
        padding: 0 3rem;
    }

    .header-why::before {
        right: 10%;
    }

    .sample-work-rahat h2::before {
        right: 11%;
    }
}

@media only screen and (max-width: 1412px) {
    .padding-12-rem {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 1283px) {
    .colleagues-section h2:after, .timeline h2:after {
        left: 28%;
    }

    .our-services-title {
        margin-left: 3rem;
    }

    .our-services-row ul > :not(:last-child) {
        margin-left: 2rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    ul.navbar-nav li:not(:first-child):not(:last-child) {
        margin: 0 20px;
    }
}

.navbar-container-en {
    padding: 0 2rem;
}

@media only screen and (max-width: 1200px) {
    .d-special {
        display: none;
    }

    .blog-section h3:after {
        left: 42% !important;
    }

    .arrive-single-heading {
        padding-left: 50px;
    }

    .arrive-single p {
        padding-right: 30px;
    }

    .services-image-box {
        right: 17%;
    }

    .colleagues-section h2:after, .timeline h2:after {
        left: 23%;
    }

    .colleague-box {
        width: 150px;
        height: 150px;
    }

    .header-why::before {
        right: -1%;
    }

    .sample-work-rahat h2::before {
        right: 4%;
    }

    .fear-design-header:after {
        left: 25%;
    }

    .shape1 {
        top: 4%;
        right: 5%;
    }

    .shape2 {
        top: 17%;
        right: 18%;
    }

    .shape3 {
        top: -1%;
        right: 31%;
    }

    .shape4 {
        position: absolute;
        top: 10%;
        right: 43%;
        opacity: 0.6;
        transform: rotate(20deg);
    }

    .shape7 {
        position: absolute;
        top: 21%;
        left: 6%;
        opacity: 0.6;
        transform: rotate(-39deg);
    }

    .shape6 {
        position: absolute;
        top: 1%;
        left: 12%;
        opacity: 0.6;
        transform: rotate(-40deg);
    }

    .shape5 {
        position: absolute;
        top: 17%;
        left: 27%;
        opacity: 0.6;
        transform: rotate(20deg);
    }
}

@media only screen and (max-width: 1140px) {
    ul.navbar-nav li:not(:first-child):not(:last-child) {
        margin: 0 15px;
    }

    .departmet:before {
        left: -10px;
    }

    .lang-and-number {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .phone-company {
        margin-left: 0;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 1500px) {
    .timeline1 {
        width: 70%;
    }
}

@media only screen and (max-width: 1106px) {
    .our-services-row ul {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1060px) {
    .our-services-title {
        margin-left: 0;
    }

    .our-services-title:before {
        left: -30%;
    }
}

@media only screen and (max-width: 998px) {
    .main-page-img {
        width: 25rem;
        height: 25rem;
    }

    .department-rahat-code__sidebar {
        padding: 35px 0 !important;
    }

    .single-department-sidebar {
        height: auto !important;
        margin-bottom: 10px !important;
        padding: 1rem 0;
    }

    .rahat-code-departments-container__sidebar {
        margin-top: 50px !important;
    }

    .single-department-sidebar a:first-child {
        flex-direction: row !important;
        padding-right: 1rem !important;
        display: flex !important;
        height: 100% !important;
        align-items: center !important;
        width: 100% !important;
    }

    .single-department-sidebar-en a:first-child {
        flex-direction: row-reverse !important;
    }

    .single-department-sidebar a:last-child {
        display: none !important;
    }

    .department-image-box {
        right: 32%;
    }

    .single-department-sidebar .department-image-box {
        position: static;
        background: unset;
        display: unset;
        z-index: unset;
        width: 140px;
        margin-top: unset !important;
    }

    .single-department-sidebar-en .department-image-box, .single-department-en .department-image-box {
        width: unset;
        margin-left: 15px;
    }

    .single-department-sidebar a:first-child h3 {
        display: none;
    }

    .single-department-sidebar a:first-child .department-image-box h3 {
        display: block !important;
        margin-top: 10px !important;
        font-size: 15px !important;
    }

    .single-department-sidebar a:first-child .single-department-description p {
        display: block !important;
        margin-top: 10px !important;
        font-size: 15px !important;
        padding: 0 20px;
        padding-left: 60px;
    }

    .single-department-sidebar-en a:first-child .single-department-description p, .single-department-en a:first-child .single-department-description p {
        padding-left: 20px !important;
        margin-right: 2rem !important;
    }

    .single-department-link__576__sidebar {
        width: 3rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F7F4F4;
        border-radius: 20px 0 0 20px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .single-department-link__576__sidebar-en, .single-department-link__576-en {
        left: unset !important;
        right: 0 !important;
        border-radius: 0 20px 20px 0 !important;
    }

    .single-department-link__576__sidebar-en img, .single-department-link__576-en img {
        transform: scale(-1);
    }

    .blog-section h3:after {
        left: 23% !important;
    }

    .faq-text:before {
        top: -60%;
        right: -35%;
    }

    .about-text {
        padding: 0 45px;
    }

    .about-us-text:before {
        right: -30%;
    }

    .rahat-code-about-container p {
        padding-left: 0;
    }

    .shape4 {
        position: absolute;
        top: 8%;
        right: 48%;
        opacity: 0.6;
        transform: rotate(20deg);
    }

    .shape5 {
        position: absolute;
        top: 14%;
        left: 27%;
        opacity: 0.6;
        transform: rotate(20deg);
    }

    .shape7 {
        position: absolute;
        top: 14%;
        left: 6%;
        opacity: 0.6;
        transform: rotate(-39deg);
    }

    .sample-work-rahat h2::before {
        right: -10%;
    }

    .arrive-single {
        min-height: 250px;
        padding: 0 1rem;
    }

    .links-box {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .departmet:before, .logo-box:before {
        display: none;
    }

    .align-items-logo {
        align-items: center;
    }

    .services-image-box {
        right: 29%;
    }

    .single-service {
        margin-bottom: 5rem;
    }

    .colleagues-section h2:after, .timeline h2:after {
        left: 18%;
    }

    .header-why::before {
        right: -9%;
    }

    .colleague-box {
        width: 110px;
        height: 110px;
    }

    .our-services-row {
        flex-direction: column;
        margin-bottom: 5rem;
    }

    .our-services-title:before {
        display: none;
    }

    .our-services-title img {
        position: absolute;
        top: -8rem;
    }

    .our-services-title:after {
        top: -80px;
        content: '';
        position: absolute;
        width: 8rem;
        height: 4rem;
        background: #fff;
    }

    .our-services-title {
        margin-top: 4.5rem;
    }

    .our-services-detail h2:first-child {
        margin-bottom: 6rem;
    }

    .our-services-detail h2:not(:first-child) {
        margin-bottom: 1.5rem;
    }

    .why-rahat-code .row {
        justify-content: center;
    }

    .fear-design-header:after {
        left: 16%;
    }

    .timeline1 {
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    .arrive-single-en p {
        padding-right: unset;
        padding-left: 30px;
    }

    .arrive-single-heading-en {
        padding-left: unset;
        padding-right: 30px;
    }

    .d-special {
        display: block;
    }

    .blog-section h3:after {
        left: 13% !important;
    }

    .faq-text:before {
        top: -43%;
        right: 18%;
    }

    .info1 img {
        width: 220px;
    }

    .timeline1 {
        width: 100%;
    }

    .about-us-text:before {
        right: 20%;
        top: -54%;
    }

    .our-services {
        padding: 140px 0 0;
    }

    .top-head-img {
        width: 250px;
    }

    .d-none-768 {
        display: none;
    }

    .sample-work-rahat h2::before {
        right: -25%;
    }

    .arrive-single p {
        font-size: 16px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .arrive-single-heading h3 {
        font-size: 17px;
    }

    .arrive-single-heading img {
        width: 45%;
    }

    .colleagues-section h2:after, .timeline h2:after {
        left: 8%;
    }

    .header-why::before {
        right: -30%;
    }

    .services-image-box {
        right: 22%;
    }

    .padding-header {
        padding: 0 5rem;
    }

    .colleague-box {
        width: 80px;
        height: 80px;
    }

    .fear-design {
        padding-top: 3rem;
    }

    .fear-design-header {
        top: unset;
        min-width: unset;
    }

    .fear-design-header:after {
        display: none;
    }

    .fear-1 {
        padding: 0 50px;
    }

    .wrapper .row section::before {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .shape7, .shape6, .shape5, .shape4, .shape3, .shape2, .shape1 {
        width: 50px;
    }

    .colleagues-section h2:after,
    .timeline h2:after {
        left: 2%;
    }
}

@media only screen and (max-width: 650px) {
    .sample-work-rahat h2::before {
        right: -38%;
    }
}

.d-block-576 {
    display: none;
}

@media only screen and (max-width: 576px) {
    .main-page-img {
        width: 20rem;
        height: 20rem;
    }

    .flag {
        display: none;
    }

    .flag1 {
        display: block;
    }

    .blog-section h3:after {
        left: 20% !important;
    }

    .shape7, .shape6, .shape5, .shape4, .shape3, .shape2, .shape1 {
        width: 40px;
    }

    .single-department-description p {
        padding: 0 20px;
        padding-left: 60px;
    }

    .rahat-code-departments-container {
        display: block;
        margin-top: 70px;
    }

    .d-block-576 {
        display: block;
    }

    .department-image-box {
        position: static;
        background: unset;
        display: unset;
        z-index: unset;
        width: 140px;
    }

    .d-none-576 {
        display: none;
    }

    .single-department h3 {
        margin-top: 20px;
    }

    .single-department {
        margin-bottom: 40px;
        height: 200px;
    }

    .single-department a {
        flex-direction: row;
        padding-right: 1rem;
        display: flex;
        height: 100%;
        align-items: center;
        width: 100%;
    }

    .single-department-description {
        display: flex;
        height: 100%;
        align-items: center;
        margin-top: 0;
    }

    .single-department-link__576 {
        width: 3rem;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F7F4F4;
        border-radius: 20px 0 0 20px;
        position: absolute;
        left: 0;
    }

    .custom-select1 {
        margin-left: 0px;
    }

    .line-header {
        display: none;
    }

    .justify-between-576 {
        justify-content: space-between !important;
    }

    .sample-work-rahat h2::before {
        right: -53%;
    }

    .header-why::before {
        right: -43%;
    }

    .our-services-row {
        height: auto !important;
    }

    .our-services-row ul > :not(:last-child) {
        margin-left: 0;
    }

    .services-image-box {
        right: 37%;
    }

    .single-service {
        margin-bottom: 2rem;
    }

    .padding-header {
        padding: 0 10rem;
    }

    .colleagues-section h2:after, .timeline h2:after {
        left: -8%;
    }

    .fear-1 {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 480px) {
    .success-message {
        font-size: 20px;
    }

    .thanks-message {
        font-size: 19px;
    }

    .print-reciept {
        width: 180px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 2rem;
    }

    .reciept-table-text {
        font-size: 18px;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .departmet-box {
        flex-direction: column;
    }

    .single-service-description-en a {
        font-size: 14px !important;
    }

    .portfolio-padding {
        padding: 0 3rem;
        padding-bottom: 0;
    }

    .blog-section h3:after {
        display: none;
    }

    .top-head-img {
        width: 150px;
    }

    .sample-work__image {
        border-radius: 30px 30px 0px 0px;
    }

    .all-sample-works {
        width: 170px;
        height: 45px;
        font-size: 15px;
    }

    .swiper-slide-blog h3 {
        font-size: 16px;
    }

    .swiper-slide-blog p {
        font-size: 14px !important;
    }

    .blog-link-button {
        padding: 8px 13px !important;
        font-size: 16px !important;
        height: 34px !important;
    }

    .swiper-slide {
        border-radius: 30px !important;
    }

    .even-reason {
        padding-left: 0;
    }

    .odd-reason {
        padding-right: 0;
    }

    .footer h5 {
        font-size: 16px;
    }

    .image-top {
        width: 80%;
    }

    .our-services-title img {
        position: absolute;
        top: -6rem;
    }

    .padding-header {
        padding: 0 13rem;
    }

    .row {
        flex-wrap: wrap;
    }

    .margin-top-5 {
        margin-top: 5rem;
    }

    .col-j-6 {
        width: calc(100% / 3);
    }

    h1 {
        font-size: 22px;
        text-align: center;
        line-height: 40px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }

    .rahat-code-services {
        margin-top: 80px;
    }

    .services-image-box img {
        height: 70px;
    }

    .single-service-description p {
        padding: 5px;
    }

    .services-image-box {
        width: 100px;
        top: -40px;
    }

    .single-service-description a {
        width: 200px;
        height: 42px;
        font-size: 16px;
        padding: 4px 10px;
    }

    .rahat-code-services-container {
        margin-bottom: 0;
    }

    #closeButton1 {
        top: 2rem;
        left: 2rem;
        font-size: 20px;
        font-weight: 900;
        line-height: 40px;
    }

    #app-cover {
        margin: 90px auto 0 auto;
    }

    .our-services-row {
        flex-direction: column;
        height: 300px;
        justify-content: unset;
        margin-bottom: 4rem;
    }

    .header-text-section {
        background: #ffffff;
        padding-top: 30px;
        padding-bottom: 37px;
    }

    .department-image-box::after {
        display: none;
    }

    .department-image-box {
        position: relative;
        top: unset;
        right: unset;
        margin-top: 1rem;
    }

    .rahat-code-departments-container {
        margin-top: 55px;
    }

    .about-rahat-code img {
        width: 30px;
    }

    .principles {
        margin-top: 60px;
    }

    .about-video-box img {
        width: 50px;
    }

    .shape5 {
        left: 10%;
    }

    .shape3 {
        right: 18%;
        top: 10%;
    }

    .shape6 {
        left: 20%;
        top: 3%;
    }

    .timeline1 {
        width: 90% !important;
    }

    a.our-services-buttons__more {
        font-size: 15px;
        width: 12rem;
        padding: 8px 10px;
    }

    .our-services-row ul > :not(:last-child), .our-services-row ul, .design-app-mobile {
        margin-left: 0;
    }

    .our-services-row ul {
        margin-top: 2rem;
    }

    .padding-12-rem {
        padding: 0;
    }

    .info1 img {
        width: 160px;
    }

    .card1:nth-child(odd) .info1 {
        flex-direction: row;
        justify-content: end;
    }

    .info1 p {
        font-size: 16px;
    }

    .card1:nth-child(even) .info1 p {
        top: 7.1rem;
    }

    .info1 p {
        top: 6.1rem;
    }

    .info1::before {
        top: 7rem;
    }

    .card1:nth-child(even) .info1::before {
        top: 8rem;
    }

    .about-text {
        padding: 0 30px;
    }

    /*.sample-work-rahat .container{*/
    /*    margin-top: 0;*/
    /*}*/
    .about-video-box {
        height: 240px;
    }

    .shape2, .shape7 {
        display: none;
    }

    .rahat-code-about-container p {
        padding-left: 0;
    }

    .our-services-title:before {
        display: none;
    }

    .our-services-title {
        min-width: unset;
        margin-left: 0;
        margin-top: 3rem;
    }

    .goal-rahat-code .container {
        margin-top: 55px;
    }

    .goal-img-box img {
        width: 230px;
    }

    .single-department h3 {
        margin-top: 15px;
    }

    .header-text p {
        padding: 0 178px;
        line-height: 28px;
    }

    .why-rahat-code {
        padding: 40px 0;
    }

    .reason-img-box {
        width: 105px;
        height: 105px;
    }

    .reason-img-box img {
        width: 65px;
        height: 65px;
    }

    .colleague-box {
        width: 60px;
        height: 60px;
    }

    .blog-single h3 {
        font-size: 14px;
    }

    .blog-single p {
        font-size: 13px;
    }

    .blog-single img {
        border-radius: 23px 23px 0 0;
    }

    .map-box {
        width: 100%;
    }

    .contact-form-input {
        width: 100%;
    }

    .reason-box h3 {
        font-size: 13px !important;
    }

    .header-why::before {
        width: 430px !important;
        height: 120px !important;
        right: 2% !important;
        bottom: -3rem !important;
    }

    .footer {
        padding: 40px 0;
        margin-top: 0px;
        margin-bottom: 85px;
    }

    .certificate-single {
        width: 95px;
        height: 80px;
    }

    .colleagues-section h2:after, .timeline h2:after {
        width: 460px;
        height: 41px;
        left: 0;
        top: -50%;
    }

    .sample-work-rahat h2::before {
        left: 2rem;
        top: -2.5rem;
    }

    .blog-link-button {
        font-size: 16px;
    }

    .blog-date-box span, .blog-view-box span {
        font-size: 13px;
    }

    .sample-work-desc h3 {
        font-size: 18px;
    }

    .sample-work-desc h4 {
        font-size: 16px;
    }

    .contact-location-box h4 {
        font-size: 22px;
    }

    .location-text {
        font-size: 21px;
    }

    .our-services-text:before {
        display: none;
    }

    #selected-value {
        position: absolute;
        right: 12px;
    }

    .padding-60 {
        padding: 35px 0;
    }

    .why-site-design {
        padding-top: 95px !important;
    }

    .why-site-design > .container:nth-child(2) {
        margin-top: 100px;
    }

    .why-site-design img {
        width: 90px;
        height: 90px;
    }

    .top-section {
        position: relative;
    }

    .brush-img-1 {
        width: 100% !important;
        top: 0;
    }

    .brush-2 {
        top: -30px;
    }

    .line-height-30 {
        line-height: 30px;
    }

    .odd-reason {
        border: 3px solid #FFD02A;
        border-radius: 30px;
        border-left: 3px solid #FFD02A;
    }

    .even-reason {
        border: 3px solid #FFD02A;
        border-radius: 30px;
        border-right: 3px solid #FFD02A;
    }

    p {
        font-size: 16px;
    }

    .even-reason p {
        margin-left: 0;
    }

    .odd-reason p, .even-reason p {
        margin-right: 0;
        font-size: 16px;
        padding: 0 1rem;
    }

    .danger-img {
        left: 1.4rem;
        top: -4rem;
        width: 115px !important;
        height: 115px !important;
    }

    .most-important-reason {
        padding: 0 20px;
        height: auto;
    }

    .most-important-reason h2 {
        width: 250px;
        font-size: 20px;
        text-align: right;
        line-height: 27px;
        margin-top: 38px;
        margin-left: 23px;
    }

    .most-important-reason p {
        line-height: 32px;
        margin-top: 30px;
    }

    .fear-1 {
        margin-top: 55px;
        padding: 0 45px;
    }

    .fear-design-header {
        font-size: 18px;
        padding: 0 1rem;
    }

    .fear-design-header:after {
        width: 90%;
        left: 19px;
    }

    .wrapper .row section {
        padding: 10px;
    }

    .row section .details {
        justify-content: space-around;
    }

    .row section .details img {
        width: 50px;
    }

    .wrapper .row section::before {
        display: none;
    }

    .wrapper .center-line {
        right: 30px !important;
        left: unset;
    }

    .row-2 section .icon {
        top: 15px;
        right: -57px;
        left: unset;
    }

    .row-1 section .icon {
        right: -57px;
        left: unset;
    }

    .wrapper {
        padding: 0 10px;
    }

    .wrapper .row {
        margin: 30px 60px 3px 0;
    }

    .timeline h2:after {
        width: 320px;
        height: 40px;
        left: 13%;
        top: -48%;
    }

    .arrive-section .container {
        margin-top: 85px;
    }

    .arrive-single {
        height: auto;
        padding: 10px;
    }

    .arrive-single-heading {
        flex-direction: column;
        padding-left: 0;
        width: 10rem;
    }

    .arrive-single-heading img {
        margin-left: 0;
        margin-bottom: 1rem;
        width: 50px;
    }

    .arrive-single-heading h3 {
        text-align: center !important;
    }

    .arrive-single p {
        padding: 10px;
    }

    .timeline-box-content ul li {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .h3-font-480 {
        font-size: 15px;
    }

    .departmet-desc, .departmet-title {
        font-size: 12px;
    }

    .logo-hat {
        margin-left: 8px;
        width: 40px;
        height: 40px;
    }

    .logo-fa, .logo-en {
        width: 80px;
    }

    .logo-box:before, .departmet:before {
        display: none;
    }

    .custom-select1 {
        margin-left: 0;
    }
}

.departmet-desc-en {
    font-size: 12px;
    margin-left: 3px;
}

@media only screen and (max-width: 420px) {
    .info1 {
        align-items: unset;
    }

    .certificate-single {
        width: 95px;
        height: 70px;
    }

    .colleagues-section h2:after {
        left: -3%;
    }
}

@media only screen and (max-width: 400px) {
    .arrive-single-heading-en img {
        margin-right: unset;
    }

    .main-page-img {
        width: 15rem;
        height: 15rem;
    }

    .contacts-buttons-single img {
        width: 17px;
        height: 17px;
    }

    .about-text {
        padding: 0 15px;
    }

    .colleague-box {
        border-radius: 15px;
    }

    .sample-work-rahat h2::before {
        left: 0rem;
    }

    .arrive-single {
        flex-direction: column;
    }

    .arrive-single-heading {
        border: unset;
    }

    .arrive-single p {
        width: unset;
    }

    .flex-column-400 {
        flex-direction: column-reverse !important;
    }

    .margin-right-0 {
        margin-right: 0 !important;
    }

    .margin-left-0 {
        margin-left: 0 !important;
    }

    .margin-bottom-25 {
        margin-bottom: 25px;
    }

    .timeline h2:after {
        left: 8%;
    }

    .contacts-buttons-single {
        width: 35px;
        height: 35px;
    }

    .sidebar {
        width: 360px;
    }

    .colleague-box {
        margin-bottom: 10px;
    }

    .header-why::before {
        right: -20% !important;
    }

    .fear-1 {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 340px) {
    .portfolio-padding {
        padding: 0 1.5rem;
        padding-bottom: 0;
    }

    .colleagues-section h2 {
        font-size: 16px;
    }

    .colleagues-section h2:after {
        width: 365px;
        height: 70px;
        left: 0;
        top: -50%;
    }

    .swiper-slide {
        border-radius: 20px !important;
    }

    .sample-work__image {
        border-radius: 20px 20px 0 0;
    }

    .justify-between-576 {
        justify-content: center !important;
    }

    .sample-work-rahat h2::before {
        left: -2rem;
    }

    .row section .details img {
        width: 40px;
    }

    .fear-1 h3:after {
        display: none;
    }

    .most-important-reason h2 {
        width: unset;
        text-align: center;
        line-height: 30px;
        margin-top: 44px;
        margin-left: 0;
    }

    .timeline h2:after {
        top: -17%;
        left: 1%;
    }

    .reason-img-box {
        width: 85px;
        height: 85px;
    }

    .reason-img-box img {
        width: 50px;
        height: 50px;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal-width columns */
    grid-template-rows: repeat(4, 1fr); /* 4 equal-height rows */
    gap: 10px; /* Optional: Add gap between grid items */
}

.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-to-action__buttons {
    position: absolute;
    top: 1.5rem;
    right: 14px;
}

.call-to-action__buttons-en {
    right: unset;
    left: 14px;
}

.call-to-action__buttons a:not(:last-child) {
    margin-bottom: 15px;
}

.call-to-action__detail {
    height: 100%;
    width: 10rem;
    background: #000;
    color: #000;
    transform: translateX(100%);
    transition: all 0.4s ease;
    border-radius: 20px 0 0 20px;
    z-index: -1;
    position: relative;
    right: -80px;
}

.call-to-action__detail-en {
    transform: translateX(-100%);
    border-radius: 0 20px 20px 0;
    width: 120px;
    right:184px!important;
}

.call-to-action-en:hover .call-to-action__detail-en{
    right:-76px!important;
}
.call-to-action__detail ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 100%;
    padding: 3rem 0;
    padding-right: 1rem;
    width: 120px;
}

.call-to-action__detail ul li {
    list-style: none;
    color: #fff;
}

.call-to-action__detail-en ul li:nth-child(2) {
    font-family: ui-monospace;
}

.call-to-action:hover {
    width: 195px;
}
.call-to-action:hover .call-to-action__detail{
    right: 0px;
}
.call-to-action__detail {
    transform: translateX(0);
}
.call-to-action:hover .call-to-action__detail {
    transform: translateX(0);
}

@media only screen and (max-width: 380px) {
    .certificate-single {
        width: 95px;
        height: 60px;
    }

    .single-department {
        height: 150px;
    }

    .single-department-description p {
        font-size: 14px;
    }

    .department-image-box img {
        width: 3.5rem;
    }

    .single-department-link__576 {
        width: 2.5rem;
    }
}

@media only screen and (max-width: 360px) {
    .departmet-box-en {
        width: 10rem;
        text-align: center;
    }

    .single-department-en a:first-child .single-department-description p {
        padding-left: 5px !important;
    }

    .single-department-en a:first-child .department-image-box h3 {
        font-size: 14px !important;
    }

    .single-department-sidebar a:first-child {
        padding-right: 0.5rem !important;
    }

    .single-department-sidebar a:first-child .single-department-description p {
        padding: 0 5px;
        padding-left: 35px;
    }

    .single-department-link__576__sidebar {
        width: 1.7rem;
    }

    #app-cover {
        width: 260px;
    }

    #options {
        width: 260px;
    }

    .info1 img {
        width: 110px;
    }

    .card1:nth-child(even) .info1::before {
        top: 5rem;
    }

    .card1:nth-child(even) .info1 p {
        top: 4.1rem;
    }

    .info1 p {
        font-size: 14px;
        top: 4.1rem;
    }

    .info1::before {
        top: 5rem;
    }

    .colleagues-section h2:after {
        left: -48%;
        width: 550px;
        height: 70px;
        top: -100%;
    }

    .sample-work-desc h3 {
        font-size: 16px;
    }

    .sample-work-desc h4 {
        font-size: 14px;
    }

    .sample-work-desc a.sample-work-link {
        font-size: 14px;
        width: 180px;
    }

    .services-image-box {
        right: 35%;
    }

    .padding-header {
        padding: 0 15rem;
    }

    .header-why::before {
        right: -15%;
    }

    .header-text p {
        padding: 0 215px;
    }

    .logo-hat {
        width: 40px;
        height: 40px;
    }

    .logo-fa, .logo-en {
        width: 60px;
    }

    .sidebar {
        width: 320px;
    }

    .colleague-box {
        width: 55px;
        height: 55px;
    }

    .grid-container {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 380px) {
    .certificate-single {
        width: 95px;
        height: 53px;
    }
}

@media only screen and (max-width: 320px) {
    .brush-2 {
        top: -20px;
    }

    .logo-departmet {
        display: none;
    }

    .call-to-action__mobile {
        padding: 0;
    }

    .call-to-action__mobile a {
        font-size: 12px;
    }

    .info1 img {
        margin-right: -40px;
    }

    .services-image-box {
        right: 30%;
    }

    .sidebar {
        width: 300px;
    }

    .certificate-single {
        width: 95px;
        height: 48px;
    }

    .colleague-box {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 300px) {
    .colleagues-section h2:after {
        top: -50%;
    }

    .blog-date-box span, .blog-view-box span {
        font-size: 11px;
    }

    .sample-work-desc a.sample-work-link {
        font-size: 12px;
        width: 159px;
    }

    .sample-work-rahat h2::before {
        left: -3rem;
    }

    .header-text p {
        padding: 0 235px;
    }

    .sidebar {
        width: 280px;
    }
}



