@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p {
    color: black;
    font-size: 1.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
}

.section-title {
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    text-align: center;
}

.section-title span {
    color: #bc1c24;
}

.cta {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    background-color: transparent;
    border: 2px solid #bc1c24;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}

.cta:hover {
    color: white;
    background-color: #bc1c24;
}

.brand h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
}

.brand h1 span {
    color: #bc1c24;
}

/* Premix Animals Section */
.premixAnimals {
    width: 100vw;
    display: inline-block;
    margin-top: 4rem;
}

.premixAnimals .premixCategories {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.premixAnimals .premixCategories .animal {
    width: 300px;
    height: 350px;
    position: relative;
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.premixAnimals .premixCategories .animal:hover {
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.premixAnimals .premixCategories .animal .imgAnimal {
    width: 300px;
    height: 200px;
    position: absolute;
}

.premixAnimals .premixCategories .animal .BtnAndName{
    color: #bc1c24;
    position: absolute;
    text-align: center;
    bottom: 0px;
    width: 100%;
    font-size: 18px;
    letter-spacing: 0.4px;
}

.premixAnimals .premixCategories .animal .BtnAndName h2 {
    margin-bottom: 40px;
}

.premixAnimals .premixCategories .animal .BtnAndName .cattleName{
    margin-bottom: 35px;
}

.premixAnimals .premixCategories .animal .BtnAndName a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.premixAnimals .premixCategories .animal .BtnAndName button{
    position: relative;
    bottom: 20px;
    width: 200px;
    height: 30px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(
    0deg,
    rgba(0, 172, 238, 1) 0%,
    rgba(2, 126, 251, 1) 100%
  );
  color: #fff;
}

@media only screen and (max-width: 980px) { 
    .premixAnimals .premixCategories {
        flex-direction: column;
    }

    .premixAnimals .premixCategories .animal {
        margin-bottom: 5rem;
    }
}
/* END OF Premix Animals Section */

/* HEADER SECTION */

#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}

#header .header {
    min-height: 8vh;
    background-color: rgba(31, 30, 30, 0.40);
    transition: .3s ease background-color;
}

#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}

#header .nav-bar .brand {
    display: flex;
    place-items: center;
}

#header .nav-bar .brand img {
    margin-right: 2rem;
}

#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: rgb(31, 30, 30);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
    text-transform: uppercase;
}

#header .nav-list ul.active {
    left: 0;
}

#header .nav-list ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    padding: 20px;
    display: block;
}

#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}

#header .nav-list ul li:hover a{
    color: #36a9e1;
}
/* Yenilenen Alan */
#header .nav-list ul div {
    display: flex;
    background-color: transparent;
    text-align: center;
    position: relative;
    border-radius: 5px;
    bottom: 4px;
    
}
/* Yenilenen Alan */

#header .nav-list ul div a {
    padding: 0.5rem;
    font-weight: 300;
    text-transform: none;
   
}
#header .nav-list ul div a img {
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(0px 5px 5px #222);
}
/* Yenilenen Alan */
/* #header .nav-list ul div .tr-a {
    
} */
/* Yenilenen Alan */

#header .nav-list ul div a:focus,
#header .nav-list ul div a:active  {
    color: #bc1c24;
    font-weight: bold;
}

/*
#header .nav-list ul .tr-a{
    padding-right: 0 !important;
    position: relative;
    right: 4rem;
}

#header .nav-list ul .eng-a {
    padding-right: 0 !important;
    position: relative;
    bottom: 7.4rem;
    left: 1rem;
}
*/

#header .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(0.7);
    margin-right: 20px;
}

#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid #bc1c24;
	animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: .3s ease;
	transition-property: top, bottom;
}

#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}

#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* END HEADER SECTION */

/* HOME SECTION */


#home {
    background-image: url(./images/cows.jpg), url(./images/chickens.jpg), url(./images/horses.jpg), url(./images/sheeps.jpg);
    position: relative;
    z-index: 1;
    transition: background-image 2.5s ease; 
    background-position: center top, center top, center top, center top; 
    background-size: cover, cover, cover, cover;
    background-repeat:  no-repeat, no-repeat, no-repeat, no-repeat;
}




#home::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0;
    z-index: -1;
}

#home .home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
}

#home h1 {
    display: block;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1s;
}

#home h1:nth-child(1){
    animation-delay: 1s;
}

#home h1:nth-child(2){
    animation-delay: 2s;
}

#home h1:nth-child(3){
    animation: text_reveal_name 0.5s ease forwards;
    font-weight: 500;
    animation-delay: 3s;
}

#home h1 span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #bc1c24;
    animation: text_reveal_box 1s ease;
    animation-delay: 0.5s;
}

#home h1:nth-child(1) span {
    animation-delay: 0.5s;
}

#home h1:nth-child(2) span {
    animation-delay: 1.5s;
}

#home h1:nth-child(3) span {
    animation-delay: 2.5s;
}

#home .cta {
    display: inline-block;
    padding: 10px 30px;
    color: white;
    background-color: transparent;
    border: 2px solid #bc1c24;
    font-size: 2rem;
    text-transform: none;
    letter-spacing: 0.1rem;
    margin-top: 30px;
    transition: .3s ease;
    transition-property: background-color, color;
}

#home .cta:hover {
    color: white;
    background-color: #bc1c24;
}
/* END HOME SECTION */

/* NEW CARD STYLE */


.pieces-new {
    width: 100%;
    margin-top: 3rem;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products-new {
    width: 60%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.card-new {
    position: relative;
    width: 300px;
    height: 400px;
    background: #f0f0f0;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 15px 10px 20px 10px rgba(0, 0, 0, 0.25);
    transition: 1s;
    margin-bottom: 2em;
}

.card-new .imgBox-new {
    position: relative;
    top: 100px;
    width: 100%;
    height: 75%;
    z-index: 1;
    transform-style: preserve-3d;
    transform-origin: left;
    transition: 1s;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.25);
}

.card-new .imgBox-new img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform-style: preserve-3d; */
    backface-visibility: hidden;
}
/*
.card .imgBox img:nth-child(2) {
    transform: rotateY(180deg);
}
*/
/*
.card-new:hover {
    transform: translateX(50%);
}
*/
.card-new:hover .imgBox-new {
    /* transform: rotateY(-180deg); */
    display: none;
    /* transform: translateY(250px); */
}

.card-new .details-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card-new .details-new.content-new {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-new .details-new .content-new h2 {
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    line-height: 1.3em;
    color: #bc1c24;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
    bottom: 25px;
}

.card-new .details-new .content-new p {
    padding: 20px;
    text-align: center;
}

.card-new .details-new .content-new .Btn-new a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-new .details-new .content-new .Btn-new button{
    width: 200px;
    height: 30px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(
    0deg,
    rgba(0, 172, 238, 1) 0%,
    rgba(2, 126, 251, 1) 100%
  );
  color: #fff;
}

/* END NEW CARD STYLE */

/* New Products SECTION */
.coming-soon-feed {
    height: 195px;
}
.product-top .section-title {
    border-bottom: 2px solid #bc1c24;
    padding-bottom: 1rem;
    margin-top: 1em;
}

.product-top .title-mamalar {
    margin-top: 2em !important;
}

.product-top {
	max-width: 500px;
	margin: 0 auto;
    text-align: center;
}

#products {
    margin-top: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.products-container {
    width: 90%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
   
}

.products-container .card {
    position: relative;
    margin: 3rem auto 0 auto;
}

.products-container .card .face {
    width: 320px;
    height: 320px;
    transition: 0.5s;
}

.products-container .card .face1 {
    position: relative;
    background: #f0f0f0;
    box-shadow: 0px 1px 5px 1px #c4c4c4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translateY(140px);
} 

.products-container .card:hover .face1 {
    transform: translateY(0px);
    background: #b8b6b6 ;
}

.products-container .card .face1 .content {
    opacity: 0.8;
    transition: 0.5s;
}

.products-container .card:hover .face1 .content {
    opacity: 1;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.products-container .card:hover .face1 .content h3 {
    position: relative;
    bottom: 10px;
}

.products-container .card .face1 .content h3 {
    margin: 20px 0 10px 0;
    padding: 0;
    text-align: center;
    color: #bc1c24;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2.5em;
}


.products-container .card .face2 {
    position: relative;
    height: 220px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transform: translateY(-180px);
}
.products-container .card:hover .face2 {
    transform: translateY(0);
}
.products-container .card .face2 .content .ml-number {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 1em;
}

.products-container .card .face2 .content .ml-number span {
    font-size: 1.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    color: #bc1c24;
}

.products-container .card .face2 .content p {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.25px;
    color:rgba(31, 30, 30, 0.7);
}

.products-container .card .face2 .content a {
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    padding: 5px 5px 5px 0;
}

.products-container .card .face2 .content a p {
    display: flex;
    font-size: 15px;
    color: #36a9e1;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.products-container .card .face2 .content a p:hover {
    color: #bc1c24;
}

.products-container .card .face2 .content a img {
    width: 40px;
    height: 40px;
    padding-right: 1rem;
    padding-bottom: 1rem;
}
/* End New Products SECTION */

/* About SECTION */
#about .section-title {
    border-bottom: 2px solid #bc1c24;
    padding-bottom: 1rem;
    width: 100%;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 4rem;
    text-align: center;
}

.acri-logo {
    padding: 5rem;
}

.classes {
    padding: 4rem;
}

.class {
    margin-bottom: 3rem;
}

.classes h3 {
    margin-bottom: 2rem;
    font-size: 2.75rem;
    font-weight: bold;
    color: #48566A;
}

.classes p {
    font-size: 1.10rem;
    font-weight: 400;
    color: rgb(37, 37, 37);
}

.classes p span {
    font-size: 1.25rem;
    color: #bc1c24;
    font-weight: bold;
}
/* End About SECTION */

 /* Certificates Section */
 #certificates .section-title {
    border-bottom: 2px solid #bc1c24;
    padding-bottom: 1rem;
}
.carousel-body {
    width: 400px;
    height: 350px;
    margin: 3rem auto 3rem auto;
    position: relative;
    display: flex;
    justify-content: center;
    /* background: linear-gradient(#c9b2b3, #36a9e1); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.carousel-container {
    width: 300px;
    margin: auto;
    overflow: hidden;
    /* background: linear-gradient(#c9b2b3, #36a9e1); */
}

.carousel-container .carousel-slide {
    display: flex;
    width: 300px;
    height: 300px;
}

.carousel-container .carousel-slide img {
    width: 300px;
    height: 300px;
}

.carousel-container .carousel-slide #lastImgClone {
    border-radius: 50%;
}

.carousel-container .carousel-slide img:nth-child(8) {
    border-radius: 50%;
}

#prevBtn {
    position: absolute;
    top: 43%;
    z-index: 10;
    left: 0%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

#prevBtn svg{
    transform: rotate(180deg);
    opacity: 0.3;
}

#prevBtn svg:hover {
    opacity: 0.7;
}

#nextBtn svg{
    opacity: 0.3;
}

#nextBtn svg:hover {
    opacity: 0.7;
}

#nextBtn {
    position: absolute;
    top: 43%;
    z-index: 10;
    right: 0%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
/* .coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.coming-soon h2 {
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.10rem;
    text-align: center;
    color: #3C4F5B;
} */
/* End Certificates Section */


/*Contact*/
#contact .section-title {
    margin: 0 auto;
    border-bottom: 2px solid #bc1c24;
    padding-bottom: 1rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 3rem;
}

.content-1170 {
    width: 100vw;    
}

.medium-text {
    font-size: 40px;
    line-height: 105%;
    padding-top: 10px;
    letter-spacing: 3px;
    text-align: center;
}
.one_half {
    width: 100%;
    margin-top: 3rem;
}

.last {
    margin-right: 0 !important;
    clear: right;
}
.contact-form {
    max-width: 100%;
    margin: 0 auto;
    font-size: 22px;
    color: #000;
}

.contact-form p {
    margin-bottom: 0 !important;
}

.contact-form input[type=text], 
.contact-form input[type=email], 
.contact-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    border: 0;
    font-size: 15px;
    padding: 5px 0;
    width: 100%;
    line-height: 25px;
    color: #000;
    margin-bottom: 35px;
    text-indent: 10px;
    background-color: transparent;
    border-bottom: 3px solid;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input:focus,
textarea:focus{
    outline: 0;
}

.contact-form input[type=text]::placeholder, 
.contact-form input[type=email]::placeholder, 
.contact-form textarea::placeholder {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    opacity: 1;
}

.contact-form input[type=text]:ms-input-placeholder, 
.contact-form input[type=email]:ms-input-placeholder, 
.contact-form textarea:ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;    
}

.contact-form input[type=text]::ms-input-placeholder, 
.contact-form input[type=email]::ms-input-placeholder, 
.contact-form textarea::ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}

.contact-form input[name="your-name"] {
    margin-top: 0;
}

.contact-submit-holder input {
    position: relative;
    margin-bottom: 25px;
    background: #36a9e1;
    border: 1px solid #36a9e1;
    border-radius: 20px;
    width: 100%;
    height: auto;
    cursor: pointer;
    font-size: 20px;
    color: white;
    font-weight: 700;
    -webkit-appearance: none;
}

.contact-submit-holder input:hover {
    background: #bc1c24;
    border: 1px solid #bc1c24;
}
/*End Contact*/


/* New Footer */
footer {
    background: #F0F0F0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 22px;
    font-weight: 300;
}

footer .first-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
}

footer .row svg {
    position: relative;
    top: 3px;
    margin-right: 1rem;
}

footer .copyright {
    font-size: 13px;
    margin-top: 0.5rem;
    font-weight: 300;
    text-align: center;
}
footer .first-info strong:hover {
    color: #bc1c24 !important;
}
footer p {
    text-align: center;
}

footer a:hover {
    text-decoration: underline;
    text-decoration-color: #bc1c24;
}

footer .first-info p a:visited{
    color:inherit;
    list-style: none;
}
/* End New Footer */


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: #bc1c24;
		font-weight: 500;
	}
}

/* END KEYFRAMES */

/* Media Query For max-width:340 */
@media only screen and (max-width: 320px) {
    #header .nav-list ul.active {
        left: 0;
        width: 110vw;
        height: 110vh;
    }
    .carousel-body {
        width: 270px;
    }

    .card-new .details-new .content-new p {
        font-size: 1rem !important;
    }

    .coming-soon-feed {
        height: 260px;
    }
}

@media only screen and (max-width: 375px) {
    .card-new .details-new .content-new .Btn-new button{
        width: 170px;
        position: relative;
        bottom: 10px;
    }
    .card-new .details-new .content-new h2 {
        bottom: 0px;
        margin-bottom: 30px;
        font-size: 20px;
    }
    .card-new .details-new .content-new p {
        padding: 0px 10px 0px 10px;
        letter-spacing: 0;
        margin-top: 10px;
    }
    .card-new .details-new .content-new .Btn-new {
        margin-top: 30px;
    }
    .carousel-body {
        width: 350px;
    }

    .coming-soon-feed {
        height: 260px;
    }

    .card-new .details-new .content-new p {
        font-size: 1rem !important;
    }
}

@media only screen and (min-width: 376px) and (max-width: 491px) {
    .card-new .details-new .content-new h2 {
        bottom: 5px;
    }
    .card-new .details-new .content-new p {
        font-size: 1rem !important;
    }
    .coming-soon-feed {
        height: 240px;
    }
}

@media only screen and (min-width: 492px) and (max-width: 525px) {
    .card-new .details-new .content-new p {
        font-size: 1.2rem !important;
    }
}

@media only screen and (min-width: 492px) and (max-width: 619px) {
    .card-new .details-new .content-new h2 {
        bottom: 0;
    }

    .coming-soon-feed {
        height: 260px;
    }

}
/* Media Query For Tablet iPad */
@media only screen and (min-width: 620px) {
    .carousel-body {
        width: 600px;
    }
    .card-new .details-new .content-new h2 {
        bottom: 0;
    }
    .coming-soon-feed {
        height: 265px;
    }
}
@media only screen and (min-width: 768px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1.section-title {
        font-size: 6rem;
    }

    .card-new .details-new .content-new h2 {
        bottom: 0;
    }

    .coming-soon-feed {
        height: 265px;
    }
    
    /* NEW CARD STYLE */
    .products-new {
        width: 100% !important;
    }

    .pieces-new {
        margin-top: 0 !important;
        min-height: 70vh !important;
       
    }
    /* END NEW CARD STYLE */
    .carousel-body {
        width: 600px;
    }
    /* Hero */
    #hero h1 {
        font-size: 7rem;
    }
    /* End Hero */
    
    /* Products Section */
    #products .product-bottom .product-item {
        flex-basis: 45%;
        margin: 2.5%;
    }
    /* End Product Section */
    
    /* Project */
    #projects .project-item {
        flex-direction: row;
    }
    #projects .project-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #projects .project-item {
        height: 400px;
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    #projects .all-projects .project-info {
        height: 100%;
    }
    #projects .all-projects .project-img {
        height: 100%;
    }
    /* End Project */
    
    /* About */
    #about .about {
        flex-direction: row;
    }
    #about .col-left {
        width: 600px;
        height: 400px;
        padding-left: 60px;
    }
    #about .about .col-left .about-img::after {
        left: -45px;
        top: 34px;
        height: 98%;
        width: 98%;
        border: 10px solid #bc1c24;
    }
    #about .col-right {
        text-align: left;
        padding: 30px;
    }
    #about .col-right h1 {
        text-align: left;
    }
    /* End About */
    
    /*Contact*/

    #contact {
        margin:0 3.5rem;
    }
    .content-wrapper {
        display: flex;
        flex-direction: row;
    }

    .content-1170 {
        width: 80vw;    
    }
    .one_half {
        width: 46%;
        margin-right: 10rem;
    }
    
    .contact-submit-holder input {
        position: relative;
        margin-bottom: 25px;
        background: #36a9e1;
        border: 1px solid #36a9e1;
        border-radius: 20px;
        width: 100%;
        height: auto;
        cursor: pointer;
        font-size: 20px;
        color: white;
        font-weight: 700;
    }

    /*End Contact*/
}

    
    /* End Media Query For Tablet iPad */

    /* Media Query For Tablet iPad Pro */
@media only screen and (min-width: 1024px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1.section-title {
        font-size: 6rem;
    }
    /* NEW CARD STYLE */
    .products-new {
        width: 100% !important;
    }

    .pieces-new {
        margin-top: 0 !important;
        min-height: 70vh !important;
       
    }
    /* END NEW CARD STYLE */
    .carousel-body {
        width: 700px;
    }
    /* Home */
    #home h1 {
        font-size: 7rem;
    }
    #home .home a {
        height: 70px;
        width: 250px;
        text-align: center;
        margin-left: .7rem;
    }
    
    #home .home .cta {
        padding-top: 2rem;
    }
    /* End Home */
    
    /* Products Section */
    .products-container .card {
        padding-left: 2px;
    }
    .products-container {
        width: 70%;
    }
    #products .product-bottom .product-item {
        flex-basis: 45%;
        margin: 2.5%;
    }

    #products .product-bottom .icon {
        height: 25rem;
        width: 100%;
        margin-bottom: 20px;
    }
    /* End Products Section */
    
    /* Project */
    #projects .project-item {
        flex-direction: row;
    }
    #projects .project-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #projects .project-item {
        height: 400px;
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    #projects .all-projects .project-info {
        height: 100%;
    }
    #projects .all-projects .project-img {
        height: 100%;
    }
    /* End Project */
    
    /* About */
    #about .about {
        flex-direction: row;
    }
    #about .col-left {
        width: 600px;
        height: 400px;
        padding-left: 60px;
    }
    #about .about .col-left .about-img::after {
        left: -45px;
        top: 34px;
        height: 98%;
        width: 98%;
        border: 10px solid #bc1c24;
    }
    #about .col-right {
        text-align: left;
        padding: 30px;
    }
    #about .col-right h1 {
        text-align: left;
    }
    /* End About */
    
    /*Contact*/
    #contact {
        margin: 0 5rem;
    }
    .content-wrapper {
        display: flex;
        flex-direction: row;
    }

    .content-1170 {
        width: 80vw;    
    }
    .one_half {
        width: 46%;
        margin-right: 10rem;
    }
    
    .contact-submit-holder input {
        margin-bottom: 25px;
        background: #36a9e1;
        border: 1px solid #36a9e1;
        border-radius: 20px;
        width: 100%;
        height: auto;
        cursor: pointer;
        font-size: 20px;
        color: white;
        font-weight: 700;
    }
    /*End Contact*/
}

    
    /* End Media Query For Tablet iPad Pro */
    
    /* Media Query For Desktop */
    @media only screen and (min-width: 1200px) {
        /* new card style */
        .pieces-new {
            margin-top: 3rem !important;
            min-height: 100vh !important;
        }
        .products-new {
            width: 60% !important;
        }
        /* end new card style */
        .carousel-body {
            width: 700px;
        }
        /* header */
        #header .hamburger {
            display: none;
        }
        #header .nav-list ul {
            position: initial;
            display: block;
            height: auto;
            width: fit-content;
            background-color: transparent;
        }
        #header .nav-list ul li {
            display: inline-block;
        }
        #header .nav-list ul li a {
            font-size: 1.75rem;
        }
        #header .nav-list ul a::after {
            display: none;
        }
        /* YENİLENEN ALAN  TOP: 7PX OLDU, border ve  tr-a border silindi*/
        #header .nav-list ul div {
            display: inline;
            background-color: transparent;
            padding: 1rem 0.5rem;
            text-align: center;
            position: relative;
            border-radius: 5px;
            bottom: 4px;
        }
        #header .nav-list ul div a {
            padding: 0.5rem;
            position: relative; 
            top: 7px;
            font-weight: 300;
            text-transform: none;
        }
        #header .nav-list ul .eng-a img {
            width: 28px; 
            position: relative; 
            top: 0;
        }
        /* #header .nav-list ul div .tr-a {
            
        } */
        /* YENİLENEN ALAN */
        /*
        #header .nav-list ul .tr-a{
            padding-right: 0 !important;
            position: relative;
            right: 0;
        }
           
        
        {
            padding-right: 0 !important;
            
            position: relative;
            bottom: 0;
            left: 0;
        }
        */
        /* End header */

        /* HOME */

        #home .home a {
            height: 70px;
            width: 250px;
            text-align: center;
            margin-left: .7rem;
        }
        #header .nav-list ul .eng-a img {
            top: 4.5px !important;
        }
        #home .home .cta {
            padding-top: 2rem;
        }
        /* END HOME */

        #products{
            min-height: 50vh;
            margin-left: 1rem;
        }
        .products-container {
            width: 100%;
        }
        /* Products
        #products .product-bottom .product-item {
            flex-basis: 22%;
            margin: 1.5%;
        }
        */

        /* Certificates Section */
        #certificates .section-title {
            width: 40%;
            margin: 0 auto;
        }
        .coming-soon {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .coming-soon h2 {
            font-size: 3.5rem;
            padding-bottom: 3rem;
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 700;
            letter-spacing: 1rem;
            text-align: center;
        }
        /* End Certificates Section */
        /* About Section */
        #about .section-title {
            width: 30%;
        }
        
        .about-container {
            flex-direction: row;
            text-align: left;
        }

        /* End About Section*/

        /*footer */
        footer {
            background: #F0F0F0;
            padding-top: 2rem;
            padding-bottom: 2rem;
            font-size: 22px;
            font-weight: 300;
        }
    
        footer .first-info {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
        }
    
        footer .row svg {
            position: relative;
            top: 3px;
            margin-right: 1rem;
        }
    
        footer .copyright {
            font-size: 13px;
            margin-top: 0.5rem;
            font-weight: 300;
            text-align: center;
        }


    /* End Footer */

    /*Contact*/
    #contact {
        margin: 0 7rem;
    }
    .content-wrapper {
        display: flex;
        flex-direction: row;
    }

    .content-wrapper h2 {
        text-align: left;
    }

    .content-1170 {
        width: 80vw;    
    }
    .one_half {
        width: 46%;
        margin-right: 10rem;
    }
    .contact-submit-holder input {
        position: relative;
        margin-bottom: 25px;
        background: #36a9e1;
        border: 1px solid #36a9e1;
        border-radius: 20px;
        width: 100%;
        height: 5vh;
        cursor: pointer;
        font-size: 20px;
        color: white;
        font-weight: 700;
    }
    /*End Contact*/
}
    /* End  Media Query For Desktop */

