@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Merriweather:opsz,wdth,wght@18..144,87..112,300..900&family=Roboto:wght@100..900&display=swap');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #1E2E45;
    --sub-color: #F8C619;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Roboto', 'Almarai', sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', 'Almarai', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}

.hamburger,
.is-closed {
    width: 35px;
    height: 35px;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
    background-color: transparent;
}

.hamburger span,
.is-closed span {
    width: 20px;
    height: 2px;
    border-radius: 0px;
    background-color: #fff;
    display: block;
    margin-bottom: 4px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.is-closed span:nth-child(1) {
    transform: rotate(45deg)
}

.is-closed span:nth-child(2) {
    display: none;
}

.is-closed span:nth-child(3) {
    transform: rotate(135deg);
    margin-top: -5px;
}

.hamburger {
    display: none;
}



/* Style Header */

#header {
    width: 100%;
    padding: 30px 0;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform .3s ease;
    z-index: 9;
}

#header .container {
    background: var(--main-color);
    border-radius: 60px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 60px;
}

.main_menu,
.end_menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main_menu > li > a,
.end_menu > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
}

.main_menu > li.active a {
    color: var(--sub-color);
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    top: 0;
    left: 0;
    z-index: 33;
    transition: transform .3s ease;
}


/* Style Home Slide */

.section_home {
    position: relative;
    background-size: 100% 100% !important;
    padding: 250px 0;
    z-index: 1;
}

.section_home:before {
    content: "";
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(30, 46, 69, 1) 60%, rgba(30, 46, 69, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 50%;
}

.home_txt {
    position: relative;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.home_txt h1 {
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 64px;
}

.home_txt p {
    color: #fff;
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.home_txt .btn-site {
    margin: 0 auto
}

/* Style Stac Site */

.sec_head {
    margin: 0 auto 40px;
    position: relative;
    text-align: center;
    width: 60%;
}

.sec_head > span {
    display: block;
    color: var(--sub-color);
    margin-bottom: 10px;
}

.sec_head h2 {
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sec_head h2:before {
    content: "";
    background: url(../images/shape-qoute.svg);
    background-size: 100% 100%;
    width: 150px;
    height: 120px;
    position: absolute;
    top: -50px;
    left: -80px;
}

.rtl-style .sec_head h2:before {
    left: auto;
    right: -80px;
}

.sec_head h2 span {
    color: var(--sub-color);
}

.sec_head p {
    font-size: 16px;
    color: #A0A0A0;
    line-height: 1.5;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    background: var(--sub-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: #EBEBEB;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    text-transform: capitalize;
    font-weight: 500;
}

.btn-site:hover span {
    color: var(--sub-color);
}

/* Style We Do */

.section_we_do {
    position: relative;
    padding: 80px 0;
    background: #F5F5F5;
}

.txt-we-do {
    position: relative;
}

.txt-we-do:before {
    content: "";
    background: url(../images/qoute.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -130px;
    left: 0;
}

.rtl-style .txt-we-do:before {
    left: auto;
    right: 0;
}

.txt-we-do h2 {
    color: var(--sub-color);
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.txt-we-do p {
    color: #A0A0A0;
    font-size: 16px;
    line-height: 1.7;
}

.wrapper-we-do {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.item-we-do {
    position: relative;
    flex: 0 0 auto;
    width: calc(50% - 7.5px);
    padding: 60px 20px 20px;
    height: 280px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--sub-color);
    border-radius: 15px;
    box-shadow: 0 8px 57px rgb(0 0 0 / 8%);
    overflow: hidden;
}

.item-we-do figure {
    height: 60px;
    display: flex;
    align-items: center;
}

.item-we-do h3 {
    color: #000;
    font-size: 27px;
    line-height: 1.3;
}

.ph-do {
    background: var(--main-color);
    color: #fff;
    line-height: 1.7;
    padding: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateY(101%);
    transition: transform .3s ease
}

.item-we-do:hover .ph-do {
    transform: translateY(0%)
}

/* Style Who are You */

.section_we_are {
    position: relative;
    padding: 70px 0 120px;
}

.txt-who > span {
    color: var(--sub-color);
    display: block;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.txt-who h2 {
    color: #000;
    font-size: 38px;
    margin-bottom: 15px;
}

.txt-who p {
    color: #000;
    line-height: 1.7;
    font-size: 20px;
    margin-bottom: 30px;
}

.thumb-who {
    position: relative;
    text-align: center;
}

.thumb-who img {
    border-radius: 14px;
    height: 420px;
    width: 360px;
    object-fit: cover;
}

.txt-thumb-who {
    width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.txt-thumb-who p {
    color: #000;
    font-size: 28px;
    margin-bottom: 15px;
}

.txt-thumb-who span {
    color: #000;
    font-size: 14px;
    display: block;
}

/* Style Principles */

.section_principles {
    position: relative;
    padding: 60px 0;
    background-size: cover !important;
    background-position: center !important;
}

.section_principles:before {
    content: "";
    background: rgb(30 46 69 / 85%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.item-principle {
    position: relative;
    display: flex;
    gap: 20px;
}

.item-principle figure {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.txt-principle {
    width: calc(100% - 80px);
}

.txt-principle h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 27px;
    margin-bottom: 20px;
}

.txt-principle p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

/* Style clients */

.section_clients {
    position: relative;
    padding: 50px 0;
}

.section_clients .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
}

.item-client {
    border: 1px solid #8F8F8F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 10px;
}

.item-client figure {
    margin-bottom: 0;
}

/* Style Staff */

.section_staff {
    position: relative;
    padding: 60px 0;
    background-size: 100% 100% !important;
}

.section_staff:before {
    content: "";
    background: rgb(30 46 69 / 85%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section_staff .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.head-staff {
    position: relative;
    width: 350px;
}

.head-staff > span {
    font-size: 28px;
    color: var(--sub-color);
    display: block;
    margin-bottom: 20px;
}

.head-staff h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.head-staff p {
    color: #fff;
    font-size: 19px;
    color: #D4D4D4;
    line-height: 1.7;
    margin-bottom: 30px;
}

.head-staff .btn-site {
    padding: 10px 40px
}

.wrapper-carousel {
    width: calc(100% - 390px);
}

.section_staff .owl-carousel {
    width: 120%;
}

.item-staff {
    position: relative;
    background: #fff;
}

.item-staff figure {
    margin-bottom: 0;
    height: 280px;
}

.item-staff figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.txt-staff {
    position: relative;
    padding: 50px 30px 30px;
    text-align: center;
}

.txt-staff h5 {
    color: var(--sub-color);
    margin-bottom: 10px;
}

.txt-staff p {
    color: var(--main-color);
    font-size: 17px;
}

.txt-staff ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--sub-color);
    border-radius: 10px;
    padding: 10px;
    width: 160px;
    height: 50px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.txt-staff ul li a {
    color: #fff;
    font-size: 20px;
}

.txt-staff ul li a svg {
    height: 20px;
    width: 20px;
}

.icon-whatsapp {
    background: url(../images/whatsapp.svg);
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
    display: block;
}

/* Style Newsletter */

.section_newsletter {
    position: relative;
    padding: 80px 0;
    background: #EDEDED;
}

.section_newsletter .sec_head > span {
    font-size: 30px;
}

.section_newsletter .sec_head h2 {
    color: #000;
    font-size: 42px;
}

.form-newsletter {
    width: 400px;
    margin: 0 auto;
}

.form-newsletter .form-control {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #464646;
    border-radius: 0;
    color: #2C2C2C;
    padding: 0;
    height: 50px;
}

.form-newsletter .form-group {
    position: relative;
}

.form-newsletter .form-control:focus {
    box-shadow: none;
}

.form-newsletter .form-control::placeholder {
    color: #2C2C2C;
}

.form-newsletter button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.rtl-style .form-newsletter button {
    right: auto;
    left: 0;
    transform: translateY(-50%) scale(-1);
}

/* Style Fotter */

footer {
    position: relative;
}

.top-footer {
    padding: 30px 0;
    background: var(--main-color);
}

.logo-ft {
    display: block;
}

.logo-ft img {
    width: 240px;
    max-width: 100%;
}

.menu-ft h5 {
    color: #fff;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 25px;
}

.menu-ft ul li {
    margin-bottom: 15px;
}

.menu-ft ul li a {
    color: #fff;
    font-size: 19px;
}

.li-ft li a:hover {
    color: var(--main-color);
}

.list-contact li {
    display: block;
    margin-bottom: 10px;
    color: #fff
}

.list-contact li a {
    color: #fff;
    display: flex;
    gap: 15px;
    align-items: center;
}

.list-contact li a:hover {
    opacity: .5
}

.list-contact li a svg {
    width: 19px;
    height: 19px;
}

.bottom-ft {
    padding: 20px 0;
    background: #314158;
}

.cont-bt {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyRight {
    color: #fff;
    font-size: 18px;
}

.scroll-up {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sub-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    transition: opacity 0.3s ease;
}

.rtl-style .scroll-up {
    left: 20px;
    right: auto;
}

.scroll-up a {
    color: #fff;
    font-size: 23px;
}

/* Style Head Page */

.section_hero_page {
    position: relative;
    background-size: 100% 100% !important;
    height: 550px;
}

.section_hero_page:before {
    content: "";
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 50%;
}

.section_hero_page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.txt_hero_page {
    position: relative;
    text-align: center;
    z-index: 1;
}

.txt_hero_page h1 {
    color: #fff;
    font-size: 55px;
}

.breadcrumb-bar .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 12px 15px;
    justify-content: center;
}

.breadcrumb-bar .breadcrumb a,
.breadcrumb-bar .breadcrumb li {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Merriweather';
}

.breadcrumb-bar .breadcrumb li:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
}

.rtl-style .breadcrumb-bar .breadcrumb li:not(:last-child) {
    padding-left: 20px;
    padding-right: unset;
    margin-left: 20px;
    margin-right: unset;
}

.breadcrumb-bar .breadcrumb li:not(:last-child):before {
    border: 0;
    font: normal normal normal 20px / 1 FontAwesome;
    content: "\f105";
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
}

.rtl-style .breadcrumb-bar .breadcrumb li:not(:last-child):before {
    left: -5px;
    right: auto;
    content: "\f104";
}

.breadcrumb-bar .breadcrumb a:hover {
    color: var(--main-color);
}

/* Style About Page */

.section_about {
    position: relative;
    padding: 60px 0;
}

.txt-about {
    position: relative;
}

.txt-about:before {
    content: "";
    background: url(../images/shape-qoute.svg);
    background-size: 100% 100%;
    width: 150px;
    height: 120px;
    position: absolute;
    top: -20px;
    left: 0;
}

.rtl-style .txt-about:before {
    right: 0;
    left: auto;
}

.txt-about h2 {
    font-size: 70px;
    color: #3A3A38;
}

.thumb-about figure {
    margin-bottom: 0;
    text-align: end;
    border-left: 2px solid #3A3A38;
    padding: 15px 0;
}

.rtl-style .thumb-about figure {
    border-left: 0;
    border-right: 2px solid #3A3A38;
}

.thumb-about figure img {
    max-width: 550px;
}

.dis-about {
    padding: 40px 0;
}

.dis-about p {
    color: #3A3A38;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

/* Style Services */

.section_services {
    position: relative;
    padding: 60px 0;
}

.item-serv {
    position: relative;
    padding: 40px 20px;
    box-shadow: 0 5px 16px rgba(8, 15, 52, 0.06);
    border: 2px solid #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.item-serv.active {
    border: 2px solid var(--sub-color);
    box-shadow: 0 6px 16px rgba(74, 58, 255, 0.19);
}

.head-serv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.head-serv h4 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    width: 60%;
}

.item-serv.active .head-serv h4 {
    color: var(--sub-color);
}

.head-serv span {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--sub-color);
    box-shadow: 0 5px 16px rgba(8, 15, 52, 0.06);
    transition: .3s all;
}

.item-serv.active .head-serv span {
    background: var(--sub-color);
    color: var(--main-color);
}

.bdy-serv {
    display: none;
}

.bdy-serv p {
    color: #000;
    line-height: 1.7;
    font-size: 16px;
    margin-top: 15px;
}

.item-serv.active .bdy-serv {
    display: block;
}

.icon-plus::after {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f107";
}

.icon-minus::after,
.item-serv.active .head-serv .icon-plus::after {
    border: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f106";
}

/* Style clients Page */

.section_clients_page {
    position: relative;
    padding: 60px 0;
}

.head-clients {
    text-align: center;
    margin-bottom: 30px;
}

.head-clients h4 {
    font-size: 30px;
    font-weight: 400;
    color: #1A1A1A
}

.row-client {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 70px;
}

.row-client:last-child {
    margin-bottom: 0;
}

.row-client:nth-child(even) {
    flex-direction: row-reverse;
}

.row-client > figure {
    width: 240px;
    height: 240px;
    margin-bottom: 0;
}

.row-client figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dta-client {
    width: calc(100% - 300px);
    padding-left: 60px;
    border-left: 1px solid #000
}

.row-client:nth-child(even) .dta-client,
.rtl-style .dta-client {
    padding-left: 0;
    padding-right: 60px;
    border-left: 0;
    border-right: 1px solid #000;
}

.rtl-style .row-client:nth-child(even) .dta-client {
    padding-left: 60px;
    padding-right: 0;
    border-left: 1px solid #000;
    border-right: 0;
}

.dta-client h2 {
    color: #1A1A1A;
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 400;
}

.dta-client .d-flex {
    margin-bottom: 15px;
    gap: 10px;
}

.icon-location {
    background: url(../images/location.svg);
    background-size: 100% 100%;
    width: 28px;
    height: 28px;
    display: block;
}

.dta-client span {
    color: #1A1A1A;
    font-size: 19px;
}

.dta-client p {
    color: #3A3A38;
    font-size: 17px;
    line-height: 1.7;
}

/* Style Our Team */

.section_team_page {
    position: relative;
    padding: 60px 0;
}

.section_team_page .sec_head h2 {
    font-size: 36px;
    font-weight: 400;
}

.section_team_page .item-staff {
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    margin-bottom: 24px;
}

.section_team_page .item-staff figure {
    height: 330px;
}

/* Style articles */

.section_articles_page {
    position: relative;
    padding: 60px 0;
}

.item-article {
    position: relative;
    margin-bottom: 30px;
}

.item-article figure {
    height: 280px;
    margin-bottom: 10px;
}

.item-article figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txt-article span {
    display: block;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.txt-article h5 {
    color: var(--main-color);
    font-size: 19px;
    margin-bottom: 20px;
}

.txt-article a {
    color: var(--sub-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.txt-article a svg {
    transition: .3s;
}

.txt-article a:hover svg {
    transform: translateX(10px);
}

.thumb-article {
    margin-bottom: 60px;
}

.thumb-article figure img {
    width: 100%;
}

.des-article {
    position: relative;
}

.des-article:before {
    content: "";
    background: url(../images/shape-qoute.svg);
    background-size: 100% 100%;
    width: 120px;
    height: 95px;
    position: absolute;
    top: -40px;
    left: 0px;
}

.des-article h5 {
    color: var(--main-color);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.des-article p {
    color: #3A3A38;
    font-size: 16px;
    line-height: 1.7;
}

.aside-article {
    padding-left: 80px;
}

.aside-article h6 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #000;
}

.item-art {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.item-art figure {
    width: 125px;
    height: 135px;
    margin-bottom: 0;
}

.item-art figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ph-art {
    width: calc(100% - 155px);
}

.ph-art h6 {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.ph-art p {
    color: #000;
    font-size: 18px;
}

.ph-art p a {
    color: var(--sub-color);
    font-weight: 700;
}

/* Style Contact */

.section_contact {
    position: relative;
    padding: 60px 0;
}

.form-contact {
    position: relative;
}

.form-contact:before {
    content: "";
    background: url(../images/letter_send.svg);
    background-size: 100% 100%;
    width: 200px;
    height: 100px;
    position: absolute;
    bottom: -80px;
    right: 100px;
}

.rtl-style .form-contact:before {
    right: auto;
    left: 100px;
    transform: scale(-1, 1)
}

.form-contact .d-flex {
    gap: 24px;
}

.form-contact .d-flex .form-group {
    flex: 0 0 auto;
    width: calc(50% - 14px);
}

.form-contact .form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 16px;
}

.form-control {
    background: #F1F4F9;
    border-radius: 15px;
    height: 55px;
    border: 0;
}

.error-form .form-control {
    border: 1px solid #FF0000;
}

textarea.form-control {
    height: 130px;
}

.form-group .btn-site {
    margin: 0 0 0 auto
}

.rtl-style .form-group .btn-site {
    margin: 0 auto 0 0
}

.error-form span {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #FF0000;
    font-size: 13px;
}

.rtl-style .error-form span {
    left: auto;
    right: 0;
}

.info-contact {
    position: relative;
    background: var(--main-color);
    padding: 40px;
    border-radius: 15px;
}

.info-contact:before {
    content: "";
    background: url(../images/shape-contact.svg);
    background-size: 100% 100%;
    width: 220px;
    height: 220px;
    position: absolute;
    bottom: -30px;
    right: -30px;
}

.rtl-style .info-contact:before {
    left: -30px;
    right: auto;
    transform: scale(-1, 1)
}

.info-contact h5 {
    color: #fff;
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 60px;
}

.info-contact .list-contact {
    margin-bottom: 60px;
}

.info-contact .list-contact li {
    margin-bottom: 20px;
}

.info-contact .list-contact li a {
    color: #fff;
    font-size: 19px;
}

.info-contact .list-contact li a svg {
    width: 19px;
    height: 19px;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-media li a {
    background: var(--sub-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.cont-success {
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.cont-success figure img {
    max-width: 140px;
}

.txt-success h5 {
    margin-bottom: 15px;
    color: #000;
}

.txt-success p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #000;
}

.txt-success .btn-site {
    margin: 0 auto;
}

.modal-dialog {
    max-width: 600px;
}

/* Style 404 Page */

.cont-not-found {
    text-align: center;
    padding: 180px 0 80px;
}

.thumb-not-found {
    margin-bottom: 50px;
}

.thumb-not-found img {
    max-width: 450px;
}

.txt-not-found .btn-site {
    margin: 0 auto;
    padding: 10px 35px
}

.txt-not-found h5 {
    color: #000;
    font-size: 60px;
    margin-bottom: 15px;
}

.txt-not-found p {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 40px;
}