/*
Main Blue Code: #2F6991
Main Blue Code Hover: #1C5F84
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*root*/
:root {
    --primary: #2F6991;
    --primary-hover: #1C5F84;
    --focus: #2F6991;
    --primary-gradient: linear-gradient(90deg, #2F6991 0%, #1CA9D6 100%);
}


::selection {
    background: var(--primary);
    color: #FFFFFF;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: 0px !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}


/*Bootstrap editing*/
.bg-primary {
    background-color: var(--primary);
}

.bg-primary-gradient {
    background: var(--primary-gradient);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-primary:focus {
    background-color: var(--focus);
    border-color: var(--focus);
}

.text-primary {
    color: var(--primary);
}

.dropdown-item:focus {
    background-color: var(--focus);
}

.dropdown-item:disabled {
    color: white;
}


/*For Navbar*/

.navbar .nav-item .nav-link {
    color: white;
}

.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.navbar-scrolled .nav-item .nav-link {
    color: black;
}


/*For Video Header*/
.video-header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-header .container {
    position: relative;
    z-index: 2;
}

.video-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

/* Added By HsPace67*/
.container67 {
    margin-top: 100px;
}

.containerblogdetail67 {
    margin-top: 10em;
}

.urunAtt67 {
    margin-top: 4em;
}

.urunAtt67 p {
    font-size: 0.90em;
}

.description67 {
    margin-top: 5em;
}


/* Media Query for devices withi coarse pointers and no hover functionality */

/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
    .video-header {
        background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }

    .video-header video {
        display: none;
    }
}

/*For Video Header End*/


/*For Banner*/

header.masthead {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
    text-shadow: 2px 2px 4px #1a1919;
    text-align: center;
    color: #094da7;
    background-image: url("https://images.unsplash.com/photo-1558346648-9757f2fa4474?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80/1600x900");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
}

header.masthead .masthead-subheading {
    font-size: 1.5rem;
    color: #e61010;
    font-style: italic;
    line-height: 1.5rem;
    margin-bottom: 25px;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

header.masthead .masthead-heading {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 3.25rem;
    margin-bottom: 2rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media (min-width: 768px) {
    header.masthead {
        padding-top: 17rem;
        padding-bottom: 12.5rem;
    }

    header.masthead .masthead-subheading {
        font-size: 2.25rem;
        font-style: italic;
        line-height: 2.25rem;
        margin-bottom: 2rem;
    }

    header.masthead .masthead-heading {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 4.5rem;
        margin-bottom: 4rem;
    }
}


/*For Forms*/

.form-control:focus {
    border-color: var(--focus);
    box-shadow: 0 0 0 0.2rem rgba(var(--focus-r, 0, 0, 0), 0.25);
}

/*For Forms End*/


/*For Fixed Whatsapp Icon*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float:hover {
    transition: all 0.5s ease;
    color: #25d366;
    background-color: #FFF;
}

.my-float {
    margin-top: 16px;
}

/*For Fixed Whatsapp Icon End*/


/*For Features */
.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
}

.icon-link>.bi {
    margin-top: .125rem;
    margin-left: .125rem;
    fill: currentcolor;
    transition: transform .25s ease-in-out;
}

.icon-link:hover>.bi {
    transform: translate(.25rem);
}

.icon-square {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
}

.text-shadow-1 {
    text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25);
}

.text-shadow-2 {
    text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25);
}

.text-shadow-3 {
    text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
}

.card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}



/*Responsive Design*/

@media screen and (max-width: 288px) {
    .nav-logo {
        display: none;
    }

    .nav-toggler {
        margin: 0 auto;
    }

    .nav-container {
        justify-content: end !important;
    }
}
