    /*
* ----------------------------------------------------------------------------------------
Author        : Rama Hardian Sidik
Template Name : Freeman - Multipurpose Personal One Page Html Template
Version       : 1.0
Filename      : main.css
* ----------------------------------------------------------------------------------------
  TABLE OF CONTENT
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
    - loadder 
* 02.HEADER SECTION.
    - navigation 
* 03.HERO SECTION. 
* 04.ABOUT SECTION.
* 05.SERVICES SECTION.
* 06.PORTFOLIO SECTION.
* 07.CONTACT SECTION.
* 08.FOOTER SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    @import url(./vendor/bootstrap/bootstrap.css);
    @import url(./vendor/fontawesome/all.min.css);
    @import url(./vendor/keen-slider.css);
    @import url(./vendor/glightbox.css);
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 700;
        src: url("../font/Poppins-Bold.woff2") format("woff2");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 600;
        src: url("../font/Poppins-SemiBold.woff2") format("woff2");
        font-display: swap;
    }
    
    @font-face {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 400;
        src: url("../font/Poppins-Regular.woff2") format("woff2");
        font-display: swap;
    }
    /*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
* ----------------------------------------------------------------------------------------
*/
    
    * {
        -webkit-font-smoothing: antialiased;
    }
    
    body {
        font-family: 'Poppins';
        font-size: 15px;
        font-weight: 400;
        background: #111315;
        color: #181715;
        text-rendering: optimizeLegibility;
    }
    
     ::selection {
        background: #ddaa01;
        color: #ffffff;
    }
    
    a:hover {
        text-decoration: none;
    }
    
    /* .fixid {
        background: #000000;
        box-shadow: 0 0 10px 5px rgba(221, 170, 1, .3);
    } */
    
    label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
    }
    
    input,
    textarea {
        padding: 10px;
        font-size: 13px;
        width: 100%;
        color: #181715;
        background: transparent;
        border: 2px solid rgba(25, 26, 30, .5);
        border-radius: 3px;
    }
    
    textarea {
        height: 150px;
    }
    
    .goverlay {
        background: #FFDB67;
    }
    
    .linkbtn {
        background: #18171500;
        color: #ffffff00;
        padding: 10px 20px;
        border-radius: 5px;
        display: inline-flex; /* Используем flex для выравнивания */
        align-items: center; /* Центрируем содержимое по вертикали */
        justify-content: center; /* Центрируем содержимое по горизонтали */
    }
    
    .linkbtn img {
        width: 150px;  /* Устанавливаем фиксированную ширину для изображения */
        height: auto;   /* Высота будет пропорциональной ширине */
        object-fit: contain;  /* Изображение масштабируется, но не будет обрезаться */
        margin-right: 10px;  /* Отступ справа от изображения для текста */
    }
    
    .linkbtn:hover {
        color: #ffffff;
    }
    
    .navigation-wrapper {
        position: relative;
    }
    
    .dots {
        display: flex;
        padding: 5px 0;
        justify-content: center;
    }
    
    .dot {
        border: none;
        width: 20px;
        height: 2px;
        background: #111315;
        border-radius: 3px;
        margin: 10px 5px;
        padding: 3px;
        cursor: pointer;
    }
    
    .dot:focus {
        outline: none;
    }
    
    .dot--active {
        background: #181715;
    }
    /*
* ----------------------------------------------------------------------------------------
* 01.BASE CSS. 
- preloader
* ----------------------------------------------------------------------------------------
*/
    
    .preloader {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999999999 !important;
        background-color: #111315;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .preloader .preloader__img {
        display: inline-block;
        position: absolute;
        width: 250px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    /*
/* Adjust header to center its contents */
#headermain {
    padding: 10px 0;
    position: fixed;
    width: 100%; /* Ensure full width */
    z-index: 3;
    top: 0; /* Ensure it sticks to the top of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Center the container for logo and icon */
.headerwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Ensure the logo is centered */
.headerwrap__logo {
    display: inline-block;
    margin: 0 auto;
}

/* Ограничение размера иконки до 100x100 */
.headerwrap__logo img {
    width: 100px;  /* Ширина 100px */
    height: 100px; /* Высота 100px */
    object-fit: cover;  /* Это свойство сохранит пропорции изображения, обрезая его по краям, если нужно */
}


/* Styling for the navigation icon */
.navicon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 22;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Ensure icon is centered */
}

.navicon__bar {
    width: 18px;
    height: 1px;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0);
    transition: all .3s;
}

.navicon__bar:before,
.navicon__bar:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #181715;
}

.navicon:hover .navicon__bar:before,
.navicon:hover .navicon__bar:after {
    background: #181715;
}

.navicon__bar:before {
    transform: rotate(0deg) translate(0px, -4px);
}

.navicon__bar:after {
    transform: rotate(0deg) translate(0px, 4px);
}

.navicon.active .navicon__bar:before {
    transform: rotate(-45deg) translate(0px, 0px);
}

.navicon.active .navicon__bar:after {
    transform: rotate(45deg) translate(0px, 0px);
}

.navicon.active:hover .navicon__bar .navicon__bar:before {
    transform: rotate(0deg) translate(0px, 0px);
}

.navicon.active:hover .navicon__bar .navicon__bar:after {
    transform: rotate(0deg) translate(0px, 0px);
}

    /*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    /* Обновленный фон для секции hero */
    #sectionhero {
        padding: 150px 0 0;
        background-color: #111315; /* Цвет фона */
        background-size: cover; /* Масштабирование изображения, чтобы оно покрывало весь блок */
        background-position: center center; /* Центрирование изображения */
        background-repeat: no-repeat; /* Отключение повторов изображения */
        position: sticky; /* Используем стандартное позиционирование, чтобы блок был частью страницы */
        width: 100%; /* Ширина блока */
        z-index: 1; /* Позиционирование на фоне остальных элементов */
    }

    
    .infohero__p {
        font-size: 20px;
        letter-spacing: 1px;
        padding: 5px 20px;
        color: #AEAEAE;
        display: inline-block;
        background: #181B1E;
    }
    
    .infohero__title {
        font-size: 80px;
        font-weight: 300;
        color: #E27100;
        text-shadow: 1px 1px #F0C08F;
    }
/*     
    .infohero__title span {
        display: block;
    } */
    
    .heroimg {
        height: 500px;
        width: 500px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .heroimg .heroimg__poto {
        height: 100%; /* Растягиваем изображение по высоте */
        width: 100%; /* Растягиваем изображение по ширине */
        object-fit: contain; /* Изображение масштабируется, не обрезается, сохраняя пропорции */
        object-position: center center; /* Центрируем изображение */
    }
    
    
    #typed-text {
        letter-spacing: 3px;
        font-size: 20px;
        font-weight: 600;
        color: #AEAEAE;
        text-transform: uppercase;
    }
    
    .herolink {
        display: inline-block;
    }
    /*
* ----------------------------------------------------------------------------------------
* 04.ABOUT SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #aboutsection {
        height: auto;
        background: #ffffff;
        padding: 50px 0 0;
    }
    
    .abouthero h3 {
        font-size: 50px;
        font-weight: 600;
    }
    
    .infoabout__list {
        padding: 0;
    }
    
    .infoabout__list li {
        list-style: none;
    }
    
    .infoabout__wrap .infoabout__title {
        color: #181715;
        letter-spacing: 1px;
        font-weight: 700;
    }
    /*
* ----------------------------------------------------------------------------------------
* 05.SERVICE SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #servicesection {
        background: #222629;
        height: auto;
        padding: 0 0 0;
    }

    #servicesection p {
        color: #ffffff; /* Устанавливаем цвет текста белым */
    }
    
    #servicesection h3 {
        color: #ffffff; /* Устанавливаем цвет текста белым */
    }

    .counterwrap {
        text-align: center;
    }
    
    .counterwrap__counternum {
        font-size: 30px;
        font-weight: 700;
    }
    
    .wrapservice {
        padding: 20px;
    }
    
    .wrapservice i {
        font-size: 30px;
        background: #ddaa01;
        padding: 20px 20px;
        border-radius: 100%;
    }
    
    
    .wrapservice__title {
        font-size: 20px;
        font-weight: 600;
    }
    /*
* ----------------------------------------------------------------------------------------
* 06.PORTFOLIO SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #portfoliosection {
        background: #ffffff;
        height: auto;
    }
    
    #porfoliowarp {
        padding-top: 50px;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        z-index: 1;
    }
    
    .grid-gutter-md {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .porfoliowarp__item {
        cursor: pointer;
        margin: 0;
        position: relative;
        float: right;
        padding: 10px;
        width: 33.3333%;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .porfoliowarp__content {
        border-radius: 5px;
        height: 350px;
        width: 100%;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .porfoliowarp__item:hover .porfoliowarp__content {
        background-color: #111315;
        opacity: .5;
    }
    
    .porfoliowarp__portolink i {
        position: absolute;
        z-index: 1;
        color: #181715;
        opacity: 0;
        font-size: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        transition: all .3s;
    }
    
    .porfoliowarp__item:hover i {
        opacity: 1;
    }
    
    #filterwrap {
        padding: 0;
        margin: 30px 0;
    }
    
    #filterwrap li {
        display: inline-block;
        list-style: none;
        margin: 0 5px;
        padding: 5px 20px;
        cursor: pointer;
        border: 1px solid #181715;
    }
    
    #filterwrap li.active {
        background: #181715;
        color: #ffffff;
    }
    /*
* ----------------------------------------------------------------------------------------
* 07.CONTACT SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
   /* Обновление цвета текста внутри секции */
#contactsection {
    height: auto;
    background: #181B1E;
    padding: 0 0 50px;
}

/* Стили для всех текстовых элементов внутри contactsection */
#contactsection p, 
#contactsection h3, 
#contactsection span, 
#contactsection label, 
#contactsection input, 
#contactsection textarea,
#contactsection button {
    color: #ffffff; /* Сделаем весь текст белым */
}

/* Дополнительные стили для кнопки */
.contactform__submitbuton {
    background-color: #E27100; /* Черный фон для кнопки */
    color: #2d2d2d; /* Белый текст на кнопке */
}

/* Настройки для input и textarea */
.contactform__inputtext, .contactform__comentarea {
    background-color: #181715; /* Черный фон для полей ввода */
    color: #ffffff; /* Белый текст в полях ввода */
    border: 1px solid #ffffff; /* Белая граница полей */
}

/* Стили для заголовков */
.contactdetail__title {
    font-size: 30px;
    font-weight: 600;
}

.contactdetail__list {
    padding: 0;
}

.contactdetail__list li {
    list-style: none;
    position: relative;
    margin: 20px 0;
}

.contactdetail__span {
    font-weight: 600;
}

.contactdetail__sosmed {
    padding: 0;
}

.contactdetail__sosmed li:first-child {
    margin: 10px 10px 0 0;
}

.contactdetail__sosmed li {
    list-style: none;
    margin: 10px 10px 10px;
    display: inline-block;
}

.contactdetail__sosmed li a {
    color: #ffffff; /* Белый цвет для иконок соцсетей */
    font-size: 30px;
}

    /*
* ----------------------------------------------------------------------------------------
* 08.FOOTER SECTION. 
* ----------------------------------------------------------------------------------------
*/
    
    #footerwrap {
        background-color: #181B1E;
    }

    .footwrap p {
        color: #ffffff;
        font-size: 13px;
        letter-spacing: 1px;
    }