@charset "UTF-8";
/*-----------------------------------------------------------------------------------
    Template Name: Roboto
    Description: AI and IT Startup Agency HTML5 Template
    Author: Codezion 
    Author URI: https://www.adminbuy.cn/
    Version: 1.0

-----------------------------------------------------------------------------------
    
    >>> TABLE OF CONTENTS:
    =======================

    01. Common/Reusable CSS
        1.1 - Animations
        1.2 - General
        1.3 - Section Title
        1.4 - Video Button
        1.5 - Slick Arrows
        1.6 - Slick Dots
        1.7 - Typography
        1.8 - Tables
        1.9 - Forms
        1.10 - Forms
        1.11 - Buttons
        1.12 - Pagination
        1.13 - Colors
        1.14 - Accordion
        1.15 - Tabs
    02. Homepage
        2.1 - Header
        2.2 - Banner
        2.3 - About Us
        2.4 - Services
        2.5 - Cta
        2.6 - How It Works
        2.7 - Our Team
        2.8 - Testimonials
        2.9 - Blog
        2.10 - Get In Touch
        2.11 - Footer
    03. About Us
    04. Services
    05. Service Details
    06. Team
    07. Blog Grid
    08. Blog Details
    09. Contact Us
    
-----------------------------------------------------------------------------------*/
/*Google Fonts*/
@import url('ec5903dd33ca4424b741717491058b19.css');

:root {
    --thm-font:  sans-serif;
    /* Headings */
    --thm-b-font: sans-serif;
    /* Body font */
    --thm-icon-font: "Font Awesome 5 Pro";
    /*Icon Font*/
    --thm-color-one: #ffffff;
    --thm-color-two: #ffffff;
    --thm-color-three: #edf1f5;
    --thm-color-four: #000000;
    /*Light Color*/
    --thm-color-light: #f7f7f7;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    --thm-color-two-rgb: 0, 0, 0;
    --thm-color-three-rgb: 237, 241, 245;
    --thm-color-four-rgb: 0, 0, 0;
    /*Light Color*/
    --thm-color-light-rgb: 247, 247, 247;
    /*Theme Colors*/
    --thm-body-color: #aeaeae;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #d1d1d1;
    /*Border Color*/
}

/*Animations*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    overflow-x: hidden;
    color: var(--thm-body-color);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    counter-reset: sectionCounter;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}


.section-padding {
    position: relative;
    padding: 25px 0;
}

.section-padding.section {
   
    background-color: #010c19;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}

.image-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

label>a {
    font-size: 14px;
}

img {
    max-width: 100%;
}

select {
    appearance: none;
}

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

.container-wide .row {
    flex-wrap: unset;
}

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

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


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}

/*section-title*/
.align-items-center p{
    margin-bottom: 0rem;
}
.section-header {
    
 
    margin: 0 auto 0 0;
    text-align: left;
    position: relative;
}

.section-header .section_count {
    margin-bottom: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--thm-color-one);
    line-height: 1.5;
}

.section-header .section_count:before {
    counter-increment: sectionCounter;
    content: "0"counter(sectionCounter);
}

.section-header .title {
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    font-size: 36px;
    margin-bottom: 20px;
}

.section-header .text {
    margin-bottom: 0;
}

.section-header.text-center {
    margin: 0 auto;
}

.section-header.text-center .title {
    justify-content: center;
}

.lh-normal {
    line-height: normal;
}

hr {
    margin: 30px 0;
    border-color: var(--thm-border);
}

blockquote {
    background-color: #fff;
    position: relative;
    padding: 30px;
    padding-left: 70px;
    border-left: 2px solid var(--thm-color-one);
}

blockquote .quote_icon {
    width: 50px;
    height: 50px;
    background: var(--thm-color-one);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
}

blockquote .quote_title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--thm-color-two);
    font-style: italic;
}

blockquote .quote_author {
    font-size: 18px;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}

/*Slick Arrows*/
.slick-arrow {
    font-size: 0;
    position: absolute;
    top: -70px;
    z-index: 100;
    width: 40px;
    height: 40px;
    color: var(--thm-border);
    background-color: var(--thm-white);
    border-radius: 50%;
    left: 0;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--thm-border);
}

.slick-arrow:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    border-color: inherit;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 400;
    font-size: 14px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}

.slick-arrow.slick-prev {
    left: auto;
    right: 65px;
}

.slick-arrow.slick-next {
    right: 15px;
    left: auto;
}

/*Slick Dots*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--thm-white);
    margin: 0 8px;
    transition: 0.6s all;
    border: 0px solid var(--thm-color-two);
}

.slick-dots li.slick-active button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--thm-color-one);
    border: 0px solid var(--thm-color-one);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--thm-color-one);
    position: absolute;
    top: -5px;
    left: -5px;
}



/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: bold;
    color: var(--thm-color-two);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--thm-color-two);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
    line-height: 1.2;
}

h4 {
    font-size: 30px;
    line-height: 1.4;
}

h5 {
    font-size: 24px;
    line-height: 1.3;
}

h6 {
    font-size: 18px;
    line-height: 1.7;
}

p {
    color: #fff;
    font-size: 1.5rem;
}

a {
    color: var(--thm-color-three);
    transition: .3s all;
    display: inline-block;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-one);
    text-decoration: none;
}



/*Forms*/
.form-control:focus {
    box-shadow: none;
}

.form_style label {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--thm-white);
}

.form_style .form-control {
    background-color: transparent;
    border: none;
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-color-one);
    border-radius: 0;
}

.form_style .form-control:focus {
    box-shadow: none;
    border: none;
    border-bottom: 2px solid var(--thm-color-one);
}

.form_style .form-control,
.form_style .form-control::placeholder {
    color: var(--thm-white);
    text-transform: uppercase;
    font-size: 22px;
    line-height: 1;
    height: auto;
    font-weight: 500;
}

.form_style.style_two .form-control,
.form_style.style_two .form-control::placeholder {
    color: var(--thm-body-color);
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.post .post_caption .post_title a{
    color: #000;
}
/*Buttons*/
.thm-btn {
    font-size: 16px;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    border: 0px solid transparent;
    padding: 10px 45px;
    transition: 0.5s all;
    font-weight: 500;
    background-color: #0ddf7d;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.thm-btn .button_title {
    display: inline-block;
    overflow: hidden;
}

.thm-btn .btn_letters {
    display: inline-block;
    line-height: 1em;
}

.thm-btn.btn-border {
    background-color: var(--thm-white);
}



.thm-btn i {
    font-size: 14px;
    line-height: normal;
    margin-left: 10px;
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 6px 42px;
}

/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-bg-color-one {
    background-color: var(--thm-color-one);
}

.thm-bg-color-two {
    background-color: var(--thm-color-two);
}

.thm-bg-color-three {
    background-color: var(--thm-color-three);
}

.thm-bg-light {
    background-color: var(--thm-color-light);
}

.thm-bg-color-four {
    background-color: var(--thm-color-four);
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}



/*Header*/
.header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
}

.header.sticky {
    animation-name: fadeHeaderInDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 22;
    background: #fff;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
}

.header.sticky .logo {
    margin: 10px 0;
}

.header.style_2 .navigation .main-menu>li>a ,
.header.sticky .navigation .main-menu>li>a {
    color: #000;
}

.header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    margin: 20px 0;
    height: 60px;
    width: 165px;
}

.header .navigation {
    display: flex;
    align-items: center;
}

.header .navigation .main-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header .navigation .main-menu>.menu-item {
    margin: 0 5px;
}

.header .navigation .main-menu>.menu-item>a {
    color: var(--thm-white);
    font-size: 23px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 26px 15px;
    display: flex;
}



.header .navigation .menu-item-has-children {
    position: relative;
}



.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 180px;
    visibility: hidden;
    opacity: 0;
}

.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    background-color: var(--thm-color-one);
    color: var(--thm-white);
    width: 100%;
    display: flex;
    padding: 10px 15px;
}

.header .navigation .menu-item-has-children .sub-menu .menu-item:hover>a {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}

.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0;
}

.header .header_action {
    margin-left: 15px;
}

.header .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--thm-color-one);
    cursor: pointer;
}

.header .hamburger .hamburger_btn span {
    display: flex;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    background-color: var(--thm-white);
    transition: 0.5s all;
    position: relative;
}

.header .hamburger .hamburger_btn span:last-child {
    margin-bottom: 0;
}

.header .hamburger .hamburger_btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}

.header .hamburger .hamburger_btn.active span:nth-child(2) {
    display: none;
}

.header .hamburger .hamburger_btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}

/*banner*/
.banner {
    position: relative;
}

.banner .banner_image {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.subheader:before,
.banner .banner_image:before {
    content: '';
    background-color: rgb(var(--thm-color-two-rgb), 35%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    z-index: -1;
}

.banner .banner_text {
    padding-top: 180px;
    padding-bottom: 240px;
}

.banner .text_inner {
    max-width: 720px;
}

.banner .text_inner .subtitle {
    font-size: 18px;
    color: var(--thm-white);
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

.banner .text_inner .title {
    color: var(--thm-white);
    text-transform: uppercase;
}

.banner .slider-count {
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
    color: var(--thm-white);
}

.banner .slider-count small {
    font-size: 30px;
    position: relative;
    vertical-align: top;
    top: 9px;
    font-weight: 500;
}

.banner .slick-dots {
    display: flex;
    justify-content: flex-start;
    margin-top: 0;
}

.banner .dots_counts {
    position: absolute;
    bottom: 85px;
    left: 15px;
    z-index: 2;
    display: flex;
}

.banner .dots_counts .slick-slider-dots {
    margin-top: 15px;
    margin-left: 30px;
}
/*single_banner*/
.single_banner{
    padding-top: 180px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 80px;
    background-size: contain;
    background-position: top left;
}
.single_banner .banner .text_inner{
    text-align: right;
    margin: 0 0 0 auto;
}
.single_banner .banner .text_inner .subtitle{
    color: var(--thm-color-one);
}
.single_banner .banner .text_inner .title{
    color: var(--thm-color-two);
}
/*About*/
.icon_box {
    display: flex;
    margin-bottom: 30px;
}

.icon_box i {
    font-size: 35px;
    color: var(--thm-color-one);
    margin-right: 20px;
    line-height: normal;
}



/*blog*/
.post {
    position: relative;
    margin-bottom: 30px;
}

.post .post_image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    height: 310px;
}

.post .post_caption {
    position: relative;
    z-index: 1;
    background-color: var(--thm-white);
    border-radius: 20px;
    width: calc(100% - 30px);
    margin: 0 0 0 auto;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
    padding: 20px;
    margin-top: -56px;
}

.post .post_caption .post_date {
    color: var(--thm-color-one);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.post .post_caption .post_title {
    font-size: 16px;
    margin-bottom: 0;
    line-height: normal;
}


/*footer*/
.footer .ft_widgets {
    position: relative;
    margin-bottom: 30px;
}

.footer .ft_widgets .ft_title {
    color: var(--thm-color-one);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer .ft_about img {
    height: 60px;
    width: 165px;
    margin-bottom: 20px;
}

.footer .ft_social {
    display: flex;
}

.footer .ft_social li {
    margin-right: 15px;
}

.footer .ft_social li a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-white);
    color: var(--thm-color-one);
}

.footer .ft_social li:hover a {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
}

.footer .ft_menu li {
    margin-bottom: 5px;
}

.footer .ft_menu li>a {
    font-size: 16px;
}

.footer .ft_menu li>a:before {
    content: "\f054";
    font-family: var(--thm-icon-font);
    font-size: 14px;
    margin-right: 8px;
    position: relative;
    top: -2px;
    color: var(--thm-color-one);
}

.footer .ft_menu li:last-child {
    margin-bottom: 0;
}

.footer .ft_contact li>a:before {
    display: none;
}

.footer .ft_contact li>a i {
    color: var(--thm-color-one);
    font-size: 14px;
    margin-right: 8px;
}


/*back to top*/
.back-to-top {
    width: 40px;
    height: 40px;
    border: 2px solid #0ddf7d;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--thm-white);
    font-size: 22px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #0ddf7d;
    transition: 0.3s all;
    z-index: 100;
}


/*subheader*/
.subheader {
    padding-top: 180px;
}

.subheader .page-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
}

/*sidebar*/
.sidebar .sidebar_inner {
    margin-bottom: 80px;
}

.sidebar .sidebar_inner .sidebar_widget {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgb(var(--thm-color-two-rgb), 15%);
}

.sidebar .sidebar_inner .sidebar_widget:last-child {
    margin-bottom: 0;
}

.sidebar .sidebar_inner .sidebar_widget .widget_title {
    line-height: normal;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--thm-b-font);
    font-size: 18px;
    border: 1px solid var(--thm-color-one);
    color: var(--thm-color-one);
    padding: 10px 0;
}

.sidebar .input-group .form-control {
    border-right: none;
    height: 45px;
    border-radius: 0;
    background-color: var(--thm-border);
    border: none;
}

.sidebar .input-group .form-control,
.sidebar .input-group .form-control::placeholder {
    color: rgb(var(--thm-color-two-rgb), 50%);
    font-weight: 500;
}

.sidebar .input-group button {
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: var(--thm-color-one);
    color: var(--thm-white);
    border-radius: 0;
}

.sidebar .input-group button:hover {
    background-color: var(--thm-color-four);
    color: var(--thm-white);
}

.sidebar .input-group .with_text button {
    width: auto;
    padding: 0 30px;
}

.sidebar .categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgb(var(--thm-color-two-rgb), 50%);
    font-weight: 500;
    margin-bottom: 10px;
}

.sidebar .categories li:hover a {
    color: var(--thm-color-one);
}

.sidebar .categories li:last-child>a {
    margin-bottom: 0;
    line-height: normal;
}

.sidebar .tags_cloud {
    margin-bottom: -15px;
}

.post_details .post_tags_share .post_tags .tags a,
.sidebar .tags_cloud a {
    display: inline-flex;
    border: 1px solid rgb(var(--thm-color-two-rgb), 50%);
    color: rgb(var(--thm-color-two-rgb), 50%);
    background-color: var(--thm-white);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 25px;
    margin-right: 10px;
    margin-bottom: 12px;
}

.post_details .post_tags_share .post_tags .tags a:hover,
.sidebar .tags_cloud a:hover {
    background-color: var(--thm-color-one);
    border-color: var(--thm-color-one);
    color: var(--thm-white);
}

.sidebar .recent_post li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar .recent_post li .post_thumb {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.sidebar .recent_post li .post_thumb a {
    display: flex;
    height: 100%;
    width: 100%;
}

.sidebar .recent_post li .post_caption {
    width: calc(100% - 95px);
}

.sidebar .recent_post li .post_caption .post_title {
    margin-bottom: 0;
    font-size: 16px;
}

.sidebar .recent_post li .post_caption .post_date {
    margin-bottom: 0;
    color: var(--thm-color-one);
    font-weight: 500;
    font-size: 14px;
}

.sidebar .recent_post li:last-child {
    margin-bottom: 0;
}

.roww{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: flex-end;
}

.main-image {
      flex: 1;
      min-width: 300px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .main-image .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .main-image h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }

    .main-image p {
      font-size: 1rem;
      opacity: 0.9;
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      flex: 1;
      min-width: 300px;
    }

    .image-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .image-grid {
        grid-template-columns: 1fr;
      }
    }

    .container-about {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        gap: 16px;
      }
  
      .main-image {
        flex: 1;
        min-width: 300px;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
      }
  
      .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .main-image .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 20px;
      }
  
      .main-image h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        letter-spacing: 2px;
      }
  
      .main-image p {
        font-size: 1.5rem;
        opacity: 1;
      }
  
      .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        flex: 1;
        min-width: 300px;
      }
  
      .image-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
      }
  
      @media (max-width: 768px) {
        .container-about {
          flex-direction: column;
          padding: 15px;
        }
  
        .image-grid {
          grid-template-columns: 1fr;
        }
      }


