@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
    font-family: "Roboto", sans-serif;
    /* background-color: #e1e1d9; */
}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: #f24c15;
}

::selection {
    color: #fff;
    background: #f24c15;
}

a i {
    transition: all 0.3s linear;
}

a:hover i {
    transform: scale(1.1);
}

/* #btnhover {

            background-color: #ff7519;
            color: #fff;
            font-weight: bold;
            padding: 6px !important;
            border-radius: 10px !important;

        }

        #btnhover:hover {

            background-color: #fff;
            color: #ff7519;
            border:2px solid #ff7519;

        } */

.content {
    padding: 8px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}

.sticky + .content {
    padding-top: 60px;
}

#borderinput {
    border: 2px solid #ff7519;
    border-radius: 10px;
}

#borderinput2 {
    border-radius: 10px;
}

#borderinput2:hover {
    border: 1px solid #ff7519;
    border-radius: 10px;
}

.main {
    background: url("/assets/images/the-fog-2813290_1920.jpg");
    background-repeat: no-repeat;
    background-size: auto;
}

.bigFont {
    font-size: 6vw;
}

.carousel-inner > .carousel-item > a {
    text-decoration: none;
    color: #dfdada;
}

.menuAlign {
    margin-right: 5%;
}

/* scrollbar right */

.flexcroll {
    overflow-y: scroll;
}

.flexcroll {
    scrollbar-face-color: #367cd2;
    scrollbar-shadow-color: #ffffff;
    scrollbar-highlight-color: #ffffff;
    scrollbar-3dlight-color: #ffffff;
    scrollbar-darkshadow-color: #ffffff;
    scrollbar-track-color: #ffffff;
    scrollbar-arrow-color: #ffffff;
}

/* Let's get this party started */
.flexcroll::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.flexcroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
.flexcroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgb(232, 61, 18);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.spinner {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

h2 {
    padding: 25px 0;
    text-align: center;
    color: #fff;
    background: #7c8490;
}

footer {
    background: #464444;
    color: white;
    /* margin-top: 100px; */
}

footer a {
    color: #fff;
    font-size: 14px;
    transition-duration: 0.2s;
}

footer a:hover {
    color: #ff7519;
    text-decoration: none;
}

.copy {
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid #ffffff;
}

.footer-middle {
    padding-top: 2em;
    color: white;
}

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
}

ul.social-network li {
    display: inline;
    margin: 0 5px;
}

.social-network a.icoFacebook:hover {
    background-color: #3b5998;
}

.social-network a.icoLinkedin:hover {
    background-color: #007bb7;
}

.social-network a.icoFacebook:hover i {
    color: #fff;
}

.social-network a.icoLinkedin:hover i {
    color: #fff;
}

.social-network a.socialIcon:hover {
    color: #44bcdd;
}

.socialHoverClass {
    color: #44bcdd;
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 30px;
    height: 30px;
    font-size: 15px;
}

.social-circle li i {
    margin: 0;
    line-height: 30px;
    text-align: center;
}

.social-circle li a:hover i {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.social-circle i {
    color: #595959;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}

.social-network a {
    background-color: #f9f9f9;
}

.social-network a:hover {
    background: #ff7519;
}

/* accordion sidbar setting */

#accordionPlusMinus .accordion-button:not(.collapsed) {
    color: #666;
    background-color: #fff;
    line-height: 0;
}

#accordionPlusMinus .accordion-button:hover {
    color: #ff7519;
}

/* #accordionPlusMinus .accordion-button {
    font-size: 12px;
    border-bottom: 1px solid #6666666c;
} */

#accordionPlusMinus .accordion-button:not(.collapsed)::after {
    float: right;
    justify-items: end;
    transform: scale(0.5);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 2'%3E%3Cpath fill='none' stroke='%23D0364E' stroke-linecap='round' stroke-width='1' d='M8 1H1m7 0h7'/%3E%3C/svg%3E");
}

#accordionPlusMinus .accordion-button::after {
    transform: scale(0.5);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1v7m0 7V8m0 0H1m7 0h7' stroke='%233482B5' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");

    float: right;
    justify-items: end;
}

ul.listitems {
    list-style-type: circle;
}

.listitems li {
    font: 10pt/130% Helvetica, Arial, sans-serif;
    color: #666;
}

.listitems li:hover {
    font: 10pt/130% Helvetica, Arial, sans-serif;
    color: #ff7519;
    font-weight: bold;
}

#footer-faq {
    text-decoration: none;
    transition: all 0.3s linear;
}

#global-href {
    text-decoration: none;
    transition: all 0.3s linear;
}

.img_icons_2 {
    border-radius: 5px !important;
}

#footer-faq:hover {
    color: #ff7519;
    transform: scale(1);
}

span strong #footer-faq:hover {
    color: #ff7519;
    transform: scale(1);
}

.btnColor {
    background-color: #fff;
    color: #ff7519;
    border-color: #ff7519;
}

.btnColor:hover {
    background-color: #ff7519;
    color: #fff;
    border-color: #ff7519;
}

.btnColorfind {
    background-color: #ff7519;
    color: #fff;
    border-color: #ff7519;
    border-radius: 10px !important;
    padding: 6px !important;
    border-color: 3px solid #ff7519;
}

.btnColorfind:hover {
    background-color: #fff;
    color: #ff7519;
    border-color: 3px solid #ff7519;
}

/* overlay image product*/

#removeunderline {
    text-decoration: none;
    color: #fff;
}

.text {
    margin: 15px 15px;
    color: #fff;
}

#cssh2 {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.overlayFade {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ff946bbd;
}
.overlay {
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: #008cba;
}
.containeroverlay:hover .overlay,
.containeroverlay:hover {
    opacity: 1;
}

.overlayTop {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background-color: #ff7519;
}

.containeroverlay:hover .overlayTop,
.containeroverlay:hover {
    height: 68%;
    overflow: hidden;
}

#accordionPlusMinus .accordion-button {
    font-size: 12px;
    /* border-bottom: 1px solid #6666666c; */
}

.DetailsBtnlogin_2 {
    color: #666;
    cursor: pointer;
    border-color: #666;
    outline: none;
    font-size: 11px !important;
    font-weight: bold;
    font: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.DetailsBtnlogin_2:hover {
    color: #ff7519;
    cursor: pointer;
    outline: none;
    font-size: 11px !important;
    font-weight: bolder;
    font: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.my-navbarCss {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    padding: 0;
}

#imgBorder {
    border-radius: 5px !important;
}

#cardsearch {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
}

#cardsearch:hover {
    color: #ff7519;
    transform: scale(1);
}

#global-href2 {
    text-decoration: none;
    transition: all 0.3s linear;
    color: #666;
}

#global-href2:hover {
    color: #ff7519;
    transform: scale(1);
}

/* search bar */

.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    height: 50px;
    width: 100%;
    background-color: #353b48;
    border-radius: 30px;
    padding: 10px;
}

.search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 100%;
    line-height: 30px;
}

.search_input {
    padding: 0 10px;
    width: 100%;
    caret-color: red;
}

.search_icon {
    background: #ff7519;
    color: #e74c3c;
}

.search_icon {
    height: 50px;
    width: 50px;
    float: right;
    right: -4%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    top: -135%;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

/* pagination */

.page-item.active .page-link {
    color: #fff !important;
}
.page-link {
    background-color: #fff;
    color: #ff7519;
}

#ahrefpagination {
    border-color: #979191;
}

.page-link:hover {
    border-color: #ff7519;
    color: #ff7519;
    background-color: #dbd5d5;
}

.pagination li {
    padding: 3px;
    color: #ff7519;
}
.disabled .page-link {
    color: #212529 !important;
    opacity: 0.5 !important;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #ff7519;
    border-color: #ff7519;
}

/*per page select 10,25,50,100 */

#search_page {
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 3px !important;
    margin-top: 1%;
}

#search_page_x {
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 3px !important;
    margin-top: 1%;
}

#perpagetext {
    color: #9f9f9f;
}

#search_input {
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 7px !important;
    margin-top: 1%;
}
#search_span {
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 7px !important;
    margin-top: 1%;
    background-color: #ff7519;
}

/* .loader{
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background: url('//upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Phi_fenomeni.gif/50px-Phi_fenomeni.gif')
                        50% 50% no-repeat rgb(249,249,249);
          } */

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("/assets/images/output-onlinegiftools (2).gif") 50% 50%
        no-repeat rgb(249, 249, 249);
    opacity: 1;
}

/* TEST */

.form-control:focus {
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.sidemenu_a {
    font-size: 12px !important;
    text-decoration: none;
    transition: all 0.3s linear;
    font: 10pt/130% "Arial";
    font-family: "Arial";
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    color: #666;
}

.sidemenu_a:hover {
    color: #ff7519;
    transform: scale(1);
}

.img_icons_4 {
    border: 2px solid #ff7519;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    width: 30px;
    height: 30px;
    margin-top: 5px !important;
}

/* slide up sidebar menu */

@media (min-width: 200px) {
    .animate {
        animation-duration: 1.1s;
        -webkit-animation-duration: 1.1s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        transform: scale(1);
        opacity: 1.1;
        margin-left: 1%;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }
    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

#servicesSection a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s linear;
    color: #666;
    margin-bottom: 2%;
}

#servicesSection a:hover {
    color: #ff7519;
    font: 11pt/130% Helvetica, Arial, sans-serif;
    transform: scale(1);
}

#servicesSection p a {
    padding: 4px;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    font-family: "Arial";
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    color: #666;
}

.badge_3 {
    display: inline-block;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    color: #ff7519;
    background-color: #efefef;
    text-transform: uppercase;
    padding-right: 6px;
    padding-left: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.accordion-body {
    padding: 2%;
}
.hoversidemenu {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
}
.hoversidemenu:hover {
    color: #ff7519;
    font: 11pt/130% Helvetica, Arial, sans-serif;
    transform: scale(1);
}

/* header */

/* .dropdown-inline {
            display: inline-block;
            position: relative;
        } */

.dropdown-menu {
    margin-top: 0;
}
.dropdown-menu .dropdown-toggle::after {
    vertical-align: middle;
    border-left: 4px solid;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
}
.dropdown-menu .dropdown .dropdown-menu {
    left: 100%;
    top: 0%;
    margin: 0 20px;
    border-width: 0;
}

.dropdown-menu > li a:hover,
.dropdown-menu > li.show {
    background: #e1e4e7;
    color: white;
}
.dropdown-menu > li.show > a {
    color: white;
}

@media (min-width: 400px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}
@media (min-width: 500px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}
@media (min-width: 576px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}
@media (min-width: 768px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}
@media (min-width: 992px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}

@media (min-width: 1400px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }
}

/* .navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
} */

#globalheadernavhref {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
}

#navbarDropdown1 {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
}
#navbarDropdown2 {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
}

#hrefCss2x {
    margin-left: 0;
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    text-decoration: none;
}
#hrefCss2x:hover {
    margin-left: 0;
    font-weight: bold;
    color: #ff7519;
    font: 10pt/130%;
    font-weight: bold;
    text-decoration: none;
}

#hrefCss2 a {
    margin-left: 0;
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    text-decoration: none;
}
#hrefCss2 a:hover {
    margin-left: 0;
    font-weight: bold;
    color: #ff7519;
    font: 10pt/130%;
    font-weight: bold;
    text-decoration: none;
}

/*counter number count  */

.counters {
    background-color: #0f479a;
    color: white;
    padding: 40px 20px;
    border-top: 3px solid lightskyblue;
}

.counters .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    text-align: center;
}

.counters i {
    color: lightskyblue;
    margin-bottom: 5px;
}

.counters .counter {
    font-size: 45px;
    margin: 10px 0;
}

@media (max-width: 700px) {
    .counters .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters .container > div:nth-of-type(1),
    .counters .container > div:nth-of-type(2) {
        border-bottom: 1px solid lightskyblue;
        padding-bottom: 20px;
    }
}

/*  */

body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 10;
    transition: opacity 0.3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

/* ============ mobile view ============ */
@media all and (max-width: 991px) {
    .offcanvas-header {
        display: block;
    }

    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1200;
        width: 80%;
        overflow-y: hidden;
        overflow-x: hidden;
        transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }
    .mobile-offcanvas .container,
    .mobile-offcanvas .container-fluid {
        display: block;
    }
}
/* ============ mobile view .end// ============ */

#toggle-icon {
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
}

.bar1,
.bar2,
.bar3 {
    background-color: rgba(0, 0, 0, 0.55);
    width: 25px;
    height: 4px;
    transition: 0.5s;
    margin: 5px 0;
}
.btnCss {
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 2%;
    border-color: #6c757d;
}
.btnCss:hover {
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 2%;
    border-color: #ff7519;
}

.btnCss:focus {
    box-shadow: none;
}

/*  */

.cardCss {
    border: 1px solid #3b3b3b;
    border-radius: 20%;
    margin-left: 15%;
    padding: 30px 30px 25px 25px;
    width: 73%;
    text-align: center;
}

.cardCss:hover {
    border: 1px solid #3b3b3b;
    border-radius: 50%;
    transform: scale(1.1);
    margin-left: 15%;
    padding: 20px 20px 25px 25px;
    width: 73%;
    text-align: center;
}

.BorderCss p a:hover {
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    color: #ff7519;
}

.BorderCss p a {
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    color: #3b3b3b;
}

#search_inputs {
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 7px !important;
    margin-top: 1%;
}
#search_inputs_x {
    border: 2px solid #ff7519;
    color: #9f9f9f;
    padding: 7px !important;
    margin-top: 1%;
}
.card-img-top_ {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
}

/*  */

/* @media only screen and (max-width: 500px) and (min-width: 700) { */
@media (min-width: 500px) and (max-width: 768px) {
    .cardCss {
        border: 1px solid #3b3b3b;
        border-radius: 20%;
        /* margin-left:33%; */
        padding: 10px 10px 15px 15px;
        /* width: 30%; */
        text-align: center;
    }

    .cardCss:hover {
        border: 1px solid #3b3b3b;
        border-radius: 50%;
        transform: scale(1.1);
        margin-left: 33%;
        padding: 10px 10px 15px 15px;
        width: 30%;
        text-align: center;
    }

    .BorderCss p a {
        text-decoration: none;
        font-size: 10px;
        font-weight: bold;
        color: #3b3b3b;
    }

    .BorderCss p a:hover {
        text-decoration: none;
        font-size: 10px;
        font-weight: bold;
        color: #ff7519;
    }
}

/*  */

/* carousel banner */

.carousel-control-prev-icon {
    font-size: 100px;
    font-weight: 100;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    border: 3px solid #b3adad;
    border-radius: 50%;
    margin-left: -55px;
    opacity: 0;
}

.carousel-control-next-icon {
    font-size: 100px;
    font-weight: 30;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    border: 3px solid #b3adad;
    border-radius: 50%;
    margin-right: -55px;
    opacity: 0;
}

.carousel-control-prev-icon {
    left: -20px;
    padding: 20px;
    background-color: #666;
    display: block;
}
.carousel-control-prev-icon {
    left: -20px;
    padding: 20px;
    background-color: #666;
}
.carousel-control-next-icon {
    padding: 20px;
    left: -20px;
    background-color: #666;
}

.top_shop h1 {
    font-weight: 700;
    font-size: 8vmin;
    /* font-size: 180%; */
    color: #cccccc;
    line-height: 250%;
    padding-bottom: 25px !important;
    width: 100%;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.13);
    text-align: center;
}

.shopCss {
    border: 1px solid #bebebd;
    margin: 0 2px 5px 2px;
    padding: 5px;
    background: #3b3b3b;
    font: 10pt/130% 4yeostamp;
    font-family: 4yeostamp;
    width: 86%;
    height: 380px !important;
    margin-left: 7%;
}

#myCarousel:hover .carousel-control-prev-icon {
    /* when hover show prev */
    opacity: 1;
    cursor: pointer;
}

#myCarousel:hover .carousel-control-next-icon {
    /* when hover show next */
    opacity: 1;
    cursor: pointer;
}

#myCarousel2:hover .carousel-control-prev-icon {
    /* when hover show prev */
    opacity: 1;
    cursor: pointer;
}

#myCarousel2:hover .carousel-control-next-icon {
    /* when hover show next */
    opacity: 1;
    cursor: pointer;
}

/*end carousel banner */

/* media query for shop-number */

.marginleftrightCss {
    margin-left: -5%;
    margin-right: -5%;
}

/* _main media query */
@media (min-width: 500px) and (max-width: 575.98px) {
    .marginleftrightCss {
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .marginleftrightCss {
        margin-left: 10%;
        margin-right: 10%;
    }
}
/*end media query for shop-number */

/* home login css */

.DetailsBtnlogin_ {
    color: #666;
    cursor: pointer;
    border-color: #666;
    outline: none;
    font-size: 100%;
    font-size: 85%;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.DetailsBtn {
    color: #666;
    cursor: pointer;
    border-color: #ff7519;
    outline: none;
    font-size: 100%;
    font-size: 86%;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.checkpass {
    color: #666;
    outline: none;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    text-decoration: none;
}

#mainlogin_Modal.modal.fade .modal-dialog {
    transform: scale(0.8);
}
#mainlogin_Modal.modal.fade.show .modal-dialog {
    transform: scale(1);
}
/* end home login css */

.DetailsBtns_ {
    color: #666;
    cursor: pointer;
    border-color: #666;
    outline: none;
    font-size: 100%;
    font-size: 86%;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.DetailsBtns_:hover {
    color: #ff7519;
    cursor: pointer;
    border-color: #666;
    outline: none;
    font-size: 100%;
    font-size: 86%;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.DetailsBtns2_ {
    color: #ff7519;
    cursor: pointer;
    border-color: #ff7519;
    outline: none;
    font-size: 100%;
    font-size: 86%;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.DetailsBtns2_:hover {
    color: #fff;
    cursor: pointer;
    border-color: #ff7519;
    background-color: #ff7519;
    outline: none;
    font-size: 100%;
    font-size: 86%;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.hrefCss {
    color: #666;
    font: 10pt/130% Helvetica, Arial, sans-serif;
    text-decoration: none;
}

/* type writer text */

.typed-out {
    overflow: hidden;
    border-right: 0.12em solid orange;
    white-space: nowrap;
    animation: typing 5s forwards;
    font-size: 1.6rem;
    width: 0;
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 95%;
    }
}

.hide-phone-number::after {
    content: "XX-XXXX";
    color: white;
}

.section_:hover {
    max-height: 300px;
    overflow-y: auto;
    direction: ltr;
    scrollbar-color: #2b9c31 #e4e4e4;
    scrollbar-width: thin;
}

/*  */

*:focus,
*:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}
.wrapper {
    text-align: left;
}
.wrapper .icon {
    position: relative;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 22px;
    display: inline-block;
    align-items: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
    text-decoration: none;
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    line-height: 1.5;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background-color: #46c1f6;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background-color: #e1306c;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background-color: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background-color: #de463b;
    color: #ffffff;
}

/* _main media query */
/* @media (min-width: 400px) and (max-width: 575.98px) {
    .imag-res{
        width: 10px;
        height:10px

    }
} */


 @media (min-width: 400px) and (max-width: 575.98px) {
    .card-img-top{
        width: 3vmin;
    }
}

