:root {
    --main-color: #1A1A29;
    --bg-color: #ca0808;
    --sec-color: #f31f1a;

}



@font-face {
    font-family: 'en-font';
    src: url('../fonts/Cairo-Regular.ttf');
}

body {
    direction: rtl;
    text-align: start;
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 400;
}

.owl-carousel {
    direction: ltr;
}

button:focus {
    border: none;
    outline: none;
}

input:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

.left-header {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 350px;
    display: block;
}

/* nice select */
.nice-select {
    width: 100%;
    margin-bottom: 15px;
    text-align: right !important;
    padding-left: 30px;
    padding-right: 18px;
    border: 1px solid #DADADA;
    border-radius: 2px;
}

.nice-select::after {
    left: 12px;
    right: auto;
    border-bottom: 2px solid #BFBEBE;
    border-right: 2px solid #BFBEBE;
}

.nice-select .option {
    text-align: right;
    padding-left: 29px;
    padding-right: 18px;
}

.nice-select .list {
    width: 100%;
}

.nice-select:after {
    width: 8px;
    height: 8px;
}

/* Start header */

.mynav .navbar-menu li {
    margin-inline: 12px;
}

.mynav .navbar-menu li a {
    color: #000;
    transition: all 0.3s;
    padding: 0;
    font-size: 19px;
    font-weight: 500;
}

.mynav .navbar-menu li a:hover {
    color: #ff1913;
}

li.menu-item-has-children {
    position: relative;
    margin-inline-end: 20px !important;
}

ul.sub-menu {
    display: block;
    opacity: 0;
    height: 0;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 182px;
    border-radius: 2px;
    padding: 0px;
    z-index: 999999;
    visibility: hidden;
    padding: 8px;
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
    background: #fff;
}

li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    height: auto;
    visibility: visible;
    z-index: 99;
}

.mynav .navbar-menu .sub-menu li {
    margin-inline: 0;
}

.mynav .navbar-menu .sub-menu a {
    margin-inline-start: 8px;
    padding: 8px 0px;
    display: inline-block;
    width: 100%;
}

.sub-menu li:last-of-type a {
    border-bottom: none;
}


li.menu-item-has-children a {
    position: relative;
}

li.menu-item-has-children>a::after {
    position: absolute;
    content: '\f107';
    font-family: 'font awesome 5 pro';
    top: 8px;
    left: -15px;
    color: #000;
    font-size: 15px;
}

.sidebar li.menu-item-has-children>a::after {
    top: 14px;
    left: 3px;
    color: #000;
}

ul.sub-menu li {
    margin-inline-end: 0;
}

.sidebar .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    height: auto;
    position: relative;
    min-width: unset;
    width: 100%;
    border-radius: 0;
    padding: 16px 0px;
    margin-top: 0px;
    background: #fff;
}

.sidebar .side-content ul .sub-menu li a {
    color: var(--main-color);
}

.sidebar .lang {
    margin-inline-start: 20px;
    margin-top: 16px;
}

.left-tobheader {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lang a {
    text-transform: capitalize;
    color: #1A1A29;
    font-family: 'en-font';
}

.mynav .row {
    align-items: center;
    padding: 22px 0;
}

.search-btn i {
    transition: all 0.7s;
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mynav .nav-link {
    position: relative;
}


.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar {
    padding: 0;
    justify-content: end;
    gap: 30px;
}

.lang img {
    max-height: 20px;
    padding-inline-end: 12px;
}

.my-btn a {
    color: #fff;
    min-width: 213px;
    padding: 18px 12px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    background: var(--sec-color);
    border-radius: 50px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

a:hover {
    opacity: 0.9;
}

.request a::after,
.read-more a::after,
.read-more button::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50px;
    top: 0;
    left: 0;
    background: var(--bg-color);
    transition: all 0.3s;
    transform: scale(0);
    z-index: -1;
}

.read-more button::after {
    border-radius: 0;
}

.request a:hover::after,
.read-more a:hover::after,
.read-more button:hover::after {
    transform: scale(1);

}

.request a:hover {
    color: #fff;
}

/* Start Search */

.site-search {
    display: table;
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    padding: 12px;
    transition: opacity .5s ease 0.25s, z-index 0s ease 0.75s;
    -webkit-transition: opacity .5s ease 0.25s, z-index 0s ease 0.75s;
}

.site-search.open {
    z-index: 99999999;
    opacity: 1;
    transition: opacity .5s, z-index 0s;
    -webkit-transition: opacity .5s, z-index 0s;
}

.site-search.open .woocommerce-product-search,
.site-search.open .search-form {
    margin-top: -25px;
    opacity: 1;
    transition: margin-top .5s, opacity .5s;
    -webkit-transition: margin-top .5s, opacity .5s;
}

.site-search .widget_product_search,
.site-search .widget_search {
    position: relative;
    padding-top: 0;
}

.site-search .woocommerce-product-search,
.site-search .widget_search .search-form {
    border: none;
    width: 50%;
    margin-top: 300px;
    position: fixed;
    top: 50%;
    left: 50%;
    display: block;
    padding-top: 0;
    opacity: 0;
    transition: margin-top .5s, opacity .5s;
    -webkit-transition: margin-top .5s, opacity .5s;
    transform: translateX(-50%);
    z-index: 9;
}

.site-search .woocommerce-product-search label,
.site-search .widget_search .search-form label {
    display: none;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    transform: translateX(10%);
}

.site-search .woocommerce-product-search .search-field,
.site-search .widget_search .search-form .search-field {
    color: var(--bg-color);
    background: none;
    border: none;
    border-bottom: 3px solid var(--bg-color);
    font-size: 20px;
    padding: 15px 0;
    height: auto;
    margin: 0;
    outline: none !important;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.15s linear;
    /* -webkit-appearance: none; */
    border-radius: 0px;
    box-shadow: inset 0 0 0 transparent;
    color: var(--main-color);
    padding-inline-end: 50px;
}

.site-search .woocommerce-product-search input[type="submit"],
.site-search .widget_search .search-form input[type="submit"] {
    top: 10px;
    right: 15px;
    padding-top: 0 !important;
    background: none !important;
    font-size: 0;
    min-width: 0;
    padding: 0 !important;
    z-index: 4;
    position: absolute;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    cursor: pointer;
    color: #000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.site-search .woocommerce-product-search button {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 20px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--bg-color);
    padding: 0;
}

.site-search .woocommerce-product-search .search-field::placeholder {
    color: var(--bg-color);
}

.searchForm .btnSearch {
    box-shadow: none !important;
    color: #000000;
    padding: 0;
    text-align: center;
    border: none !important;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #fff;
    cursor: pointer;
}

.searchForm .btnSearch i {
    transition: all 0.6s;
    color: #000000;
}

.site-search-close {
    position: absolute;
    right: 0;
    left: 0;
    top: 0px;
    bottom: 0;
}

.site-search .close-side i {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 20px;
    left: 20px;
    z-index: 9;
}

/* End Search */
.navbar-toggler i {
    color: #fff;
    font-size: 25px;
}

.responsive-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
}

.responsive-menu .left-menu {
    display: flex;
}

.responsive-menu .lang {
    margin-inline-start: 6px;
    color: var(--bg-color);
    text-transform: capitalize;
    font-weight: bold;
}

.navbar-toggler,
.responsive-menu .searchForm .btnSearch {
    padding: 0;
    width: 34px;
    height: 34px;
    background-color: var(--sec-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.responsive-menu .searchForm .btnSearch i {
    color: #fff;
}

/* Sidebar */

.sidebar {
    position: fixed;
    top: 0px;
    /* bottom: 0; */
    right: -350px;
    height: 100%;
    width: 350px;
    background-color: #fff;
    z-index: 999;
    padding: 20px 0;
    z-index: 999999;
    transition: all 0.7s;
    box-shadow: 0px 0px 20px #00000029;
    padding: 20px 0;
    overflow: scroll;
}

.sidebar-width {
    right: 0px;
}

.sidebar .close-side i {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    color: #000;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    border: 1px solid #000;
}

.sidebar .side-content {
    padding-top: 48px;
    margin-top: 5px;
}

.close-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: none;
}

.close-overlay.open-overlay {
    display: block;
}

.sidebar .side-content ul li {
    position: relative;
    width: 100%;
    transition: all .5s;
}

.sidebar .side-content ul li a {
    color: #000;
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    font-size: 19px;
}

.sidebar .side-content ul li a:hover {
    color: #000;
}

.sidebar .contact-buttons {
    justify-content: center;
    margin-top: 60px;
}

.mynav {
    margin-top: 0;
}

/* Start hero section */
.hero-img {
    max-height: 500px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
}

section.hero-sec {
    background: #f1f1f2;
}

section.hero-sec .row {
    align-items: center;
}

.hero-info h5 {
    color: var(--sec-color);
    font-weight: 700;
}

.hero-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 30px 0;
}

.hero-info {
    padding-inline-end: 50px;
}

.hero-info p {
    margin-bottom: 30px;
    line-height: 27px;
}

.home-slider .owl-theme .owl-nav .owl-prev,
.home-slider .owl-theme .owl-nav .owl-next,
.card-slider.owl-theme .owl-nav .owl-next,
.card-slider.owl-theme .owl-nav .owl-prev,
.gallery-slider.owl-theme .owl-nav .owl-prev,
.gallery-slider.owl-theme .owl-nav .owl-next {
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #fff;
    width: 32px;
    height: 56px;
}

.home-slider .owl-theme .owl-nav .owl-prev {
    left: 124px;
}

.home-slider .owl-theme .owl-nav .owl-next {
    right: 124px;
}

.card-slider.owl-theme .owl-nav .owl-prev,
.gallery-slider.owl-theme .owl-nav .owl-prev {
    left: -64px;
    transform: scaleX(-1) translateY(-50%);
}

.card-slider.owl-theme .owl-nav .owl-next,
.gallery-slider.owl-theme .owl-nav .owl-next {
    right: -64px;
}

.card-slider.owl-theme .owl-nav .owl-prev,
.card-slider.owl-theme .owl-nav .owl-next,
.gallery-slider.owl-theme .owl-nav .owl-prev,
.gallery-slider.owl-theme .owl-nav .owl-next {
    top: 56%;
    background: #006691;
    color: #fff;
}

.card-slider.owl-theme .owl-nav .owl-prev:hover,
.card-slider.owl-theme .owl-nav .owl-next:hover,
.gallery-slider.owl-theme .owl-nav .owl-prev:hover,
.gallery-slider.owl-theme .owl-nav .owl-next:hover {
    background: var(--hover-color);
}

.read-more a,
.read-more button {
    display: inline-block;
    padding: 14px 12px;
    min-width: 143px;
    color: #fff;
    transition: all 0.3s;
    text-align: center;
    background: #1565C0;
    border-radius: 50px;
    font-family: 'bold';
    font-weight: 700;
    border: none;
    outline: none;
    position: relative;
    z-index: 2;
    overflow: hidden;

}

.read-more a:hover,
.read-more button:hover {
    background: var(--sec-color);
    color: #fff;
}

.carousel-info .read-more a {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    min-width: 135px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 0.3s;
}

.carousel-info .read-more a:hover {
    color: #fff;
    border-color: var(--bg-color);
}


/* ---------------------------------------------------------  */
/* Start about section */
.about {

    background-color: var(--bg-color);
}

section.about iframe {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.section-title h4 {
    color: #000;
    margin-bottom: 24px;
    font-size: 29px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-info {
    text-align: center;
    color: #fff;
}

.about-info h4 {
    font-weight: 700;
}

.about-info p {
    line-height: 29px;
    margin: 24px 0 20px;
    font-size: 16px;
    font-weight: 500;
}

.about .my-btn a {
    min-width: 150px;
    background-color: #fff;
    color: var(--sec-color);
    font-size: 14px;
    padding: 16px 10px;
}

/* end about section */
/* ------------------------------------------------------- */

/* ----------------  Start vission section  ----------------    */
.vission {
    background-color: #E8F3FF;
}

.vission .section-title h4 {
    text-align: center;
    margin-bottom: 64px;
}

.vission-item {
    background-color: #fff;
    text-align: center;
    padding: 34px 25px;
}

.vission-item .img {
    height: 83px;
    margin-bottom: 16px;
}

.vission-item .img img {
    max-height: 100%;
}

.vission-item h5 {
    font-size: 24px;
    margin-bottom: 18px;
}

.vission-item p {
    font-size: 18px;
    color: #1A1A29;
    line-height: 26px;
    font-weight: 500;
    min-height: 103px;
}

/* Start services section */
.services {
    padding: 40px 0;
}

.services .section-title h4 {

    color: var(--sec-color);

    text-align: center;

    margin-bottom: 50px;
}

.service-item {
    padding: 32px 16px;
    background-color: #f1f1f2;
    text-align: center;
    margin-bottom: 28px;
}

.service-item .icone {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
}

.service-item .icone img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.service-item h4 {
    font-size: 17px;
    font-weight: 700;
}

.service-item p {
    margin: 30px 0;
}

.service-item a {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}



/* Start our-team section */
.our-team {
    background-color: var(--bg-color);
    text-align: center;
    color: #fff;
}

.our-team .section-title h4 {
    color: #fff;
}

.section-disc p {
    margin-bottom: 50px;
}

.section-disc p a,
.question-item p a,
.contact-detail p a {
    color: #2d399b;
    text-decoration: underline;
    transition: all 0.3s;
}

.section-disc p a:hover,
.question-item p a:hover,
.contact-detail p a:hover {
    color: var(--sec-color);
}

.our-team .container {
    padding: 0px;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

/* ------------   counter    ----------------*/
.counter-item {
    direction: ltr;
    color: #fff;
    font-size: 50px;
    line-height: 74.7px;
    margin: 14px 0 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.count-block {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.count-block .details {
    text-align: center;
    display: flex;
}

.count-block .details h6 {
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 27px;
    font-weight: bold;
}

.counter-info h3 {
    color: #fff;
    font-family: 'bold';
    font-size: 32px;
    margin-bottom: 60px;
}

.count-block .img {
    height: 68px;
    max-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-inline-end: 10px;
}

.count-block .img img {
    height: auto;
    max-height: 100%;
}

.count-block .img i {
    font-size: 40px;
}

/* --------------------------------------------  */
/* Start Question-and-Answer section */
.question-item {
    max-width: 49%;
}

.all-ques-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.question-item:nth-child(2) {
    margin-top: -54px;
}

.Question-and-Answer .section-title h4 {
    color: var(--sec-color);
    margin-bottom: 30px;
}

.question-item h5 {
    font-size: 17px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 10px;
}

.question-item p {
    min-height: 60px;
    line-height: 27px;
}

/* ----------------  Start Translation-steps section  ------------  */
.Translation-steps {
    background-color: var(--bg-color);
    color: #fff;
    text-align: center;
}

.Translation-steps .section-title h4 {
    color: #fff;
    margin-bottom: 50px;
}

.step-item {
    margin-bottom: 60px;
}

.step-item .number {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--sec-color);
    font-size: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item h3 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.Translation-steps .col-lg-4 {
    padding: 0 10px;
}

/* Start contact-sec */
.contact-sec {
    padding: 60px 0;
}

.contact-sec .section-title h4 {
    margin-bottom: 30px;
}

.contact-sec .my-btn a {
    min-width: 147px;
    /* padding: 15px; */
}


/* -----------  Start footer section  -------------------- */
.footer-links a {
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-links {
    text-align: center;
    margin-inline-start: -60px;
}

.footer-soch-icon a {
    color: #fff;

}

.footer-soch-icon a i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline-end: 4px;
    color: #fff;
    transition: all 0.2s;
}

.footer-soch-icon a:hover i {
    transform: scale(1.1);
}

.footer-soch-icon a i.fa-twitter {
    background-color: #0d66c2;
}

.footer-soch-icon a i.fa-youtube {
    background-color: #ff0000;
}

.footer-soch-icon a i.fa-linkedin {
    background-color: #1da1f2;
}

.copy-right .row {
    justify-content: center;
}

.right-footer {
    padding-inline-end: 90px;
}

.footer-links h4,
.footer-contact h4,
.right-footer h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.8em;
}

ul.contact-list a {
    color: #fff;
    display: inline-block;
    /* flex-wrap: wrap; */
}

footer .row .col-md-7 {
    padding-inline-end: 0;
}

span.key {
    font-weight: bold;
    display: inline-flex;
}

.fixed-icone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: updown-i 4s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes updown-i {

    0%,
    100% {
        transform: translateY(-12px);
    }

    50% {
        transform: translateY(12px);
    }
}

.fixed-icone a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.fixed-icone a i {
    width: 50px;
    height: 50px;
    background: #72D070;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-icone a i {
    color: #fff;
    font-size: 31px;
}

.fixed-icone h6 {
    padding: 0px 16px;
    line-height: 1.6;
    font-size: 15px;
    background-color: rgb(37, 211, 102);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    margin: 0px 10px;
    order: 0;
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;

}

.fixed-icone:hover h6 {
    visibility: visible;
    opacity: 1;

}

footer {
    background-color: var(--bg-color);
    padding-top: 47px;
    color: #fff;
}

.comp-rights p {
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
}

.bottom-footer .row {
    align-items: center;
}

.bottom-footer {
    border-top: 1px solid rgb(0 0 0 / 10%);
    padding: 20px 0;
    margin-top: 67px;
}

.bottom-footer .col-sm-6 {
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

/* bottom footer */
.copy-right {
    text-align: end;
    background-color: #d4211e;
    padding: 14px 0;
    margin-top: 50px;
}

.ryad-logo {
    height: 60px;
    margin-top: -32px;
    position: relative;
    top: 5px;
    margin-left: -20px;
}

.copy-right .row {
    align-items: center;
}

.comp-rights {
    text-align: start;
}

.copy-right p {
    margin-bottom: 0;
    text-align: center;
}


/* Start about page */

.breadcrumb-section {
    padding: 64px 0px;
    background-color: #54595f;
}

.breadcrumb-info h2 {
    font-size: 45px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.breadcrumb-section a {
    color: #fff;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item.active {
    color: #fff;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-left: 6px;
    content: "\f100";
    color: #fff;
    padding-right: 6px;
    font-family: 'Font Awesome 5 Pro';
    font-size: 11px;
    position: relative;
    top: 3px;
}


/* -------------------------------- */
a {
    color: inherit;
}

/* --------------------------  contact page  ----------------------    */
.contact-form form input,
.contact-form form textarea,
.contact-page .contact-form .nice-select {
    width: 100%;
    padding: 14px 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgb(21 101 192 / 65%);
    border: 1px solid rgb(21 101 192 / 50%);
    font-size: 16px;
    padding-inline-start: 38px;
    height: 55px;
}

.contact-page .contact-form .nice-select {
    padding-block: 0;
    line-height: 50px;
}

.contact-page .contact-form .nice-select::after {
    border-color: #1565C0;
}

.contact-form form textarea {
    height: 245px;
}

.contact-form .col-lg-6:first-of-type {
    padding-inline-end: 10px;
}

.contact-form .col-lg-6:last-of-type {
    padding-inline-start: 10px;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: rgb(21 101 192 / 65%);
}


.form-group {
    margin-bottom: 30px;
}

.contact-page .form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group i,
.form-group img {
    position: absolute;
    top: 20px;
    right: 10px;
    color: var(--sec-color);
    height: 10px;
    /* z-index: 2; */
}

section.contact-page .contact-form {
    background-color: transparent;
    padding: 0;
}

.contact-img {
    max-height: 490px;
}

.contact-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: updown-i 4s infinite ease-in-out;
}

.contact-form h6 {
    font-size: 18px;
    margin-bottom: 37.8px;
    color: var(--sec-color);
    font-weight: 500;
}

.read-more button {
    border-radius: 0;
}

.input-group.upload span.uplod {
    position: absolute;
    left: 0px;
    top: 9px;
    padding: 3px 8px;
    font-size: 26px;
    display: inline-block;
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center;
}

.input-group.upload span.uplod .upload-img {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--sec-color);
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group.upload span.uplod .upload-img img {
    position: relative;
    top: unset;
    right: unset;
    left: unset;
}

.input-group.upload {
    position: relative;
}

.form-group.name input {
    width: 100%;
    padding: 7px 0;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: transparent;
    width: 100%;
    padding-block: 21px;
}

label.input-group-btn {
    height: 0;
}

.form-control[readonly]::placeholder {
    color: rgb(21 101 192 / 65%);
}

textarea:focus {
    outline: none;
}

/* -----------------------  payment page ------------------    */
.paypal-button-label-container button {
    background: transparent;
    border: none;
    outline: none;

}

.paypal-button-label-container {
    padding: 14px;
    border-radius: 50px;
    max-width: 670px;
    background: #2C2E2F;
    margin-top: 12px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    margin-inline-start: auto;
    cursor: pointer;
}

.paypal-button-label-container.Checkout {
    background: #ffc439;
}

.currency-form {
    text-align: center;
}

.currency-form input {
    max-width: 100%;
}

.nv-content-wrap.entry-content {
    text-align: center;
}

.nv-content-wrap.entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.nv-content-wrap.entry-content h2 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 30px;
}

.paypal-powered-by {
    max-width: 670px;
    margin-inline-start: auto;
    font-size: 11px;
    font-weight: 600;
    color: #7b8388;
    margin-top: 11px;
    font-style: italic;
}

.paypal-powered-by img {
    max-height: 18px;
}

/* ----------------  industry page ----------------   */
.industry-item {
    margin-bottom: 50px;
}

.industry-item .img {
    max-height: 500px;
}

.industry-item .img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: cover;
}

.industry-item a {
    font-size: 22px;
    font-weight: 600;
    color: #2d399b;
    text-decoration: underline;
    display: block;
    text-align: center;
    transition: all 0.3s;
}

.industry-item a:hover {
    color: var(--sec-color);
}

.services-page .row {
    justify-content: center;
}

.tooltip-inner {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}

.tooltip.top .tooltip-arrow,
.tooltip.left .tooltip-arrow,
.tooltip.bottom .tooltip-arrow,
.tooltip.right .tooltip-arrow {
    border-color: transparent;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.arrow::before {
    display: none;

}

/* ------------------------------------ blog  page  --------------    */
.blog-item .img {
    max-height: 400px;
    margin-bottom: 20px;
}

.blog-item .img img {
    max-width: 100%;
    max-height: 100%;
}
.blog-item h5 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-item h5 a{
    color: #000;
}
.blog-item{
    margin-bottom: 50px;
}
/* -------------------------------------------------------- */
.company-info p {
    margin-bottom: 30px;
    line-height: 27px;
}

.company-info .ourgoals ul,
.company-vission ul {
    list-style: disc;
    padding-inline-start: 16px;
    margin-top: 30px;
}

.company-info .ourgoals ul li {
    margin-bottom: 8px;
}

.company-vission h2 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 50px;
}

.company-vission ul.our-vission-list {
    display: flex;
    flex-wrap: wrap;
}

.company-vission ul.our-vission-list li {
    width: 49%;
}

/* --------------------------------   */
.contact-block {
    background-color: #f1f1f2;
    text-align: center;
    padding: 22px 12px;
    width: 87%;
    margin-bottom: 90px;
}

.col-lg-6:first-of-type .contact-block,
.col-lg-6:nth-child(3) .contact-block {
    margin-inline-start: auto;
}

.col-lg-6:last-of-type .contact-block,
.col-lg-6:nth-child(4) .contact-block {
    margin-inline-end: auto;
}

.contact-block .my-btn a {
    min-width: 153px;
    padding: 14px 10px;
}

.contact-block h3 {
    color: var(--sec-color);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.contact-block p {
    margin-bottom: 30px;
    min-height: 48px;
}

.contact-block h6 a {
    color: #000;
    transition: all 0.3s;
}

.contact-block h6 {
    margin-bottom: 30px;
}

.contact-block h6 a:hover {
    color: var(--sec-color);
}

/* ------------------------ single blog -----------------------    */
.why-translat-import ul {
    list-style: auto;
    padding-inline-start: 16px;
}

.why-translat-import ul li {
    margin-bottom: 16px;
    line-height: 27px;
}

.single-blog-details h4 {
    font-size: 20px;
    margin: 30px 0;
    font-weight: 700;
}

.single-blog-details h1 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
}

.more-details ul,
.single-service-info ul,
.enent-item ul,
.single-indut-list ul,
.translat-conditions ul {
    list-style: disc;
    padding-inline-start: 16px;
}

.more-details ul li {
    margin-bottom: 17px;
}

.faq h4 {
    text-align: center;
    font-size: 29px;
    font-weight: 600;
    margin: 30px 0;
}

.faq .faq-item {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, .08);
    border-radius: 4px;
    background: #fff;
    margin: 2em auto;
    width: 100%;
    overflow: hidden;
    padding: 1em;
    box-sizing: border-box;
}

.single-blog-page .row {
    justify-content: center;
}

.breadcrumb-info span {
    display: block;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}

.single-blog-page p a,
.single-blog-page li a,
.company-info a,
.single-indut-list ul li a ,.blog-item h6 a ,
.blog-item p a{
    color: #2d399b;
    text-decoration: underline;
    transition: all 0.3s;
}

.single-blog-page p a:hover,
.single-blog-page li a:hover,
.company-info a:hover,
.single-indut-list ul li a:hover
,.blog-item h6 a:hover ,
.blog-item p a:hover {
    color: var(--sec-color);
}

p {
    line-height: 27px;
}

.faq .faq-item h5 {
    font-size: 1em;
    line-height: 1.2em;
    margin: 0 0 1em;
    font-weight: 700;
}

/* --------------------------  single service ------------------------------   */
.translate-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.single-service-info h3,
.all-comp-services h2 {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 30px;
}

.single-service-info h2,
.company-evants h2,
.translat-conditions h2,
.translat-conditions h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.translat-conditions h4 {
    font-size: 25px;
    margin-top: 30px;
}

.single-serv-img {
    width: 800px;
    height: 500px;
    margin: 22px auto;
}

.single-serv-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.single-service-info p,
.single-service-info span {
    margin-bottom: 30px;
    line-height: 27px;
    display: block;
}

.single-service-info ul li,
.enent-item ul li,
.single-indut-list ul li,
.translat-conditions ul li {
    margin-bottom: 12px;
}

.company-evants .enent-item {
    padding: 2em;
    margin-bottom: 30px;
}

.company-evants .enent-item ul {
    margin: 30px 0;
    min-height: 168px;
}

.company-evants .col-lg-4:first-of-type .enent-item {
    background-color: #ffe97d;
}

.company-evants .col-lg-4:nth-child(2) .enent-item {
    background-color: #d1d1e1;
}

.company-evants .col-lg-4:last-of-type .enent-item {
    background-color: #c0ebf1;
}

.translate-item ul ul {
    margin-top: 22px;
}

.single-indut-list {
    margin-bottom: 30px;
}
/* -------------------  pagination -------------------    */
/* Pagination */
.mypagination {
    margin-top: 29px;
}

.pagination {
    justify-content: center;
}

.pagination .page-item {
    padding-inline: 5px;
}

.pagination .page-link {
    border: none;
    border-radius: 3px;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 0px;
    background: #F1F1F2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 20px 17px;
    gap: 3px;
}

.pagination .page-link.next-item {
    border: none;
    background: transparent;
    border-radius: 0;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    background: #F1F1F2;
    border-color: transparent;
    color: #000;
    border-radius: 3px;
}

.page-item:last-child .page-link {
    border-radius: 3px;
    padding: 11px;
    font-size: 17px;
}

.pagination .page-link:hover ,
.pagination li.page-item.aria-current .page-link{
    z-index: 2;
    text-decoration: none;
    background-color: #2d399b;
    color: #fff;
    border-color: transparent;
}

.page-link:focus {
    box-shadow: none;
}
