/*Styling sheet for Socket Mat*/
/*Documented/Updated by Arya Prabhu 19/04/2021 for Stream Data Systems*/

/*Universal Items*/
.container {
    max-width: 98vw;
    width: 98vw;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.col {
    padding: 0px;
}

a:visited {
    /* color:  #ffeded; */
    color: black;
}
a:active {
    color: black;
}

.dropdown-menu {
    padding: 0px 0px;
}

/*Frame Styling*/
.frame-details {
    /*unused: left here as a reference*/
    /*vertical offset: 4.0rem + 10px*/
    height: calc(100vh - (4rem + 10px));
}

/*Anchors to which navbar tab jumps to on click*/

#ProductAndFeatures {
    top: calc(0px - (4rem + 10px));
    position: relative;
    height: 0;
}

/*Browser specific settings*/
/*Firefox*/
@-moz-document url-prefix() {
    #ProductAndFeatures {
        top: calc(0px - (4rem + 10px - 16.5px));
    }
}
/*Frame Styling END*/
/*Universal Items END*/

/*NAVBAR STYLING*/

/* keeps nav items to the right */
.main-header {
    position: absolute;
    z-index: 99;
    width: 100%;
}
.navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    /* flex-direction: row; */
    margin-right: 0 !important;
}

.navbar {
    padding: 0px 7.5px;
}

/*navbar tabs*/
.nav-link {
    position: relative;
    font-weight: 700;
    font-size: 16px;
    color: black !important;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 30px;
}

.Navbar-DropDownMenu {
    background-color: transparent;
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    color: black;
    text-transform: uppercase;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

/*Makes arrow disappear*/
.Navbar-DropDownMenu:after {
    display: none;
}

.Navbar-DropDownMenu .btn-primary {
    background-color: transparent;
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    color: black;
    text-transform: uppercase;
    padding: 0;
    border: none;
    padding-bottom: 5px;
}

.Navbar-DropDownItem {
    background-color: transparent;
    position: relative;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 1rem 0.25rem;
    color: black;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

/*change nav bar colour*/
.bg-light {
    background-color: #fefefe !important;
}

/*Styles the navlinks/navitems*/
nav.navbar.bootsnav ul.nav > li > a {
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    color: black;
    text-transform: uppercase;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 2rem;
}

#logo {
    height: 4rem;
    width: 16rem;
}

#logo-full {
    height: 4rem;
    width: 11rem;
}

/*MAKES ICON NOT DISAPPEAR*/

/*MAKES ICON NOT DISAPPEAR ENDED*/
/*NAVBAR STYLING ENDS*/

/*FRAME 1 Styling*/
/*Carousel styling*/
/*images*/
.slideshow-image {
    display: block;
    position: relative;
    width: 100% !important;
    height: auto !important;
    filter: brightness(90%);
    object-fit: cover;
}

.First-Frame-Slideshow {
    display: block;
    position: relative;
    width: 100% !important;
    height: 80vh !important;
    /* filter: brightness(90%); */
    object-fit: cover;
    /* border: 5px solid black; */
    /* border-radius: 10%; */
}

.carousel-inner .item {
    backface-visibility: visible;
}

/*Not sure why next two classes work but they do*/
/*Remove comment to make arrows disappear*/

/*Carousel Arrow Colors*/
/*fill is what changes colour*/

.Call-To-Action {
    /*unused but use if you want full screen*/
    display: block;
    position: relative;
    width: 100% !important;
    min-height: 100vh !important;
    height: 100vh !important;
    filter: brightness(90%);
    object-fit: cover;
}

.offer-box,
.slide {
    color: black;
    font-size: 13px;
    padding: 0px 0px !important;
    font-family: "Poppins", sans-serif;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%; /*width of arrows*/
    color: black !important;
    text-align: center;
    opacity: 0;
    background-color: "black";
}

.carousel-control-next {
    right: 5%;
}

.carousel-control-prev {
    left: 5%;
}

/*adjusts position of carousel caption*/
/*Changes here will affect indicators in activity section too*/

/*style carousel caption here*/
/*Disabling animation for SocketMat*/
.carousel-caption h3 {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
        Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    color: #c62121;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 8vh;
    /* animation: pulse 5s infinite;
	animation-direction: alternate;
	-webkit-animation-name: pulse;
	animation-name: pulse; */
}

/*Changes here will affect indicators in all sections unless class/id is specified*/

/*Styles the div around tabs*/
.nav-pills {
    justify-content: center;
    margin: 0.1% 0.2% 0% 0%;
    width: 100%;
}

/*Style tabs here*/
/*needs improvement*/
.nav-pills .nav-link {
    text-align: center;
    background: #29bdbd;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1.375%;
    border-radius: 15px;
    padding: 0.125% 3%;
    width: 18%;
    height: fit-content;
    margin: 0.25%;
}

/*Colour change upon active*/
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #2973bd;
}
/*TAB STYLING ENDS*/

.DropDownMenuButton .btn-primary {
    width: 100%;
    height: 100%;
    font-size: 100%;
    border-radius: 5%;
    color: black !important;
    background-image: linear-gradient(white, lightgrey);
    border: 1px solid black;
    font-family: Segoe UI, SegoeUI, "Helvetica Neue", Helvetica, Arial,
        sans-serif;
    font-weight: bold;
}

.container .div {
    width: 100%;
    height: 100%;
}

/*Modal Styling*/
.modal {
    /*test*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    outline: 0;
}

.modal-content {
    width: auto;
}

/* .modal-backdrop {
	/*test*/
/* display: none;
} */

.modal-dialog {
    max-width: auto;
}

.modal-dialog-centered {
    justify-content: center;
}

.modal-backdrop.show {
    opacity: 0.75;
}

.close {
    color: "red" !important;
}

.modal-body {
    padding: 0rem;
}

/*Modal Styling Ends*/

/*FRAME 2 ACTIVITY SECTION STYLING ENDS*/

/*FRAME 3 STYLING*/
/*Footer Styling*/
.footer {
    height: calc(100vh - (4rem + 10px));
    max-height: 100%;
    width: 100%;
}

#footer-title {
    top: calc(0px - (4rem + 10px - 0px));
}
@-moz-document url-prefix() {
    #footer-title {
        top: calc(0px - (4rem + 10px - 16.5px));
    }
}

/* #footer-main{
	top: 0px;
} */

.footer-main {
    padding: 20px 0px;
    background-color: #010101;
    height: calc(100vh - (4rem + 10px));
    max-height: 100%;
    width: 100%;
}

.footer-main .container {
    height: calc(100vh - (4rem + 10px));
    max-height: 100%;
    width: 100%;
    padding: 0px 0px;
}

.footer-main .container .row {
    margin-right: 0px;
    margin-left: 0px;
}

/*Address map*/

.footer-widget,
.footer-link,
.footer-link-contact {
    margin-top: 1rem;
}
.footer-link-contact h4::before {
    border-bottom: 3px solid #ef7d24;
    content: "";
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0px;
}
.footer-link-contact h4 {
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    font-weight: 700;
    line-height: 120% !important;
    padding: 0 0 0.8rem 0;
    margin: 0;
}
.list-time {
    margin-top: 15px;
}
ul,
li,
ol {
    list-style: none;
    margin: 0rem;
    margin-top: 0rem;
    padding: 0rem;
}
.footer-link-contact ul li {
    margin-bottom: 1rem;
}
.footer-link-contact ul li p {
    font-size: 1rem;
    font-weight: 300;
    padding-right: 1rem;
}
.footer-link-contact ul li p {
    padding-left: 1.5rem;
    color: #ffffff;
    position: relative;
}
p {
    margin: 0px;
}
.footer-link-contact ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    padding-right: 0.3rem;
}

.footer-company {
    color: #cccccc;
}
.login-button {
    color: white;
}
.login-button-disappear {
    display: none;
}

/*Footer styling ends*/

/*Removing this will show boxes at the bottom of the code*/
/*Not sure why it exists*/
.baguetteBox-button {
    display: none;
}

/*Hamburger menu 3 lines colour*/
/*rbga=(red, blue, green, opacity)*/
/*stroke width= thickness*/
.navbar-light .navbar-toggler {
    border-color: black;
    color: black;
    border-radius: 0px;
    margin-right: 7px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 15)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/*Styling for portrait mode mobile phones*/
/* @media only screen and (min-width: 280px) and (max-width: 991px) { changed to 991 from 599 */
@media only screen and (max-aspect-ratio: 1/1) {
    .container {
        padding-bottom: 2%;
        padding-top: 2%;
    }

    .navbar-light .navbar-toggler {
        border-color: black;
        color: black;
        border-radius: 5px;
        margin-right: 7px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .nav-link {
        float: left;
        margin-right: auto;
    }
    /* keeps nav items to the right */
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: column;
        margin-right: auto !important;
        margin-left: 0 !important;
        float: left;
    }
    /*Navbar items*/
    .navbar-nav .nav-link {
        position: sticky;
        float: left;
        font-weight: 700;
        font-size: 20px;
        color: black !important;
        text-transform: uppercase;
        /* border-bottom: 5px solid #fff; */
    }
    .Navbar-DropDownMenu {
        position: sticky;
        float: left;
        font-weight: 700;
        font-size: 20px;
        color: black !important;
        text-transform: uppercase;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 0px;
    }
    /*Tabs*/
    .nav-pills .nav-link {
        font-size: 4.25%;
        width: 45%;
        margin: 0.75%;
        padding: 1.5% 3%;
    }
    /*Carousel*/
    .carousel-caption h3 {
        font-size: 4vh;
    }

    /*Modal*/

    .ModalImage {
        width: 25rem;
        height: 25rem;
        border-radius: 25px;
    }

    /* #footer-title{
		top: calc( 0px - ( 4.0rem + 10px ) );
	} */

    .footer-main {
        height: 100%;
    }

    .footer-main .container {
        height: 100%;

        max-width: none;
        padding: 0px;
    }

    .carousel-indicators {
        bottom: 1em;
    }
}

/**Animations**/

/*Pulse animation for carousel caption*/
.pulse {
    font-size: 8vh;
    color: #e5fffd;
    animation: pulse 5s infinite;
    margin: 0 auto;
    display: table;
    margin-top: 50px;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.4);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}
/*Pulse animation for carousel caption ended*/

/*Driving animation/ Moving across screen animation*/
@keyframes move_across_navbar {
    /*The left of the image moves when left: is declared*/
    0% {
        left: 0rem;
    } /*Starts at left edge of container*/
    50% {
        left: 70vw;
    } /*Ends up somewhere near end of SCREEN*/
    /*Flips the image at the end*/
    100% {
        left: 0rem;
        transform: rotateY(180deg);
    }
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}
/*Driving animation/ Moving across screen animation ends*/
