body {
    margin: 0;
    padding: 0;
    font: 16px "Gilroy Medium";
    overflow-x: hidden;
}
body a {
    color: black;
}
body img {
    max-width: 100%;
}
body.actives .header {
    transform: translateY(0);
}
.container-fluid {
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 125px;
}
@media (max-width: 1450px) {
    .container-fluid {
        padding: 0 85px;
    }
}
@media only screen and (max-width: 1200px) {
    .container-fluid {
        padding: 0 20px;
    }
}
#mobileMenu {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 30px;
    display: none;
}
#mobileMenu .close {
    color: #9098a9;
    font-size: 16px;
    display: flex;
    justify-content: right;
}
#mobileMenu .close span {
    display: flex;
    align-items: center;
}
#mobileMenu .close span:after {
    content: "";
    background: #fff url("https://www.turknippon.com/assets/img/close-mobile.svg") no-repeat center center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
    margin-left: 20px;
}
#mobileMenu form {
    position: relative;
    margin: 20px 0;
}
#mobileMenu form label {
    width: 100%;
}
#mobileMenu form label input {
    border: 2px solid #dce5f1;
    height: 55px;
    border-radius: 55px;
    width: 100%;
    padding: 0 50px 0 20px;
    font-size: 16px;
}
#mobileMenu form label input::placeholder {
    color: #cccccc;
}
#mobileMenu form label input:-ms-input-placeholder {
    color: #cccccc;
}
#mobileMenu form label input::-ms-input-placeholder {
    color: #cccccc;
}
#mobileMenu form button {
    border: none;
    position: absolute;
    top: 50%;
    right: 20px;
    color: #dd6288;
    font-size: 22px;
    margin: -12px 0;
    background: none;
}
#mobileMenu ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobileMenu ul.menu li {
    font: 23px "Visby CF";
    margin: 13px 0;
}
#mobileMenu ul.menu li a {
    color: #1d1d1b;
    text-decoration: none;
    display: block;
}
#mobileMenu ul.menu li a .icon {
    margin-right: 10px;
    display: inline-block;
    transform: translateY(-2px);
    position: relative;
    z-index: -1;
}
#mobileMenu ul.menu li.open > ul {
    margin-left: 0;
    opacity: 1;
    pointer-events: auto;
}
#mobileMenu ul.menu li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    position: fixed;
    background: #fff;
    left: 0;
    width: 100%;
    padding: 0 30px;
    margin-left: 100%;
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
    top: 100px;
    z-index: 10;
}
#mobileMenu ul.menu li ul li {
    font-size: 21px;
}
#mobileMenu ul.menu li ul li.back {
    background: url("../img/arrow-slider-blue.svg") no-repeat 0 0;
    width: 40px;
    height: 20px;
    background-size: 100%;
    margin-bottom: 40px;
}
#mobileMenu ul.menu li ul li.head {
    color: #a1a1a1;
    font: 14px "Gilroy Bold" !important;
    letter-spacing: 0.1em;
}
#mobileMenu ul.menu li ul li ul {
    height: calc(100vh - 210px);
    overflow: auto;
}
#mobileMenu .bottomMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0 30px;
    width: 100%;
    margin-bottom: 20px;
    font: 17px "Gilroy SemiBold";
}
#mobileMenu .bottomMenu .get-offer-btn {
    background: url("../img/icon1.svg") no-repeat left center;
    display: inline-block;
    text-decoration: none;
    color: #1d1d1b;
    padding: 4px 0 4px 40px;
}
#mobileMenu .bottomMenu .tel {
    display: inline-block;
    text-decoration: none;
    color: #1d1d1b;
    float: right;
}
#mobileMenu .bottomMenu .tel i {
    color: #1080c4;
    font-size: 25px;
    margin-right: 10px;
    transform: translateY(4px);
}
.searchBar {
    transition: 0.5s;
    position: fixed;
    width: 100%;
    padding: 80px 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.searchBar:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1d1d1b;
    opacity: 0.7;
}
.searchBar.active {
    transition: 0.5s;
    pointer-events: inherit;
    opacity: 1;
    visibility: inherit !important;
}
.searchBar .form {
    width: 100%;
    max-width: 870px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 100px 90px;
    box-shadow: 0px 0px 22px rgba(0, 161, 227, 0.25);
    background: #fff;
    border-radius: 30px;
}
@media only screen and (max-width: 767px) {
    .searchBar .form {
        padding: 35px 40px;
    }
}
.searchBar .form .close {
    background: url("../img/close-mobile.svg") no-repeat center center;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -40px;
    right: 30px;
    background-size: 100%;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.searchBar .form .inputBar {
    position: relative;
}
.searchBar .form .inputBar .form-group {
    margin-bottom: 0 !important;
}
.searchBar .form .inputBar label {
    width: 100%;
}
.searchBar .form .inputBar label input {
    border: 2px solid #dce5f1;
    padding: 0 60px 0 30px;
    height: 65px;
    border-radius: 65px;
    outline: 0;
    box-shadow: inherit;
    font-size: 16px;
    color: "Gilroy Black" !important;
    width: 100%;
}
.searchBar .form .submit {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 7px;
    background: #dd6288 url("../img/search.svg") no-repeat center center;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.header {
    height: 100px;
    position: fixed;
    width: 100%;
    z-index: 50;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font: 15px "Gilroy Medium";
    color: #fff;
    transition: 0.4s;
    transform: translateY(-100%);
}
@media only screen and (max-width: 1200px) {
    .header {
        padding: 0 20px;
    }
}
.header.fixed {
    background: #fff;
    border-bottom: 1px solid #e2ebf1;
    color: #1d1d1b;
}
.header.fixed .search-btn {
    background-image: url("../img/search-color.svg");
    border-color: rgba(16, 128, 196, 0.1);
}
.header.fixed .logo .logo2 {
    display: block;
}
.header.fixed .logo .logo1 {
    display: none;
}
.header.fixed ul.menu li a {
    color: black;
}
.header.fixed ul.menu li.lang span i {
    color: #1080c4;
}
.header.fixed .get-offer-btn {
    color: #1d1d1b;
    border-color: rgba(16, 128, 196, 0.1);
}
.header.fixed .get-offer-btn:before {
    filter: initial;
}
.header.fixed .online-btn span {
    color: #1d1d1b;
}
.header.fixed .online-btn span:before {
    background-image: url("../img/icon2-color.svg");
}
@media (min-width: 1200px) {
    .header:hover {
        background: #fff;
        border-bottom: 1px solid #e2ebf1;
        color: #1d1d1b;
    }
    .header:hover .search-btn {
        background-image: url("../img/search-color.svg");
        border-color: rgba(16, 128, 196, 0.1);
    }
    .header:hover .logo .logo2 {
        display: block;
    }
    .header:hover .logo .logo1 {
        display: none;
    }
    .header:hover ul.menu li a {
        color: black;
    }
    .header:hover ul.menu li.lang span i {
        color: #dd6288;

    }
    .header:hover .get-offer-btn {
        color: #1d1d1b;
        border-color: rgba(16, 128, 196, 0.1);
    }
    .header:hover .get-offer-btn:before {
        filter: initial;
    }
    .header:hover .online-btn span {
        color: #1d1d1b;
    }
    .header:hover .online-btn span:before {
        background-image: url("https://www.turknippon.com/assets/img/icon2-color.svg");
    }
}
@media (min-width: 2000px) {
    .header {
        font-size: 19px;
    }
}
@media (max-width: 1530px) {
    .header {
        font-size: 13px;
    }
}
@media (max-width: 1450px) {
    .header {
        height: 75px;
    }
}
@media (max-width: 1366px) {
    .header {
        font-size: 12px;
    }
}
.header .d-flex {
    height: 100px;
}
@media (max-width: 1450px) {
    .header .d-flex {
        height: 75px;
    }
}
@media only screen and (max-width: 1200px) {
    .header .d-flex {
        display: none !important;
    }
}
.header .search-btn {
    cursor: pointer;
    background: url("../img/search.svg") no-repeat center center;
    height: 100%;
    min-width: 90px;
    transition: 0.4s;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 36px;
}
@media (max-width: 1450px) {
    .header .search-btn {
        min-width: 65px;
        margin-right: 23px;
    }
}
.header .col-xl-5:nth-child(1) ul.menu li:first-child .submenu .row > div:nth-child(1) {
    width: 20%;
}
.header .col-xl-5:nth-child(1) ul.menu li:first-child .submenu .row > div:nth-child(3) {
    width: 30%;
}
.header .col-xl-5:nth-child(1) ul.menu li:nth-child(2) .submenu .container {
    max-width: 985px;
    padding: 0;
}
.header .col-xl-5:nth-child(1) ul.menu li:nth-child(2) .submenu .row > div:nth-child(2) .list p:before {
    background: #5cac31;
}
.header .col-xl-5:nth-child(1) ul.menu li:nth-child(2) .submenu .row > div:nth-child(3) .list p:before {
    background: #1b7dc2;
}
.header .col-xl-5:nth-child(1) ul.menu li:nth-child(2) .submenu .list .name {
    max-width: 185px;
}
.header .col-xl-5:nth-child(1) ul.menu li:nth-child(2) .submenu .list .icon {
    height: 40px;
}
.header .col-xl-5:last-child ul.menu li:first-child .submenu .cols {
    margin: 0 20px;
}
@media (max-width: 1450px) {
    .header .col-xl-5:last-child ul.menu li:first-child .submenu .cols {
        margin: 0 15px;
    }
}
.header ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}
.header ul.menu li {
    padding: 0 20px;
}
.header ul.menu li:first-child {
    padding-left: 0;
}
@media (max-width: 1700px) {
    .header ul.menu li {
        padding: 0 15px;
    }
}
@media (max-width: 1650px) {
    .header ul.menu li {
        padding: 0 10px;
    }
}
@media (max-width: 1450px) {
    .header ul.menu li {
        padding: 0 11px;
    }
}
@media (max-width: 1260px) {
    .header ul.menu li {
        padding: 0 8px;
    }
}
.header ul.menu li a {
    display: block;
    height: 100%;
    text-decoration: none;
    letter-spacing: 0.05em;
    color: #fff;
    transition: 0.4s;
    padding: 41px 0;
}
@media (max-width: 1450px) {
    .header ul.menu li a {
        padding: 29px 0;
    }
}
.header ul.menu li:hover a {
    color: #dd6288;
}
.header ul.menu li.open .submenu {
    transition: 0.4s;
    opacity: 1;
    visibility: inherit !important;
    pointer-events: auto;
}
.header ul.menu li .submenu {
    transition: 0.4s;
    border-top: 1px solid #e2ebf1;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 325px;
    background: #fff;
    z-index: 1;
    height: auto;
    padding: 90px 0;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.header ul.menu li .submenu.subs {
    padding: 40px 20px;
}
@media (max-width: 1450px) {
    .header ul.menu li .submenu.subs {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.header ul.menu li .submenu .container {
    padding: 0 20px;
}
.header ul.menu li .submenu .rows {
    display: flex;
    justify-content: center;
}
.header ul.menu li .submenu .rows .cols {
    margin: 0 40px;
}
.header ul.menu li .submenu .rows .cols:last-child {
    margin-right: 0;
}
.header ul.menu li .submenu .rows .cols:first-child {
    margin-left: 0;
}
.header ul.menu li .submenu:before,
.header ul.menu li .submenu:after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    width: 100vw;
    height: 100.8%;
    border-top: 1px solid #e2ebf1;
    background: #fff;
    z-index: -1;
    transform: translateX(100%);
}
.header ul.menu li .submenu:after {
    left: 0;
    transform: translateX(-100%);
    right: initial;
}
.header ul.menu li .submenu .container {
    max-width: 1525px;
}
.header ul.menu li .submenu .list .icon {
    height: 25px;
    margin-bottom: 10px;
}
.header ul.menu li .submenu .list .icon img {
    max-height: 100%;
}
.header ul.menu li .submenu .list .head {
    font: 20px "Gilroy Bold";
    margin-bottom: 10px;
}
.header ul.menu li .submenu .list .head a {
    color: #1d1d1b;
    text-decoration: none;
    padding: 0;
}
.header ul.menu li .submenu .list .name {
    font: 20px "Gilroy Bold";
    margin-bottom: 10px;
    max-width: 140px;
}
.header ul.menu li .submenu .list .name a {
    color: #1d1d1b;
    text-decoration: none;
    padding: 0;
}
.header ul.menu li .submenu .list p {
    font: 15px/22px "Gilroy Regular";
    max-width: 200px;
}
.header ul.menu li .submenu .list p:before {
    content: "";
    display: block;
    background: #ffcb0b;
    width: 65px;
    height: 3px;
    margin: 25px 0;
}
.header ul.menu li .submenu .list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}
.header ul.menu li .submenu .list ul li {
    font: 15px "Gilroy Medium";
    padding: 0;
}
.header ul.menu li .submenu .list ul li a {
    color: #1d1d1b;
    padding: 4px 0;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}
.header ul.menu li .submenu .list ul li a:hover {
    color: #1080c4;
}
.header ul.menu li .submenu .list ul li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}
.header ul.menu li .submenu .list ul li ul li a:before {
    content: "-";
    color: #1080c4;
    font-family: "Gilroy Bold";
    margin-right: 7px;
}
.header ul.menu li .submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header ul.menu li .submenu ul li {
    font: 18px "Gilroy Regular";
    padding: 0;
}
@media (max-width: 1450px) {
    .header ul.menu li .submenu ul li {
        font-size: 13px !important;
    }
}
.header ul.menu li .submenu ul li a {
    color: #1d1d1b;
    padding: 4px 0;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}
.header ul.menu li .submenu ul li a:hover {
    color: #1080c4;
}
.header ul.menu li.lang {
    letter-spacing: 0.05em;
    position: relative;
    margin-right: 10px;
}
.header ul.menu li.lang ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 21px 0 0;
}
.header ul.menu li.lang ul li {
    padding: 0;
}
.header ul.menu li.lang ul li button {
    padding: 4px 10px 4px 19px;
    color: #1d1d1b;
}
@media (max-width: 1450px) {
    .header ul.menu li.lang ul li button {
        padding-left: 10px;
    }
}
.header ul.menu li.lang ul li button:hover {
    color: #1080c4;
}
.header ul.menu li.lang span {
    display: flex;
    height: 100%;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
}
.header ul.menu li.lang span.open {
    color: #1d1d1b;
    position: relative;
    z-index: 1;
}
.header ul.menu li.lang span.open i {
    transform: rotate(-180deg);
}
.header ul.menu li.lang span i {
    margin-left: 5px;
    transition: 0.4s;
    font-size: 19px;
}
.header .logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .logo .logo2 {
    display: none;
}
@media only screen and (max-width: 1200px) {
    .header .logo {
        height: 75px;
        justify-content: left;
    }
}
.header .logo img {
    width: auto !important;
    height: auto !important;
}
@media (max-width: 1450px) {
    .header .logo img {
        max-width: 178px;
    }
}
.header .mobLang {
    letter-spacing: 0.05em;
    float: right;
    position: relative;
    margin: 29px 14px 0 0;
    display: none;
    font-size: 17px;
}
@media only screen and (max-width: 1200px) {
    .header .mobLang {
        display: block;
    }
}
.header .mobLang ul {
    position: absolute;
    display: none;
    top: 100%;
    right: 0;
    width: 49px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(16, 128, 196, 0.1);
}
.header .mobLang ul li {
    padding: 0;
}
.header .mobLang ul li a {
    padding: 4px 10px;
    color: #1d1d1b;
    text-decoration: none;
    display: block;
}
.header .mobLang span {
    display: flex;
    height: 100%;
    align-items: center;
    cursor: pointer;
}
.header .mobLang span.open i {
    transform: rotate(-180deg);
}
.header .mobLang span i {
    margin-left: 5px;
    transition: 0.4s;
    font-size: 19px;
}
.header .navbar {
    display: none;
    border: 2px solid #d5e0f0;
    float: right;
}
@media only screen and (max-width: 1200px) {
    .header .navbar {
        display: block;
        width: 50px;
        height: 50px;
        background-color: #fff;
        padding: 11px 11px;
        border-radius: 50%;
        margin: 12px 0 0 auto;
    }
    .header .navbar span {
        background-color: #1080c4;
        width: 24px;
        margin: 5px 0;
        height: 3px;
        display: block;
    }
    .header .navbar span:last-child {
        width: 12px;
    }
}
.header .get-offer-btn {
    height: 100%;
    display: flex;
    text-decoration: none;
    color: #fff;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 140px;
    transition: 0.4s;
}
.header .get-offer-btn:hover {
    background: #f7fafb;
    color: #1080c4;
}
.header .get-offer-btn:hover:before {
    background-image: url("https://www.turknippon.com/assets/img/icon1.svg");
    filter: initial;
}
@media (max-width: 1650px) {
    .header .get-offer-btn {
        min-width: 140px;
    }
}
@media (max-width: 1366px) {
    .header .get-offer-btn {
        min-width: 108px;
        margin-left: 10px;
    }
}
.header .get-offer-btn:before {
    content: "";
    display: inline-block;
    background: url("https://www.turknippon.com/assets/img/icon1.svg") no-repeat 0 0;
    background-size: 100%;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: 0.4s;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
@media (max-width: 1366px) {
    .header .get-offer-btn:before {
        width: 18px;
        height: 18px;
        background-size: 100%;
    }
}
.header .online-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    min-width: 210px;
    cursor: pointer;
    transition: 0.4s;
}
@media (max-width: 1650px) {
    .header .online-btn {
        min-width: 180px;
    }
}
@media (max-width: 1366px) {
    .header .online-btn {
        min-width: 170px;
    }
}
.header .online-btn:hover {
    background: #f7fafb;
}
.header .online-btn:hover span {
    color: #1080c4;
}
.header .online-btn:hover span:before {
    background-image: url("https://www.turknippon.com/assets/img/icon2-color.svg");
}
.header .online-btn.open .onlineSub {
    transition: 0.4s;
    opacity: 1;
    visibility: inherit !important;
    pointer-events: auto;
}
.header .online-btn span {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: 0.4s;
}
.header .online-btn span:before {
    content: "";
    background: url("https://www.turknippon.com/assets/img/icon2.svg") no-repeat left center;
    width: 19px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    transition: 0.4s;
    vertical-align: bottom;
}
@media (max-width: 1366px) {
    .header .online-btn span:before {
        width: 13px;
        height: 13px;
        background-size: 100%;
    }
}
.header .online-btn .onlineSub {
    transition: 0.4s;
    border-top: 1px solid #e2ebf1;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1;
    height: auto;
    padding: 30px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.header .online-btn .onlineSub ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.header .online-btn .onlineSub ul li {
    font: 18px "Gilroy Regular";
}
@media (max-width: 1450px) {
    .header .online-btn .onlineSub ul li {
        font-size: 15px;
    }
}
.header .online-btn .onlineSub ul li a {
    color: #1d1d1b;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
}
.header .online-btn .onlineSub ul li a:hover {
    color: #1080c4;
}
