@font-face {
    font-family: 'estedad';
    src: url('assets/fonts/woff2/Estedad-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
    transition: 0.4s;
}
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video,
  button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
body {
    line-height: 1.8;
}
ol,ul {
    list-style: none;
}
body {
    font-family: 'estedad', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #373737;
    background: #f1f1f1;
    overflow: auto;
    direction: rtl;
}
.width-web {
  width: 1140px;
  margin: auto;
  max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
/*header*/
.navbar {
    background-color: #212529;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 99;
}
.navbar .brand {
    color: #ffc800;
    font-size: 24px;
    font-weight: bold;
    float: right;
    text-decoration: none;
}
.navbar .menu {
    list-style: none;
    display: flex;
    gap: 20px;
    float: left;
    margin-top: 5px;
}
.navbar .menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
}
.navbar .menu li a.active {
    color: #ffc800;
}
.hero-content {
    background: url('assets/img/img1.png') no-repeat center center/cover;
    height: 750px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 150px;
}
.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta-btn {
    padding: 15px 30px;
    background-color: #ffc800;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cta-btn:hover {
    background-color: #ffc800;
}
.navbar-toggler {
    display: none;
    cursor: pointer;
}
.navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.navbar-toggler-icon::before {
    top: -8px;
}
.navbar-toggler-icon::after {
    top: 8px;
}
/*services*/
.services {
    text-align: center;
    margin-bottom: 150px;
}
.services .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #212529;
}
.services .section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}
.service-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}
.service-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 30%;
    height: 370px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.service-item h3 {
    margin: 20px 0 10px;
}
.service-icon {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}
.service-icon img{
    width: 100%;
}
.service-item p {
    text-align: justify;
    color: #777;
}
/*project*/
.portfolio {  
    display: flex;  
    flex-wrap: wrap;  
    justify-content: center;  
    height: auto;
    margin-bottom: 150px;
}
.project-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #212529;
}
.project-subtitle{
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
}
.project {
    position: relative;
    width: calc(30.9% - 20px);
    margin-bottom: 20px;
    cursor: pointer;
    text-align: center;
    height: 400px;
    object-fit: cover;
    margin-bottom: 50px;
    z-index: 5;
    overflow: hidden;
    border-radius: 20px;
}
.project:hover::before {
    opacity: 1;
}
.project::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffc800;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}
.project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}
.project:hover img {
    transform: scale(1.1);
}
.project h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.project:hover h3 {
    opacity: 1;
}
.item-project {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popup {  
    display: none;  
    position: fixed;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    background-color: rgba(0, 0, 0, 0.7);  
    justify-content: center;  
    align-items: center;
    pointer-events: none;
    z-index: 10;
}
.popup-content {  
    background-color: #fff;
    padding: 20px;  
    border-radius: 5px;  
    width: 60%;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
    text-align: center;
    top: 60px;
    position: relative;
    pointer-events: auto;
}
.popup-content p{
    text-align: justify;
    margin-bottom: 25px;
    color: #777;
}
.popup-content img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
}
#closeButton{
    padding: 15px 50px;
    background-color: #ffc800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'estedad', sans-serif;
}
#closeButton:hover{
    background-color: #ffc800;
}
.close {  
    cursor: pointer;  
    float: right;  
    font-size: 24px;  
}
/*about*/
.about-section {    
    text-align: center;
    margin-bottom: 150px;
    height: auto;  
} 
.about-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #212529;
}
.about-subtitle{
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
}
.timeline {  
    position: relative;  
    padding: 20px 0;  
}  
.timeline-item {  
    display: flex;  
    align-items: center;  
    margin: 20px 0;  
    direction: ltr;
}
.left{
    text-align: right;
}
.right{
    text-align: left;
}
.timeline-content {   
    padding: 15px;  
    margin: 10px;  
    width: 74%;  
}
.timeline-content h3{
    color: #212529;
}
.timeline-content p{
    color: #777;
}
.timeline-image {  
    width: 250px;
    height: 250px;
    border-radius: 100%;
}  
.timeline-image img {  
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
/*team*/
.team-section {  
    text-align: center;  
    height: auto;
    margin-bottom: 200px; 
}
.team-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #212529;
}
.team-subtitle{
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
}
.team-member h3{
    position: relative;
    top: 20px;
    font-size: 18px;
}
.team-member p{
    position: relative;
    top: 20px;
    font-size: 18px;
}
.team-members {  
    display: flex;  
    justify-content: center;  
    gap: 20px;  
}  
.team-member {  
    background-color: #ffffff;  
    border-radius: 50%;  
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  
    transition: transform 0.3s, box-shadow 0.3s;  
    width: 400px;
    height: 350px;
    text-align: center;  
}  
.team-member:hover {  
    transform: translateY(-10px);  
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);  
}  
.member-image img {  
    width: 350px;  
    height: 350px;
    border-radius: 50%;  
    transition: transform 0.3s;  
    object-fit: cover;
}    
.social-icons-team {  
    display: flex;
    justify-content: center;  
    position: relative;
    top: 25px;
}  
.social-icons-team a {  
    margin: 0 5px;   
    transition: color 0.3s;  
    display: flex;
    width: 20px;
    height: 20px;
}
/*contact*/
.contact-section {  
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 150px;
}
.contact-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #212529;
}
.contact-subtitle{
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
    text-align: center;
}
.in-contact{
    display: flex;
    gap: 20px;
    justify-content: center;
}
form {  
    display: flex;  
    flex-direction: column;  
    width: 53%;
}  
input, textarea { 
    font-family: 'estedad', sans-serif;
    margin-bottom: 20px;
    padding: 10px;  
    border: 1px solid #ffc800;  
    border-radius: 5px;  
    font-size: 16px;
    color: #777;
}  
textarea {  
    resize: vertical;  
}  
.btn-contact{
    padding: 15px 30px;
    background-color: #ffc800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'estedad', sans-serif;
}
/*map*/
.google-map {
    width: 45%;
    height: 300px;
    border-radius: 20px;
    position: relative;
    border: 2px solid #ffc800;
}
.google-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    border-radius: 20px;
}
/*footer*/
.footer {  
    background-color: #212529;
    color: #fff;  
    padding: 40px 20px;  
    height: 340px;
    margin-left: auto;
    margin-right: auto;
}  
.footer-content {  
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    flex-grow: 1;
    margin-top: 50px;
}  
.about {  
    max-width: 30%;
}  
.about h2 {  
    font-size: 24px;
    color: #ffc800;
}  
.about p {  
    color: #777;
    margin-top: 17px;
    text-align: justify;
}  
.classes{
    width: 30%;
}
.classes h3 {  
    font-size: 20px;
    margin-bottom: 10px;
    color: #c8c8c0;
}  
.classes ul {  
    list-style: none;
    padding: 0;
}  
.classes li {  
    color: #c8c8c0;
}
.classes a{
    text-decoration: none;
    color: #777;
}
.footer-bottom {  
    text-align: center;
    margin-top: 20px;
}  
.footer-bottom p {  
    margin: 5px 0;
}  
.social-icons {  
    margin-top: 10px;
}  
.social-icons a {  
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
}
.txt-center-footer {
    margin-top: 15px;
    font-size: 16px;
    color: #7c7c7c;
    text-align: right;
    direction: rtl;
}
.double-dote {
    display: inline-block;
    color: #ffc800;
    font-size: 20px;
    margin-left: 2px;
    margin-right: 2px;
}
.icon-phone img{
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    float: right;
    margin-left: 10px;
}
.icon-gmail img{
    width: 30px;
    height: 30px;
    margin-left: 10px;
    text-align: center;
    display: inline-block;
    float: right;
}
.icon-location img{
    width: 30px;
    height: 30px;
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    float: right;
}
.icon-clock img{
    width: 30px;
    height: 30px;
    margin-left: 10px;
    display: inline-block;
    text-align: center;
    float: right;
}
/* responsive */
/*
360  ~
600  ~
768  ~
1024 ~
*/
/* for desktop 1024px*/
@media screen and (min-width:1024px) and (max-width:1599px) {
    /*header*/
    .navbar .brand {
        right: 100px;
        position: relative;
    }
    .navbar .menu {
        left: 100px;
        position: relative;
    }
    /*pic-index*/
    .hero-content {
        margin-bottom: 120px;
    }
    .hero-content {
        height: 100vh;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .cta-btn {
        font-size: 15px;
    }
    /*services*/
    .services{
        margin-bottom: 120px;
    }
    .services .section-title {
        font-size: 30px;
    }
    .services .section-subtitle {
        font-size: 15px;
    }
    .service-items {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .service-item {
        width: 28%;
        height: 340px;
    }
    .service-icon {
        width: 100px;
        height: 100px;
    }
    .service-item h3 {
        font-size: 18px;
    }
    .service-item p {
        font-size: 15px;
    }
    /*project*/
    .portfolio{
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .project-title {
        font-size: 30px;
    }
    .project-subtitle {
        font-size: 15px;
    }
    .item-project {
        gap: 15px;
    }
    .project {
        width: 32%;
        height: 350px;
        margin-bottom: 0px;
    }
    .project h3 {
        font-size: 20px;
    }
    .popup-content img {
        height: 400px;
    }
    .popup-content p {
        font-size: 15px;
        word-spacing: -1px;
    }
    #closeButton {
        font-size: 15px;
    }
    /*about*/
    .about-section {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .about-title {
        font-size: 30px;
    }
    .about-subtitle {
        font-size: 15px;
    }
    .timeline-image {
        height: 224px;
    }
    .timeline-image img {
        object-fit: cover;
    }
    /*team*/
    .team-section {
        margin-bottom: 200px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .team-title {
        font-size: 30px;
    }
    .team-subtitle {
        font-size: 15px;
    }
    .team-member {
        width: 240px;
        height: 240px;
    }
    .member-image img {
        width: 240px;
        height: 240px;
    }
    .team-member h3 {
        top: 20px;
    }
    .team-member p {
        top: 20px;
    }
    .social-icons-team {
        top: 20px;
    }
    .social-icons-team a {
        width: 18px;
        height: 18px;
    }
    /*contact*/
    .contact-section {
        width: 80%;
        margin-bottom: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-title {
        font-size: 30px;
    }
    .contact-subtitle {
        font-size: 15px;
    }
    input, textarea {
        font-size: 14px;
    }
    .btn-contact {
        font-size: 15px;
    }
    .google-map {
        width: 45%;
        height: 277px;
    }
    /*footer*/
    .footer {
        height: 300px;
        padding: 10px 20px;
    }
    .footer-content {
       width: 80%;
    }
    .about h2 {
       font-size: 20px;
    }
    .about p {
       font-size: 14px;
       line-height: 2;
    }
    .about {
        max-width: 28%;
    }
    .classes {
        width: 33%;
    }
    .txt-center-footer {
        height: 25px;
        font-size: 13px;
        line-height: 0.5;
    }
    .icon-phone img {
       width: 25px;
       height: 25px;
       top: -5px;
       position: relative;
    }
    .icon-gmail img {
       width: 25px;
       height: 25px;
       top: -5px;
       position: relative;
    }
    .icon-location img {
       width: 25px;
       height: 25px;
       top: -5px;
       position: relative;
    }
    .icon-clock img {
       width: 25px;
       height: 25px;
       top: -5px;
       position: relative;
    }
}

/*for tablet 768px*/
@media screen and (min-width:768px) and (max-width:1023px) {
    /*header*/
    .navbar {
        height: 60px;
        width: 100%;
    }
    .navbar .brand {
        font-size: 16px;
        margin-right: 90px;
        display: block;
    }
    .navbar .menu.show {
        display: flex;
        flex-direction: column;
        background-color: #212529;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 55px;
        left: 0;
        padding-bottom: 20px;
    }
    .navbar .menu li {
        padding: 10px 0;
    }
    .navbar-toggler {
        display: block;
        cursor: pointer;
        float: left;
        margin-left: 90px;
        top: 10px;
        position: relative;
    }
    .navbar .menu {
        display: none;
    }
    /*pic index*/
    .hero-content {
        height: 100vh;
        margin-bottom: 120px;
    }
    .hero-content h1 {
        font-size: 26px;
        width: 80%;
    }
    .cta-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    /*services*/
    .services {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .services .section-title {
        font-size: 28px;
    }
    .services .section-subtitle {
        font-size: 15px;
    }
    .service-items {
        gap: 10px;
    }
    .service-item {
        width: 30%;
        height: auto;
        min-height: 400px;
    }
    .service-icon {
        width: 100px;
        height: 100px;
    }
    .service-item h3 {
        font-size: 16px;
    }
    .service-item p {
        font-size: 14px;
    }
    /*project*/
    .portfolio {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .project-title {
        font-size: 28px;
    }
    .project-subtitle {
        font-size: 15px;
    }
    .project {
        width: calc(35% - 20px);
        margin-bottom: 20px;
        height: 350px;
    }
    .popup-content img {
        height: 400px;
        margin-bottom: 15px;
    }
    .popup-content p {
        margin-bottom: 15px;
        font-size: 14px;
    }
    #closeButton {
        padding: 13px 50px;
        font-size: 15px;
    }
    /*about*/
    .about-section {
        margin-bottom: 120px;
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
    .about-title {
        font-size: 28px;
    }
    .about-subtitle {
        font-size: 15px;
    }
    .timeline {
        padding: 0px 0;
    }
    .timeline-item {
        margin: 0px 0;
    }
    .timeline-content {
        padding: 15px;
        margin: 10px;
        width: 60%;
        direction: rtl;
    }
    .timeline-image {
        width: 200px;
        height: 200px;
    }
    .left .timeline-content p{
        text-align: justify;
        direction: rtl;
    }
    .right .timeline-content p{
        text-align: justify;
        direction: ltr;
    }
    /*team*/
    .team-section {
        margin-bottom: 200px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .team-title{
        font-size: 28px;
    }
    .team-subtitle{
        font-size: 15px;
    }
    .team-members {
        gap: 10px;
    }
    .team-member {
        width: 150px;
        height: 150px;
    }
    .team-member:hover {
        transform: none;
        box-shadow: none;
    }
    .member-image img {
        width: 150px;
        height: 150px;
    }
    .team-member h3 {
        top: 10px;
        font-size: 16px;
    }
    .team-member p {
        top: 10px;
        font-size: 16px;
    }
    .social-icons-team {
        top: 10px;
    }
    /*contact*/
    .contact-section {
        width: 80%;
        margin-bottom: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-title{
        font-size: 28px;
    }
    .contact-subtitle{
        font-size: 15px;
    }
    input, textarea {
        font-size: 14px;
    }
    .btn-contact {
        padding: 13px 30px;
        font-size: 14px;
    }
    .google-map {
        height: 270px;
    }
    /*footer*/
    .footer {
        padding: 40px 20px;
        height: auto;
    }
    .footer-content {
        max-width: 80%;
    }
    .about h2 {
        font-size: 18px;
    }
    .about p {
        font-size: 11px;
    }
    .classes {
        width: 32%;
    }
    .classes h3 {
        font-size: 18px;
    }
    .txt-center-footer {
        font-size: 8.9px;
    }
    .icon-phone img {
        width: 25px;
        height: 25px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .icon-gmail img{
        width: 25px;
        height: 25px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .icon-location img{
        width: 25px;
        height: 25px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .icon-clock img{
        width: 25px;
        height: 25px;
        margin-left: 5px;
        margin-top: 5px;
    }
    .footer-content {
        margin-top: 0px;
    }
}

/*for mobile 360px*/
@media screen and (min-width:360px) and (max-width:767px) {
    /*header*/
    .navbar {
        height: 60px;
        width: 100%;
    }
    .navbar .brand {
        font-size: 16px;
        margin-right: 30px;
        display: block;
    }
    .navbar .menu.show {
        display: flex;
        flex-direction: column;
        background-color: #212529;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 55px;
        left: 0;
        padding-bottom: 20px;
    }
    .navbar .menu li {
        padding: 10px 0;
    }
    .navbar-toggler {
        display: block;
        cursor: pointer;
        float: left;
        margin-left: 30px;
        top: 10px;
        position: relative;
    }
    .navbar .menu {
        display: none;
    }
    /*pic-index*/
    .hero-content h1 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 20px;
        width: 80%;
    }
    .hero-content {
        height: 100vh;
        margin-bottom: 120px;
    }
    .cta-btn {
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 15px;
    }
    /*services*/
    .services {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .services .section-title {
        font-size: 25px;
    }
    .services .section-subtitle {
        font-size: 13px;
        text-align: justify;
    }
    .service-items {
        width: 100%;
        display: inline-block;
    }
    .service-item {
        padding: 20px 0px;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .service-icon {
        width: 100px;
        height: 100px;
    }
    .service-item h3 {
        font-size: 16px;
    }
    .service-item p {
        font-size: 13px;
        padding: 0px 20px;
    }
    /*project*/
    .portfolio {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .project-title {
        font-size: 25px;
    }
    .project-subtitle {
        font-size: 13px;
        text-align: justify;
    }
    .project {
        width: 100%;
        height: 350px;
        margin-bottom: 20px;
    }
    .popup-content img {
        height: 300px;
        margin-bottom: 10px;
    }
    .popup-content p {
        margin-bottom: 20px;
        font-size: 13px;
    }
    #closeButton {
        padding: 12px 25px;
        font-size: 16px;
        border-radius: 15px;
    }
    .popup-content {
        width: 70%;
        max-height: 75%;
        top: 30px;
    }
    /*about*/
    .about-section {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .about-title {
        font-size: 25px;
    }
    .about-subtitle {
        font-size: 13px;
        text-align: justify;
    }
    .timeline-item {
        display: inline-block;
        width: 100%;
        margin: 0px;
        border-bottom: 2px solid #ffc800;
        margin-bottom: 20px;
        text-align: right;
    }
    .timeline-content {
        width: 100%;
        padding: 0px;
        margin: 0px;
        margin-bottom: 20px;
    }
    .timeline-content h3{
        font-size: 16px;
    }
    .timeline-content p{
        font-size: 13px;
        text-align: justify;
        direction: rtl;
    }
    .timeline-image {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    /*team*/
    .team-section {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .team-title {
        font-size: 25px;
    }
    .team-subtitle {
        font-size: 13px;
        text-align: justify;
    }
    .team-members {
        display: inline-block;
    }
    .team-member {
        padding: 15px;
        width: 90%;
        height: 200px;
        margin-bottom: 120px;
    }
    .team-member:hover {
        transform: none;
        box-shadow: none;
    }
    .member-image img {
        width: 200px;
        height: 200px;
    }
    .team-member h3 {
        top: 12px;
    }
    .team-member p {
        top: 12px;
    }
    .social-icons-team {
        top: 12px;
    }
    /*contact*/
    .contact-section {
        margin-bottom: 120px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-title {
        font-size: 25px;
    }
    .contact-subtitle {
        font-size: 13px;
        text-align: justify;
    }
    .in-contact {
        display: inline-block;
        width: 100%;
    }
    form {
        width: 100%;
        margin-bottom: 20px;
    }
    input, textarea {
        font-size: 14px;
    }
    .btn-contact {
        padding: 12px 30px;
        font-size: 15px;
    }
    .google-map {
        width: 100%;
        height: 250px;
    }
    /*footer*/
    .footer{
        height: auto;
        padding: 40px 20px;
    }
    .footer-content {
       width: 80%;
       display: flex;
       flex-direction: column;
       align-items: center;
       text-align: center;
       margin-top: 0px;
    }
    .about, .classes {
       width: 100%;
       max-width: 100%;
       margin-bottom: 40px;
    }
    .classes ul {
       padding: 0;
    }
    .txt-center-footer {
       text-align: center;
       font-size: 13px;
    }
    .about h2 {
       font-size: 20px;
    }
    .about p {
       font-size: 13px;
    }
    .icon-phone img {
       width: 25px;
       height: 25px;
       margin-left: 0px;
       top: 3px;
       position: relative;
    }
    .icon-gmail img {
       width: 25px;
       height: 25px;
       margin-left: 0px;
    }
    .icon-location img {
       width: 25px;
       height: 25px;
       margin-left: 0px;
    }
    .icon-clock img {
       width: 25px;
       height: 25px;
       margin-left: 0px;
    }
}