/*-----------------------------------------------------------------------------
version:   	1.0
date:      	2023/01/01
author:		canada.net.tr
email:     	info@canada.net.tr
website:   	http://canada.net.tr
-----------------------------------------------------------------------------*/
/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Banner-Section
  - About-Section
  - Project Section
  - Press-Release-Section
  - Contact-Section
  - StandAlone Page
  - Media queries
*/

/* ===================================
	Fonts
====================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* ===================================
	Scrollbar
====================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    width: 12px;
    background: white;
    border-left: 0 solid white;
    border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
    background: #a42433;
    width: 0;
    height: 25%;
    transition: .5s ease;
    cursor: pointer;
}

/* ===================================
    General
====================================== */

body {
    overflow-x: hidden;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: initial !important;
}

a {
    text-decoration: none;
}

.font {
    font-family: 'Cormorant Garamond', serif;
}

/*Headings*/
.subheading {
    color: #a42433;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}

.heading {
    font-family: 'Cormorant', serif;
    color: #b3b3b3;
    font-size: 65px;
    text-align: left;
    line-height: 60px;
    padding-bottom: 20px;
}

}

/*Social Icons*/
.social-icons-simple li {
    display: inline-block;
    padding-left: 8px;
}

    .social-icons-simple li:first-child {
        padding-left: 0;
    }

    .social-icons-simple li a {
        display: block;
        font-size: 16px;
        height: 40px;
        line-height: 42px;
        border: 1px solid transparent;
        text-align: center;
        width: 40px;
        border-radius: 50%;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: background-color .5s ease;
        color: #ffffff;
    }

    .social-icons-simple li.animated-wrap a:hover {
        background-color: transparent;
    }

.icon-hovr:hover {
    background-color: #fff;
    color: #a42433;
}

/*Button*/
.btn {
    z-index: 2;
    letter-spacing: .5px;
    border-radius: 0;
    font-weight: 500;
    overflow: hidden;
    position: absolute;
    line-height: inherit;
    display: inline-block;
    color: #202020;
    border: 2px solid transparent;
    text-transform: capitalize;
    transition: all .5s ease !important;
}

    .btn.button {
       /* font-size: 12px !important;*/
        /*font-weight: 600;*/
        /*color: #202020;
        padding: 9px 27px;
        line-height: 1.8em;*/
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
        /*font-family: 'Montserrat', sans-serif;*/
    }

    .btn.btn-rounded {
        border-radius: 50px;
    }

    .btn.white-btn {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

    .btn.red-btn {
        background: #fff;
        border-color: #a42433;
        color: #a42433;
    }

.center-button {
    text-align: center;
}

/*Button hover*/
.btn.btn-hvr-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #a42433;
}

.btn.btn-hvr-red:hover {
    background-color: #a42433;
    border-color: #a42433;
    color: #fff;
}

/* ===================================
        Preloader
   ====================================== */

.loader {
    background: #fff;
    text-align: center;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .loader img {
        position: absolute;
        width: 170px;
    }

.linear-activity {
    overflow: hidden;
    width: 100%;
    height: 4px;
    background-color: transparent;
    margin: 20px auto;
}

.determinate {
    position: relative;
    max-width: 100%;
    height: 100%;
    -webkit-transition: width 500ms ease-out 1s;
    -moz-transition: width 500ms ease-out 1s;
    -o-transition: width 500ms ease-out 1s;
    transition: width 500ms ease-out 1s;
    background-color: #03A9F4;
}

.indeterminate {
    position: relative;
    width: 100%;
    height: 100%;
}

    .indeterminate:before {
        content: '';
        position: absolute;
        height: 100%;
        background-color: #4d4d4d;
        animation: indeterminate_first 1.5s infinite ease-out;
    }

    .indeterminate:after {
        content: '';
        position: absolute;
        height: 100%;
        background-color: #4d4d4d;
        animation: indeterminate_second 1.5s infinite ease-in;
    }

@keyframes indeterminate_first {
    0% {
        left: -100%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

@keyframes indeterminate_second {
    0% {
        left: -150%;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

/* ===================================
    Navbar
====================================== */

.navigation-bar {
    width: 100%;
}

.navbar {
    padding: 0;
    z-index: 111;
    height: 90px;
    width: 100%;
    background-color: transparent !important;
}

.navbar-brand img {
    padding-left: 15px;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 6px 6px;
    margin-left: 30px;
    margin-right: 50px;
    transition: .5s ease;
    border: 2px solid transparent;
    display: block;
}

.navbar .navbar-nav {
    margin-right: 5rem;
}

    .navbar .navbar-nav .nav-link.active {
        color: #fff;
        transition: all .6s ease;
    }

    .navbar .navbar-nav .nav-link:hover {
        transition: all .6s ease;
    }

    .navbar .navbar-nav .nav-link:last-child {
        margin-right: 0;
    }

    .navbar .navbar-nav .nav-link:after {
        content: '';
        display: block;
        margin: auto;
        height: 3px;
        width: 0;
        background: transparent;
        transition: width .5s ease, background-color .5s ease;
    }

    .navbar .navbar-nav .nav-link:hover:after {
        width: 100%;
        background: #fff;
    }

    .navbar .navbar-nav .button {
        margin-left: 30px;
    }

.navbar-fixed-top.scrolled .navbar-brand {
    display: none;
}

.navbar-fixed-top.scrolled .navbar-nav {
    display: none;
}

.navbar-fixed-top.scrolled .sidemenu_btn {
    background-color: #000;
    transition: none;
}

    .navbar-fixed-top.scrolled .sidemenu_btn:hover {
        background-color: #a42433;
        transition: all .5s ease;
    }

/*side menu button*/
.sidemenu_btn {
    width: 36px;
    padding: 6px;
    right: 18px;
    top: 20px;
    z-index: 999;
    margin-top: 12px;
    margin-left: 16px;
    cursor: pointer;
    position: absolute;
    display: inline-block;
    transition: all .3s linear;
}

    .sidemenu_btn span {
        height: 2px;
        width: 100%;
        background: #fff;
        display: block;
        margin: auto;
        transition: .5s ease;
    }

    .sidemenu_btn:hover span:first-child,
    .sidemenu_btn:hover span:last-child {
        width: 70%;
        background-color: #f1f1f1;
    }

    .sidemenu_btn:hover span:nth-child(2) {
        background-color: #fff;
    }

    .sidemenu_btn span:nth-child(2) {
        margin: 4px 0;
    }

/* ===================================
    Side Menu
====================================== */

.side-menu {
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    z-index: 9999;
    background: #000;
    transform: translate3d(100%, 0, 0);
    transition: transform .5s ease;
    position: fixed;
    overflow: hidden;
}

    .side-menu.left {
        left: 0;
        right: auto;
        transform: translate3d(-100%, 0, 0);
    }

    .side-menu.before-side {
        width: 280px;
    }

    .side-menu.side-menu-active,
    .side-menu.before-side {
        transform: translate3d(0, 0, 0);
    }

.pul-menu .side-menu.side-menu-active {
    visibility: visible;
    opacity: 1;
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}


/*Side overlay*/
#close_side_menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1031;
    opacity: 0.7;
    background-color: #000;
    position: fixed;
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.sidemenu-image {
    position: absolute;
    top: 45px;
}

/*side menu close btn*/
.side-menu .btn-close {
    height: 33px;
    width: 33px;
    top: 30px;
    right: 25px;
    cursor: pointer;
    text-align: center;
    position: absolute;
    display: inline-block;
}

.side-menu.before-side .btn-close {
    display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
    top: 5px;
    left: 16px;
    height: 24px;
    width: 2px;
    content: ' ';
    background: #fff;
    position: absolute;
}

.side-menu .btn-close:before {
    transform: rotate(45deg);
}

.side-menu .btn-close:after {
    transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
    transform: scale(0.9);
    overflow: hidden;
    transition: all .5s ease;
}


/*side menu inner-wrapper*/
.side-menu .inner-wrapper {
    height: 100%;
    padding: 4.5rem 5rem;
    position: relative;
    overflow-y: auto;
    display: flex;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
    padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
    margin-bottom: 0;
    margin-top: 50px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    opacity: 0;
    display: block;
    margin: 15px 0;
    padding: 0 !important;
    transition: all 0.8s ease 500ms;
    transform: translateY(30px);
}

    .side-nav .navbar-nav .nav-item:first-child {
        transition-delay: .1s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(2) {
        transition-delay: .2s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(3) {
        transition-delay: .3s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(4) {
        transition-delay: .4s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(5) {
        transition-delay: .5s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(6) {
        transition-delay: .6s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(7) {
        transition-delay: .7s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(8) {
        transition-delay: .8s;
    }

    .side-nav .navbar-nav .nav-item:nth-child(9) {
        transition-delay: .9s;
    }

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    transform: translateY(0);
    opacity: 1;
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #ddd;
    padding: 2px 0 3px 0 !important;
    font-size: 24px;
    line-height: normal;
    position: relative;
    border-radius: 0;
    text-decoration: none;
}

    .side-nav .navbar-nav .nav-link::after {
        content: "";
        left: 0;
        width: 0;
        bottom: 0;
        height: 2px;
        background: #fff;
        overflow: hidden;
        position: absolute;
        display: inline-block;
        transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    }

    .side-nav .navbar-nav .nav-link:hover::after,
    .side-nav .navbar-nav .nav-link:focus::after,
    .side-nav .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    .side-nav .navbar-nav .nav-link.active {
        background: transparent;
    }

/*main Menu*/
.main-menu {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0px;
}

    .main-menu a {
        color: #8f8f90;
        display: block;
        padding: 0px 0px 0px 20px;
        text-decoration: none;
        line-height: 20px;
    }

        .main-menu a:hover {
            color: #fff;
        }

        .main-menu a.active {
            color: white;
        }
/*side menu footer */
.side-menu-footer .navbar-nav {
    transform: translateY(0);
}

.side-menu-footer p {
    color: #ddd;
    font-size: 17px;
}

.side-menu-footer .banner-icons ul {
    margin-bottom: 0;
}

    .side-menu-footer .banner-icons ul li {
        display: inline-block;
    }

        .side-menu-footer .banner-icons ul li i {
            color: #231f20;
        }

        .side-menu-footer .banner-icons ul li a:hover {
            background-color: #fff;
            transition: all .8s ease;
        }

        .side-menu-footer .banner-icons ul li a {
            color: #fff;
            display: block;
            overflow: hidden;
            text-align: center;
            font-size:40px;
            margin:20px;
        }

            .side-menu-footer .banner-icons ul li a:hover i {
                color: #000;
            }

/* ===================================
    Banner-Section
====================================== */

.banner-section {
    background-image: url('../img/YilmazDogan_Banner01.jpg');
    background-size: cover;
    height: 1450px;
    background-color: #fff;
    /* left: 15px !important;*/
    position: relative !important;
}

    .banner-section .rectangle {
        position: absolute;
        top: 0;
        left: 150px;
        width: 340px;
        height: 610px;
        background-color: #a42433;
    }

    .banner-section .social-icons-simple {
        margin: 0 0 8px;
    }

    .banner-section .rectangle .text {
        position: absolute;
        bottom: 60px;
        left: 28px;
    }

        .banner-section .rectangle .text h2 {
            font-size: 80px;
            color: #fff;
            font-weight: 600;
        }

        .banner-section .rectangle .text p {
            font-size: 16px;
            padding-right: 130px;
            color: #fff;
            font-weight: 400;
            margin: 0;
        }

    .banner-section .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #fff;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #fff;
        text-align: center;
        font-size: 15px;
        transition: .5s ease;
    }

    .banner-section .media {
        width: 160px;
        height: 50px;
        margin-top: 20px;
        padding: 10px 12px 10px 0;
        background-color: transparent;
    }

        .banner-section .media .media-body {
            margin-left: 10px;
            color: #fff;
        }

        .banner-section .media:hover i {
            color: #fff;
            border: 1px solid #000;
            background-color: #000;
            transition: .5s ease;
        }

        .banner-section .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

/*Social icons*/
.social-icons {
    position: absolute;
    bottom: 0;
    left: 10px;
}

.banner-section .social-icons-simple li a {
    font-size: 15px;
    height: 30px;
    line-height: 31px;
    width: 30px;
}

/* ===================================
     About-Section
====================================== */

.about-section {
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: #ddd;
    /*left: 15px !important;*/
    position: relative !important;
}

    .about-section .heading {
        padding-left: 250px;
        padding-right: 250px;
    }

    .about-section .text-section {
        margin-top: 60px;
    }

        .about-section .text-section .heading {
            padding-left: 0;
            padding-right: 0;
            font-size: 36px;
            margin-bottom: 40px;
            text-align: left;
        }

        .about-section .text-section .text {
            color: #434343;
            font-size: 20px;
            font-weight: 400;
            text-align: justify;
            padding-right: 70px;
        }

    .about-section .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #a42433;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #a42433;
        text-align: center;
        font-size: 18px;
        transition: .5s ease;
    }

    .about-section .media {
        width: 160px;
        height: 50px;
        padding: 10px 12px 10px 0;
        background-color: transparent;
    }

        .about-section .media .media-body {
            margin-left: 10px;
            color: #a42433;
        }

        .about-section .media:hover i {
            color: #fff;
            border: 1px solid #a42433;
            background-color: #a42433;
            transition: .5s ease;
        }

        .about-section .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

    .about-section .img-section {
        z-index: 1;
        text-align: center;
    }

    .about-section img {
        position: initial;
    }

    .about-section .rectangle {
        top: 120px;
        right: 0;
        width: 350px;
        height: 400px;
        position: absolute;
        background-color: #a42433;
    }
/* ===================================
     Master-Section
====================================== */

.Master-Section {
    padding-top: 0px;
    padding-bottom: 0px;
   /* background-color: #ddd;*/
    position: relative;
    /*left: 15px;*/
}

    .Master-Section .heading {
        padding-left: 250px;
        padding-right: 250px;
    }

    .Master-Section .text-section {
        margin-top: 60px;
    }

        .Master-Section .text-section .heading {
            color: #231f20 !important;
            padding-left: 0;
            padding-right: 0;
            font-size: 55px;
            margin: 20px 0px 0px 0px;
            padding: 0px;
            line-height: 45px;
        }

        .Master-Section .text-section .text p {
            color: #231f20 !important;
            font-size: 30px !important;
            font-weight: 400 !important;
            text-align: justify !important;
            margin: 0px !important;
            padding: 0px !important;
        }
    .Master-Section p {
        color: #231f20 !important;
        font-size: 30px !important;
        font-weight: 400 !important;
        margin: 20px 20px 10px 20px !important; 
    }
    .Master-Section .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #a42433;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #a42433;
        text-align: center;
        font-size: 18px;
        transition: .5s ease;
    }

    .Master-Section .media {
        width: 160px;
        height: 50px;
        padding: 10px 12px 10px 0;
        background-color: transparent;
    }

        .Master-Section .media .media-body {
            margin-left: 10px;
            color: #a42433;
        }

        .Master-Section .media:hover i {
            color: #fff;
            border: 1px solid #a42433;
            background-color: #a42433;
            transition: .5s ease;
        }

        .Master-Section .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

    .Master-Section .img-section {
        z-index: 1;
    }

    .Master-Section .rectangle {
        top: 120px;
        right: 0;
        width: 350px;
        height: 400px;
        position: absolute;
        background-color: #a42433;
    }
/* ===================================
     Works-Section
====================================== */

.works-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ddd;
    background-image: url("../img/works/works_background.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    /*left: 15px;*/
}

    .works-section .heading {
        padding-left: 250px;
        padding-right: 250px;
    }

    .works-section .text-section {
        margin-top: 60px;
    }

        .works-section .text-section .heading {
            padding-left: 0;
            padding-right: 0;
            font-size: 80px;
            margin: 0px;
            padding: 0px;
        }

        .works-section .text-section .text {
            color: #434343;
            font-size: 20px;
            font-weight: 400;
            text-align: justify;
            margin: 0px;
            padding: 0px;
        }

    .works-section .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #a42433;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #a42433;
        text-align: center;
        font-size: 18px;
        transition: .5s ease;
    }

    .works-section .media {
        width: 160px;
        height: 50px;
        padding: 10px 12px 10px 0;
        background-color: transparent;
    }

        .works-section .media .media-body {
            margin-left: 10px;
            color: #a42433;
        }

        .works-section .media:hover i {
            color: #fff;
            border: 1px solid #a42433;
            background-color: #a42433;
            transition: .5s ease;
        }

        .works-section .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

    .works-section .img-section {
        z-index: 1;
    }

    .works-section .rectangle {
        top: 120px;
        right: 0;
        width: 350px;
        height: 400px;
        position: absolute;
        background-color: #a42433;
    }
/* ===================================
     Project-Section
====================================== */

.project-section {
    /*left: 15px !important;*/
    position: relative !important;
}

    .project-section .navbar {
        position: absolute;
        background-color: transparent !important;
    }

    .project-section .rectangle {
        bottom: 0;
        width: 320px;
        height: 400px;
        position: absolute;
        background-color: #a42433;
    }

        .project-section .rectangle .project-text {
            position: relative;
            left: 50px;
            top: 100px;
        }

    .project-section .project-text h2 {
        color: #fff;
        font-size: 40px;
        font-weight: 600;
    }

    .project-section .project-text p {
        font-size: 16px;
        color: #fff;
        padding-right: 90px;
        font-weight: 400;
    }

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 80px;
    height: 40px;
}

/* ===================================
     Press-Release-Section
====================================== */

.media-section {
    padding-top: 120px;
    background-color: #ddd;
    background-image: url(../img/adwards/adwards_background.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    height: 900px;
    /*left: 15px !important;*/
    position: relative !important;
}

    .media-section .heading {
        margin-bottom: 0;
    }

    .media-section .cards-section {
        position: relative;
        top: 120px;
    }

        .media-section .cards-section .card-body .card-text {
            color: #515050;
            font-size: 16px;
            font-weight: 400;
        }

        .media-section .cards-section .card-body .card-title {
            color: #a42433;
            font-size: 24px;
            margin-bottom: 25px;
        }

        .media-section .cards-section .active {
            background-color: #fff !important;
        }

            .media-section .cards-section .active .card-title {
                color: #fff;
            }

            .media-section .cards-section .active p {
                color: #fff;
            }

    .media-section .active .media i {
        color: #fff;
        border: 1px solid #fff;
    }

    .media-section .active .media .media-body {
        color: #fff;
    }

    .media-section .cards-section .cards {
        width: 100%;
        text-align: center;
    }

    .media-section .cards-section .card {
        z-index: 1;
        margin-left: 40px;
        transition: .3s ease-in;
        border: 1px solid transparent;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        padding: 0px;
        display: inline-block;
        width: 180px;
        cursor: pointer;
        background-color: #e7e7e7;
    }

    .media-section .cards-section .card-body {
        padding: 20px;
        font-weight: 400;
    }

        .media-section .cards-section .card-body .card-title {
            font-weight: 600;
        }

    .media-section .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #000;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #000;
        text-align: center;
        font-size: 15px;
        transition: .5s ease;
    }

    .media-section .media {
        width: 160px;
        height: 50px;
        padding: 10px 12px 10px 0;
        background-color: transparent;
    }

        .media-section .media .media-body {
            margin-left: 10px;
            color: #000;
        }

        .media-section .media:hover i {
            color: #fff;
            border: 1px solid #000;
            background-color: #000;
            transition: .5s ease;
        }

        .media-section .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

/* ===================================
    Contact Section
====================================== */

.contact-section {
    position: relative;
    background-color: #fff;
    padding-bottom: 120px;
    padding-top: 120px;
    /*left: 15px !important;*/
    position: relative !important;
}

    .contact-section .heading {
        text-align: left;
        margin-bottom: 0;
    }

    .contact-section .subheading {
        text-align: left;
        margin-bottom: 0;
    }

    /*Form Section*/
    .contact-section .contact-form {
        margin-right: 90px;
        margin-top: 80px;
    }

        .contact-section .contact-form .form-control {
            border: none;
            padding: 0;
            background: transparent;
            font-weight: normal;
            border-radius: 0;
            box-shadow: none;
            margin-bottom: 47px;
            color: #000;
            font-size: 14px;
            transition: border .9s ease;
            border-bottom: 1px solid #202020;
        }

.contact-form .form-control::placeholder {
    color: #202020;
}

.form-control:focus {
    color: #202020;
    box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .button {
    width: 100%;
    margin-left: 14px;
    margin-right: 14px;
}

.contact-section .img-section img {
    position: relative;
    z-index: 1;
    top: 180px;
    left: 50px;
}

.contact-section .rectangle {
    position: absolute;
    top: 120px;
    right: 0;
    width: 450px;
    height: 500px;
    background-color: #a42433;
}

.contact-section .copyright-section {
    padding-top: 120px;
    color: #000;
}

    .contact-section .copyright-section i {
        font-size: 25px;
    }

    .contact-section .copyright-section .column {
        padding-right: 0;
    }

/* ===================================
    StandAlone Page
====================================== */

.header {
    background-image: url('../img/header.jpg');
    height: 70vh;
    display: flex;
    background-size: cover;
    align-items: center;
}

    .header .rectangle {
        top: 0;
        width: 324px;
        height: 400px;
        position: absolute;
        background-color: #a42433;
    }

    .header .social-icons-simple {
        margin: 0 0 8px;
    }

    .header .rectangle .text {
        position: absolute;
        bottom: 55px;
        left: 75px;
    }

        .header .rectangle .text h2 {
            font-size: 62px;
            color: #fff;
            font-weight: 600;
        }

        .header .rectangle .text p {
            font-size: 16px;
            padding-right: 130px;
            color: #fff;
            font-weight: 400;
            margin-bottom: 20px;
        }

            .header .rectangle .text p:last-child {
                margin-bottom: 0;
            }

    .header .media i {
        overflow: hidden;
        border-radius: 50%;
        color: #fff;
        height: 30px;
        line-height: 28px;
        width: 30px;
        border: 1px solid #fff;
        text-align: center;
        font-size: 15px;
        transition: .5s ease;
    }

    .header .media {
        width: 160px;
        height: 50px;
        padding: 30px 12px 10px 5px;
        background-color: transparent;
    }

        .header .media .media-body {
            margin-left: 10px;
            color: #fff;
        }

        .header .media:hover i {
            color: #fff;
            border: 1px solid #000;
            background-color: #000;
            transition: .5s ease;
        }

        .header .media:hover {
            cursor: pointer;
            transition: .5s ease;
        }

/*Main Page Start*/
.main-page {
    width: 100%;
    color: #000;
    padding-top: 120px;
    padding-bottom: 120px;
}

    .main-page .standalone-heading {
        padding-bottom: 100px;
    }

    .main-page .sub-heading {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .main-page .heading {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .main-page .text {
        font-weight: 400;
    }

    .main-page .image {
        position: relative;
    }

        .main-page .image img {
            width: 100%;
            height: 100%;
            display: block;
        }

.standalone-area .standalone-row {
    margin-bottom: 40px;
}

    .standalone-area .standalone-row:last-child {
        margin-bottom: 0;
    }

.main-page .standalone-row .text {
    padding-left: 30px;
    text-align: center;
}

.standalone-row:nth-child(2) .text {
    padding-left: 0;
    padding-right: 30px;
}

.main-page .contact-section .copyright-section {
    padding-top: 0;
}

.main-page .contact-section {
    padding-bottom: 0;
}

/* Image Hover*/
.overlay {
    position: absolute;
    transition: all 0.3s ease;
    opacity: 0;
    background-color: #a42433;
}

.hover-effect:hover .overlay {
    opacity: .4;
}

.overlayBottom {
    width: 100%;
    height: 0;
    top: 0;
    right: 0;
    cursor: pointer;
    background-color: #a42433;
}

.hover-effect:hover .overlayBottom {
    height: 100%;
}

/* ===================================
     Media Queries
====================================== */

@media (width: 1920px) {
    /*Banner Section*/
    .banner-section .rectangle {
        width: 400px;
        /*height: 874px;*/
    }

        .banner-section .rectangle .text {
            bottom: 140px;
            left: 85px;
        }

    /*About-Section*/
    .about-section img {
        position: relative;
        left: 200px;
    }

    /*Project Section*/
    .project-section .rectangle {
        height: 490px;
    }

        .project-section .rectangle .project-text {
            top: 150px;
        }

    /*Contact Section*/
    .contact-section .img-section img {
        left: 200px;
    }

    /*StandAlone Page*/
    .header .rectangle {
        height: 600px;
        width: 360px;
    }

        .header .rectangle .text {
            bottom: 90px;
        }
}

@media (width: 1600px) {
    /*StandAlone Page*/
    .header .rectangle {
        height: 615px;
        width: 365px;
    }

        .header .rectangle .text {
            bottom: 95px;
        }
}

@media (max-width: 1200px) {
    /*Navbar*/
    .navbar {
        background-color: #000 !important;
    }

    /*Side Menu*/
    .side-menu {
        width: 50%;
    }

    /*Banner Section*/
    .banner-section {
        margin-top: 4.7rem;
        text-align: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

        .banner-section .rectangle {
            width: 1024px;
            height: 768px;
            top: 607px;
            left: 0;
        }

        .banner-section .media {
            padding: 0;
        }

        .banner-section .rectangle .text p {
            padding-right: 0;
        }

        .banner-section .rectangle .text {
            bottom: 274px;
            left: 175px;
        }

        .banner-section .media {
            width: 100%;
            display: block;
        }

    .social-icons {
        left: 43%;
    }

    /*About Section*/
    .about-section .rectangle {
        top: 320px;
        width: 390px;
        height: 390px;
    }

    .about-section .heading {
        padding-left: 130px;
        padding-right: 130px;
    }

    .about-section .text-section .heading {
        font-size: 30px;
    }

    /*Project Section*/
    .project-section .rectangle {
        left: 125px;
        height: 280px;
    }

        .project-section .rectangle .project-text {
            left: 40px;
            top: 44px;
        }

    /*Contact Section*/
    .contact-section .rectangle {
        top: 242px;
        width: 420px;
        height: 390px;
    }

    .contact-section .img-section img {
        left: 0;
    }

    .contact-section .copyright-section .media-body p {
        font-size: 13px;
    }

    /*StandAlone*/
    .header {
        margin-top: 5.6rem;
        margin-bottom: -5.6rem;
        text-align: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

        .header .rectangle {
            width: 1024px;
            height: 425px;
            top: 462px;
            left: 0;
        }

            .header .rectangle .text {
                left: 210px;
                bottom: 135px;
            }

                .header .rectangle .text p {
                    padding-right: 0;
                }

                .header .rectangle .text h2 br {
                    display: none;
                }
}

@media (max-width: 992px) {
    .heading {
        font-size: 40px;
        margin-bottom: 0;
    }
    /*Navbar*/
    .navbar {
        height: 75px;
    }

    .navbar-fixed-top.scrolled .navbar-brand {
        display: block;
    }

    .sidemenu_btn {
        top: 14px;
    }

    /*Side Menu*/
    .side-menu {
        width: 100%;
    }

    /*Banner Section*/
    .banner-section .rectangle {
        width: 768px;
        top: 474px;
        height: 565px;
        left: 0;
    }

        .banner-section .rectangle .text {
            bottom: 220px;
            left: 82px;
        }

            .banner-section .rectangle .text h2 {
                font-size: 55px;
            }

    .banner-section .media .media-body {
        margin-left: 0;
    }

    .social-icons {
        left: 40%;
    }

    /*About Section*/
    .heading {
        font-size: 40px;
        margin-bottom: 0;
    }

    .about-section .heading {
        padding-left: 0;
        padding-right: 0;
    }

    .about-section {
        padding-bottom: 0;
        margin-bottom: -70px;
    }

        .about-section .text-section .text {
            text-align: center;
            padding-right: 0;
        }

        .about-section .rectangle {
            position: relative;
            top: -340px;
            right: 0;
            width: 715px;
            height: 625px;
        }

        .about-section .img-section img {
            width: 100%;
        }

        .about-section .img-section {
            top: 240px;
        }

        .about-section .text-section .heading {
            font-size: 30px;
            text-align: center;
        }

        .about-section .media {
            display: block;
            width: 100%;
            text-align: center;
            padding: 10px 0 10px 0;
        }

            .about-section .media .media-body {
                margin-left: 0;
            }

    /*Project Section*/
    .project-section .rectangle .project-text {
        left: 0;
    }

    .project-section .rectangle {
        position: relative;
        width: 767px;
        left: -39px;
    }

        .project-section .rectangle .project-text {
            text-align: center;
        }

    .project-section .project-text p {
        padding-right: 0;
    }

    .project-section .project-text h2 {
        font-size: 45px;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }

    /*Media Section*/
    .media-section .cards-section .card {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .media-section .card-body {
        text-align: center;
    }

    .media-section .card .media {
        display: block;
        width: 100%;
    }
    /*Contact Section*/
    .contact-section .img-section img {
        width: 100%;
        top: 0;
        position: relative;
    }

    .contact-section .contact-form {
        margin-bottom: 80px;
    }

    .contact-section .rectangle {
        top: 868px;
        width: 720px;
        height: 600px;
        left: 0;
        position: absolute;
    }

    .contact-section .contact-form {
        margin-right: 0;
    }

    .contact-section .subheading {
        text-align: center;
    }

    .contact-section .heading {
        text-align: center;
    }

    .contact-section .media {
        display: block;
        text-align: center;
        margin-bottom: 50px;
    }

    /*StandAlone Page*/
    .header {
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: 4.7rem;
    }

        .header .rectangle {
            width: 768px;
            top: 354px;
            height: 319px;
            left: 0;
        }

            .header .rectangle .text {
                bottom: 90px;
                left: 82px;
                text-align: center;
            }

                .header .rectangle .text h2 {
                    font-size: 50px;
                    margin-bottom: 20px;
                }

                    .header .rectangle .text h2 br {
                        display: none;
                    }

                .header .rectangle .text p {
                    padding-right: 0;
                }

    .main-page .heading {
        font-size: 45px;
    }

    .main-page p {
        font-size: 14px;
        text-align: center;
    }

    .standalone-area .standalone-row {
        margin-bottom: 80px;
    }

    .main-page .standalone-row .text {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .standalone-row:nth-child(2) .text {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .heading {
        font-size: 30px;
    }

    .wow {
        visibility: visible !important;
        animation: none !important;
    }

    .side-menu-footer p {
        font-size: 12px;
    }

    /*Banner Section*/
    .banner-section {
        margin-bottom: -7.5rem;
    }

        .banner-section .rectangle {
            width: 375px;
            top: 270px;
            height: 442px;
        }

            .banner-section .rectangle .text h2 {
                font-size: 40px;
            }

    .social-icons {
        left: 105px;
        bottom: 100px;
    }

    .banner-section .rectangle .text {
        left: 0;
        bottom: 130px;
    }

    /*About Section*/
    .about-section .rectangle {
        top: -140px;
        width: 356px;
        height: 300px;
    }

    .about-section .img-section {
        top: 143px;
    }

    /*Project Section*/
    .project-section {
        padding-top: 70px;
    }

        .project-section .rectangle {
            width: 375px;
            left: -15px;
            background-color: #f1f1f1;
        }

        .project-section .project-text h2 {
            font-size: 35px;
            color: #000;
        }

        .project-section .project-text p {
            color: #000;
        }

        .project-section .btn.white-btn {
            border-color: #a42433;
            color: #a42433;
        }

        .project-section .btn.btn-hvr-white:hover {
            border-color: #a42433;
            background-color: #a42433;
            color: #fff;
        }

    /*Contact Section*/
    .contact-section .rectangle {
        top: 832px;
        width: 335px;
        height: 295px;
        right: 43px;
    }

    /*StandAlone Page*/
    .header {
        margin-bottom: -3.6rem;
    }

        .header .rectangle {
            width: 375px;
            height: 375px;
            top: 211px;
        }

            .header .rectangle .text {
                left: 0;
                bottom: 105px;
            }

                .header .rectangle .text h2 {
                    font-size: 38px;
                }
}

@media (max-width: 370px) {
    /*Navbar*/
    .navbar-brand img {
        width: 80px;
    }

    .sidemenu_btn {
        top: 15px;
    }

    /*Side Menu*/
    .side-menu-footer p {
        font-size: 11px;
    }

    .side-menu .side-nav {
        margin-top: 30px;
    }

    /*Banner-Section*/
    .banner-section .rectangle {
        width: 360px;
        height: 335px;
        top: 262px;
    }

        .banner-section .rectangle .text {
            bottom: 90px;
        }

            .banner-section .rectangle .text h2 {
                font-size: 40px;
            }

    .banner-section .social-icons {
        bottom: 40px;
    }

    /*About Section*/
    .about-section .heading {
        font-size: 29px;
    }

    .about-section .text-section .heading {
        font-size: 22px;
    }

    .about-section .rectangle {
        width: 340px;
    }

    /*Project Section*/
    .project-section .rectangle {
        width: 360px;
    }

    /*StandAlone*/
    .header .rectangle {
        width: 360px;
        height: 300px;
        top: 262px;
    }

        .header .rectangle .text {
            left: 0;
            bottom: 75px;
        }

            .header .rectangle .text h2 {
                font-size: 33px;
            }
}

.mainmenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.full {
    max-width: 100% !important;
    padding: 0px !important;
}

.mainprg {
    padding: 300px 0px 0px 150px;
}

    .mainprg .content {
        max-width: 400px;
    }

    .mainprg .text {
        font-size: 20px;
        color: #434343;
        text-align: justify;
    }

.mainabt {
    padding: 410px 0px 0px 250px;
}

    .mainabt .content {
        max-width: 350px;
    }

    .mainabt img {
    }

    .mainabt .text {
        font-size: 20px;
        color: #434343;
        text-align: justify;
        font-style: italic;
        margin-top: -20px;
        margin-left: -95px;
    }

.grey-btn {
    border: solid 1px #a5a8a0;
    color: #fff !important;
    font-weight: 500;
    padding: 15px !important;
    line-height: 0.5em !important;
    background-color: #a5a8a0;
    font-size: 24px;
    font-family: 'Cormorant Garamond', sans-serif;
    border-radius: 0em;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .8s ease;
    text-decoration: none;
    border-radius: 10px;
    width: 92%;
}

    .grey-btn:hover {
        transform: translateY(0) scale(1.1);
        color: #a5a8a0 !important;
        background-color: #ddd;
    }

        .grey-btn:hover span {
            transform: translateY(0) scale(3.1);
        }

    .grey-btn span:nth-child(1) {
        left: calc((1 - 1) * 25%);
        transition-delay: calc((1 - 1) * 0.1s);
    }

    .grey-btn span:nth-child(2) {
        left: calc((2 - 1) * 25%);
        transition-delay: calc((2 - 1) * 0.1s);
    }

    .grey-btn span:nth-child(3) {
        left: calc((3 - 1) * 25%);
        transition-delay: calc((3 - 1) * 0.1s);
    }

    .grey-btn span:nth-child(4) {
        left: calc((4 - 1) * 25%);
        transition-delay: calc((4 - 1) * 0.1s);
    }

    .grey-btn span:nth-child(5) {
        left: calc((5 - 1) * 25%);
        transition-delay: calc((5 - 1) * 0.1s);
    }

.mt-20 {
    margin-top: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}
.mt-40 {
    margin-top: 40px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}
.toptool-1 {
    position: absolute;
    left: 40px;
    top: 300px;
}

.toptool-1-2 {
    position: absolute;
    left: 40px;
    bottom: 0px;
}

.toptool-1-h {
    position: absolute;
    left: -220px;
    top: 1000px;
}

.toptool-2 {
    position: absolute;
    left: 40px;
    top: 300px;
}

.toptool-2-h {
    position: absolute;
    left: -220px;
    top: 1000px;
}

.toptool-3 {
    position: absolute;
    left: 40px;
    top: 80px;
}

.toptool-3-h {
    position: absolute;
    left: -220px;
    top: 0px;
}

.toptool-4 {
    position: absolute;
    left: 40px;
    top: 120px;
}

.toptool-4-h {
    position: absolute;
    left: -220px;
    top: 0px;
}

.toptool-5 {
    position: absolute;
    left: 40px;
    top: 80px;
}

    .toptool-5 img {
        left: 0px;
    }

.toptool-5-h {
    position: absolute;
    left: -220px;
    top: 0px;
}

    .toptool-5-h img {
        left: 0px;
    }

.toptool-6 {
    position: absolute;
    left: 40px;
    top: 120px;
}

    .toptool-6 img {
        left: 0px;
    }

.toptool-6-h {
    position: absolute;
    left: -220px;
    top: 650px;
}

    .toptool-6-h img {
        left: 0px;
    }

.toptool-1-contact {
    position: absolute;
    left: -220px;
    top: 250px;
}

.toptool-works01 {
    position: absolute;
    left: -220px;
    top: 250px;
}

.toptool-works-sub01 {
    position: absolute;
    left: 170px;
    top: 320px;
}

.toptool-awards01 {
    position: absolute;
    left: -200px;
    top: 220px;
}

.toptool-awards-sub01 {
    position: absolute;
    left: 150px;
    top: 320px;
}

.contact-logo {
    position: absolute;
    right: 200px;
    top: 100px;
}

.contact-content {
    position: absolute;
    left: 48%;
    top: 980px;
}

    .contact-content img {
        width: 280px;
    }

.contact-bottom {
    position: absolute;
    left: 27%;
    bottom: 100px;
}

.yilmaz1 {
    position: absolute;
    right: 17%;
    top: 27%;
}

    .yilmaz1 img {
        width: 60%;
    }

.about-content {
    position: absolute;
    left: 38%;
    top: 1050px;
}

    .about-content img {
        width: 450px;
    }

.banner-contact {
    background-image: url('../img/contact/yilmaz_dogan_contact_back.jpg');
    background-size: 53%;
    background-position: center top;
    background-repeat: no-repeat;
    height: 1800px;
    background-color: #151515;
    /* left: 15px !important;*/
    position: relative !important;
}

.banner-about {
    background-image: url('../img/about/about_back.jpg');
    background-size: 53%;
    background-position: center top;
    background-repeat: no-repeat;
    height: 1800px;
    background-color: #000;
    /* left: 15px !important;*/
    position: relative !important;
}

.banner-works {
    background-image: url('../img/about/about_back.jpg');
    background-size: 53%;
    background-position: center top;
    background-repeat: no-repeat;
    height: 1800px;
    background-color: #ddd;
    /* left: 15px !important;*/
    position: relative !important;
}

.topmenu {
    position: absolute !important;
    top: 0px !important;
    left: 150px;
}

.background-none {
    background-image: none !important;
}

.background-color-none {
    background-color: transparent !important;
}

.works-background-1 {
    background-image: url('../img/works/works_background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.awards-background-1 {
    background-image: url("../img/adwards/awards_back.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.reddot-back {
    background-image: url('../img/adwards/reddot/reddot_back.png');
    background-size: 400px;
    background-position: top center;
    background-position-y: 100px;
}

.works-gallery {
    padding: 50px;
}

    .works-gallery img {
        margin: 20px;
    }

.awards-gallery1 {
    padding: 20px;
}

    .awards-gallery1 img {
        margin: 0px;
    }

.awards-gallery2 {
    padding: 10px;
}

    .awards-gallery2 img {
        margin: 13px;
    }

#pearl-01 {
    top: 45%;
    position: absolute;
    -webkit-animation: ease-in-out infinite;
    -webkit-animation-name: pearl-01;
    -webkit-animation-duration: 10s;
}

@-webkit-keyframes pearl-01 {
    0% {
        left: 50%;
    }

    50% {
        left: 55%;
    }

    100% {
        left: 50%;
    }
}

#pearl-02 {
    top: 42%;
    position: absolute;
    -webkit-animation: ease-in-out infinite;
    -webkit-animation-name: pearl-02;
    -webkit-animation-duration: 5s;
}

@-webkit-keyframes pearl-02 {
    0% {
        left: 71%;
    }

    50% {
        left: 72%;
    }

    100% {
        left: 71%;
    }
}

#pearl-03 {
    top: 40%;
    position: absolute;
    -webkit-animation: ease-in-out infinite;
    -webkit-animation-name: pearl-03;
    -webkit-animation-duration: 4s;
}

@-webkit-keyframes pearl-03 {
    0% {
        left: 59%;
    }

    50% {
        left: 59.5%;
    }

    100% {
        left: 59%;
    }
}

.main-logo {
    position:absolute;
    top: -150px;
    left: -50px;
}
