/**********************
     GENERAL STYLE
***********************/
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    background: #ffffff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
}

footer a {
    color: #efefef;
}

.container_fnp {
    margin: 0 80px;
}

.home_container {
    padding: 0 100px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#loader {
    margin-top: 10px;
    animation: rotate 2s linear infinite;
}

/**********************
     END GENERAL STYLE
***********************/

/**********************
     QUİCK CLASS
***********************/

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-20 {
    margin-top: 20px !important;
}


.mt-10 {
    margin-top: 10px !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

/**********************
    END QUİCK CLASS
***********************/

/**********************
    HEADER STYLE
***********************/

.header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: 0.5s ease-in-out;
}

.main_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
}

.main_navbar .menu_wrapper {
    margin-left: auto;
}

.main_navbar .menu_wrapper ul {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    align-items: center;
}

.main_navbar .menu_wrapper ul.second_menu li {
    list-style: none;
    margin-right: 10px;
    padding-right: 25px;
    position: relative;
    line-height: 2.3;
}

.logo_wrapper {
    margin-top: 15px;
}

.main_navbar .menu_wrapper .firts_menu {
    margin-right: 10px;
    justify-content: end;
    margin-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 15px;
    display: inline-flex;
}

.fnp_br {
    z-index: 99;
    bottom: -100px;
    right: 80px;
    max-width: 70%;
    background-color: #ffffff;
    position: absolute;
}

.services_cards {
    border: none;
    border-radius: 0;
    background-color: white;
    position: relative;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 300px;
    width: 350px;
    overflow: hidden;
}

.services_card_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 32%;
    transition: .3s ease-in-out;
}

.services_cards .background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.2; /* Başlangıç opaklığı */
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.4542191876750701) 95%);
    pointer-events: none; 
}

.services_cards:hover .services_card_top {
    top: 20%;
}

.services_cards:hover .background-image {
    opacity: 0.4;
}

.services_cards .card-image {
    width: 50px;
    height: 50px;
    display: block;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.services_cards .title {
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.services_cards .detail {
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    position: absolute;
    z-index: 1;
    padding: 20px;
    bottom: 20%;
}

.services_cards:hover .card-image,
.services_cards:hover .title {
    transform: translateY(-30px);
}

.services_cards:hover .detail {
    opacity: 1;
    visibility: visible;
}

.service_cards .col-lg-4:nth-child(1) .services_cards .card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #25a8e1;
    transition: height 0.3s ease, background-color 0.3s ease-in-out;
}

.service_cards .col-lg-4:nth-child(1) .services_cards:hover .card-border {
    height: 12px;
}

.service_cards .col-lg-4:nth-child(2) .services_cards .card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #1960a8;
    transition: height 0.3s ease, background-color 0.3s ease-in-out;
}

.service_cards .col-lg-4:nth-child(2) .services_cards:hover .card-border {
    height: 12px;
}

.service_cards .col-lg-4:nth-child(3) .services_cards .card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #f4931f;
    transition: height 0.3s ease, background-color 0.3s ease-in-out;
}

.service_cards .col-lg-4:nth-child(3) .services_cards:hover .card-border {
    height: 12px;
}


.main_navbar .menu_wrapper ul.firts_menu li {
    list-style: none;
    margin-right: 15px;
    padding-right: 15px;
}

.main_navbar .menu_wrapper ul.firts_menu li a {
    color: #fff;
    font-weight: 400;

}

.main_navbar .menu_wrapper .firts_menu li img {
    border-radius: 50%;
    object-fit: cover;
    height: 18px;
    width: 18px;
}

.main_navbar .menu_wrapper ul.firts_menu li {
    margin-right: 0px;
}

.main_navbar .menu_wrapper ul.firts_menu li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.main_navbar .menu_wrapper .firts_menu li:last-child {
    margin-right: 30px;
}

.menu_two_row {
    text-align: right;
}

.main_navbar .menu_wrapper ul.second_menu li:last-child {
    margin-right: 5px;
    padding-right: 5px;
}

.main_navbar .menu_wrapper ul.second_menu li a {
    color: #fff;
    text-transform: none;
    font-weight: 500;
    line-height: 45px;
    display: block;
    transition: 0.3s ease-in-out;
}

.main_navbar .menu_wrapper ul.second_menu li a:hover {
    color: #efefef;
}

.second_sub li a {
    line-height: 1 !important;
    font-size: 12px;
}

.main_navbar .toggle_desk {
    background: #1961A8;
    padding: 10px;
    width: 75px;
    height: 70px;
    position: relative;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_navbar .toggle_desk span:nth-child(1) {
    display: block;
    width: 15px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    margin-left: auto;
}

.main_navbar .toggle_desk span:nth-child(2) {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    margin-left: auto;
}

.main_navbar .toggle_desk span:nth-child(3) {
    display: block;
    width: 10px;
    height: 2px;
    background: #fff;
    margin-left: auto;
}

.home_social a:hover, .home_social a:hover i {
    color: #1961A8;

}

.home_social a, .home_social a i {
    color: #ffffff;
    font-size: 28px;
    display: block;
    transition: .3s;
    margin-bottom: 17px;
    width: 100%;
    text-align: center;
}

.home_social:before {
    content: "";
    height: 100px;
    background-color: #ffffff;
    width: 1px;
    display: block;
    position: absolute;
    top: -120px;
    left: 15px;
}

.home_social {
    position: absolute;
    left: 60px;
    bottom: 125px;
    z-index: 999;
    display: inline-block;
    max-width: 50px;
}

.firts_menu li a:hover {
    color: #efefef;
}

.mt20 {
    margin-top: 20px;
}

.firts_menu li {
    padding-left: 20px;
}

.firts_menu li:first-child {
    padding-left: 0px;
}

.firts_menu li:nth-child(2) {
    border-left: 1px solid #efefef;
}

.top_menu_item {
    position: relative;
}

.second_sub {
    display: none;
    background: #fff;
    position: absolute;
    min-width: 300px;
    flex-direction: column;
    align-items: start !important;
    text-align: left;
    padding: 10px 10px 20px !important;
}

.second_sub li {
    position: relative;
    padding: 10px 10px 10px 10px !important;
    margin-right: 0 !important;
    width: 100%;
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}

.second_sub li:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #1860a7;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ed1b24;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(3)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #f7931d;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(4)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #26a9e1;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(5)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #1860a7;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(6)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #ed1b24;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(7)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #f7931d;
    transition: width 0.4s ease;
}

.second_sub li:nth-child(8)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #26a9e1;
    transition: width 0.4s ease;
}

.second_sub li:hover::after {
    width: 100%;
}

.second_sub li a {
    display: block;
    width: 100%;
    color: #000000 !important;
    padding: 5px;
    transition: all 0.4s ease;
}

.second_sub li:nth-child(1):hover a {
    color: #1860a7 !important;
}

.second_sub li:nth-child(2):hover a {
    color: #ed1b24 !important;
}

.second_sub li:nth-child(3):hover a {
    color: #f7931d !important;
}

.second_sub li:nth-child(4):hover a {
    color: #26a9e1 !important;
}

.second_sub li:nth-child(5):hover a {
    color: #1860a7 !important;
}

.second_sub li:nth-child(6):hover a {
    color: #ed1b24 !important;
}

.second_sub li:nth-child(7):hover a {
    color: #f7931d !important;
}

.second_sub li:nth-child(8):hover a {
    color: #26a9e1 !important;
}

.has_submenu:hover:after {
    color: #efefef;
}

.has_submenu:after {
    content: "\f078";
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    right: 5px;
    font-size: 14px;
    top: 5px;
    transition: .3s ease-in-out;
}

/**********************
    END HEADER STYLE
***********************/

/**********************
    MAIN SLIDER STYLE
***********************/

.main_slider_section {
    position: relative;
    line-height: 0;
}

.main_slider_section .main_slider img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    transform: scale(1);
    animation: none; /* Başlangıçta animasyon kapalı */
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.main_slider_section .main_slider .slide_img_wrapper {
    position: relative;
}

.main_slider_section .main_slider .slide_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1.4;
}

.main_slider_section .main_slider .slide_content .slide_title {
    color: #fff;
    font-weight: 700;
    font-size: 60px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.78);
    text-align: center;
}

.main_slider_section .main_slider .slide_content .slide_description {
    text-align: center;
    color: #fff;
    margin-top: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.78);
}

/****************************
    END MAIN SLIDER STYLE
*****************************/

/**********************
    ABOUT AREA
***********************/
.about_section {
    padding: 200px 0 100px;
    background-color: #ffffff;
}

.about_title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about_sub_title {
    font-size: 16px;
    position: relative;
    padding-left: 50px;
    display: inline-block;
}

.about_sub_title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: black;
}

.about_detail {
    color: #666C89;
    margin: 30px 0;
    font-size: 16px;
}

.about_card {
    position: relative;
    padding: 0;
    height: 125px;
    border-radius: 0;
    border: none;
    overflow: hidden;
}

.about_card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

.overlay div:first-child {
    font-size: 40px;
}

.about_section .row .col-lg-4:nth-child(1) .about_card .overlay {
    background: rgba(61, 175, 195, 0.78);
}

.about_section .row .col-lg-4:nth-child(2) .about_card .overlay {
    background: rgba(25, 96, 168, 0.78);
}

.about_section .row .col-lg-4:nth-child(3) .about_card .overlay {
    background: rgba(250, 146, 22, 0.78);
}

.about_video_container {
    position: relative;
    width: 100%;
    height: 500px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon img {
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
}

.play-icon img:hover {
    transform: scale(1.3);
}


/**********************
    END ABOUT AREA
***********************/

/****************************
        SERVİCES AREA
 ****************************/

.services_section {
    position: relative;
    padding: 300px 0;
}

.services_image_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services_image.active {
    opacity: 1;
}

.services_content {
    position: absolute;
    top: 60%;
    right: 10%;
    z-index: 99;
}

.services_a_card {
    width: 900px;
    height: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.services_nav_buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.services_card_content {
    position: relative;
}

.services_card_item {
    display: none;
    transition: opacity 0.5s ease;
}

.services_card_item.active {
    display: block;
    opacity: 1;
}

.services_a_title {
    font-size: 22px;
    display: inline-block;
    padding-left: 10%;
    position: relative;
    color: #212529;
}

.services_a_title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 25%;
    height: 1px;
    background-color: #212529;
}

.services_a_card .row:nth-child(2) {
    padding-left: 10%;
    margin-top: 20px;
}

.services_a_link {
    color: #212529;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

.services_a_link.active {
    color: #3DAFC3;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

.services_a_link.active:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 5px;
    background-color: #3DAFC3;
    left: 0;
}

.services_card_detail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services_card_detail.active {
    display: block;
    opacity: 1;
    padding-right: 50px;
}

.services_card_detail-title {
    font-size: 32px;
    display: inline-block;
    letter-spacing: -1.5px;
    line-height: 1.3;
}

.services_card_detail-title span {
    display: block;
    font-weight: 600;
}

.services_card_detail-detail {
    margin-top: 10px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-right: 75px;
}

.services_card_detail-button {
    margin-top: 10px;
}

.services_card_detail-button a {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    font-size: 13px;
    transition: .3s ease-in-out;
}

.services_card_detail-button a:before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transition: .3s ease-in-out;
}

.services_card_detail-button a:hover {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    font-size: 13px;
}

.services_card_detail-button a:hover:before {
    content: '';
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
}

.services_a_card_but {
    position: absolute;
    top: 56%;
    right: 10px;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.services_card_but {
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 10px;
}

.services_right:after {
    content: "\f054";
    font-size: 24px;
    font-family: FontAwesome;
}

.services_left:after {
    content: "\f053";
    font-size: 24px;
    font-family: FontAwesome;
}

/****************************
       END SERVİCES AREA
 ****************************/

/****************************
       SECTOR AREA
 ****************************/
.sector_section {
    padding: 100px 0 120px;
    margin-top: 30px;
    overflow: hidden;
}

.sector_title_up {
    text-align: center;
    color: #212529;
    font-size: 24px;
    position: relative;
    font-weight: 500;
}

.sector_title_up:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    top: 50%;
    left: -60px;
    background-color: #212529;
}

.sector_title {
    margin-top: 10px;
    text-align: center;
    font-weight: 600;
    color: #212529;
    font-size: 40px;
}

/* Slider konteyneri */
.slider-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.sector_card {
    flex: 0 0 33.3333%;
    padding: 50px 30px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #F3F3F3 !important;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    box-sizing: border-box;
}

.sector_card img {
    filter: invert(0);
    margin-bottom: 10px;
}

.sector_card.active {
    background-color: #1961A8;
    box-shadow: none;
}

.sector_card.active img {
    filter: invert(100%);
}

.sector_card .sector_card_title {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.sector_card.active .sector_card_title {
    color: #fff;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.sector_section .col-lg-12:nth-child(1) {
    margin-bottom: 50px;
}

.sector_img {
    height: 100%;
    object-fit: cover;
}

.sector_right {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector_detail {
    text-align: justify;
    color: #212529;
}

.sector_right_title {
    font-size: 27px;
    color: #000000;
    font-weight: 600;
    position: relative;
}

.sector_right_title:before {
    content: '';
    width: 50%;
    height: 1px;
    background-color: #1961A8;
    position: absolute;
    top: -30px;
    left: 0;
}

.sector_right img {
    margin-right: 100px;
}

.sector_button {
    position: absolute;
    left: 40%;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 99;
}

.sector_button_up {
    top: -30px;
}

.sector_button_up:after {
    content: '\f077';
    font-family: FontAwesome;
    font-size: 20px;
}

.sector_button_down {
    bottom: -30px;
}

.sector_button_down:after {
    content: '\f078';
    font-family: FontAwesome;
    font-size: 20px;
}

.sector_baslik {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1960a8;
    padding-left: 70px;
    position: relative;
}

.sector_baslik:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: #1960a8;
}

.sector_btn {
    color: #1960a8 !important;
}

.sector_btn:before {
    background-color: #1960a8 !important;
}

#sectorContent {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
    overflow: hidden;
    text-overflow: ellipsis;
}

/****************************
       END SECTOR AREA
 ****************************/

/******************************
      PARALLAX AREA
******************************/

.parallax {
    padding: 100px 0;
    background-color: #1960a8;
    color: #fff;
}

.parallax_header {
    max-width: 376px;
}

.parallax_header_first {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 60px;
    display: inline;
}

.parallax_header_first:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 2px;
    width: 40px;
    background: #ffffff;
}

.parallax_text {
    max-width: 750px;
    font-weight: 400;
}

.parallax_header h4 {
    margin-top: 10px;
    font-size: 46px;
    font-weight: 400;
}

.parallax_header_second {
    color: #ffffff;
    font-weight: 600;
}

.parallax_fluid {
    position: relative;
    margin-top: 60px;
}

.parallax_fluid:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 10px;
    background-color: #a9a9a9;
}

.parallax_steps {
    list-style: none;
    display: flex;
    align-items: baseline;
    margin-top: 60px;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
}

.parallax_steps-step {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    flex: 1 1 auto;
    position: relative;
    max-width: 300px;
    justify-content: center;
}

.parallax_marker {
    color: #3eaec2;
    display: block;
    position: relative;
}

.parallax_marker_spot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 45%;
    z-index: 3;
}

.parallax_marker_spot--underlay {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 198, 49, .3);
    top: -10px;
    left: -10px;
    z-index: 2;
    transition: ease-in-out;
}

.parallax_marker_spot--underlay:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: -10px;
    width: 100%;
    height: 1px;
    -webkit-transition: background-color .6s, background-position .6s;
    transition: background-color .6s, background-position .6s;
}

.parallax_steps-step_wrapper {
    margin-left: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parallax_steps-step .title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

.parallax_img {
    filter: invert(100%);
    margin-bottom: 30px;
}

/******************************
      END PARALLAX
******************************/

/****************************
       END COMMENT AREA
 ****************************/
.comment_area {
    padding: 100px 0;
}

.comment_card {
    border-radius: 0;
    padding: 0 150px 50px;
    position: relative;
}

.comment_card_title {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    color: #212529;
    font-size: 40px;
    padding: 50px 0 30px;
}

.comment_card_detail {
    color: #212529;
    font-size: 17px;
    text-align: center;
    font-weight: 400;
}

.comment_client {
    color: #212529;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    line-height: .5;
}

.comment_client span {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.comment_card_indicators {
    margin-top: 20px;
    text-align: center;
}

.comment_card_indicators .indicator.active {
    display: inline-block;
    height: 5px;
    width: 40px;
    background-color: #3eaec2;
    padding-right: 5px;
}

.comment_card_indicators .indicator {
    display: inline-block;
    height: 5px;
    width: 40px;
    background-color: #E1E8F1;
    padding-right: 5px;
    cursor: pointer;
}

.comment_btn {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.comment_btn a {
    padding: 10px 20px;
    background-color: #ffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.comment_btn_right {
    position: absolute;
    top: 40%;
    right: -20px;
    padding: 10px 20px;
    background-color: #ffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.comment_btn_left {
    position: absolute;
    z-index: 1;
    top: 40%;
    left: -20px;
    padding: 10px 20px;
    background-color: #ffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.comment_btn_right:after {
    content: '\f054';
    font-family: FontAwesome;
}

.comment_btn_left:after {
    content: '\f053';
    font-family: FontAwesome;
}

.slick-dots {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.indicator {
    margin-right: 10px;
}

.comment_shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 15px;
    padding-bottom: 20px;
}

.slick-slide img {
    display: inline;
}

/****************************
       END COMMENT AREA
 ****************************/

/*****************************
         BLOG AREA
*****************************/
.blog_area {
    padding: 80px 0;
    background-color: #F8F7F7;
}

.blog_area_title {
    display: inline-block;
    position: relative;
    padding-left: 80px;
    color: #212529;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.blog_area_title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #707070;
}

.blog_a_card {
    background-color: inherit;
    position: relative;
}

.blog_a_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog_a_right_title {
    font-size: 23px;
    font-weight: 700;
    color: #1F1F1F;
}

.blog_a_right_detail {
    font-size: 16px;
    color: #212529;
    line-height: 1.5;
}

.blog_a_right_btn a {
    display: inline-block;
    padding-left: 40px;
    position: relative;
    font-size: 14px;
    transition: .3s ease-in-out;
}

.blog_a_right_btn a:hover {
    padding-left: 50px;
}

.blog_a_right_btn a:hover:before {
    width: 40px;
}

.blog_a_right_btn a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #000000;
    transition: .3s ease-in-out;
}

.blog_carousel .carousel {
    position: relative;
    /*overflow: hidden;*/
    width: 100% !important;
}

.blog_carousel .carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.blog_carousel .carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
}

.blog_carousel .carousel-item.active {
    display: flex;
}

.blog_carousel .carousel-item:not(.active) {
    display: none;
}

.carousel-controls {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 99;
}

.blog_a_card_left,
.blog_a_card_right {
    padding: 10px 20px;
    background-color: #fff;
    color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.blog_a_card_left:after {
    content: '\f053';
    font-family: FontAwesome;
    font-size: 22px;
}

.blog_a_card_right:after {
    content: '\f054';
    font-family: FontAwesome;
    font-size: 22px;
}

.blog_slider {
    width: 100%;
}

.blog_slider .slick-slide {
    margin: 0 10px;
}

.blog_a_card_left,
.blog_a_card_right {
    padding: 10px 20px;
    background-color: #fff;
    color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.blog_a_card_left {
    margin-right: 10px;
}

.blog_a_card_left:after {
    content: '\f053';
    font-family: FontAwesome;
    font-size: 22px;
}

.blog_a_card_right:after {
    content: '\f054';
    font-family: FontAwesome;
    font-size: 22px;
}


.news {
    padding-left: 70px;
}

.blog_new_card {
    background-color: inherit;
    position: relative;
}

.blog_new_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new_time {
    color: #3DAFC3;
    margin: 10px 0;
    font-weight: 500;
}

.blog_new_title {
    font-size: 23px;
    font-weight: 700;
    color: #1F1F1F;
}

.blog_new_detail {
    font-size: 16px;
    color: #212529;
    line-height: 1.5;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_new_btn a {
    display: inline-block;
    padding-left: 40px;
    position: relative;
    font-size: 14px;
    transition: .3s ease-in-out;
}

.blog_new_btn a:hover {
    padding-left: 50px;
}

.blog_new_btn a:hover:before {
    width: 40px;
}

.blog_new_btn a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #000000;
    transition: .3s ease-in-out;
}

.carousel_new {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner_new {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item_new {
    min-width: 100%;
    box-sizing: border-box;
    /*display: flex;*/
}

/*.carousel-item_new.active {*/
/*    display: flex;*/
/*}*/

.carousel-item_new:not(.active) {
    display: none;
}

.carousel-controls_new {
    position: absolute;
    bottom: 40%;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.blog_new_card_left,
.blog_new_card_right {
    padding: 10px 20px;
    background-color: #fff;
    color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.blog_new_card_left:after {
    content: '\f053';
    font-family: FontAwesome;
    font-size: 22px;
}

.blog_new_card_right:after {
    content: '\f054';
    font-family: FontAwesome;
    font-size: 22px;
}

.blog_new_card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog_detail {
    padding: 100px 0 80px;
}

.blog_detail hr {
    margin: 15px 0 25px;
}

/*****************************
         END BLOG AREA
*****************************/

/*****************************
         FOOTER AREA
*****************************/

.footer_bg {
    background: #292929;
    padding: 100px 0 30px;
}

.footer_container {
    max-width: 1600px !important;
    margin-left: auto;
    margin-right: auto;
}

.footer_p p {
    font-size: 15px;
    color: #ffffff;
    margin-top: 25px;
    line-height: 2;
}

.footer_social {
    margin-top: 25px;
}

.footer_social i {
    font-size: 24px;
    transition: .3s ease-in-out;
}

.footer_social i:hover {
    color: #1960a8;
}

.footer_sol {
    display: flex;
    justify-content: center;
    align-items: start;
}

.footer_orta {
    justify-content: center;
}

.footer_sol_ic p {
    margin-top: 5px;
    color: #C4C4C4;
    font-size: 14px;
    font-weight: 300;
}


.footer_sag_ic h5 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}

.footer_sag_ic p {
    margin-top: 5px;
    color: #C4C4C4;
    font-size: 15px;
    font-weight: 400;
}

.footer_sag_ic p a {
    color: #FFF;
    font-weight: 400;
}

.footer_sol_ic h5 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}

.footer_sol_ic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_sol_ic ul li {
    padding: 5px 0;
}

.footer_sol_ic ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    text-transform: capitalize !important;
}

.footer_sol_ic ul li a:hover{
    color: #efefef;
}

.footer_border {
    border-top: 1px solid rgb(255 255 255 / 51%);
    margin-top: 25px;
}

.copyright {
    color: #FFF;
    text-align: left;
    font-weight: 200;
    font-size: 14px;
}

.fnp_ust {
    text-align: right;
}

.Fnp {
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
}

.footer_alt {
    margin-top: 50px;
}


.yukari_dis {
    position: absolute;
    right: 2%;
    bottom: 25%;
}

.yukari_ic {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.yukari_title {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transform: rotate(-0.25turn);
    margin-bottom: 45px;
}

.yukari_line {
    width: 2px;
    height: 50px;
    background-color: #fff;
}

.footer_sol_ic ul li {
    margin: 10px 0;
}

.footer_sol_ic ul li a {

}

/*****************************
       END FOOTER AREA
*****************************/

/*****************************
       CONTENT PAGE
*****************************/
.section_title {
    position: relative;
    display: inline-block;
    padding-left: 120px;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section_title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: black;
}

.pages {
    padding: 80px 0 100px;
}

.pages_title {
    position: relative;
    display: inline-block;
    padding-left: 120px;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.pages_title:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: black;
}

.right_card {
    padding: 20px;
    background-color: #1961a8;
}

.right_card ul {
    padding: 0;
    margin: 0;
}

.right_card ul li {
    list-style-type: none;
}

.right_card ul li a {
    display: block;
    padding: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.right_card ul li a:hover {
    color: #efefef;
}

.right_card ul li a:after {
    content: "\f061";
    font-family: 'FontAwesome';
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}

.right_card ul li:hover a:after {
    margin-left: 20px;
}


.contact_card {
    position: sticky;
    padding: 20px;
    background: url('/t/technowell/img/technowell-contact.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    top: 20px;
}

.contact_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 27, 36, 0.9);
    z-index: 0;
}

.card_content {
    position: relative;
    z-index: 1;
}

.card_content ul li a:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.card_content ul {
    margin: 20px 0;
    list-style-type: none;
    padding-left: 0;
}

.card_content ul li {
    margin-bottom: 10px;
}

.card_content ul li a {
    display: flex;
    justify-content: center;
    padding: 20px;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
}

.card_content ul li a i {
    font-size: 22px;
}

.card_content_title {
    font-size: 18px;
    font-weight: 600;
}

.content_detail {
    text-align: justify;
    padding-right: 50px;
}

.content-card{
    padding: 30px;
    text-align: center;
    position: relative;
    min-height: 200px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*.content-card-border{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 2px;*/
/*    height: 100%;*/
/*    background-color: #3eaec2;*/
/*}*/

/*.content-card-border-top{*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background-color: #3eaec2;*/
/*}*/

.content-card .title{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
}

.content-card .detail{
    font-size: 14px;
    color: #000;
}

/*****************************
       END CONTENT PAGE
*****************************/


/*****************************
         BANNER AREA
*****************************/
.min-height {
    min-height: 100vh;
}

.main_banner {
    position: relative;
    height: 450px;
    background: #222222;
}

.main_banner:before {
    content: '';
    position: absolute;
    top: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7651435574229692) 0%, rgba(255, 255, 255, 0.01) 50%);
    width: 100%;
    height: 100%;
}

.main_banner .banner_title {
    font-size: 46px;
    color: #fff;
    font-weight: 800;
}

/*****************************
        END BANNER AREA
*****************************/


/******************************
        CONTACT PAGE
******************************/

.contact_section {
    padding: 70px 0;
}

/*.card {*/
/*    border: none;*/
/*}*/

/*.contact_s_card {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

/*.contact_s_card i {*/
/*    font-size: 40px;*/
/*}*/

/*.contact_s_card p {*/
/*    margin-top: 20px;*/
/*    font-size: 22px;*/
/*    font-weight: 600;*/
/*}*/

/*.contact_s_card span a {*/
/*    font-size: 20px;*/
/*    font-weight: 400;*/
/*}*/

/*.contact_form {*/
/*    margin: 50px 0;*/
/*}*/

/*.contact_control {*/
/*    border-radius: 0;*/
/*    box-shadow: none !important;*/
/*    padding: 10px 15px;*/
/*}*/

/*.contact_label {*/
/*    font-size: 18px;*/
/*}*/

/*.contact_button {*/
/*    border-radius: 0;*/
/*    padding: 10px 15px;*/
/*    background-color: #3eafc3;*/
/*    border: 1px solid #3eafc3;*/
/*    transition: all .3s ease-in-out;*/
/*}*/

/*.contact_button:hover {*/
/*    background-color: #1960A8FF;*/
/*    border: 1px solid #1960A8FF;*/
/*}*/

.address_content h5 {
    padding-bottom: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 2px solid #3eafc3;
}

.contact_address .card {
    padding: 0;
}

.address_content p {
    font-weight: 500;
    font-size: 17px;
}

.address_content {
    text-align: center;
    position: relative;
    bottom: 30px;
    left: 5%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    padding: 10px 20px !important;
    z-index: 1;
    width: 90%;
}

.form {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #3eafc3;
    position: relative;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #3eafc3;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
    z-index: 1;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.c_title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
    padding-left: 13%;
    position: relative;
}

.c_title:before {
    content: '';
    width: 10%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
}

.fa-phone:before {
    font-size: 26px;
    color: #3eaec2;
}

.cntc_card .fa-envelope:before {
    font-size: 26px;
    color: #3eaec2;
}

.fa-print:before {
    font-size: 26px;
    color: #3eaec2;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    resize: none;
    overflow-y: auto;
}

.contact-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 0;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #3eafc3;
    line-height: 1;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.contact-btn:hover {
    background-color: #1961a8;
    color: #fff;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #3eafc3;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #3eafc3;
    padding-left: 13%;
}

.contact-info .title:before {
    content: '';
    width: 10%;
    height: 2px;
    background-color: #3eafc3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.contact-info .text {
    color: #000;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.information p {
    color: #fafafa;
}

.information i {
    color: #3eafc3;
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #3eafc3;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #3eafc3, #1961a8);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1cd4af, #159b80);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.contact-info {
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 32px 48;
    color: white;
}

/*.contact-info .contact-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    z-index: 1;*/
/*}*/

.contact-info .title,
.contact-info .text,
.contact-info .info,
.contact-info .social-media {
    position: relative;
    z-index: 2;
}

.cntc_card {
    color: #000;
    height: 100px;
}

.cntc_card h5{
    padding-left: 45px;
    font-weight: 600;
    font-size: 18px;
}

.cntc_card a{
    transition: .3s ease-in-out;
}

.cntc_card a:hover{
    color: #1960a8;
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

.form_out {
    margin-bottom: 70px;
    padding: 0;
}


.contact-card {
    min-height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.contact-card-overlay {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.contact-card-body {
    width: 100%;
    height: 18rem;

}

.contact-turkuaz {
    background: rgba(61, 175, 195, 0.78);
}

.contact-blue {
    background: rgba(25, 96, 168, 0.78);
}

.contact-orange {
    background: rgba(250, 146, 22, 0.78);
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.contact-card-body i {
    margin: 20px 0;
}

.contact-card-body i {
    font-size: 28px;
}

.contact-card-text {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}

.contact-form-text {
    color: #6b6b6b;
    font-weight: 400;
    line-height: 30px;
}

.contact-form-title {
    font-size: 30px;
    font-weight: 600;
}

.contact-form-input-text {
    margin: 0 0 1rem 0;
}

.contact-form-input-text input {
    width: 100%;
    height: 2.5rem;
    padding: 0 1rem;
    color: #919191;
}

.contact-form-input-text input:focus,
.contact-form-input-text textarea:focus {
    outline: none;
    color: #919191;
}

.contact-form-input-text textarea {
    width: 100%;
    height: 150px;
    padding: 1rem;
    color: #919191;
}

.btn-custom-fnp {
    background-color: #3eafc3;
    color: #fff;
    border: none;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: color 0.5s ease-in;
    transition: background-color 0.5s ease-in;
}

.btn-custom-fnp:hover,
.btn-custom-fnp:focus {
    background-color: #1961a8;
    color: #fff;
    transition: color 0.5s ease-in;
}

.contact-form-image {
    width: 100%;
    height: 100%;
    min-height: 26rem;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.form-image-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem 3rem;
}

.form-info-title {
    color: #3eafc3;
    position: relative;
    padding: 0 0 0 4rem;
}

.form-info-title::before {
    content: "";
    width: 10%;
    height: 2px;
    background-color: #3eafc3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.form-info-text {
    color: #fff;
}

.social-icons {
    display: flex;
    flex-direction: row;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    padding: 0 !important;
    background: linear-gradient(45deg, #3eafc3, #1961a8);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover,
.social-icons a:focus {
    color: #fff;
    transform: scale(1.05);
}

/******************************
      END  CONTACT PAGE
******************************/


/******************************
      SERVİCES PAGE
******************************/

.s_d_title{
    margin-bottom: 15px;
}
.services_pages_card {
    padding: 30px;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 0;
}

.services_pages_card_img {
    transition: .3s ease-in-out;
}

.services_pages_card:hover .services_pages_card_img {
    transform: rotate3d(0, 1, 0, 180deg);
    /*transform: rotate(360deg);*/
}

.services_pages_out {
    margin-bottom: 25px;
}

.services_page_btn {
    padding: 10px 15px;
    background-color: #1960a8;
    color: #fff;
    transition: .3s ease-in-out;
    border-radius: 0;
}

.services_page_btn:hover {
    background-color: #3eaec2;
    color: #fff;
}

.services_pages_title {
    font-size: 24px;
    text-align: center;
    margin: 20px 0 30px;
}

/******************************
      END SERVİCES PAGE
******************************/

/******************************
      SERVİCES DETAIL PAGE
******************************/

.services_detail_img {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-bottom: 25px;
}

.services_detail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******************************
      END SERVİCES DETAIL PAGE
******************************/

/******************************
      PROJECT PAGE
******************************/
.project_card {
    height: 380px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px;
    overflow: hidden;
    position: relative;
    transition: .5s ease-in-out;
}

.project_card_detail {
    height: 60px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    bottom: 10px;
    color: #FFF;
    transition: .5s ease-in-out;
}

.project_card_detail h3 {
    margin: 10px;
    font-size: 30px;
}

.project_card_detail h3 {
    position: relative;
    padding-left: 60px;
    font-size: 30px;
}

.project_card_detail h3:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #fff;
}

.project_card_detail p {
    font-size: 14px;
    margin: 10px;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease-in-out;
}

.project_card:hover {
    cursor: pointer;
}

.project_out_first .project_card:hover .project_card_detail {
    height: 200px;
    bottom: -4px;
    background: rgba(62, 174, 194, 0.8);
}

.project_out_second .project_card:hover .project_card_detail {
    height: 200px;
    bottom: -4px;
    background: rgba(25, 96, 168, 0.8);
}

.project_out_third .project_card:hover .project_card_detail {
    height: 200px;
    bottom: -4px;
    background: rgba(244, 147, 31, 0.8);
}

.project_card:hover p {
    opacity: 1;
    visibility: visible;
}

.project_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.project_card:hover img {
    transform: scale(1.1);
}

/******************************
      END PROJECT PAGE
******************************/


/******************************
      PROJECT DETAIL PAGE
******************************/

.dgr_product_out {
    margin-top: 80px;
}

.projcard-container {
    margin: 50px 0;
}

.project_detail_pages {
    margin-bottom: 50px;
}

.projcard-container,
.projcard-container * {
    box-sizing: border-box;
}

.projcard-container {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

.projcard {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    background-color: #fff;
    font-size: 18px;
    overflow: hidden;
    cursor: auto;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard:hover {
    box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
}

.projcard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 0.07;
}

.projcard:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-innerbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.projcard-img {
    position: absolute;
    height: 300px;
    top: 0;
    left: 0;
    transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
    left: initial;
    right: 0;
}

.projcard:hover .projcard-img {
    transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
    width: 70px;
}

.projcard-textbox {
    position: absolute;
    top: 7%;
    bottom: 7%;
    left: 430px;
    width: calc(100% - 470px);
    font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
    left: initial;
    right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after {
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    top: -24%;
    left: -55px;
    height: 150%;
    width: 200px;
    transform: rotate(8deg);
}

.projcard:nth-child(2n) .projcard-textbox::before {
    display: none;
}

.projcard-textbox::after {
    display: none;
    left: initial;
    right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
    display: block;
}

.projcard-textbox * {
    position: relative;
}

.projcard-title {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 24px;
}

.projcard-subtitle {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    color: #5a5a5a;
}

.projcard-bar {
    left: -2px;
    width: 50px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.projcard-blue .projcard-bar {
    background-color: #1960a8;
}

.projcard-blue::before {
    background-image: linear-gradient(-70deg, #1960a8, transparent 50%);
}

.projcard-blue:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #1960a8, transparent 50%);
}

.projcard-red .projcard-bar {
    background-color: #ee1920;
}

.projcard-red::before {
    background-image: linear-gradient(-70deg, #ee1920, transparent 50%);
}

.projcard-red:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #ee1920, transparent 50%);
}

.projcard-yellow .projcard-bar {
    background-color: #f5921d;
}

.projcard-yellow::before {
    background-image: linear-gradient(-70deg, #f5921d, transparent 50%);
}

.projcard-yellow:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #f5921d, transparent 50%);
}

.projcard-aqua .projcard-bar {
    background-color: #3eaec2;
}

.projcard-aqua::before {
    background-image: linear-gradient(-70deg, #3eaec2, transparent 50%);
}

.projcard-aqua:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #3eaec2, transparent 50%);
}

.projcard-description {
    z-index: 10;
    font-size: 15px;
    color: #424242;    
    height: 130px;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
}

.projcard-tagbox button {
    bottom: 3%;
    font-size: 25px;
    cursor: default;
    user-select: none;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    border: none;
    outline: none;
    background: purple;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard-tagbox a {
    text-decoration: none;
    color: #ddd;
}


.pdf {
    padding: 10px 20px;
    background-color: #FFFFFF;
    border: 1px solid #da163c;
    display: inline-block;
    transition: .3s ease-in-out;
    margin: 10px;
}

.pdf div {
    display: flex;
}

.pdf .title {
    padding-left: 10px;
    color: #da163c;
    font-size: 14px;
    font-weight: 500;
}

.pdf:hover {
    background-color: #da163c;
}

.pdf:hover .title {
    color: #FFFFFF;
}

.pdf:hover img {
    transition: .3s ease-in-out;
}


.pdf:hover img {
    filter: grayscale(100%);
}


.project_detail_carousel .carousel {
    position: relative;
    max-width: 700px;
    margin: 50px 0;
}

.button.is-control {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 0;
    padding: 5px 15px;
    z-index: 1;
    cursor: pointer;
    font-size: 24px;
    color: rgb(0, 0, 0);
    transition: all .3s ease-in-out;
}

.previous-button {
    position: absolute;
    left: 0;
    top: 30%;
}

.next-button {
    position: absolute;
    right: 0;
    top: 30%;
}

.tiles {
    width: calc(100% - 100px);
    margin-left: 50px;
}

.tile {
    position: relative;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.tile:focus {
    outline: 0;
}

.tile:not(:last-of-type) {
    margin-right: var(--tile-margin);
}

.tile .product-image {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.dialog {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: rgba(0, 0, 0, .6);
    z-index: 100;

    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog.is-hidden {
    display: none;
}

.dialog .overlay {
    background-color: white;
    border-radius: 10px;

    position: relative;

    width: 80%;
    max-width: 400px;
    padding: 20px;
}

.dialog .overlay .close-button {
    position: absolute;
    top: 15px;
    right: 10px;

    background: none;
    border: 0;
    font-size: 18px;
    cursor: pointer;
}

.dialog .overlay .title {
    margin: 0;
}

.dialog .overlay .ok-button {
    padding: 10px 15px;
    background: royalblue;
    border: 0;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.dialog .overlay .ok-button:focus {
    outline-offset: 5px;
}

.credits {
    display: inline-block;
    margin-top: 20px;
    margin-left: 40px;
    padding: 10px;
    font-size: 14px;
    color: black;
    text-decoration: none;
    opacity: .7;
}

.credits img {
    height: 30px;
    margin-left: 5px;
    margin-top: -2px;
    vertical-align: middle;
}

.credits:hover,
.credits:focus {
    opacity: 1;
}

.tiles .slick-slide {
    margin: 0 20px;
}

.product_detail_down{
    margin-top: 50px;
}

.product_detail_down_title{
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 50px;
    position: relative;
    display: inline-block;
}

.product_detail_down_title:before{
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    left: 0;
    top: 50%;
    background-color: black;
}

.p_c_o_h{
    transition: .3s ease-in-out;
}

.p_c_o_h:hover .product_detail_down_btn{
    bottom: 5%;
    opacity: 1;
}

.product_detail_down_btn{
    position: absolute;
    bottom: 0%;
    right:10%;
    display: inline-block;
    opacity: 0;
    transition: .3s ease-in-out;
}

.product_detail_down_btn_a{
    position: relative;
    padding-left: 25px;
    color: #3eaec2;
}

.product_detail_down_btn_a:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #3eaec2;
}
.youtube_link{
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #fd0001;
    margin: 10px;
    display: inline-block;
    transition: .3s ease-in-out;
}

.youtube_link span {
    margin-left: 10px;
    transition: .3s ease-in-out;
}

.youtube_link:hover{
    background-color: #fd0001;
}

.youtube_link:hover span{
    color: #fff;
}

.youtube_link img{
    transition: .3s ease-in-out;
}

.youtube_link:hover img{
    filter: grayscale(100%);
}
/******************************
      END PROJECT DETAIL PAGE
******************************/


/******************************
      BLOG PAGE
******************************/

.blog_pages_card {
    padding: 0;
}

.blog_left {
    max-height: 450px;
    overflow: hidden;
}

.blog_right {
    padding: 30px;

}

.blog_right h3 {
    font-weight: 600;
    font-size: 30px;
    display: inline-block;
    padding-left: 70px;
    position: relative;
    color: #1961a8;
    transition: all .3s ease-in-out;
}

.blog_right h3 a {
    color: inherit;
}

.blog_right h3:before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #1961a8;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.blog_spot {
    margin: 40px 0 40px 70px;
}

.card.blog_pages_card {
    position: relative;
    overflow: hidden;
}

.blog_left a {
    display: block;
    position: relative;
}

.blog_left img {
    object-fit: cover;
    width: 100% !important;
    z-index: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.blog_left:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.blog_left a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7651435574229692) 0%, rgba(25, 97, 168, 0.6530987394957983) 0%);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 2;
}

.blog_left a:hover::after {
    opacity: 1;
}

.blog_button {
    text-align: end;
}

.blog_button a {
    padding: 15px 30px;
    background-color: #1960a8;
    color: #fff;
    transition: all .3s ease-in-out;
}

.blog_button a:hover {
    background-color: #3eaec2;
}

/******************************
      END BLOG PAGE
******************************/
/******************************
      BLOG  DETAİL PAGE
******************************/

.blog_h1 {
    font-size: 26px;
    position: relative;
    padding-left: 13%;
    margin: 30px 0 20px;
}

.blog_h1:after {
    content: "";
    width: 10%;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
}

.blog_detail_img_wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.sidebar {
    flex: 1;
}

.blog-item {
    margin-bottom: 25px;
}


.blog-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.blog_item_title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease-in-out;
    margin-left: 5px;
}

.blog_item_title:hover {
    color: #3eaec2;
}

.img-container {
    display: inline-block;
    position: relative;
    width: 200px;
}

.img-container img {
    display: block;
}

.img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7651435574229692) 0%, rgba(62, 175, 195, 0.5970763305322129) 0%);
    opacity: 0;
    transition: opacity 0.3s;
}

.img-container:hover::after {
    opacity: 1;
}

.blog-item .col-6:nth-child(2) {
    display: flex;
    align-items: center;
}

.latest_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

/******************************
     END BLOG  DETAİL PAGE
******************************/

/******************************
     REFERENCE PAGE
******************************/
.referance_pages{
    padding: 80px 0;
}

.references_card {
    padding: 30px;
    border-radius: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all .3s ease-in-out;
}

.references_card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.references_out {
    margin-bottom: 20px;
}

/******************************
     END REFERENCE PAGE
******************************/
.mobile_nav {
    display: none
}

.mobile_logo {
    display: none;
}

.service_img_wrap img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.desktop_menu {
    position: fixed;
    background: #fff;
    top: -100%;
    left: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: 0.3s ease-in-out;
}

.desktop_menu.opened {
    height: 100vh;
    transition: 0.3s ease-in-out;
    visibility: visible;
    top: 0;
    opacity: 1;
}

.desktop_menu ul {
    padding: 0;
    margin: 0;
}

.desktop_menu ul li {
    list-style: none;
    margin: 5px 0;
}

.desktop_menu ul li a {
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    width: 100%;
    display: block;
}

.desktop_menu h5 {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
}

.desktop_menu h5:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30%;
    height: 2px;
    background: #f0ad4e;
}

.min-height-100 {
    min-height: 100vh;
}

.desktop_menu .form_wrapper {
    position: fixed;
    top: 150px;
    width: 50%;
    z-index: 9999999;
}

.desktop_menu .container {
    position: relative;
}

.desktop_menu .sub_title {
    font-size: 22px;
    font-weight: 600;
}

.desktop_menu #close_desktop_menu {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 40px;
}

.toggle_desk span {
    transition: 0.5s ease-in-out;
}

.toggled {
    position: fixed !important;
    right: 62px;
    top: 30px;
}

.toggle_desk.toggled span:nth-child(1) {
    width: 25px;
    transform: translateY(9px) rotate(45deg);
}

.toggle_desk.toggled span:nth-child(2) {
    opacity: 0;
}

.toggle_desk.toggled span:nth-child(3) {
    width: 25px;
    transform: translateY(-5px) rotate(-45deg);

}

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #fff;
    z-index: 999999;
}

.preloader .loader-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    position: absolute;
    left: 50%;
    margin-top: 1rem;
    transform: translate(-50%, -50%);
    height: 5px;
    width: 16rem;
    background-color: lightgrey;
    overflow-x: hidden;
}

.loading {
    background: rgb(25, 97, 168);
    background: linear-gradient(90deg, rgba(25, 97, 168, 1) 25%, rgba(39, 169, 225, 1) 50%, rgba(237, 28, 36, 1) 75%, rgba(247, 148, 30, 1) 100%);
    width: 5rem;
    height: 5px;
    animation: animation 1.2s linear infinite;
}

@keyframes animation {
    0% {
        transform: translateX(-16rem);
    }
    100% {
        transform: translateX(16rem);
    }
    0% {
        transform: translateX(-16rem);
    }
}

.product_nav .slick-slide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.product_nav .slick-current {
    opacity: 1;
}

.mb-30 {
    margin-bottom: 30px;
}

.contact_form_wrapper form .form-control {
    border: 1px solid #c0c0c0 !important;
}

.cta_btn {
    display: flex;
    gap: 15px;
    padding-left: 0;
    margin: 0;
}

.cta_btn li {
    list-style: none;
}

.cta_btn .oil_btn {
    background: #eeac4d !important;
    border: 1px solid #eeac4d;
    padding: 17px 30px;
    color: #fff;
    display: block;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.cta_btn .oil_btn:hover {
    background: transparent !important;
    color: #eeac4d;
}

.cta_btn .wp_btn {
    background: #41d986 !important;
    border: 1px solid #41d986;
    border-radius: 5px;
    padding: 17px 30px;
    color: #fff;
    display: block;
    transition: 0.3s ease-in-out;
}

.cta_btn .wp_btn:hover {
    background: transparent !important;
    color: #41d986;
}

.box-shadow-none {
    box-shadow: none;
    padding: 0 !important;
}

#tts_form, #dokme_form {
    color: #f0ad4e;
    border-bottom: 3px solid #f0ad4e;
}

#dokme_form_modal, #tts_form_modal {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.5);
}

#dokme_form_modal.activated, #tts_form_modal.activated {
    display: flex;
}

#dokme_form_modal .dokme_form_inner, #tts_form_modal .tts_modal_inner {
    max-width: 768px;
    background: #fff;
    padding: 40px;
    position: relative;
}

.dokme_form_inner input, .dokme_form_inner textarea, #tts_form_modal input, #tts_form_modal textarea {
    border-radius: 0 !important;
}

.dokme_form_inner button, .tts_modal_inner button {
    background: #f0ad4e !important;
    border-radius: 0 !important;
    padding: 10px 30px;
    border-color: #f0ad4e !important;
}

.form_title {
    color: #f0ad4e;
    font-size: 22px !important;
    text-align: center;
}

#close_dokme, #close_tts {
    border: none;
    background: transparent !important;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 25px;
    line-height: 1;
}

#close_dokme i {
    background: transparent;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 40px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}


.mobile_lang {
    display: none;
}

.float-right {
    float: right;
}

#card_work .card {
    min-height: 230px;
}


#section03 a {
    padding-top: 60px;
}

#section03 a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    border: 1px solid #fff;
    border-radius: 100%;
    box-sizing: border-box;
}

#section03 a span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -12px 0 0 -8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

#section03 a span::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 44px;
    height: 44px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .1);
    border-radius: 100%;
    opacity: 0;
    -webkit-animation: sdb03 3s infinite;
    animation: sdb03 3s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, .1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb03 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, .1);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


.scrollx a {
    position: absolute;
    bottom: 0px;
    left: 70px;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}

.scrollx a:hover {
    opacity: .5;
}

.color_bg {
    background: url(../../img/linebg.jpg) center top repeat-x;
    height: 3px;
}

.breadcrumb {
    margin: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7651435574229692) 0%, rgba(25, 97, 168, 1) 0%, rgba(25, 97, 168, 0.5074404761904762) 100%);
    padding-left: 25px;
}

.breadcrumb-nav {
    width: 92.8%;
    margin-left: 70px;
    position: absolute;
    bottom: 0;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 20px 0;
}

.breadcrumb ul li {
    margin-right: 20px;
    position: relative;
}

.breadcrumb ul li + li:before {
    content: "/";
    position: absolute;
    left: -12px;
    top: 0;
    color: #ffffff;
}

.breadcrumb a {
    text-decoration: none;
    color: #ffffff;
}

.breadcrumb a:hover {
    text-decoration: underline;
}


/* SUBSCRIBE */
.subscribe_section {
    padding-bottom: 100px;
    background-color: #F8F7F7;
}

.subscribe_card {
    position: relative;
    padding: 40px;
    margin: 0 auto;
    text-align: center;
    background: url('/t/technowell/img/abone-ol-bg.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.3s ease-in-out;
}


.subscribe_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Yarı saydam siyah arka plan */
    z-index: 2;
}

.subscribe_card.clicked::after {
    transform: scale(1.05);
}

.subscribe_left {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #fff;
    position: relative;
    z-index: 9;
}

.subscribe_left h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subscribe_left div {
    font-size: 16px;
}

.subscribe_form {
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: 9;
    justify-content: center;
}

.subscribe_form input[type='submit'] {
    padding: 10px 15px;
    border: 1px solid #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.subscribe_form input[type='submit']:hover {
    background-color: #195fa8;
    color: #fff;
}

.subscribe_form input[type='email'] {
    border-right: none;
    width: 450px;
}

.subscribe_form .input-container span:before,
.subscribe_card .input-container span:after {
    background-color: transparent;
}

.subscribe_card h3 {
    position: relative;
    font-size: 32px;
    color: #fff;
    z-index: 9;
}

.subscribe_card .detail {
    margin: 20px;
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 9;
}

.subscribe_card_form {
    width: max-content;
    height: max-content;
    overflow: hidden;
    display: flex; /* To align button and input */
    align-items: center;
}

.subscribe_card_form input {
    font-size: 16px;
    width: 400px;
    padding: 10px;
    margin-right: -1px;
    border: 0;
    transition: padding 0.2s;
}

.subscribe_card_form input:focus-visible {
    border: none;
    outline: none;
}

.subscribe_card_form button {
    font-size: 16px;
    padding: 10px;
    margin-left: -1px;
    background: rgb(25, 95, 168);
    border: 0;
    color: #fff;
    transition: all .3s ease-in-out;
}

.subscribe_card_form button:hover {
    background: #3eaec2;
}

.d-contents {
    display: contents;
}

/* END SUBSCRIBE */

/* PRODUCT PAGES*/
.product_pages {
    padding: 80px 0 0;
}

.product_card {
    display: block;
    height: 400px;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 0;
    padding: 40px;
    border: none;
}

.product_card_image {
    transition: .3s ease-in-out;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.product_card:hover .product_card_image {
    transform: scale(1.1);
}

.product_card .title {
    font-size: 24px;
    color: #1960a8;
    font-weight: 600;
    text-align: center;
}

.product_card .detail {
    margin: 10px 10px 30px;
    text-align: center;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_card_out {
    margin-bottom: 120px;
}

/* END PRODUCT PAGES*/

/* PRODUCT DETAIL PAGES*/
.product-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.product_detail_card {
    padding: 20px;
    min-height: 150px;
    background: #fff;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.product-slider .slick-slide {
    margin: 10px;
}

.dgr_product {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.dgr_product_bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 400px;
    position: relative;
}

.dgr_product_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 96, 168, 0.7);
}

.dgr_product_content {
    color: white;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dgr_product_title {
    margin: 0;
    font-size: 54px;
    font-weight: 700;
}

.dgr_product_desc {
    margin: 50px 0;
    font-size: 16px;
    padding-right: 100px;
}

.dgr_product_button {
    display: inline;
    padding-left: 60px;
    position: relative;
    font-size: 16px;
    color: #fff;
    transition: .3s ease-in-out;
}

.dgr_product_button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #fff;
    transition: .3s ease-in-out;
}

.dgr_product_button:hover {
    padding-left: 70px;
}

.dgr_product_button:hover:before {
    width: 60px;
}

.dgr_btn_out {
    text-align: left;
}

/* .last-child class for the second column */
.dgr_product_out .col-lg-6.last-child .dgr_product_overlay {
    background-color: rgba(62, 174, 194, 0.7);
}

.dgr_product_out .col-lg-6.last-child .dgr_product_title {
    text-align: right;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_desc {
    text-align: right;
    padding-left: 100px;
    padding-right: 0;
}

.dgr_product_out .col-lg-6.last-child .dgr_btn_out {
    text-align: right;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_button {
    display: inline-block;
    padding-right: 60px;
    position: relative;
    font-size: 16px;
    color: #fff;
    transition: .3s ease-in-out;
    text-align: right;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_button:hover {
    padding-right: 70px;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_button:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 50px;
    height: 1px;
    background-color: #fff;
    transition: .3s ease-in-out;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_button:hover:after {
    width: 60px;
}

.dgr_product_out .col-lg-6.last-child .dgr_product_button:before {
    display: none;
}

.dgr_product_out .col-lg-6:first-child {
    padding-right: 0;
}

.dgr_product_out .col-lg-6.last-child {
    padding-left: 0;
}

/* END PRODUCT DETAIL PAGES*/

/* CATALOG */

.catalog_pages {
    padding: 80px 0;
}

.catalog_card {
    width: 100%;
    background: #fff;
    box-shadow: 5px 7px 17px rgba(0, 0, 0, 0.2);
    position: relative;
}

.catalog_card .card-img {
    position: relative;
    width: 100%;
}

.catalog_card .card-img img {
    width: 100%;
    object-fit: cover;
}

.catalog_card .card-img-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 75%;
    transition: .3s ease-in-out;
}

.catalog_card .card-img-overlay p {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: grid;
    place-items: center;
    padding: 25px;
    text-align: center;
    position: absolute;
    top: 0;
    max-width: 350px;
    min-height: 85px;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.5;
    border-radius: 0;
    transition: .3s ease-in-out;
    margin-bottom: 0;
    margin-top: 10px;
}
.catalog_card_out{
    margin-top:50px ;
}

/* Specific styles for nth-child */
/* İlk ve 4. elemanlar için */
.catalog_card_out .col-lg-4:nth-child(3n+1) .card-img .card-img-overlay,
.catalog_card_out .col-lg-4:nth-child(3n+1) .card-img .card-img-overlay p {
    background: rgba(62, 175, 195, 0.4);
}

.catalog_card_out .col-lg-4:nth-child(3n+1) .card-img .card-img-overlay p {
    background: rgb(62, 175, 195);
}

/* 2. ve 5. elemanlar için */
.catalog_card_out .col-lg-4:nth-child(3n+2) .card-img .card-img-overlay,
.catalog_card_out .col-lg-4:nth-child(3n+2) .card-img .card-img-overlay p {
    background: rgba(25, 96, 168, 0.4);
}

.catalog_card_out .col-lg-4:nth-child(3n+2) .card-img .card-img-overlay p {
    background: rgb(25, 96, 168);
}

/* 3. ve 6. elemanlar için */
.catalog_card_out .col-lg-4:nth-child(3n) .card-img .card-img-overlay,
.catalog_card_out .col-lg-4:nth-child(3n) .card-img .card-img-overlay p {
    background: rgba(245, 146, 30, 0.4);
}

.catalog_card_out .col-lg-4:nth-child(3n) .card-img .card-img-overlay p {
    background: rgb(245, 146, 30);
}


.catalog_card:hover .card-img-overlay {
    width: 100%;
}

.catalog_card:hover .card-img-overlay p {
}

.bar_container {
    display: flex;
    justify-content: space-around;
}

.catalog_p_h {
    cursor: pointer;
    padding: 15px;
    color:#1961a8;
    background-color: #fff;
    border: 1px solid #1961a8;
}

.pactive {
    color: #fff;
    background-color: #1961a8;
    border: 1px solid #1961a8;
}


/* END CATALOG */

/* Animation classes */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.5s forwards;
}

.slide-in-right {
    animation: slideInRight 0.5s forwards;
}

.slide-out-right {
    animation: slideOutRight 0.5s forwards;
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-out-to-right {
    animation: slideOutToRight 0.5s forwards;
}

.slide-in-from-right {
    animation: slideInFromRight 0.5s forwards;
}

.project_card_detail{
    bottom: -100px;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 .4rem;
    color: #fafafa;
    font-size: .9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: .5s;
}
.slide_video_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.075) 5%, rgba(0,0,0,0.15) 100%);
    z-index: 2;
}