@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-color: #0274a6;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body.active {
    overflow: hidden;
}

.header-wrapper-logo {
    display: flex;
    width: 200px;
    height: 100%;
    padding: 0.5rem;
}

.header-wrapper-logo > a {
    display: flex;
    width: 100%;
    padding: .3rem;
}

.header-wrapper-logo > a > img {
    width: 100%;
    object-fit: contain;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    height: 95px;
    margin-bottom: 0.5rem;
    position: relative;
}

.header-wrapper-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 100%;
}

.header-wrapper-right > div {
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
    background-color: #fff;
    position: relative;
    z-index: 9;
}

.header-wrapper-left {
    padding-left: 1.5rem;
}

.header-wrapper-right > div > i {
    font-size: 25px;
}

.header-wrapper-menu-btn > i {
    font-size: 40px !important;
    color: #fff;
    transition: .3s ease-in-out;
}

.header-wrapper-menu-btn {
    background-color: var(--theme-color) !important;
    width: 120px !important;
}

.header-search {
    position: absolute !important;
    left: 0;
    width: calc(230px) !important;
    border: none !important;
    padding: 1rem;
    background-color: transparent !important;
    z-index: 8 !important;
    opacity: 0;
    visibility: hidden;
    height: calc(100%) !important;
    cursor: unset !important;
    transition: .3s ease-in-out;
}

.header-search.active {
    left: calc(-230px);
    opacity: 1;
    visibility: visible;
}

.header-search-input {
    display: flex;
    width: 100%;
}

.header-search-input > form {
    width: 100%;
    display: flex;
}

.header-search-input > form > input {
    width: 100%;
    height: 30px;
    padding: .5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, .1);
    outline: 0 !important;
    font-size: 12px;
    color: #000;
}

.header-search-input > form > input::placeholder {
    font-size: 13px;
    font-weight: 500;
    color: #999;
}

.header-language {
    position: absolute !important;
    left: 0;
    width: 230px !important;
    padding: 1rem;
    background-color: transparent !important;
    z-index: 8 !important;
    opacity: 0;
    visibility: hidden;
    height: calc(100%) !important;
    cursor: unset !important;
    transition: .3s ease-in-out;
}

.header-language.active {
    left: calc(-230px - 0rem);
    opacity: 1;
    visibility: visible;
}

.header-language > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-language > ul > li > a {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: flex;
    padding: 0 1rem;
    transition: .2s ease-in-out;
}

.header-language > ul > li:first-child > a {
    border-right: 1px solid rgba(0, 0, 0, .1);
}

.header-language > ul > li > a:hover {
    color: #777;
}

.header-menu-wrapper {
    position: absolute;
    inset: 0;
    top: 100%;
    background-color: #f6f6f6;
    z-index: 9999;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    bottom: unset;
}

.header-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.header-wrapper-menu-btn.active > i::before {
    content: "\F659";
    font-family: bootstrap-icons !important;
}

.header-menu-wrapper-top {
    display: flex;
    justify-content: space-between;
}

.header-menu-list > ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu-list-title > span {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
    color: #444;
}

.header-menu-list-title {
    margin-bottom: 1.5rem;
}

.header-menu-list-title > span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background-color: #999;
}

.header-menu-list > ul > li > a {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    display: flex;
    position: relative;
    transition: .2s ease-in-out;
}

.header-menu-wrapper-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2rem;
}

.header-menu-wrapper-bottom > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3.5rem;
}

.header-menu-wrapper-bottom > ul > li > a {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    display: flex;
    padding-bottom: .5rem;
    position: relative;
}

.header-menu-wrapper-bottom > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60%;
    height: 2px;
    background-color: #000;
}

.header-menu-wrapper-bottom > ul > li:nth-child(1) > a::before {
    background-color: #608FCA;
}

.header-menu-wrapper-bottom > ul > li:nth-child(2) > a::before {
    background-color: #75C7B8;
}

.header-menu-wrapper-bottom > ul > li:nth-child(3) > a::before {
    background-color: #EE8A2B;
}

.header-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.header-menu-social > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
}

.header-menu-social > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #444;
    border-radius: 50%;
    transition: .2s ease-in-out;
}

.header-menu-social > ul > li > a > i {
    color: #fff;
}

.header-menu-social > ul > li:nth-child(1) > a:hover {
    background-color: #000;
}

.header-menu-social > ul > li:nth-child(2) > a:hover {
    background-color: #c13584;

}

.header-menu-social > ul > li:nth-child(3) > a:hover {
    background-color: #3b5998;
}

.header-menu-social > ul > li:nth-child(4) > a:hover {
    background-color: #f00;
}

.header-menu-list > ul > li > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.header-menu-list > ul > li > a:hover::before {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.header-menu-list > ul > li > a:hover {
    padding-left: 15px;
}

.header-menu-list {
    width: 100%;
}

.swiper-slide-image {
    width: 100%;
}

.swiper-slide-image > img {
    width: 100%;
}

.homeSwiper .swiper-button-next,
.homeSwiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.homeSwiper .swiper-button-next::after,
.homeSwiper .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.homeSwiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
}

.home-date-top-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.home-date-title > span {
    display: flex;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.home-date-title > p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.home-date-wrapper {
    position: relative;
    background-color: var(--theme-color);
    padding: 2rem 0;
    margin-top: 3rem;
    padding-bottom: 0;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 1rem 0;
}

.date-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    cursor: unset;
    transition: .2s ease-in-out;
}

.date-item-number:hover {
    color: rgba(255, 255, 255, .7);
}

.date-item.active .date-item-number {
    background-color: #fff;
    color: var(--theme-color);
}

.date-item-text {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.date-item.active .date-item-text {
    opacity: 1;
    visibility: visible;
}

.home-date-bottom {
    padding: 0 2.5rem;
    margin-top: 3rem;
}

.home-date-sub-contain {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}

.home-date-sub-wrapper {
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    border-bottom: 2px dashed rgba(0, 0, 0, .1);
}

.home-date-sub-contain.active {
    opacity: 1;
    visibility: visible;
}

.home-date-sub-content {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    gap: 1.5rem;
}

.home-date-sub-left {
    display: flex;
    width: 25%;
}

.home-date-sub-image {
    display: flex;
    width: 100%;
}

.home-date-sub-image > img {
    width: 100%;
}

.home-date-sub-right {
    width: 75%;
}

.home-date-sub-right {
    display: flex;
    align-items: center;
}

.home-date-sub-right-text {
    width: 65%;
}

.home-date-sub-right-btn {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-date-sub-right-btn > a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    width: max-content;
    padding: .5rem 2rem;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.home-date-sub-name > span {
    font-size: 18px;
    font-weight: 600;
}

.home-date-sub-name {
    margin-bottom: 1rem;
}

.home-date-sub-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home-date-sub-info > div > span {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
}

.home-date-sub-info > div > i {
    font-size: 19px;
}

.home-date-sub-info > div {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.swiper-container .swiper-slide {
    transition: .5s ease-in-out;
    transform: scale(0.8);
}

.swiper-container .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.home-featured-slider {
    position: relative;
    overflow: hidden;
}

.featured-item,
.featured-item-image {
    display: flex;
    width: 100%;
}

.featured-item-image > img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.page-title > span {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 8px;
    display: flex;
    position: relative;
    text-align: center;
}

.page-title > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 35px;
    height: 35px;
    border-left: 2px solid var(--theme-color);
    border-top: 2px solid var(--theme-color);
}

.page-title > span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 35px;
    height: 35px;
    border-right: 2px solid var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.featured-item {
    position: relative;
}

.featured-item-name {
    position: absolute;
    inset: 0;
    margin: 1rem;
    background-color: #0274a6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-in-out;
}

.featured-item-name > a {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    letter-spacing: 3px;
}

.featured-item:hover .featured-item-name,
.home-featured-slider .swiper-slide-active .featured-item-name {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.home-featured-slider .swiper-button-next,
.home-featured-slider .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.home-featured-slider .swiper-button-next::after,
.home-featured-slider .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.home-featured-wrapper {
    margin: 4rem 0;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--theme-color);
}

.footer-logo > a {
    display: flex;
    width: 100%;
}

.footer-logo > a > img {
    width: 100%;
}

.footer-social > ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-social > ul > li > a {
    font-size: 25px;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social > ul > li > a > i {
    display: flex;
    font-size: 17px;
}

.footer-text > span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.footer-logo {
    display: flex;
    margin-bottom: 2rem;
    width: 200px;
}

.footer-form-title > span {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--theme-color);
    border-bottom: 1px solid var(--theme-color);
}

.footer-form {
    padding: 1rem;
    background-color: #fff;
    width: 70%;
}

.footer-form-title {
    display: flex;
    margin-bottom: 1rem;
}

.footer-form-content > input,
.footer-form-content > textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    padding-bottom: 0.5rem;
    outline: 0 !important;
    font-size: 13px;
}

.footer-form-content > input:focus,
.footer-form-content > textarea:focus {
    border-bottom: 1px solid var(--theme-color);
}

.footer-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-form-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-form-btn > button {
    display: flex;
    width: 150px;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: var(--theme-color);
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    outline: 0;
    border: 2px solid transparent;
    transition: .2s ease-in-out;
}

.img-container-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
}

.smallsquare {
    max-width: calc(20% - .1rem);
    height: auto;
    flex: 0 0 20%;
    padding-top: 20%;
    display: grid;
    position: relative;
}

.h_rectangle {
    max-width: calc(40% - .1rem);
    flex: 0 0 40%;
    padding-top: 20%;
    position: relative;
}

.bigsquare {
    max-width: calc(40% - .1rem);
    height: auto;
    flex: 0 0 40%;
    padding-top: 40%;
    display: grid;
    position: relative;
}

.bigsquare_blank {
    max-width: calc(40% - .1rem);
    height: auto;
    flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
}

.inner_square {
    max-width: calc(50% - .1rem);
    flex: 0 0 50%;
    height: calc(50% - .1rem);
    position: relative;
}

.v_rectangle {
    max-width: calc(20% - .1rem);
    flex: 0 0 20%;
    padding-top: 40%;
    position: relative;
}

.img-grid-c {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    object-fit: cover;
    object-position: center;
    transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1),
        -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-name {
    position: absolute;
    bottom: -100px;
    left: 15px;
    overflow: unset !important;
    transition: .5s ease-in-out;
}

.gallery-name > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 2px;
    text-shadow: 1px 0 #000, -1px 0 #000, 0 1px #000,
        0 -1px #000, 1px 1px #000,
        -1px -1px #000, 1px -1px #000, -1px 1px #000;
    position: relative;
    cursor: pointer;
}

.gallery-name > a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25%;
    height: 4px;
    background-color: var(--theme-color);
}

.img-container-grid > div,
.img-container-grid > div > div {
    overflow: hidden;
}

.img-container-grid > div:hover > a > img,
.img-container-grid > div .inner_square:hover > a > img {
    transform: scale(1.2);
}

.img-container-grid > div:hover > .gallery-name,
.img-container-grid > div .inner_square:hover .gallery-name {
    bottom: 30px;
}

.home-date-sub-content:nth-child(2n + 1) {
    border-right: 2px dashed rgba(0, 0, 0, .1);
}

.footer-wrapper-left {
    width: 30%;
}

.footer-wrapper-right {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.references-item {
    display: flex;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 2rem 1rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.references-item > img {
    height: 100px;
    object-fit: contain;
    width: 100%;
}

.referencesSwiper {
    padding: 2rem 0.5rem;
}

.home-referances-slider .swiper-button-next,
.home-referances-slider .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
}

.home-referances-slider .swiper-button-next::after,
.home-referances-slider .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
}

.home-referances-wrapper {
    margin: 3rem 0;
    margin-bottom: 0;
}

.home-referances-slider .swiper-slide {
    transition: .5s ease-in-out;
    transform: scale(0.8);
}

.home-referances-slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 90px;
    border-bottom: 2px solid var(--theme-color);
}

.header-top-right-social > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.header-top-right-social {
    display: flex;
    margin-right: 1.5rem;
}

.header-top-right-social > ul > li > a > i {
    font-size: 25px;
    color: var(--theme-color);
}

header {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-top-left-image {
    display: flex;
    width: 230px;
}

.header-top-left-image > a {
    display: flex;
    width: 100%;
}

.header-top-left-image > a > img {
    width: 100%;
}


.header-top-right-image > a {
    display: flex;
    width: 150px;
}

.header-top-right-image > a > img {
    width: 100%;
}

.header-top-right-image {
    display: flex;
    align-items: center;
}

.home-date-sub-right-btn > a:hover {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.footer-form-btn > button:hover {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}

.header-top-right-image > a:first-child {
    border-right: 1px solid rgba(0, 0, 0, .2);
    margin-right: 1rem;
}

.header-wrapper-social > ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.3rem;
}

.header-wrapper-social > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #444;
    text-decoration: none;
}

.header-wrapper-social > ul > li > a > i {
    color: #fff;
    font-size: 13px;
    display: flex;
}

.header-wrapper-social {
    width: 160px !important;
}

.header-wrapper-mobil {
    display: none;
}

.home-modal-image,
.home-modal-image > a {
    display: flex;
    width: 100%;
}

.home-modal-image > a > img {
    width: 100%;
}

.modal-footer.home-modal-footer > button {
    background-color: var(--theme-color) !important;
    border: none !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

#homeModal .modal-content {
    background-color: transparent !important;
    border: none !important;
    position: relative;
}

#homeModal .modal-header {
    border: none;
    padding-right: 0;
    justify-content: flex-end;
    padding: 0;
    position: absolute;
    z-index: 9;
    top: 15px;
    right: 15px;
}

#homeModal .modal-body {
    padding: 0;
}

#homeModal .modal-header > button {
    padding: 0;
    margin: 0;
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #444;
    opacity: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#homeModal .modal-header > button > span {
    color: #fff !important;
}

.header-wrapper-social.mobile-social {
    display: none;
}

.home-mobile-gallery {
    display: none;
}


.login-page-contain {
    display: flex;
    justify-content: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    width: 60%;
}

.login-page-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-page-form .form-group > label {
    font-size: 14px;
    padding-left: 0.5rem;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--theme-color);
    position: relative;
    display: flex;
    padding-left: 1rem;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}

.login-page-form {
    display: flex;
    width: 100%;
}

.login-page-form form {
    width: 100%;
}

.login-page-form .form-group:not(:last-child) {
    margin-bottom: 1.5rem;
}

.login-form-btn > button {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: none;
    outline: 0;
    background-color: var(--theme-color);
    border-radius: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.login-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-btn > button:hover {
    opacity: .7;
}

.login-pege-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-pege-title > span {
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-color);
    width: 60%;
    text-align: center;
}

.login-page-left {
    width: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login-page-right {
    width: 50%;
    background-color: #f0f0f0;
}

.login-page-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-page-image > img {
    width: 300px;
}

.login-page-form .form-group .form-group-input {
    position: relative;
}

.login-page-form .form-group .form-group-input > input {
    width: 100%;
    height: 50px;
    border-radius: 70px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 1rem;
    outline: 0 !important;
    font-size: 13px;
    font-weight: 400;
}

.login-page-form .form-group .form-group-input > input:focus {
    border-color: var(--theme-color);
}


.show-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.show-password > i {
    font-size: 20px;
    color: #666;
}

.success-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#success-image {
    width: 300px;
}

.success-wrapper {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.success-text > span {
    font-size: 25px;
    color: #00C985;
    font-weight: 600;
    text-align: center;
}

.success-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.success-text > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    color: #444;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: .2s ease-in-out;
}

.success-text > a:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.success-text > p {
    width: 60%;
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.dt-layout-cell.dt-start .dt-length {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 250px;
    width: 100%;
}

.delete-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.3rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
}

.delete-btn > button:hover {
    opacity: .7;
}

.logout-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.logout-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background-color: var(--theme-color);
    border: none;
    outline: 0;
    padding: 0.7rem 1rem;
    font-size: 14px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
    width: 150px;
}

.logout-btn > button > i {
    font-size: 15px;
}


.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
}

.dashboard-logo {
    display: flex;
    height: 80px;
}

.dashboard-logo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#user-table th,
#user-table td {
    text-align: start;
}

#user-table td > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
}

#user-table th span,
#user-table td span {
    font-size: 14px;
}

input[type="checkbox"] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: none;
    background-color: #f0f0f0;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    opacity: 0.5;
    color: transparent;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
}

.dt-paging-button.current {
    background-color: var(--theme-color) !important;
    border-color: transparent !important;
}

.dashboard-wrapper form {
    padding: 0 2rem;
    padding-bottom: 0.5rem;
}

#user-table_wrapper {
    height: 100%;
}

.dt-length > label {
    padding-left: 0.5rem;
}

.dt-layout-row.dt-layout-table {
    height: calc(100% - 110px) !important;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.dt-layout-row {
    height: calc(55px - .5rem);
    padding: 0;
}

.dt-layout-cell {
    padding: 0 !important;
    height: 100%;
}


.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.inputfile-1 + label {
    color: #000;
    background-color: #fff;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    opacity: 0.8;
}

.form-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 40px;
}

.form-modal-remove>i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.form-modal-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f0f0f0;
    margin: 1rem 0;
    height: 60px;
}

.form-modal-info>i {
    font-size: 20px;
}

.form-modal-content {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    height: calc(100% - 100px);
    overflow: auto;
    padding-bottom: 1rem;
}

.form-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.form-modal-btn>a,
.form-modal-btn>button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 200px;
    padding: 0.6rem;
    border-radius: 70px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    text-decoration: none;
    border: none;
    transition: .3s ease-in-out;
}

.form-modal-btn>a:hover,
.form-modal-btn>button:hover {
    transform: scale(1.1);
}

.form-modal-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e6e6e6;
    border-radius: 5px;
}

.form-modal-content::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 5px;
}

.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove>span {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.form-group-input-content input,.form-group-input-content select {
    width: 100%;
    height: 40px;
    border-radius: 0 !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: .5rem;
}

.form-content label {
    font-size: 13px;
    font-weight: 500;
    color: #777;
}

.form.title > span {
    font-size: 20px;
    font-weight: 300;
}

.form.title {
    margin-bottom: 1rem;
}

.page-form-bottom {
    display: flex;
    width: 100%;
    gap: 1rem;
}

.page-form-bottom > div {
    width: calc(50% - (1rem) / 2);
}

.page-form-top {
    margin-bottom: 2rem;
}

.page-form-top .form-group {
    width: calc(50% - (1rem) / 2);
}

.form-group-input-content textarea {
    width: 100%;
    border-radius: 0 !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: .5rem;
}

.page-form {
    margin: 2rem 0;
}

span#kvkk-modal > a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

span#kvkk-modal > a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.page-form-btn {
    display: flex;
    margin-top: 2rem;
}

.page-form-btn > button {
    display: flex;
    background-color: var(--theme-color);
    border: none;
    outline: none;
    padding: .5rem 1.5rem;
    color: #fff;
}

.form-group-input-content {
    overflow: hidden;
}

.inputfile {
    width: auto !important;
}

label.file-label {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0,0,0,.1);
}

table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
    min-width: 250px !important;
}

.form-content label.required::before {
    content: "* ";
    color: #c16060;
}

@media screen and (max-width:993px) {
    .login-page-contain {
        width: 80%;
    }

    .login-page-image > img {
        width: 200px;
    }
}

@media screen and (max-width:769px) {
    .home-date-sub-wrapper {
        flex-direction: column;
    }

    .home-date-sub-content:nth-child(2n + 1) {
        border-bottom: 2px dashed rgba(0, 0, 0, .1);
        border-right: none;
    }

    .header-wrapper {
        display: none;
    }

    .header-wrapper-mobil {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 1rem;
    }

    .header-mobil-logo {
        display: flex;
        width: 150px;
    }

    .header-mobil-logo > a,
    .header-mobil-logo > a > img {
        display: flex;
        width: 100%;
    }

    .header-mobil-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
    }

    .header-mobil-search > i {
        font-size: 20px;
        color: var(--theme-color);
    }

    .header-mobil-language > i {
        font-size: 22px;
        color: var(--theme-color);
    }

    .header-mobil-menu-btn > i {
        font-size: 29px;
        color: #fff;
    }

    .header-mobil-menu-btn {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--theme-color);
        border-radius: 5px;
    }

    .header-search-contain {
        position: absolute;
        top: 100%;
        z-index: 99;
        background-color: #fff;
        width: 100%;
        left: 0;
        padding: 1rem;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        transform: scale(0.8);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease-in-out;
    }

    .header-search-contain.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

    .header-language-contain .header-language {
        position: unset !important;
        left: unset !important;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
    }

    .header-language-contain {
        position: absolute;
        top: 100%;
        z-index: 9;
        background-color: #fff;
        left: 0;
        width: 100%;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        transform: scale(0.8);
        opacity: 0;
        visibility: hidden;
        transition: .25s ease-in-out;
    }

    .header-language-contain.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

    .header-language-contain .header-language > ul {
        justify-content: center;
    }

    .header-mobile-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100%;
        background-color: #fff;
        z-index: 9;
        width: 45%;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out 0s;
    }

    .header-mobile-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .megamenu-overlay {
        position: absolute;
        background: rgba(0, 0, 0, 80%);
        inset: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .megamenu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-contain ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-contain > ul > li > a {
        display: flex;
        padding: 1rem;
        color: #000;
        font-size: 14px;
        font-weight: 500;
    }

    .mobile-menu-contain > ul > li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        transition: all 0.3s ease-in-out 0s;
    }

    .mobile-menu-contain > ul > li > ul {
        position: absolute;
        top: 55px;
        background-color: #f0f0f0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out 0s;
    }

    .mobile-menu-contain > ul > li > ul.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-contain > ul > li > ul > li > a {
        display: flex;
        font-size: 12px;
        font-weight: 400;
        color: #000;
        padding: 1rem;
    }

    .sub-menu-btn {
        display: flex;
        padding-right: 1rem;
    }

    .sub-menu-btn > i {
        font-size: 23px;
    }

    .mobile-menu-remove {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .mobile-menu-contain > ul > li > ul > li:not(:last-child) > a {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .mobile-menu-contain .header-wrapper-social {
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .header-wrapper-social.mobile-social {
        display: flex;
        width: 100% !important;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }

    .homeSwiper .swiper-pagination {
        display: none;
    }

    .home-date-wrapper {
        margin-top: 1rem;
    }

    .sub-menu-btn.active > i::before {
        content: "\F2EA";
        font-family: bootstrap-icons !important;
    }

    div.dt-container .dt-search {
        float: left;
    }

    div.dt-container div.dt-layout-row {
        display: block;
    }

    div.dt-container div.dt-layout-cell {
        display: block !important;
    }

    div.dt-container div.dt-layout-row.dt-layout-table {
        margin-top: 3rem !important;
    }

    .dt-layout-row.dt-layout-table {
        border: none !important;
    }

    div.dt-container div.dt-layout-cell.dt-start {
        text-align: start !important;
    }

    .dt-container .dt-length {
        text-align: start !important;
    }

    #user-table_wrapper th > span,#user-table_wrapper td > span {
        font-size: 12px;
    }

    .page-container {
        max-width: 100% !important;
    }

    .success-wrapper {
        height: auto;
        padding: 1rem 0;
    }
    
    div#success-image {
        width: 200px;
    }
    
    .success-text > p {
        width: 98%;
    }
}

@media screen and (max-width:553px) {
    .page-title {
        margin: 2rem;
    }

    .page-title > span {
        font-size: 25px;
    }

    .header-top-right-image > a {
        width: 80px;
    }

    .header-top-right-image {
        gap: 0;
    }

    .header-top-left-image {
        width: 90px;
    }

    .home-date-sub-content {
        flex-direction: column;
    }

    .home-date-sub-left {
        width: 100%;
    }

    .home-date-sub-right {
        width: 100%;
        flex-direction: column;
    }

    .home-date-sub-right-text {
        width: 100%;
    }

    .home-date-sub-right-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-wrapper {
        flex-direction: column;
        padding: 1rem;
    }

    .footer-wrapper-left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-wrapper-right {
        width: 100%;
        margin-top: 1rem;
    }

    .footer-form {
        width: 100%;
    }

    .header-mobil-logo {
        width: 130px;
    }

    .header-mobile-menu {
        width: 95%;
    }

    .featured-item-name > a {
        font-size: 15px;
    }

    .home-referances-slider .swiper-button-next,
    .home-referances-slider .swiper-button-prev,
    .home-featured-slider .swiper-button-next,
    .home-featured-slider .swiper-button-prev,
    .homeSwiper .swiper-button-next,
    .homeSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .home-referances-slider .swiper-button-next::after,
    .home-referances-slider .swiper-button-prev::after,
    .home-featured-slider .swiper-button-next::after,
    .home-featured-slider .swiper-button-prev::after,
    .homeSwiper .swiper-button-next::after,
    .homeSwiper .swiper-button-prev::after {
        font-size: 20px;
    }

    .home-gallery-contain {
        display: none;
    }

    .mobile-gallery-content {
        display: flex;
        width: 100%;
        position: relative;
    }

    .mobile-gallery-content > a,
    .mobile-gallery-content > a > img {
        display: flex;
        width: 100%;
        height: 370px;
        object-fit: cover;
    }

    .mobile-gallery-content .gallery-name {
        bottom: 20px;
    }

    .home-mobile-gallery {
        display: block;
    }

    .login-page-contain {
        flex-direction: column;
        width: 90%;
    }

    .login-page-left {
        width: 100%;
    }

    .login-page-right {
        width: 100%;
        padding: 2rem;
    }

    .login-pege-title > span {
        width: 100%;
    }

    .delete-btn {
        width: 100%;
    }

    .dt-container .dt-search {
        float: left;
    }

    div#user-table_wrapper {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .dashboard-header {
        justify-content: flex-start;
        padding: 0 .5rem;
    }

    .logout-btn {
        right: 10px;
    }

    .logout-btn > button {
        padding: .7rem 0;
        width: 120px;
    }

    .dashboard-logo {
        height: 50px;
        width: 120px;
    }
    
    .dashboard-header {
        padding: .5rem;
        margin-bottom: 1rem;
    }

    .dt-layout-row {
        height: auto !important;
    }

    .dt-length {
        display: flex;
        flex-direction: column;
        gap: .5rem;
    }
    
    .delete-btn {
        position: unset;
        transform: unset;
    }

    .delete-btn > button {
        width: 100%;
    }

    .form-group {
        width: 100% !important;
    }
    
    .page-form-bottom {
        flex-direction: column;
    }
    
    .page-form-bottom > div {
        width: 100%;
    }
    
    input#file-1 {
        width: 0 !important;
    }
    
    .form-modal-info > span {
        font-size: 12px;
    }
    
    .form-modal-content {
        font-size: 12px;
    }
    
    .form-modal {
        width: 97%;
    }
    
    .form-modal-remove>span {
        font-size: 14px;
    }
    
    .form-modal-content h3 {
        font-size: 15px;
    }
    
    .form-modal-content h5 {
        font-size: 13px;
    }
}