@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,600&family=REM:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;;
}

body {
    overflow-x: hidden;
}

.header {
    border-bottom: 2px solid #d82c2c;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    margin: auto;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.header-logo .logo-text {
    color: #d82c2c;
    line-height: 1;
}

.header-all-texts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header-icons {
    display: flex;
    align-items: center;
    margin-left: 80px;
}

.header-icon {
    color: black;
    text-decoration: none;
    margin-left: 10px;
    margin-top: 40px;
    font-size: 13px;
    transition: 0.5s ease;
}

.header-icon2 {
    font-size: 20px;
    margin-bottom: 8px;
    transition: 0.5s ease;
}

.header-icon:hover, .header-icon2:hover {
    color: #d82c2c;
}

.header-text-icon {
    margin-right: 3px;
}

.header-text-icon2 {
    font-size: 12px;
    margin-left: 5px;
    color: gray;
}

.header-texts {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    font-size: 14px;
}

.header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    padding: 10px 0px 10px 0px;
}

/*! Header End */

/*! Home Slider Start */

@keyframes sliderAnimation {
    0% {transform: translateX(2000px);}
    15% {transform: translateX(0px)}
}

.home-slider-container {
    background-image: url(sliderArkaPlan1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: calc(100vh - 121px);
    position: relative;
    transition: 0.2s ease;
    animation-name: sliderAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.home-slider-texts {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent , rgb(8, 8, 8, 0.7));
    color: white;
    padding: 20px 40px 10px 20px;
    text-align: right;
    text-align-last: right;
}

.home-slider-header {
    font-size: 40px;
    font: 600;
    line-height: 1.2;
}

.home-slider-text {
    font-size: 20px;
}

.home-slider-selection-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.home-slider-selection {
    height: 10px;
    width: 50px;
    background-color: white;
    cursor: pointer;
}

.home-slider-selection:hover {
    background-color: #d82c2c;
}

.home-slider-selection-active {
    background-color: #d82c2c;
}

.header-text-bakan:hover .dropdown-menu-container-bakan{
    visibility: visible;
}

.dropdown-menu-container-bakan {
    position: absolute;
    top: 119px;
    z-index: 1;
    left: 730px;
    list-style: none;
    background-color: white;
    font-size: 14px;
    visibility: hidden;
}

.dropdown-menu-list {
    padding: 20px;
    transition: 0.5s ease background-color;
}

.dropdown-menu-list:hover {
    background-color: #d82c2c;
}

.dropdown-menu-list-item {
    color: black;
    text-decoration: none;
}

.dropdown-menu-container-bakanlık {
    position: absolute;
    top: 119px;
    z-index: 1;
    left: 830px;
    list-style: none;
    background-color: white;
    font-size: 14px;
    visibility: hidden;
}

.header-text-bakanlık:hover .dropdown-menu-container-bakanlık {
    visibility: visible;
}