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

.filter-gallery {
  width: 100%;
}
.filter-gallery .filter {
  list-style: none;
  padding: 10px 15px;
  margin: 0;
}
.filter-gallery .filter li {
  display: inline-block;
}
.filter-gallery .filter li button {
  cursor: pointer;
  background: #02000000;
  border-width: 1px;
  border-color: #fff;
  border-radius: 15px;
  padding: 4px 15px;
  color: #000;
  font-size: 15px;
  width: 150px;
  outline: none;
  height: 45px;
  font-family: 'Poppins';
  font-weight: 500;
} 
.filter-gallery .filter li.active button {
  color: #fff;
  background: #ff6600;
  background: linear-gradient(-45deg, #ff6600, #072b40, rgb(0 61 144 / 90%), #203582);
  background-size: 400% 400%;
  animation: gradient 7s ease-out infinite;
}
.filter-gallery .gallery {
  width: 100%;
  padding: 10px;
  float: left;
  transition: all 0.7s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
}
.filter-gallery .gallery li {
  width: 48%;
  /* height: 350px; */
  float: left;
  padding: 5px;
  list-style: none;
  transition: all 0.7s ease;
}
@media screen and (max-width: 1024px) {
  .filter-gallery .gallery li {
    width: 33.33%;
  }

}
@media screen and (max-width: 320px) {
  .filter-gallery .gallery li {
    width: 50%;
  }
}
.filter-gallery .gallery li a {
  display: block;
  width: 100%;
}
.filter-gallery .gallery li a img {
  width: 100%;
  /* height: 155px; */
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .filter-gallery .gallery li a img {
    height: 100px;
  }
}
.filter-gallery .gallery li.shown {
  transform: scale(1);
  opacity: 1;
}
.filter-gallery .gallery li.hidden {
  transform: scale(0.3);
  opacity: 0;
  width: 0px;
  height: 0px;
  padding: 0;
}
.filter-gallery .gallery .gallery-single {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  background: #363636;
  z-index: 1;
  padding: 10px;
}
.filter-gallery .gallery .gallery-single .gallery-single-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.filter-gallery .gallery .gallery-single .gallery-single-inner #btnClose {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-size: 30px;
  padding: 0;
  color: #fff;
}
.filter-gallery .gallery .gallery-single .gallery-single-inner img {
  max-width: 100%;
  height: 330px;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .filter-gallery .gallery .gallery-single .gallery-single-inner img {
    height: 195px;
  }
}
.filter-gallery .gallery .gallery-single .gallery-single-inner h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.filter-gallery .gallery .gallery-single .gallery-single-inner p {
  font-size: 16px;
  font-family: Arial;
  line-height: 1.4;
  margin-bottom: 10px;
}
.filter-gallery .gallery.shown .gallery-single {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.7s ease;
}

#panel {
    position: fixed;
    right: -260px;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: visible;
    max-width: 260px;
    background: #ffffff;
    z-index: 253;
}

@media (min-width: 1200px) {
    #panel {
        display: none !important;
    }
}

#panel .mobile-menu {
    overflow-y: scroll;
    height: 100%;
}

#panel .mobile-menu .inner ul.menu {
    padding: 26px 0 20px 0;
}

#panel .mobile-menu .inner ul.menu li {
    position: relative;
    font: 19px "Poppins";
    letter-spacing: 1px;
}

#panel .mobile-menu .inner ul.menu li a {
    color: black;
    padding: 10px 20px;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none;
}

#panel .mobile-menu .inner ul.menu li ul {
    display: none;
    list-style: none;
    padding: 0;
    letter-spacing: normal;
}

#panel .mobile-menu .inner ul.menu li ul li {
    font: 17px "Poppins";
}

#panel .mobile-menu .inner ul.menu li ul li a {
    padding: 10px 10px 10px 25px;
    color: #585858;
    background: #ffffff;
    font-size: 14px;
    letter-spacing: 0;
}

#panel .mobile-menu .inner ul.menu li ul li.active a {
    background: black;
}

a {
    color: black;
    text-decoration: none;
}

.popup-modal .modal-dialog {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.popup-modal .modal-dialog .modal-content {
    display: inline-block;
    border-radius: initial;
    border: none;
}

.popup-modal .modal-dialog .modal-content .close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
    margin: 5px 15px;
}

.popup-modal .modal-dialog .modal-content .modal-header {
    text-align: left;
    min-height: 49px;
}

.popup-modal .modal-dialog .modal-content .modal-header .modal-title {
    font: 18px "Poppins";
    padding: 0 25px 0 0;
}

.popup-modal .modal-dialog .modal-content .modal-body {
    font: 15px "Poppins";
}

body {
    margin: 0;
    padding: 0;
    font: 17px "Poppins";
    overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4,
body b,
body strong {
    font-family: 'Poppins', sans-serif;
}

body .p_0 {
    padding: 0 !important;
}

body .p_r_0 {
    padding-right: 0 !important;
}

body img {
    max-width: 100%;
}

body.altpage ul.menu li a {
    color: black;
}

body.altpage ul.menu li.lang span {
    color: black;
}

body.altpage ul.menu li.lang span i {
    color: #ffffff;
}

body.altpage ul.menu li.lang ul {
    background: black;
}

body.altpage ul.menu li.lang ul li a {
    color: #ffffff;
}

body.altpage ul.menu li.search-btn i {
    color: #ffffff;
}

body.altpage .footer-ust {
    display: none;
}

@media only screen and (max-width: 1200px) {
    body.altpage footer .footer-alt {
        border-top: none;
    }
}

#back-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    border: 2px solid #ff6600;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    line-height: 45px;
    opacity: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    font-size: 40px;
    z-index: -9999;
    background: #ff6600;
}

@media only screen and (max-width: 1023px) {
    #back-top {
        bottom: 80px;
    }
}

#back-top.show {
    opacity: 1;
    z-index: 50;
}

.pagination {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}

.pagination ul li {
    display: inline-block;
    width: 42px;
    height: 42px;
    border: 2px solid #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-align: center;
    line-height: 34px;
    margin: 0 3px;
    vertical-align: middle;
}

.pagination ul li a,
.pagination ul li span {
    border: none;
    color: black;
    text-decoration: none;
    font: 17px "proxima_boldibold";
    display: block;
    line-height: 39px;
    height: auto;
    background: none !important;
    padding: 0;
    float: none;
}

.pagination ul li.active,
.pagination ul li:hover {
    border-color: #f2f2f2;
}

.pagination ul li.active a,
.pagination ul li.active span,
.pagination ul li:hover a,
.pagination ul li:hover span {
    color: #ffffff !important;
}

.pagination ul li:first-child span,
.pagination ul li:first-child a,
.pagination ul li:last-child span,
.pagination ul li:last-child a {
    font-size: 23px;
    line-height: 35px;
}

.thank-you {
    text-align: center;
}

.thank-you .btns {
    margin: 20px 0 0;
}

.search-page {
    padding: 20px 0;
}

.teklif-iste {
    max-width: 620px;
    margin: 0 auto;
    display: none;
    width: 100%;
}

.teklif-iste h2 {
    margin: 0 0 35px;
}

.teklif-iste .g-recaptcha {
    width: 230px;
}

/*-----Overlay Search-----*/
#overlay-search-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 218, 0, 0.93);
    z-index: 99999;
}

#overlay-search-cover.none {
    visibility: hidden;
    opacity: 0;
}

#overlay-search-cover #overlay-search-content {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#overlay-search-cover #overlay-search-content strong {
    color: #fbfbfb;
    margin: 0 0 20px 0;
    line-height: 1em;
    font-size: 25px;
}

#overlay-search-cover #overlay-search-content form {
    position: relative;
}

#overlay-search-cover #overlay-search-content form input {
    font-size: 25px;
    color: #fbfbfb;
    border: none;
    border-bottom: 2px solid #fbfbfb;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 6px 85px 0 0;
    height: 70px;
    line-height: 1em;
    background: transparent;
}

#overlay-search-cover #overlay-search-content form input::-webkit-input-placeholder {
    color: #fbfbfb;
}

#overlay-search-cover #overlay-search-content form input::-moz-placeholder {
    color: #fbfbfb;
}

#overlay-search-cover #overlay-search-content form input:-ms-input-placeholder {
    color: #fbfbfb;
}

#overlay-search-cover #overlay-search-content form input::-ms-input-placeholder {
    color: #fbfbfb;
}

#overlay-search-cover #overlay-search-content form button {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    width: 70px;
    height: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border: 2px solid #fbfbfb;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    font-size: 25px;
}

#overlay-search-cover #overlay-search-content form button i {
    color: #fbfbfb;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

#overlay-search-cover #overlay-search-content form button:hover {
    background: #fbfbfb;
}

#overlay-search-cover #overlay-search-content form button:hover i {
    color: #ffffff;
}

#overlay-search-cover #overlay-close {
    position: absolute;
    top: 30px;
    right: 80px;
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    outline: none;
    cursor: pointer;
}

#overlay-search-cover #overlay-close .icon-bar {
    width: 40px;
    height: 2px;
    background: #fbfbfb;
    display: block;
    margin: 0 auto;
    position: relative;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

#overlay-search-cover #overlay-close .icon-bar+.icon-bar {
    margin-top: 4px;
}

#overlay-search-cover #overlay-close .icon-bar:nth-child(2) {
    visibility: hidden;
    opacity: 0;
}

#overlay-search-cover #overlay-close .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 6px;
}

#overlay-search-cover #overlay-close .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -6px;
}

#overlay-search-cover #overlay-close:hover {
    background: #fbfbfb;
}

#overlay-search-cover #overlay-close:hover .icon-bar {
    background: #ffffff;
}

.container_fix {
    max-width: 100vw !important;
    padding: 0 !important;
}

.container-fluid {
    max-width: 1605px;
    padding: 0 60px;
}

@media only screen and (max-width: 1200px) {
    .container-fluid {
        padding: 0 20px;
    }
}

form .row {
    margin: 0 -10px;
}

form .row>div {
    padding: 0 10px;
}

form h3 {
    font-size: 20px !important;
}

form .form-group {
    position: relative;
    float: left;
    width: 100%;
}

form .form-group>label {
    font-weight: normal;
    color: #9A9A9A;
    font-size: 14px;
    position: absolute;
    top: 14px;
    left: 15px;
    margin: 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #ffffff;
}

form .form-group.foc>label {
    font-size: 10px;
    top: -11px;
    padding: 0 4px;
}

form .form-group input,
form .form-group textarea,
form .form-group select,
form .form-group .nice-select {
    border-radius: inherit;
    border: 1px solid #000000;
    height: 50px;
    color: #9A9A9A;
    font-size: 14px;
    font-family: "Poppins";
    -webkit-box-shadow: inherit !important;
    box-shadow: inherit !important;
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

form .form-group input:focus,
form .form-group textarea:focus,
form .form-group select:focus,
form .form-group .nice-select:focus {
    border-color: #ff6600;
}

form .form-group textarea {
    padding: 15px;
}

form .form-group .nice-select span {
    display: block;
    padding: 5px 0 0;
}

form .form-group .nice-select:after {
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #ffdf24;
    border-right: 2px solid #ffdf24;
    right: 20px;
    margin-top: -7px;
}

form .form-group .nice-select .list {
    width: 100%;
    border-radius: inherit;
    max-height: 300px;
    overflow: auto;
}

form .form-group textarea {
    resize: none;
    height: 100px;
    width: 100%;
}

form .form-group ::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9A9A9A;
}

form .form-group :-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9A9A9A;
}

form .form-group ::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9A9A9A;
}

form .form-group ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9A9A9A;
}

form .form-group :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #9A9A9A;
}

form .form-group ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #9A9A9A;
}

form .input-group {
    width: 100%;
}

form .input-group input {
    border-radius: inherit;
    border: 1px solid #E1E1E1;
    height: 50px;
    color: #9A9A9A;
    font-size: 14px;
    -webkit-box-shadow: inherit !important;
    box-shadow: inherit !important;
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

form .input-group input:focus {
    border-color: #ffffff;
}

form .input-group-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    z-index: 5;
}

form .input-group-btn span {
    width: 100%;
    border-radius: inherit;
    background-color: #ffffff !important;
    background-image: inherit !important;
    color: black !important;
    font: 20px/50px "proxima_boldibold";
    border: none;
    height: 50px;
    display: block;
    text-align: center;
    cursor: pointer;
}

@media only screen and (max-width: 1023px) {
    form .input-group-btn span {
        font-size: 13px;
    }
}

form .g-recaptcha {
    display: inline-block;
    overflow: hidden;
}

form .formError {
    margin-left: -100px;
}

form .submitbutton {
    margin: 20px 0;
}

form .submitbutton button {
    background: #ff6600;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    padding: 11px 58px;
    -webkit-transition: .4s;
    border-radius: 14px;
    -o-transition: .4s;
    transition: .4s;
    /* border: 1px solid black; */
    cursor: pointer;
    height: 58px;
    vertical-align: top;
}

form .submitbutton button:hover {
    background: #ffffff;
    color: black;
}

header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 30;
}

@media (min-width: 1200px) {
    header {
        right: 0 !important;
    }
}

header.over ul.menu li a {
    color: black;
}

header.over ul.menu li.lang span {
    color: black;
}

header.over ul.menu li.lang span i {
    color: #ffffff;
}

header.over ul.menu li.lang ul {
    background: black;
}

header.over ul.menu li.lang ul li a {
    color: #ffffff;
}

header.over ul.menu li.search-btn i {
    color: #ffffff;
}

header .bgs {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    width: 100%;
    position: absolute;
    left: 0;
    height: 0;
    display: block;
    background: #ffffff;
    top: 0;
}

header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    height: 0;
    width: 100%;
    opacity: 0;
}

header.fixed {
    position: fixed;
}

header.fixed:before {
    height: 100px;
    opacity: 1;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: -3px -10px 20px 5px rgb(0 0 0);
}

header.fixed #logo a {
    height: 60px;
    padding: 0;
}

@media only screen and (max-width: 480px) {
    header.fixed #logo a {
        padding: 21px 10px 0;
    }
}

header.fixed ul.menu {
    padding: 35px 0 0;
}

header.fixed ul.menu li a {
    color: black;
}

header.fixed ul.menu li.lang span {
    color: black;
}

header.fixed ul.menu li.lang span i {
    color: black;
}

header.fixed ul.menu li.lang ul {
    background: black;
}

header.fixed ul.menu li.lang ul li a {
    color: #ffffff;
}

header.fixed ul.menu li.search-btn i {
    color: black;
}

header #logo a {
    display: block;
    background: #ffffffb8;
    height: 110px;
    text-align: center;
    width: 220px;
    padding: 10px 0px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

@media only screen and (max-width: 1200px) {
    header #logo a {
        padding: 65px 10px 0;
        height: 120px;
    }
}

@media only screen and (max-width: 480px) {
    header #logo a {
        width: 120px;
    }
}

header ul.menu {
    list-style: none;
    padding: 45px 10px 0;
    float: right;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

@media only screen and (max-width: 1200px) {
    header ul.menu {
        padding: 25px 0 0;
    }
}

@media only screen and (max-width: 1200px) {
    header ul.menu>li {
        display: none;
    }
}

header ul.menu>li>a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #ff6600;
    opacity: 0;
}

@media (max-width: 1300px) {
    header ul.menu>li:nth-child(3) .submenu {
        min-width: 890px !important;
    }

    header ul.menu>li:nth-child(3) .submenu .panel-group .panel .panel-body .row>div {
        width: 10%;
    }
}

header ul.menu li {
    float: left;
    font: 16px "Poppins";
    padding: 0 14px;
    position: relative;
    list-style-image: url(data:0);
}

header ul.menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1;
}

header ul.menu li:hover>a:before,
header ul.menu li.active>a:before {
    top: 30px;
    opacity: 1;
}

header ul.menu li.lang {
    margin: 0;
}

@media only screen and (max-width: 1200px) {
    header ul.menu li.lang {
        display: block;
    }
}

header ul.menu li.lang span {
    cursor: pointer;
    color: #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

header ul.menu li.lang span i {
    color: #ffffff;
    font-size: 27px;
    margin-right: 6px;
    vertical-align: sub;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

header ul.menu li.lang span.open i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

header ul.menu li.lang ul {
    position: absolute;
    top: 100%;
    left: 13px;
    background: #ffffff;
    border: 1px solid #ffffff;
    list-style: none;
    padding: 0;
    width: 100%;
    display: none;
}

header ul.menu li.lang ul li {
    float: none;
    text-align: center;
}

header ul.menu li.lang ul li a {
    color: black;
    padding: 3px 0;
}

@media only screen and (max-width: 1200px) {
    header ul.menu li.search-btn {
        display: block;
    }
}

header ul.menu li.search-btn i {
    cursor: pointer;
    color: #ffffff;
    font-size: 21px;
    margin: -5px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

header ul.menu li.sub-picture {
    position: static;
    position: initial;
}

header ul.menu li .submenu,
header ul.menu li .megamenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    padding: 60px 0;
    min-width: 400px;
}

header ul.menu li .submenu .sub,
header ul.menu li .megamenu .sub {
    max-width: 1200px;
    margin: 0 auto;
}

header ul.menu li .submenu .sub .rights,
header ul.menu li .megamenu .sub .rights {
    float: right;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

header ul.menu li .submenu .panel-group .panel,
header ul.menu li .megamenu .panel-group .panel {
    border: none;
    -webkit-box-shadow: initial;
    box-shadow: initial;
    background: none;
}

header ul.menu li .submenu .panel-group .panel .panel-heading,
header ul.menu li .megamenu .panel-group .panel .panel-heading {
    background: none;
    border: none;
    display: inline-block;
    width: 100%;
}

header ul.menu li .submenu .panel-group .panel .panel-heading a,
header ul.menu li .megamenu .panel-group .panel .panel-heading a {
    font: 22px/22px "Poppins";
    position: relative;
    padding: 15px 0px 13px 45px;
    color: black;
    border-radius: 25px 25px 0px 0px;
    border: 1px solid #00000040;
}

header ul.menu li .submenu .panel-group .panel .panel-heading a i,
header ul.menu li .megamenu .panel-group .panel .panel-heading a i {
    position: absolute;
    top: 20px;
    left: 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: url("../images/sprite.png") no-repeat -25px -31px;
    width: 20px;
    height: 20px;
}

header ul.menu li .submenu .panel-group .panel .panel-heading a.collapsed i,
header ul.menu li .megamenu .panel-group .panel .panel-heading a.collapsed i {
    background-position: 0 -23px;
    top: 16px;
}

header ul.menu li .submenu .panel-group .panel .panel-body,
header ul.menu li .megamenu .panel-group .panel .panel-body {
    border: none;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
}

header ul.menu li .submenu .panel-group .panel .panel-body .row,
header ul.menu li .megamenu .panel-group .panel .panel-body .row {
    margin: 0 -7px;
}

header ul.menu li .submenu .panel-group .panel .panel-body .row>div,
header ul.menu li .megamenu .panel-group .panel .panel-body .row>div {
    padding: 7px;
    width: 9%;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img {
    height: 100px;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a {
    font: 12px "Poppins";
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span {
    display: block;
    border: 1px solid #000000;
    height: 100%;
    overflow: hidden;
    text-align: center;
    width: 100%;
    margin: 0 0 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span .resim-att,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre .resim-thumb,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre .resim-thumb .resim-centered,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a span .resim-thumb .resim-centered img,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a span .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

header ul.menu li .submenu .panel-group .panel .panel-body .menu-list-img a:hover span,
header ul.menu li .megamenu .panel-group .panel .panel-body .menu-list-img a:hover span {
    border-color: #90979c;
}

header ul.menu li .submenu .row .mc-lg-8,
header ul.menu li .megamenu .row .mc-lg-8 {
    padding-right: 50px;
}

header ul.menu li .submenu .row>div:first-child ul li,
header ul.menu li .megamenu .row>div:first-child ul li {
    font-family: "Poppins";
}

header ul.menu li .submenu ul,
header ul.menu li .megamenu ul {
    list-style: none;
    padding: 0;
}

header ul.menu li .submenu ul li,
header ul.menu li .megamenu ul li {
    float: none;
    font: 16px "Poppins";
    padding: 8px 10px;
}

header ul.menu li .submenu ul li a,
header ul.menu li .megamenu ul li a {
    color: black;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

header ul.menu li .submenu ul li.active a,
header ul.menu li .submenu ul li:hover a,
header ul.menu li .megamenu ul li.active a,
header ul.menu li .megamenu ul li:hover a {
    color: #ff6600;
}

header ul.menu li .submenu .list,
header ul.menu li .megamenu .list {
    margin: 20px 0 10px;
    float: left;
    width: 100%;
}

header ul.menu li .submenu .list a,
header ul.menu li .megamenu .list a {
    font: 16px "Poppins";
    color: black;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font-weight: 500;
}

header ul.menu li .submenu .list a figure,
header ul.menu li .megamenu .list a figure {
    margin: 0;
    height: 115px;
    overflow: hidden;
}

header ul.menu li .submenu .list a span,
header ul.menu li .megamenu .list a span {
    height: 65px;
    vertical-align: middle;
    display: table-cell;
}

header ul.menu li .submenu .list a:hover,
header ul.menu li .megamenu .list a:hover {
    color: #ff6600;
}

header ul.menu li .megamenu {
    z-index: -1;
    padding: 0;
}

header ul.menu li .megamenu .mega {
    background: #ffffff;
    float: left;
    width: 100%;
    padding: 125px 0 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    box-shadow: rgb(60 63 66) 0px 20px 30px -10px;
}

header .mobile-btn {
    display: none;
    float: right;
}

header .mobile-btn .navbar-toggle {
    background: #ffffff;
    border-radius: inherit;
    margin: 15px 0 0 15px;
}

header .mobile-btn .navbar-toggle .icon-bar {
    background: black;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

header .mobile-btn .navbar-toggle.open {
    border: 1px solid #ff6600;
    background: #ff6600;
}

header .mobile-btn .navbar-toggle.open .icon-bar {
    background: #ffffff;
}

header .mobile-btn .navbar-toggle.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(-45deg) translateY(4.5px) translateX(-4.5px);
    -moz-transform: rotate(-45deg) translateY(4.5px) translateX(-4.5px);
    -ms-transform: rotate(-45deg) translateY(4.5px) translateX(-4.5px);
    -o-transform: rotate(-45deg) translateY(4.5px) translateX(-4.5px);
    transform: rotate(-45deg) translateY(4.5px) translateX(-4.5px);
}

header .mobile-btn .navbar-toggle.open .icon-bar:nth-child(2) {
    opacity: 0;
}

header .mobile-btn .navbar-toggle.open .icon-bar:nth-child(3) {
    -webkit-transform: rotate(45deg) translateY(-4.5px) translateX(-4.5px);
    -moz-transform: rotate(45deg) translateY(-4.5px) translateX(-4.5px);
    -ms-transform: rotate(45deg) translateY(-4.5px) translateX(-4.5px);
    -o-transform: rotate(45deg) translateY(-4.5px) translateX(-4.5px);
    transform: rotate(45deg) translateY(-4.5px) translateX(-4.5px);
}

@media only screen and (max-width: 1200px) {
    header .mobile-btn {
        display: block;
    }

    header .mobile-btn .navbar-toggle {
        display: block;
    }
}

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 70%;
    }

    50% {
        opacity: 0;
        top: 70%;
    }

    to {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 70%;
    }

    50% {
        opacity: 0;
        top: 70%;
    }

    to {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: absolute;
    right: 0;
    bottom: 40px;
    text-align: center;
    z-index: 19;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .scroll-btn {
        display: none;
    }
}

.scroll-btn a {
    float: right;
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #fff;
    border-radius: 23px;
    -webkit-box-shadow: 0 0 2px black;
    box-shadow: 0 0 2px black;
}

.scroll-btn .mouse span {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 7px;
    height: 10px;
    margin: -5px 0 0 -3.5px;
    background: #ff6600;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2s linear infinite;
    animation: ani-mouse 2s linear infinite;
}

.slider-box {
    height: 100vh;
}

@media only screen and (max-width: 767px) {
    .slider-box {
        height: 100%;
    }
}

/*.slider-box .slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 60px;
    color:#fff;
    /*opacity: 0.2;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: -50px -20px;
    z-index: 5;
}

.slider-box .slick-arrow.slick-prev {
    left: 3;
}

.slider-box .slick-arrow.slick-next {
    right: 3;
}*/

.slider-box .slick-dots {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    list-style: none;
    margin: -200px auto 80px;
    max-width: 1366px;
    padding: 0 60px;
}

@media only screen and (max-width: 1023px) {
    .slider-box .slick-dots {
        padding: 0 20px;
        margin: -50px 0 30px;
    }
}

.slider-box .slick-dots li {
    color: #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font: 22px "Poppins";
    position: relative;
    margin: 3px 0;
    cursor: pointer;
}

@media only screen and (max-width: 1023px) {
    .slider-box .slick-dots li {
        float: left;
        margin: 0 10px 0 0;
    }
}

.slider-box .slick-dots li span {
    position: absolute;
    left: 70px;
}

@media only screen and (max-width: 1023px) {
    .slider-box .slick-dots li span {
        display: none;
    }
}

.slider-box .slick-dots li button {
    outline: none;
    border: none;
    width: 22px;
    height: 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    background: #ffffff;
    text-indent: -999px;
    overflow: hidden;
    cursor: pointer;
}

.slider-box .slick-dots li.slick-active {
    color: #ffffff;
}

.slider-box .slick-dots li.slick-active button {
    width: 45px;
}

.slider-box .slider .item-slide {
    outline: none;
    height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    opacity: 0;
    position: relative;
}

.slider-box .slider .item-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    opacity: 0.3;
    z-index: 2;
}

.slider-box .slider .item-slide.slick-slide {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .slider-box .slider .item-slide {
        height: 100vh;
    }
}

.slider-box .tp-caption {
    position: absolute;
    right: 0;
    width: 100%;
    top: 30%;
    z-index: 3;
}

.slider-box .tp-caption .capBig {
    color: #ffffff;
    font-size: 20px;
    text-align: right;
    line-height: 24px;
    position: relative;
    padding: 50px;
    display: inline-block;
    float: right;
    width: 275px;
}

@media only screen and (max-width: 767px) {
    .slider-box .tp-caption .capBig {
        font-size: 16px;
        line-height: 20px;
        width: 100%;
        padding: 100px 0 0;
    }
    
}

.slider-box .tp-caption .capBig .b-1,
.slider-box .tp-caption .capBig .b-2,
.slider-box .tp-caption .capBig .b-3,
.slider-box .tp-caption .capBig .b-4,
.slider-box .tp-caption .capBig .b-5 {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    background: #ff6600;
}

@media only screen and (max-width: 1023px) {

    .slider-box .tp-caption .capBig .b-1,
    .slider-box .tp-caption .capBig .b-2,
    .slider-box .tp-caption .capBig .b-3,
    .slider-box .tp-caption .capBig .b-4,
    .slider-box .tp-caption .capBig .b-5 {
        display: none;
    }
}

.slider-box .tp-caption .capBig .b-1 {
    width: 15px;
    top: 50%;
    height: 0;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .b-1 {
        height: 100%;
        top: 0;
    }
}

.slider-box .tp-caption .capBig .b-2 {
    width: 0;
    height: 15px;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .b-2 {
        width: 260px;
    }
}

.slider-box .tp-caption .capBig .b-3 {
    width: 0;
    height: 15px;
    bottom: 0;
    top: inherit;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .b-3 {
        width: 260px;
    }
}

.slider-box .tp-caption .capBig .b-4 {
    width: 15px;
    height: 0;
    bottom: 0;
    top: inherit;
    right: inherit;
    left: 0;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .b-4 {
        height: 35px;
    }
}

.slider-box .tp-caption .capBig .b-5 {
    width: 15px;
    height: 0;
    right: inherit;
    left: 0;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .b-5 {
        height: 35px;
    }
}

@media (min-width: 1200px) {

    .slider-box .tp-caption .capBig .line1,
    .slider-box .tp-caption .capBig .line2 {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

.slider-box .tp-caption .capBig .line1 {
    font: 65px/65px "Poppins";
    width: 500px;
    float: right;
}

@media only screen and (max-width: 1200px) {
    .slider-box .tp-caption .capBig .line1 {
        font-size: 35px;
        line-height: 35px;
    }
}

.slider-box .tp-caption .capBig .line2 {
    width: 320px;
    float: right;
    min-width: 230px;
    margin-top: 15px;
}

@media only screen and (max-width: 767px) {
    .slider-box .tp-caption .capBig .line1 {
        font-size: 35px;
        width: 63%;
        line-height: 35px;
    }
    .slider-box .tp-caption .capBig .line2 {
        width: 100%;
    }
}

.btns {
    background: linear-gradient(-45deg, #a84300, #ff6600, #ff6600, #ff944d) !important;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    border-radius: 8px;
}

.btns:hover {
    color: #fff;
}

.btns2 {
    background: linear-gradient(-45deg, #fff, #cccccc, #fff, #cccccc) !important;
    color: #000;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    cursor: pointer;
    border-radius: 8px;
}

.btns2:hover {
    color: #333;
}

section {
    color: black;
    float: left;
    width: 100%;
}

section img {
    max-width: 100%;
}

section #boxes {
    float: left;
    width: 100vw;
    background-color: #000;
}

section #boxes h3 {
    color: #fbfbfb;
    font-size: 33px;
    margin: 0 0 50px;
}

@media only screen and (max-width: 767px) {
    section #boxes h3 {
        font-size: 23px;
    }
}

/* section .box1 {
    height: 560px;
} */

@media only screen and (max-width: 1200px) {
    section .box1 {
        height: auto;
        margin: 44px 0px 0px;
    }
}

.box-shadow {
    box-shadow: 0 5px 20px #2a2a2a;
}

section #box1 {
    float: left;
    width: 100%;
    background: transparent;
    color: black;
    font-size: 18px;
    text-align: center;
    padding: 60px 50px;
    position: relative;
    z-index: 20;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    overflow: hidden;
}

@media only screen and (max-width: 1023px) {
    section #box1 {
        padding: 30px;
    }
}

section #box1 h2 {
    color: #fbfbfb;
    font-size: 40px;
}

@media only screen and (max-width: 1023px) {
    section #box1 h2 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 480px) {
    section #box1 h2 {
        font-size: 28px;
    }
}

section #box1 .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 911px;
    margin: 25px auto;
    line-height: 28px;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    section #box1 .text {
        display: block;
    }
}

section #box2 {
    float: left;
    width: 100%;
    margin: 50px 0;
}

@media (min-width: 1200px) {
    section #box2 {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

section #box2 .news-slider {
    margin: 0 -26px;
}

section #box2 .news-slider .slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 60px;
    color:#fff;
    /*opacity: 0.2;*/
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: -50px -20px;
    z-index: 5;
}

section #box2 .news-slider .slick-arrow.slick-prev {
    left: 0;
}

@media only screen and (max-width: 1200px) {
    section #box2 .news-slider .slick-arrow.slick-prev {
        right: 80px !important;
    }
}

section #box2 .news-slider .slick-arrow.slick-next {
    right: 0;
}

section #box2 .news-slider .slick-arrow:hover {
    opacity: 1;
}

@media only screen and (max-width: 1200px) {
    section #box2 .news-slider .slick-arrow {
        top: -50px;
        left: inherit !important;
        right: 25px !important;
        margin: 0;
        font-size: 30px;
        color: black;
        background: transparent;
        padding: 0 14px;
        opacity: 1;
    }
}

section #box2 .news-slider .slick-arrow.slick-disabled {
    opacity: 0.4;
    cursor: no-drop;
}

section #box2 .news-slider .item {
    padding: 0 26px;
    outline: none;
    float: left;
}

section #box2 .news-slider .item a {
    display: block;
    text-decoration: none;
    color: #222;
    outline: none;
}

section #box2 .news-slider .item figure {
    margin: 0;
    overflow: hidden;
    height: 170px;
    position: relative;
}

section #box2 .news-slider .item figure .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
    background-color: #fff;
    border-radius: 26px;
}

section #box2 .news-slider .item figure .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section #box2 .news-slider .item figure .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section #box2 .news-slider .item figure .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section #box2 .news-slider .item figure .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section #box2 .news-slider .item figure img {
    width: 75% !important;
    height: 75%;
    object-fit: contain;
    filter: grayscale(100%);
}

section #box2 .news-slider .item figure img:Hover {
    filter: grayscale(0);
}

section #box2 .news-slider .item figure .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section #box2 .news-slider .item figure figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff6600;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-align: center;
    font: 19px/12px "Poppins";
    padding: 9px 14px;
}

section #box2 .news-slider .item figure figcaption b {
    display: block;
    font-size: 35px;
    line-height: 35px;
}

section #box2 .news-slider .item a .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 15px 0;
    line-height: 24px;
    height: 80px;
}

@media (min-width: 992px) {
    section #box2 .news-slider .item a:hover figure .resim-att {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    section #box2 .news-slider .item a:hover figure figcaption {
        padding: 9px 24px;
    }
}

section .box3 {
    float: left;
    width: 100%;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    section .box3 {
        /* opacity: 0; */
        filter: alpha(opacity=0);
    }
}

section .box3 .slick-dots {
    list-style: none;
    padding: 0;
    float: left;
    width: 100%;
    position: absolute;
    top: 110px;
    left: 0;
}

@media only screen and (max-width: 1023px) {
    section .box3 .slick-dots {
        top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    section .box3 .slick-dots {
        top: 30px;
    }
}

section .box3 .slick-dots li {
    float: left;
    margin: 0 2px;
    border: 1px solid #fbfbfb;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    background: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-indent: -999px;
    overflow: hidden;
    outline: none;
}

section .box3 .slick-dots li button {
    text-indent: -999px;
    overflow: hidden;
    background: none;
    border: none;
}

section .box3 .slick-dots li.slick-active {
    background: #fbfbfb;
}

section .box3 .item {
    outline: none;
    padding: 0 10px 0 0;
}

section .box3 .slider-for {
    z-index: 2;
}

section .box3 .slider-nav .slick-arrow {
    position: absolute;
    top: 100%;
    cursor: pointer;
    font-size: 40px;
    color:#fff;
    /*opacity: 0.2;*/
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: -35px -15px;
    z-index: 5;
}

section .box3 .slider-nav .slick-arrow.slick-prev {
    left: 80%;
}

section .box3 .slider-nav .slick-arrow.slick-next {
    right: 15%;
}

section .box3 h3 {
    margin: 40px 0 40px 0;
}

@media only screen and (max-width: 767px) {
    section .box3 h3 {
        margin: 0 0 20px;
    }
}

@media (min-width: 768px) {
    section .box3 .mcsm-7 {
        width: 53.4111%;
        float: left;
    }
}

@media (min-width: 768px) {
    section .box3 .mcsm-5 {
        width: 46.58911%;
        float: left;
    }
}

section .box3 figure {
    margin: 0;
    overflow: hidden;
    height: 545px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1023px) {
    section .box3 figure {
        height: 455px;
    }
}

@media only screen and (max-width: 767px) {
    section .box3 figure {
        height: auto;
        margin: 0 0 15px;
    }
}

@media (min-width: 768px) {
    section .box3 figure .resim-att {
        width: 100%;
        height: 100%;
        position: relative;
        float: left;
        padding: 0;
        text-align: center;
    }

    section .box3 figure .resim-att .resim-att-pre {
        width: 100%;
        height: 100%;
        position: relative;
    }

    section .box3 figure .resim-att .resim-att-pre .resim-thumb {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0 auto;
        overflow: hidden;
        max-width: 100%;
        max-height: 100%;
    }

    section .box3 figure .resim-att .resim-att-pre .resim-thumb .resim-centered {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translate(50%, 50%);
        -moz-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
        -o-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
    }

    section .box3 figure .resim-thumb .resim-centered img {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

section .box3 .hgroup {
    position: relative;
    background: #ff6600;
    height: 545px;
    padding: 0 50px;
    border-radius: 0 0 20px 0;
}

@media only screen and (max-width: 1023px) {
    section .box3 .hgroup {
        height: 455px;
        padding: 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    section .box3 .hgroup {
        height: auto;
    }
}

section .box3 .hgroup:before {
    content: "";
    position: absolute;
    top: 0;
    left: -60px;
    height: 100%;
    width: 60px;
    background: transparent
}

@media only screen and (max-width: 767px) {
    section .box3 .hgroup:before {
        display: none;
    }
}

section .box3 .hgroup i {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background: transparent;
}

section .box3 .hgroup h2 {
    font-size: 36px;
    line-height: 0;
    color: #fbfbfb;
}

@media only screen and (max-width: 1023px) {
    section .box3 .hgroup h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    section .box3 .hgroup h2 {
        font-size: 22px;
        line-height: 22px;
    }
}

section .box3 .hgroup .text {
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 20px 0;
    /* height: 60px; */
    color: #fbfbfb;
}

section .box3 .hgroup .item {
    vertical-align: middle;
    display: table-cell;
    float: none;
    text-align: left;
    height: 545px;
}

@media only screen and (max-width: 1023px) {
    section .box3 .hgroup .item {
        height: 455px;
    }
}

@media only screen and (max-width: 767px) {
    section .box3 .hgroup .item {
        height: auto;
        padding: 60px 0 40px;
    }
}

section #box4 {
    float: left;
    width: 100%;
    margin: 130px 0 0;
}

@media (min-width: 1200px) {
    section #box4 {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

@media only screen and (max-width: 767px) {
    section #box4 {
        margin: 50px 0;
    }
}

section #box4 #gorus-slider {
    margin: 70px auto;
    max-width: 960px;
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider {
        margin: 0 auto;
    }
}

section #box4 #gorus-slider .slick-list {
    padding: 20px 0;
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider .slick-list {
        padding: 60px 0 0;
    }
}

section #box4 #gorus-slider .slick-dots {
    list-style: none;
    padding: 0;
    float: left;
    width: 100%;
    margin: 20px 0 0 230px;
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider .slick-dots {
        margin: 20px 0 0;
    }
}

section #box4 #gorus-slider .slick-dots li {
    float: left;
    margin: 0 2px;
    border: 1px solid black;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    background: none;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-indent: -999px;
    overflow: hidden;
    outline: none;
}

section #box4 #gorus-slider .slick-dots li button {
    text-indent: -999px;
    overflow: hidden;
    background: none;
    border: none;
}

section #box4 #gorus-slider .slick-dots li.slick-active {
    background: black;
}

section #box4 #gorus-slider .item {
    font-size: 17px;
    position: relative;
    outline: none;
}

section #box4 #gorus-slider .item a {
    display: block;
    color: black;
    text-decoration: none;
    outline: none;
}

section #box4 #gorus-slider .item .images {
    width: 125px;
    height: 125px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    section #box4 #gorus-slider .item .images {
        position: absolute;
        top: 48px;
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider .item .images {
        position: relative;
    }
}

section #box4 #gorus-slider .item .images i {
    content: "";
    position: absolute;
    top: -58px;
    right: -63px;
    background: #ffffff;
    width: 64px;
    height: 58px;
}

@media (min-width: 1200px) {
    section #box4 #gorus-slider .item .images i {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

section #box4 #gorus-slider .item .images i.animated {
    opacity: 1;
}

section #box4 #gorus-slider .item .images .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section #box4 #gorus-slider .item .images .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section #box4 #gorus-slider .item .images .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section #box4 #gorus-slider .item .images .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section #box4 #gorus-slider .item .images .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    section #box4 #gorus-slider .item .text {
        padding: 0 0 0 230px;
    }
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider .item .text {
        margin: 15px 0 0;
        font-size: 14px;
    }
}

section #box4 #gorus-slider .item .text strong {
    font-size: 32px;
    display: block;
    margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
    section #box4 #gorus-slider .item .text strong {
        font-size: 22px;
    }
}

section #box4 #gorus-slider .item .text .alt {
    margin: 20px 0 0;
}

section #box4 #gorus-slider .item .text .alt small {
    font-size: 14px;
    display: block;
    margin: 5px 0;
}

section .box4 {
    float: left;
    width: 100%;
    margin: 50px 0;
}

@media (max-width: 992px) {
    section .box4 {
        margin: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    section .box4 {
        margin: 20px 0;
    }
}

section .box5 {
    float: left;
    width: 100%;
    margin: 0 0 150px;
}

@media (max-width: 992px) {
    section .box5 {
        margin: 40px 0 140px;
    }
}

@media only screen and (max-width: 767px) {
    section .box5 {
        margin: 20px 0 170px;
    }
}

section .box5 .list-first {
    float: left;
    width: 42.8999%;
    height: 325px;
    padding: 0 15px;
}

@media only screen and (max-width: 1023px) {
    section .box5 .list-first {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    section .box5 .list-first {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
}

section .box5 .list-first strong {
    font-size: 40px;
    display: block;
    margin: 0 0 15px;
    color: #fbfbfb;
}

@media only screen and (max-width: 1023px) {
    section .box5 .list-first strong {
        font-size: 30px;
    }
}

@media only screen and (max-width: 480px) {
    section .box5 .list-first strong {
        font-size: 23px;
    }
}

section .box5 .list-first p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 25px;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    section .box5 .list-first p {
        -webkit-line-clamp: inherit;
    }
}

section .box5 .list-first .orta {
    height: 325px;
    display: table-cell;
    vertical-align: middle;
    width: 100em;
    background: #ff6600;
    padding: 0 60px;
    border-radius: 16px;
}

@media only screen and (max-width: 1023px) {
    section .box5 .list-first .orta {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 767px) {
    section .box5 .list-first .orta {
        height: auto;
        width: 100%;
        display: block;
        padding: 30px;
        font-size: 15px;
    }
}

section .box5 .list {
    height: 260px;
    float: left;
    width: 33%;
    padding: 28px;
}

@media only screen and (max-width: 1023px) {
    section .box5 .list {
        width: 33%;
    }
   .btns {
      font-size: 12px;
      padding: 9px 27px;
    }
    .pdp {
        padding: 15% 10% 10% !important;
    }
}

@media only screen and (max-width: 767px) {
    section .box5 .list {
        width: 100%;
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 480px) {
    section .box5 .list {
        height: 137px;
        margin-bottom: 70px;
    }
}

@media (min-width: 1200px) {
    section .box5 .list {
        opacity: 0;
        filter: alpha(opacity=0);
    }
}

section .box5 .list.animated {
    opacity: 1;
}

section .box5 .list a {
    border: 1px solid #F0F0F0;
    display: block;
    text-decoration: none;
    height: 100%;
    padding: 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section .box5 .list a .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    border-radius: 12px;
    padding: 0;
    box-shadow: -9px 1px 20px 1px #9d9d9d;
    text-align: center;
}

section .box5 .list a .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section .box5 .list a .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section .box5 .list a .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section .box5 .list a .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section .box5 .list a:hover {
    border-color: #ffffff;
}

section .sayfabanner {
    text-align: center;
    height: 125px;
    margin: 110px 0 0;
    background: linear-gradient(-45deg, #000000, #ff6600, #000000, #333);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

section .sayfabanner h1,
section .sayfabanner h2 {
    font-size: 34px;
    height: 125px;
    vertical-align: middle;
    display: table-cell;
    width: 100em;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {

    section .sayfabanner h1,
    section .sayfabanner h2 {
        font-size: 30px;
        height: 97px;
    }
}

@media only screen and (max-width: 480px) {

    section .sayfabanner h1,
    section .sayfabanner h2 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    section .sayfabanner {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    section .sayfabanner {
        height: 97px;
    }
}

section article {
    float: left;
    width: 100%;
    background-color: black;
}

section article h2 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    section article h2 {
        font-size: 30px;
    }
}

section article h3 {
    font-size: 24px;
    margin: 11px 0px 15px;
}

@media only screen and (max-width: 767px) {
    section article h3 {
        font-size: 19px;
    }
}

section article .link {
    display: inline-block;
    border: 4px solid #ffffff;
    color: black;
    text-decoration: none;
    font: 17px "proxima_boldibold";
    padding: 12px 30px;
    margin: 20px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .link:hover {
    background: #ffffff;
}

section article ul {
    padding: 0 0 0 20px;
}

@media only screen and (max-width: 767px) {
    section article .maps {
        margin: 20px 0 0;
    }
}

@media only screen and (max-width: 480px) {
    section article address table tr td:first-child {
        width: 50px;
    }
}

section article .breadcrumb {
    padding: 0;
    float: left;
    width: 100%;
    margin: 30px auto;
    padding: 15px;
    background: #f3f3f3;
}

@media (max-width: 992px) {
    section article .breadcrumb {
        display: none;
    }
}

section article .breadcrumb ul {
    list-style: none;
    padding: 0;
}

section article .breadcrumb ul li {
    float: left;
    font: 12px "Poppins";
}

section article .breadcrumb ul li a {
    display: block;
    text-decoration: none;
    color: black;
    position: relative;
    padding: 0 11px 0 16px;
}

section article .breadcrumb ul li a:before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: -2px;
    left: 0;
    color: #ff6600;
    font-size: 20px;
}

section article .breadcrumb ul li:first-child a {
    padding-left: 0;
}

section article .breadcrumb ul li:first-child a:before {
    display: none;
}

section article .icerik-left {
    float: left;
    width: 100%;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    section article .icerik-left {
        border-right: none;
        padding-right: 0;
    }
}

section article .page-content {
    font: 15px/24px "Poppins";
    color: #fbfbfb;
    float: left;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    section article .page-content {
        font-size: 14px;
        line-height: 21px;
    }
}

section article .page-content .group {
    float: left;
    width: 100%;
    margin: 20px 0;
}

section article .page-content .group .row {
    margin: 0 -10px;
}

section article .page-content .group .row>div {
    padding: 0 10px;
}

section article .page-content .group .item {
    font-size: 16px;
    text-align: center;
    /* margin: 0 0 27px; */
    box-shadow: -5px 8px 13px 6px #90979c;
    min-height: 165px;
}

section article .page-content .group .item strong {
    background: #ff6600;
    width: 100%;
    display: block;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 20px;
    margin: 0 0 25px;
}

section article .page-content .group .item strong:before {
    position: absolute;
    z-index: -1;
    content: '';
    left: calc(50% - 15px);
    bottom: -15px;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #ffffff transparent transparent transparent;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

section article .page-content .group .item b {
    display: block;
    padding-bottom: 20px;
}

section article .page-content .group1 {
    float: left;
    width: 100%;
    margin: 20px 0;
}

section article .page-content .group1 .item {
    font: 14px "proxima_boldibold";
    text-align: center;
    margin: 20px 0 0;
    height: 130px;
}

section article .page-content .group1 .item .images {
    height: 50px;
    margin-bottom: 10px;
    line-height: 85px;
}

section article .page-content .group1 .item .images .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group1 .item .images .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group1 .item .images .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group1 .item .images .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group1 .item .images .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group1 .item .images img {
    max-height: 100%;
}

section article .page-content .group2 {
    float: left;
    width: 100%;
    margin: 20px 0;
}

section article .page-content .group2 .list {
    float: left;
    width: 100%;
    font-size: 17px;
    position: relative;
    min-height: 60px;
    margin: 8px 0;
}

section article .page-content .group2 .list span {
    background: #ffffff;
    display: inline-block;
    padding: 0 10px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group2 .list span {
        padding: 0;
    }
}

section article .page-content .group2 .list:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    height: 1px;
    background: #E1E1E1;
    width: 81%;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group2 .list:before {
        display: none;
    }
}

section article .page-content .group2 .list a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    background: #000000;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    font-size: 16px;
    padding: 11px 30px;
    float: right;
    margin: -12px 0;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group2 .list a {
        float: left;
        margin: 20px 0 0;
    }
}

section article .page-content .group2 .list a:hover {
    background: #ff6600;
    color: #ffffff;
}

section article .page-content .group3 {
    float: left;
    width: 100%;
}

section article .page-content .group3 .item {
    margin: 0 auto 30px;
    max-width: 430px;
}

section article .page-content .group3 .item a {
    display: block;
    text-decoration: none;
    color: #231F20;
    outline: none;
}

section article .page-content .group3 .item a figure {
    margin: 0;
    overflow: hidden;
    height: 170px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group3 .item a figure {
        height: 130px;
    }
}

section article .page-content .group3 .item a figure .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group3 .item a figure .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group3 .item a figure .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group3 .item a figure .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group3 .item a figure .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group3 .item a figure .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .group3 .item a figure img {
    max-height: 100%;
}

section article .page-content .group3 .item a figure figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff6600;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    text-align: center;
    font: 15px/12px "Poppins";
    padding: 10px 14px;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group3 .item a figure figcaption {
        font-size: 15px;
        line-height: 10px;
    }
}

section article .page-content .group3 .item a figure figcaption b {
    display: block;
    font-size: 25px;
    line-height: 30px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group3 .item a figure figcaption b {
        font-size: 25px;
        line-height: 25px;
    }
}

section article .page-content .group3 .item a .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 15px 0;
    line-height: 24px;
    height: 48px;
    color: #fbfbfb;
}

@media (min-width: 992px) {
    section article .page-content .group3 .item a:hover figure .resim-att {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    section article .page-content .group3 .item a:hover figure figcaption {
        padding: 9px 24px;
    }
}

section article .page-content .group4 {
    float: left;
    width: 100%;
}

section article .page-content .group4 a {
    display: block;
    color: black;
    text-decoration: none;
    font: 22px "Poppins";
    margin: 0 0 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .group4 a figure {
    overflow: hidden;
    height: 245px;
    margin: 0 0 10px;
}

section article .page-content .group4 a figure .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group4 a figure .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group4 a figure .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group4 a figure .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group4 a figure .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group4 a figure .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .group4 a figure img {
    width: 100% !important;
}

section article .page-content .group4 a span {
    display: block;
    height: 50px;
    overflow: hidden;
}

section article .page-content .group4 a:hover {
    color: #ffffff;
}

section article .page-content .group4 a:hover figure .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .page-content .group5 {
    float: left;
    width: 100%;
}

section article .page-content .group5 a {
    display: block;
    color: black;
    text-decoration: none;
    font: 19px "Poppins";
    margin: 0 auto 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    max-width: 440px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group5 a {
        font-size: 18px;
    }
}

section article .page-content .group5 a figure {
    overflow: hidden;
    height: 180px;
    margin: 0 0 10px;
    border: 1px solid #C9C9C9;
}

section article .page-content .group5 a figure .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group5 a figure .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group5 a figure .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group5 a figure .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group5 a figure .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group5 a figure .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .group5 a figure img {
    display: block;
    max-width: 100vh;
    max-height: 100%;
}

section article .page-content .group5 a span {
    display: block;
    height: 50px;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group5 a span {
        height: auto;
    }
}

section article .page-content .group5 a .text .name {
    display: block;
    max-height: 50px;
    overflow: hidden;
}

section article .page-content .group5 a .text small {
    color: #9B9B9B;
    display: block;
    font: 14px "Poppins";
    margin: 10px 0 0;
}

section article .page-content .group5 a:hover {
    color: #000000;
    font-size:20px;
}

section article .page-content .group5 a:hover figure .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .page-content .group6 {
    float: left;
    width: 100%;
}

section article .page-content .group6 a {
    display: block;
    border: 1px solid #ff6600;
    /* height: 150px; */
    overflow: hidden;
    padding: 10px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group6 a {
        height: 100px;
    }
}

section article .page-content .group6 a .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group6 a .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group6 a .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group6 a .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group6 a .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group6 a img {
    max-height: 100%;
}

section article .page-content .group6 a:hover {
    border-color: #ffffff;
}

section article .page-content .group7 .list {
    position: relative;
    border-bottom: 1.4px solid #E1E1E1;
    padding: 20px 0;
}

section article .page-content .group7 .list .images {
    position: absolute;
    top: 20px;
    left: 0;
    width: 122px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group7 .list .images {
        position: initial;
        margin: 0 0 20px;
    }
}

section article .page-content .group7 .list .text {
    padding: 0 0 0 160px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group7 .list .text {
        padding: 0;
    }
}

section article .page-content .group7 .list .text .alt {
    margin: 20px 0 0;
}

section article .page-content .group7 .list .text .alt small {
    display: block;
    font-size: 14px;
    margin: 3px 0 0;
}

section article .page-content .group8 .list {
    margin: 0 0 50px;
    float: left;
    width: 100%;
}

section article .page-content .group8 .list a {
    display: block;
    color: black;
    text-decoration: none;
}

section article .page-content .group8 .list a .images {
    height: 195px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group8 .list a .images {
        margin: 0 0 15px;
    }
}

section article .page-content .group8 .list a .images .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .group8 .list a .images .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .group8 .list a .images .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .group8 .list a .images .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .group8 .list a .images .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .group8 .list a .images .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .group8 .list a .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 72px;
    margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .group8 .list a .text {
        height: auto;
        -webkit-line-clamp: inherit;
    }
}

section article .page-content .group8 .list a:hover .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .page-content table {
    width: 100% !important;
}

section article .page-content table tr td {
    padding: 10px 0;
}

section article .page-content table tr td a {
    color: #fbfbfb;
    text-decoration: none;
}

@media only screen and (max-width: 480px) {
    section article .page-content table tr td img {
        width: auto !important;
        height: auto !important;
    }
}

@media only screen and (max-width: 480px) {
    section article .page-content p img {
        width: auto !important;
        height: auto !important;
    }
}

section article .page-content nav a {
    color: black;
    text-decoration: none;
    display: block;
}

section article .page-content .resim {
    float: right;
    margin: 0 0 0 25px;
    background: #fbfbfb;
    max-width: 400px;
    padding: 35px;
    border-radius: 10px;
}

@media only screen and (max-width: 480px) {
    section article .page-content .resim {
        margin: 0 0 15px;
        float: none;
        width: 100%;
        text-align: center;
    }
}

section article .page-content .ara-list {
    float: left;
    width: 100%;
    margin: 30px 0;
}

section article .page-content .orta-gallery {
    float: left;
    width: 100%;
}

section article .page-content .orta-gallery a {
    margin: 15px 0;
}

section article .page-content .back-button {
    display: inline-block;
    color: #000000;
    border: 1px solid #C9C9C9;
    text-decoration: none;
    padding: 10px 30px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    border-radius: 14px;
    margin: 0 0 30px;
}

section article .page-content .back-button i {
    margin-right: 10px;
    font-size: 12px;
}

section article .page-content .back-button:hover {
    background: #ff6600;
    color: #fbfbfb;
}

section article .page-content .product-detay {
    float: left;
    width: 100%;
}

section article .page-content .product-detay .slider-for-urun .item {
    outline: none;
    overflow: hidden;
    padding: 0 5px;
    opacity: 0;
}

section article .page-content .product-detay .slider-for-urun .item.slick-slide {
    opacity: 1;
}

section article .page-content .product-detay .slider-for-urun .item a {
    display: block;
    text-decoration: none;
    outline: none;
    height: 250px;
    text-align: center;
    padding: 20px;
    border: 1px solid #ff6600;
    position: relative;
}

section article .page-content .product-detay .slider-for-urun .item a .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .product-detay .slider-for-urun .item a .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .product-detay .slider-for-urun .item a .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .product-detay .slider-for-urun .item a .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .product-detay .slider-for-urun .item a .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .product-detay .slider-for-urun .item a .resim-att {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

section article .page-content .product-detay .slider-for-urun .item a img {
    max-height: 100%;
}

section article .page-content .product-detay .slider-for-urun .item a:after {
    content: "";
    background: url("../images/zoom.png") no-repeat 0 0;
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #9B9B9B;
    z-index: 5;
}

section article .page-content .product-detay .slider-for-urun .item:hover a {
    border-color: #ffffff;
}

section article .page-content .product-detay .slider-for-urun .item:hover a:after {
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
}

section article .page-content .product-detay .slider-for-urun .item:hover a .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .page-content .product-detay .slider-nav-urun .slick-arrow {
    position: absolute;
    top: 24px;
    cursor: pointer;
    font-size: 30px;
    opacity: 0.2;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: 0 -20px;
    z-index: 5;
}

section article .page-content .product-detay .slider-nav-urun .slick-arrow.slick-prev {
    left: 0;
}

section article .page-content .product-detay .slider-nav-urun .slick-arrow.slick-next {
    right: 0;
}

section article .page-content .product-detay .slider-nav-urun .slick-arrow:hover {
    opacity: 1;
}

section article .page-content .product-detay .slider-nav-urun .slick-arrow.slick-disabled {
    opacity: 0.4;
    cursor: no-drop;
}

section article .page-content .product-detay .slider-nav-urun .item {
    outline: none;
    margin: 10px 4px;
    border: 1px solid #ff6600;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    height: 57px;
    cursor: pointer;
    overflow: hidden;
    padding: 5px;
    opacity: 0;
}

section article .page-content .product-detay .slider-nav-urun .item.slick-slide {
    opacity: 1;
}

section article .page-content .product-detay .slider-nav-urun .item .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .product-detay .slider-nav-urun .item .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .product-detay .slider-nav-urun .item .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .product-detay .slider-nav-urun .item .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .product-detay .slider-nav-urun .item .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .product-detay .slider-nav-urun .item .resim-att {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

section article .page-content .product-detay .slider-nav-urun .item img {
    max-height: 100%;
}

section article .page-content .product-detay .slider-nav-urun .item:hover,
section article .page-content .product-detay .slider-nav-urun .item.slick-current {
    border-color: #ffffff;
}

section article .page-content .product-detay .slider-nav-urun .item:hover .resim-att,
section article .page-content .product-detay .slider-nav-urun .item.slick-current .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .page-content .product-detay .product-content {
    padding: 0 0 0 40px;
    float: left;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    section article .page-content .product-detay .product-content {
        padding: 20px 0;
    }
}

section article .page-content .product-detay .product-content h1 {
    color: #fbfbfb;
    font: 25px "Poppins";
}

@media only screen and (max-width: 767px) {
    section article .page-content .product-detay .product-content h1 {
        font-size: 19px;
    }
}

section article .page-content .product-detay .product-content small {
    font-size: 14px;
    color: #fbfbfb;
    margin: 10px 0;
    display: block;
}

section article .page-content .product-detay .product-content nav a {
    background: #ff6600;
    color: #fff;
    font-size: 14px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none;
    height: 50px;
    text-align: center;
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #fff;
    margin-right: 10px;
    margin-top: 10px;
}

section article .page-content .product-detay .product-content nav a:hover {
    background: #ff6600;
    background: linear-gradient(-45deg, #ff6600, #072b40, #ff6600, #ff6600);
    background-size: 400% 400%;
    animation: gradient 7s ease-out infinite;
    border-radius: 25px;
    color: #FFF;
}

section article .page-content .product-detay .product-content nav a i {
    /* background: url("../images/sprite.png") no-repeat 0 0; */
    /* width: 18px; */
    /* height: 16px; */
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

section article .page-content .product-detay .product-content nav a:nth-child(2) i {
    background-position: -21px 0;
}

section article .page-content .product-detay .product-tabs {
    float: left;
    width: 100%;
    margin: 20px 0;
    color: black;
    font-size: 15px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .product-detay .product-tabs {
        font-size: 15px;
    }
}

section article .page-content .product-detay .product-tabs table {
    width: auto !important;
}

section article .page-content .product-detay .product-tabs table tr td {
    padding: 10px;
}

section article .page-content .product-detay .product-tabs .tab-pane {
    float: left;
    width: 100%;
    color: #fbfbfb;
}

section article .page-content .product-detay .product-tabs .tabs-nav {
    float: left;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

section article .page-content .product-detay .product-tabs .tabs-nav li {
    float: left;
    font-size: 17px;
    background: #9e9e9e47;
    border: 1px solid #ff6600;
    border-radius: 25px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    width: 33%;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    section article .page-content .product-detay .product-tabs .tabs-nav li {
        font-size: 12px;
    }
}

section article .page-content .product-detay .product-tabs .tabs-nav li a {
    text-decoration: none;
    color: black;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    height: 45px;
    display: table-cell;
    vertical-align: middle;
    width: 100em;
}

section article .page-content .product-detay .product-tabs .tabs-nav li:hover,
section article .page-content .product-detay .product-tabs .tabs-nav li.active {
    background: #ff6600;
    background: linear-gradient(-45deg, #ff6600, #072b40, rgb(0 61 144 / 90%), #203582);
    background-size: 400% 400%;
    animation: gradient 7s ease-out infinite;
    border-radius: 25px;
}

section article .page-content .product-detay .product-tabs .tabs-nav li:hover a,
section article .page-content .product-detay .product-tabs .tabs-nav li.active a {
    color: #ffffff;
}

section article .page-content .news-detay {
    position: relative;
    text-align: center;
}

section article .page-content .news-detay .date {
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    font: 19px "Poppins";
    padding: 13px 13px 8px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .news-detay .date {
        font-size: 15px;
        line-height: 10px;
        padding: 7px 13px 8px;
    }
}

@media only screen and (max-width: 480px) {
    section article .page-content .news-detay .date {
        position: initial;
        width: 60px;
        margin: 0 0 20px;
    }
}

section article .page-content .news-detay .date b {
    font-size: 35px;
    display: block;
    line-height: 23px;
}

@media only screen and (max-width: 767px) {
    section article .page-content .news-detay .date b {
        font-size: 25px;
        line-height: 25px;
    }
}

section article .page-content .news-detay .ic {
    float: left;
    width: 100%;
    /* padding: 0 0 0 100px; */
}

@media only screen and (max-width: 767px) {
    section article .page-content .news-detay .ic {
        padding: 0 0 0 80px;
    }
}

@media only screen and (max-width: 480px) {
    section article .page-content .news-detay .ic {
        padding: 0;
    }
}

section article .page-content .news-detay .diger-haber {
    float: left;
    width: 100%;
    margin: 30px 0 0;
}

section article .page-content .news-detay .diger-haber .slick-arrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 60px;
    opacity: 0.2;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    margin: -105px -20px;
    z-index: 5;
}

@media only screen and (max-width: 1200px) {
    section article .page-content .news-detay .diger-haber .slick-arrow {
        top: -50px;
        left: inherit !important;
        right: 15px !important;
        margin: 0;
        font-size: 30px;
        color: black;
        background: #ffffff;
        padding: 0 9px;
        opacity: 1;
    }
}

section article .page-content .news-detay .diger-haber .slick-arrow.slick-prev {
    left: 0;
}

@media only screen and (max-width: 1200px) {
    section article .page-content .news-detay .diger-haber .slick-arrow.slick-prev {
        right: 55px !important;
    }
}

section article .page-content .news-detay .diger-haber .slick-arrow.slick-next {
    right: 0;
}

section article .page-content .news-detay .diger-haber .slick-arrow:hover {
    opacity: 1;
}

section article .page-content .news-detay .diger-haber .slick-arrow.slick-disabled {
    opacity: 0.4;
    cursor: no-drop;
}

section article .page-content .gallery {
    float: left;
    width: 100%;
    margin: 15px 0;
}

section article .page-content .gallery .row {
    margin: 0 -10px;
}

section article .page-content .gallery .row>div {
    padding: 0 10px;
}

section article .page-content .gallery a {
    display: block;
    outline: none;
    height: 235px;
    margin: 20px 0 0;
}

@media only screen and (max-width: 480px) {
    section article .page-content .gallery a {
        height: 85px;
    }
}

section article .page-content .gallery a .resim-att {
    width: 100%;
    height: 100%;
    position: relative;
    float: left;
    padding: 0;
    text-align: center;
}

section article .page-content .gallery a .resim-att .resim-att-pre {
    width: 100%;
    height: 100%;
    position: relative;
}

section article .page-content .gallery a .resim-att .resim-att-pre .resim-thumb {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

section article .page-content .gallery a .resim-att .resim-att-pre .resim-thumb .resim-centered {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(50%, 50%);
    -moz-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    -o-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

section article .page-content .gallery a .resim-thumb .resim-centered img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section article .page-content .gallery a .resim-att {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .page-content .gallery a img {
    max-height: 100%;
}

@media only screen and (max-width : 767px) {
    section article .page-content .gallery a img {
        max-width: 100%;
        max-height: inherit;
    }
}

section article .page-content .gallery a:hover .resim-att {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

section article .sidebar .urun-grubu-bar {
    background: #ff6600;
    padding: 40px 20px;
    float: left;
    width: 100%;
    margin: 30px 0 -10px -10px;
    max-width: 400px;
    border-radius: 10px;
    margin-left: 10px;
}

@media (max-width: 992px) {
    section article .sidebar .urun-grubu-bar {
        margin: 0 0 20px;
    }
}

section article .sidebar .urun-grubu-bar strong {
    color: #fbfbfb;
    font: 18px "Poppins";
    margin: 0 0 15px;
    display: block;
}

section article .sidebar .urun-grubu-bar ul {
    list-style: none;
    padding: 0;
    /* background: #ffffff; */
}

section article .sidebar .urun-grubu-bar ul li {
    font-size: 14px;
    background: #ffffff;
    margin-bottom: 5px;
}

section article .sidebar .urun-grubu-bar ul li span {
    display: block;
    padding: 12px 15px;
    position: relative;
    cursor: pointer;
    border: 1px solid grey;
}

section article .sidebar .urun-grubu-bar ul li span i {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: absolute;
    top: 9px;
    right: 15px;
    font-size: 24px;
}

section article .sidebar .urun-grubu-bar ul li a {
    color: black;
    text-decoration: none;
    display: block;
}

section article .sidebar .urun-grubu-bar ul li.open span i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

section article .sidebar .urun-grubu-bar ul li ul {
    padding: 10px 0;
    display: none;
    border: 1px solid #ff6600;
}

section article .sidebar .urun-grubu-bar ul li ul li a {
    padding: 5px 15px;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

section article .sidebar .urun-grubu-bar ul li ul li.active a,
section article .sidebar .urun-grubu-bar ul li ul li:hover a {
    color: #ff6600;
    font-weight: 600;
}

section article .sidebar .widget {
    margin-left: 10px;
    margin-top: 30px;
    float: left;
    width: 100%;
    border-right: 2px solid #E1E1E1;
    background: #fbfbfb;
    padding: 35px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    section article .sidebar .widget {
        display: none;
    }
}

section article .sidebar .widget ul {
    list-style: none;
    padding: 0;
}

section article .sidebar .widget ul>li>a:before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    height: 100%;
    background: #ff6600;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 5px;
    opacity: 0;
}

section article .sidebar .widget ul li {
    font-size: 15px;
    margin: 10px 0;
}

section article .sidebar .widget ul li a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 3px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    position: relative;
}

section article .sidebar .widget ul li.active>a:before{
    opacity: 1;
}

section article .sidebar .widget ul li ul {
    padding: 0 0 0 20px;
}

.dtpicker-content {
    font-family: "Poppins";
    font-size: 14px;
}

.dtpicker-content .dtpicker-header .dtpicker-value {
    color: #ffffff;
    font-size: 15px;
    display: none;
}

.dtpicker-content .dtpicker-components .dtpicker-compValue {
    font-family: "Poppins";
    margin: 10px 0;
    border: 1px solid #ffffff;
}

.dtpicker-content .dtpicker-content .dtpicker-header .dtpicker-value {
    padding: 0;
}

.dtpicker-content .dtpicker-components .dtpicker-compButton {
    font-family: "Poppins";
    font-size: 19px;
    line-height: 21px;
}

.dtpicker-content .dtpicker-components {
    font-size: 14px;
}

.dtpicker-content .dtpicker-compButton {
    border: 1px solid #ffffff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 auto;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.dtpicker-content .dtpicker-compButton:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.dtpicker-content .decrement {
    line-height: 21px;
}

.dtpicker-content .dtpicker-components .dtpicker-comp>* {
    color: black;
}

.dtpicker-content .dtpicker-buttonCont .dtpicker-button {
    font-family: "Poppins";
    font-size: 14px;
    background: #ffffff;
}

.dtpicker-content .dtpicker-header .dtpicker-close {
    color: #ffffff;
    font-size: 24px;
    top: -27px;
    right: 10px;
    padding: 0;
}

.dtpicker-overlay {
    top: 122px !important;
    left: 0 !important;
}

.dtpicker-content .dtpicker-buttonCont .dtpicker-button {
    color: black !important;
}

footer {
    background: #333;
    color:#fff;
    float: left;
    width: 100%;
    box-shadow: 0 20px 50px 0px #ababab;
}

footer .alt-menu {
    padding: 40px 0;
}

@media only screen and (max-width: 1200px) {
    footer .alt-menu {
        display: none;
    }
}

footer .alt-menu .head {
    font: 18px "Poppins";
    margin: 0 0 10px;
}

footer .alt-menu ul {
    list-style: none;
    padding: 0;
}

footer .alt-menu ul li {
    font: 14px "Poppins";
}

footer .alt-menu ul li a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 5px 0;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

footer .alt-menu ul li a:hover {
    color: #ff6600;
}

footer .footer-ust {
    float: left;
    width: 100%;
    font: 16px/25px "Poppins";
}

footer .footer-ust h3,
footer .footer-ust .baslik {
    font-size: 20px;
    margin: 0 0 15px;
    font-family: Poppins;
    font-weight: 500;
}

@media only screen and (max-width: 480px) {

    footer .footer-ust h3,
    footer .footer-ust .baslik {
        font-size: 22px;
    }
}

footer .footer-ust a {
    color: black;
    text-decoration: none;
}

footer .footer-ust address {
    margin: 50px 0 0;
    padding-right: 60px;
}

@media only screen and (max-width: 1200px) {
    footer .footer-ust address {
        margin: 40px 0 20px;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    footer .footer-ust address {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    footer .footer-ust address a {
        font-size: 11px;
    }
}

footer .footer-ust .ebulten {
    background: #ff6600;
    font-size: 18px;
    padding: 93px 150px;
    margin: -85px 0 0;
    position: relative;
    float: left;
    width: 100%;
    border-radius: 23px;
}

@media (min-width: 1200px) {
    footer .footer-ust .ebulten {
        /* opacity: 0; */
        filter: alpha(opacity=0);
    }
}

@media only screen and (max-width: 1200px) {
    footer .footer-ust .ebulten {
        padding: 63px 70px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    footer .footer-ust .ebulten {
        padding: 30px;
        font-size: 15px;
        margin: -45px 0 0;
    }
}

footer .footer-ust .ebulten em {
    content: "";
    position: absolute;
    top: -45px;
    left: 5px;
    height: 85px;
    width: 85px;
    background-image: url(../images/favicon.png);
    background-position: center;
    background-size: cover;
    filter: drop-shadow(0px 5px 5px #333);
}

@media (min-width: 1200px) {
    footer .footer-ust .ebulten em {
        /* opacity: 0; */
        filter: alpha(opacity=0);
    }
}

@media (max-width: 992px) {
    footer .footer-ust .ebulten em {
        display: none;
    }
}

footer .footer-ust .ebulten em.animated {
    opacity: 1;
}

footer .footer-ust .ebulten b {
    font-size: 40px;
    display: block;
    margin: 0 0 20px;
    color: #fbfbfb;
}

@media only screen and (max-width: 767px) {
    footer .footer-ust .ebulten b {
        font-size: 26px;
    }
}

footer .footer-ust .ebulten form .form-group {
    position: relative;
}

footer .footer-ust .ebulten form .form-group input {
    border-radius: inherit;
    height: 50px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: none;
    color: #9A9A9A;
    font-family: "Poppins";
    padding: 0 110px 0 15px;
}

footer .footer-ust .ebulten form .form-group button {
    background: black;
    border: none;
    color: #ffffff;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    font: 14px/50px "Poppins";
    height: 50px;
    padding: 0 20px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    footer .footer-ust .ebulten form .form-group button {
        padding: 0 12px;
    }
}

footer .footer-ust .ebulten form .form-group button small {
    font-style: normal;
    display: block;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    footer .footer-ust .ebulten form .form-group button small {
        font-size: 12px;
    }
}

footer .footer-ust .ebulten form .form-group button i {
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-size: 23px;
    display: block;
}

footer .footer-ust .ebulten form .form-group button:hover small {
    margin: -39px 0 0;
}

footer .footer-ust .ebulten form .form-group button:hover i {
    opacity: 1;
    margin: 0 0 10px;
}

footer .row>.mc-lg-2:nth-child(2) {
    width: 20.666667%;
}

footer .row>.mc-lg-2:nth-child(3) {
    width: 18.666667%;
}

footer .row>.mc-lg-2:nth-child(4) {
    width: 15.666667%;
}

footer .row>.mc-lg-2:nth-child(5) {
    width: 11.666667%;
}

footer .footer-alt {
    float: left;
    width: 100%;
    border-top: 1px solid #E1E1E1;
    padding: 15px 0;
    font-size: 13px;
}

@media only screen and (max-width: 1200px) {
    footer .footer-alt {
        text-align: center;
    }
}

footer .footer-alt a {
    color: black;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    footer .footer-alt span {
        display: block;
        margin: 5px 0;
    }
}

@media only screen and (max-width: 1200px) {
    footer .footer-alt .text-right {
        text-align: center;
    }
}

.megamenu .panel-collapse {
    padding-left: 30px;
}

@media only screen and (max-width: 767px) {
    section .box3 .slick-dots {
        top: -38px !important;
    }

    section .box3 .item {
        padding: 0 !important;
    }

    section .box3 .hgroup {
        padding: 55px 40px 40px 40px !important;
    }

    section .box3 figure {
        height: 240px !important;
        margin: 0 !important;
    }

    section .box3 figure * {
        height: 100%;
    }

    section .box3 figure img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    section #box2 .news-slider .item figure img {
        width: 100% !important;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    section .box3 .hgroup i {
        display: none;
    }

    section .box3 h3 {
        margin: 0 0 20px 0;
    }

    section #box1 .text {
        line-height: 34px;
    }
}
.mt-5{
  margin-top: 5px;
}
.mt-2r{
  margin-top: 2rem;
}

::-webkit-scrollbar {
    width: 14px;
    background-color: #ffffff;
    border-left: 14px solid #fff;
}
::-webkit-scrollbar-thumb {
    background-color: #ff6600;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #0d4567;
}
.video{
    position: fixed;
    object-fit: cover;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    transition: 1s opacity;
    margin: 0 auto;
}

.text-white{
    color:White !important;
}

.ebulten > p{
    color:#fbfbfb;
}



.active22{border-bottom: 4px solid #ff6600;padding: 5px 10px;border-radius: 10px;font-weight: 600;}


@keyframes gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}


.dsm-dsm-a{
    box-shadow: -6px 6px 15px #ff660057;
    border-radius: 14px;
    margin: 0px 10px;
}

.card-text{
    border-radius: 16px;
    padding: 6px;
    text-align: center;
    
    font-size: 24px;
position: relative;color: #fbfbfb;font-weight: 500;text-shadow: 1px 1px 2px #0000006e;}


.ic,img{
    text-align: center;
}
.ic{
    text-align: left;
}

.resim-centered{
    text-align: center;
}

.mt-4{
    margin-top: 15px;
}

.mb-3{
    margin-bottom: 3rem;
}

.mb-5{
    margin-bottom: 5rem;
}


.ik-area {
    margin: 0;
    width: 100%;
    overflow: hidden
;margin-top: 30px;}

.ik-area>.ik-column {
    display: inline-block;
    float: left;
    margin: 0 45px 0 0
}

.ik-area>.ik-column:last-child {
    float: right;
    margin: 0
}

.ik-area>.ik-column>strong {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 0 0 20px 0;
    text-align: center;
    color: #48505b
}

.ik-area>.ik-column>input[type=text] {
    width: 100%;
    display: inline-block;
    padding: 10px;
    margin: 0 0 5px 0;
    height: 45px;
    background: 0 0;
    color: #000;
    border: 1px solid #ccc;
    font-size: 14px
}

.ik-area>.ik-column>textarea {
    width: 100%;
    display: inline-block;
    text-indent: 2px;
    padding: 5px;
    margin: 0 0 5px 0;
    height: 230px;
    background: 0 0;
    color: #000;
    border: 1px solid #ccc
}

.ik-area>.ik-column>input[type=submit] {
    width: 150px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    margin: 0;
    
    padding: 0;
    text-align: center;
    display: block;
    border: none;
    background: #ff6600;
    color: #fff;
    margin-top: 10px;cursor: pointer
}

.ik-area>.ik-column>.security {
    padding: 6px;
    margin: 0 5px 0 0;
    float: left;
    font-size: 18px;
    color: #ff6600
}

@media screen and (max-width:980px) {
    .ik-area {
        width: 100%
    }

    .ik-area>.ik-column {
        display: inline-block;
        width: 100%;
        float: none;
        margin: 0 0 25px 0
    }
}


@media (min-width: 1200px) {
  .wrapper {
    width: 100%;
    margin: auto;
  }
  .m_fix001 {
      padding: 0 20px !important;
  }
}
@media (max-width: 1200px) {
  .wrapper {
    width: 100%;
  }
}


#index_header { background: url(../images/header_bg.jpg) repeat-x #fff; min-height: 108px; }
#index_company { position: relative; z-index: 11; /*margin-top: -50px;*/ }
#index_company>div>h3 { display: none; }
#content { padding-bottom: 0; }
.section { text-align: center; }
.section h2 { color: #14256a; font-family: "Trebuchet MS", "Microsoft JhengHei" ,"\5FAE\x8F6F\6B63\9ED1\4F53"; margin: 40px auto; }
.section .wrapper-row { padding-left: 0; }
.section .wrapper-col { display: inline-block; }
.section .pro .wrapper-col { min-width: 150px; max-width: 24.3%; margin: 5px 2px; position: relative; background-color: #fff; padding: 32px 16px; border-radius: 16px; border: 2px solid #ff6600;}
.section .pro .wrapper-col div { background: transparent; color: #000; line-height: 50px; font-size: 18px; font-weight: bold; }
.section .pro .wrapper-col div a { color: #000; display: block; }
.section .pro .wrapper-col:hover div a { text-decoration: none; }
.section .pro .wrapper-col .img-top { position: absolute; left: 0; display: none; z-index: 1; }
.section .pro .wrapper-col:hover .img-top { display: inline; }

.md-a-kat{
    font-size: 17px;
    color: #fbfbfb;
}


.mds-crd{
    background-color: #90979b99;
    border-radius: 8px;
}

.mds-crd-bdy{
    position: relative;
    bottom: 16px;
}
.text-dark {
    color:#333;
}

.background-image {
    background-image: url(../images/favicon.png);
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    transform-origin: center;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.background-image2 {
    background-image: url(../images/favicon.png);
    width: 350px;
    height: 350px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
    transform-origin: center;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.background-image3 {
    background-image: url(../images/world-map5.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}

.background-image4 {
    background-image: url(../images/favicon.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 25%;
    position: absolute;
    top: -70px;
    left: -100px;
    z-index: -1;
    opacity: 0.5;
}

.mtr4 {
    margin-top: 4rem;
}

.over-hidden {
    overflow: hidden;
}

.w-50 {
    width: 50% !important;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.w-33 {
    width: 33% !important;
}

.img_invert {
    filter: invert(1);
}

section #box-lms {
    float: left;
    padding: 50px 40px;
    border-radius: 26px;
    width: 100%;
    background: #fff;
    color: #000;
    font-size: 18px;
    text-align: center;
    position: relative;
    z-index: 20;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    overflow: hidden;
}

.pd_45 {
    padding: 45px;
    padding-bottom: 0;
}

.maxw-30 {
    max-width:30%;
}

.float-left {
    float: left;
}

.feature-item__icon {
    padding: 0;
}

.img-fix0 {
    width: 400px;
    padding-right: 0;
    opacity: .8;
    position: relative;
    left: -100px;
    bottom: 80px;
    overflow: hidden;
}

.pd_15rem {
    padding: 0 15rem;
}

.pb_15 {
    padding: 15px;
}

.max-20 {
    width: 20px;
}

.lumos-logo {
    max-width: 100px !important;
    filter: grayscale(1);
}

.lumos-logo:hover {
    filter: grayscale(0);
}

.mb-0 {
    margin-bottom: 0 !important
}

.mr-2, .mx-2 {
    margin-right: .5rem !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.align-items-center {
    align-items: center !important;
}

.h200 {
    height: 200px !important;
}

.h-100 {
    height: 100% !important;
}
.w-auto {
    width: auto !important;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-limit2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-limit3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-left {
    text-align: left;
}

.product-box {
    box-shadow: 0 3px 40px rgb(74 74 74 / 14%);
    border-radius: 16px;
    background-color: #fbfbfb;
    border: 2px solid #dddddd87;
    min-width: 150px;
    max-width: 48%;
    margin: 5px;
}

.d-flex {
    display: flex !important;
}

.pdp {
    padding: 15% 10% 0;
}

.spot_desc {
    font-size: 15.5px;
    margin: 15px 0;
}

.hover_scale {
    transition: 0.4s;
}

.hover_scale:hover {
    transform: scale(1.15);
}

.project-details-link {
  position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -30px;
  font-size: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #ff6600;
  background-color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.project-details-link i {
  color: #ff6600;
}

.project-details-link:hover {
  background-color: #ff6600;
  color: #fff;
}

.project-details-link:hover i {
  color: #fff;
}

.featured-project-single-grid {
  position: relative;
  margin-bottom: 70px;
}
.featured-project-single-grid__image {
    position: relative;
    bottom: 0px;
}

.featured-project-single-grid__image:hover {
    bottom: 25px;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
}

.featured-project-single-grid__image img {
  width: 100%;
}
.featured-project-single-grid__image:before {
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}
.featured-project-single-grid__content {
  padding: 15px;
}
.featured-project-single-grid__content .title a {
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.featured-project-single-grid__content .title a:hover {
  color: #eb6725;
}
.featured-project-single-grid__content .text {
  border-top: 1px solid #ff6600;
  padding-top: 15px;
  margin-top: 14px;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.text-001 {
    font-size: 12px !important;
    line-height: 25px !important;
}

.text-002 {
    margin: 0 !important;
    font-size: 23px !important;
    font-weight: 500 !important;
}

.lmsfx-001 {
    line-height: 0 !important;
    margin-bottom: 0 !important;
}

.fz22 {
    font-size: 22px;
}

i.outlined {
    font-size: 15px;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 50%;
    margin-left: 5px;
}

.card-sector {
    box-shadow: 0 0 40px rgb(187 187 187 / 76%);
    border-radius: 16px;
    background-color: #fbfbfb;
    border: 2px solid #dddddd87;
}

.card-sector:hover .card-sector_desc p {
    color: #ff6600;
}

.card-sector:hover .card-sector_desc i {
    color: #ff6600;
    border-color: #ff6600;
}

.card-sector_desc {
    position: relative;
    bottom: 16px;
}

.card-sector_desc p {
    color: #333;
}

img.image-att2 {
    transition: 0.4s;
    width: 30%;
    display: flex;
    margin: 20px auto;
}

img.image-att2:hover {
    transform: scale(1.15);
}

@media (max-width: 825px) {
    .mw-100 {
        width: 100% !important;
    }
    .pdp {
        padding: 15% 10% 10% !important;
    }
    .btns {
      font-size: 12px;
      padding: 9px 27px;
    }
}

@media (max-width: 734px) {
    .mpd_0 {
        padding: 0 !important;
    }
    .background-image {
        background-size: 75%;
        top: -70px;
        left: -115px;
    }
    .background-image2 {
        background-size: 75%;
        background-position: bottom right;
        bottom: -75px;
        left: 60px;
    }
    section #box-lms iframe {
        width: 200px !important;
    }
    
    .product-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-width: 90%;
        margin: 5px 20px;
        padding: 32px 16px;
    }
    .orta {
        text-align:center !important;
    }
    .section .pro .wrapper-col {
        min-width: 270px !important;
        margin-bottom: 3rem;
    }
    .mobile-none {
        display: none !important;
    }
}

@media (max-width: 1089px) {
   .mw-100 {
      width: 100% !important;
  }
  .section .pro .wrapper-col {
      max-width: 33.3%;
      margin: 25px 2px;
  }
}

@media screen and (min-width: 1024px) {
  
  .product-box {
      max-width: 48.7%; 
  }
  .pdp {
      padding: 15% 10% 10% !important;
      
  }
  .btns {
      font-size: 12px;
      padding: 9px 27px;
      
  }
}

@media screen and (max-width:1280px) {
    .sub-left {
        right: 0rem !important;
    }
}

.left-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
}

.sub-left {
    position: absolute;
    right: 10rem;
    width: 1415px;
    display: block;
}

.contact-sub {
    height: 285px;
    opacity: 1;
}

.slide-lms {
    background: #fbfbfb;
    border-radius: 20px 0 0 0;
}

.slider-container {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    height: 455px;
    width: 80vw;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
  }
  
  .slide_service {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: 25%;
    height: auto;
    position: absolute;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
  }
  
  .slide_service.active {
    opacity: 1;
    transform: scale(1) translateX(0) rotateY(0); 
    z-index: 3;
  }
  
  .slide_service.prev {
    opacity: 1;
    transform: scale(0.85) translateX(-120%) rotateY(0) rotateZ(0);
    z-index: 2;
  }
  
  .slide_service.next {
    opacity: 1;
    transform: scale(0.85) translateX(120%) rotateY(0) rotateZ(0);
    z-index: 2;
  }
  
  
  .buttons-container {
    z-index: 2;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .arrow {
    background: transparent;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
    filter: drop-shadow(2px 4px 6px rgb(212, 212, 212));
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .arrow i {
    font-size: 30px;
  }

  @media only screen and (max-width: 574px) {
    .slide_service {
      width: 90% !important;
      top: 8%
    }
  }
  
  @media (min-width: 575px) and (max-width: 1024px) {
    .slide_service {
      width: 40% !important;
    }
  }
  
  .testimonials_fix {
    border: 2px solid #ddd;
    /*box-shadow: 0 0 10px 0 #0510361a;*/
    border-radius: 20px;
  }

  .testimonials {
    background-color: #fff;
    color: #000;
  }

  .text-16 {
    font-size: 16px;
  }

  .mt-5{
    margin-top: 25px;
  }

  .fw-500 {
    font-weight: 500;
  }

  .mt-20 {
    margin-top: 20px;
  }

  .size-80 {
    width: 80%;
  }

  .prod_title {
    padding-bottom: 15px;
    border-bottom: 2px solid #a84300;
  }
  .prod_spot {
    width: 50%;
    margin: 20px auto;
  }
  
  @media (max-width: 768px) { 
      .buttons-container {
    position: relative;
    top: 43%;
    transform: none; 
    justify-content: center;
    gap: 10px;
  }

  .arrow {
    width: 50px; 
    height: 50px;
  }

  .arrow i {
    font-size: 20px; 
  }
      .slider-container {
        height: 550px !important;
    }
  }
  
 .left-content,
 .right-content {
     float:left !important;
 }
 
 .right-content iframe {
    bottom: 35px;
    position: relative;
    padding: 0;
    margin: 0;
 }
 
 .m_fix001 {
     color: #fbfbfb !important;
 }
 
#dsmfix {
  position: fixed;
  right: -175px;
  bottom: 50px;
  width: 250px;
  background: #4ced69;
  display: block;
  vertical-align: top;
  padding: 15px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  transition: all .4s ease-in;
  z-index: 999;
}

#dsmfix i {
  font-size: 25px;
  color: #fff;
  position: relative;
  display: block;
  float: left;
  padding-right: 0;}


#dsmfix:hover {
  right: 0;
  color: black !important;
}

/************************************/


#dsmfix2 {
  position: fixed;
  right: -175px;
  bottom: 140px;
  width: 250px;
  background: #ff6600;
  display: block;
  padding: 10px 15px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  transition: all .4s ease-in;
  z-index: 999;
}

#dsmfix2 i {
  font-size: 25px;
  color: #fff;
  position: relative;
  display: block;
  margin: auto;
  float: left;
}


#dsmfix2:hover {
  color: black !important;
}

@media (max-width: 768px) {
    #dsmfix {
        display: none !important;
    }
    #dsmfix2 {
        display: none !important;
    }
}