/*======================================================================== Fonts ============*/
@font-face 
{
    font-family: NormalTextFont;
    src: url(../media/fonts/chivo-regular.woff);
}

@font-face 
{
    font-family: HeadingTextFont;
    src: url(../media/fonts/chivo-bold.woff);
}

p
{
    font-family: NormalTextFont;
}

h1, h2, h3, h4, h5, h6
{
    font-family: HeadingTextFont;
}

/*======================================================================== General ============*/
#Navbar a, a:hover, a:focus, a:active 
{
    text-decoration: none;
    color: inherit;
}

.HamBurgerItem a, a:hover, a:focus, a:active 
{
    text-decoration: none;
    color: inherit;
}

.HamBurgerItem a:hover, a:focus, a:active
{
    color: #01D8FE;
}

#Listings a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

#HamBurgerListings a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

#ListingTextButton a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

.container a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

#ContactButton a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

body
{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*======================================================================== Navbar ============*/
#Navbar
{
    float: right;
}

.active
{
    background-color: #222222;
    color: #01D8FE;
}

.MenuActive
{
    background-color: #111111;
    color: #01D8FE;
}

.DownArrow
{
    width: 15px;
    height: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

#Navbar ul
{
    list-style-type: none;
    color: white;
    margin: 0px;
}

#Navbar li
{
    display: inline-block;
    margin: 0px;
}

#Navbar .NavItem
{
    height: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

#Navbar .NavItem:hover
{
    background-color: #222222;
    cursor: pointer;
    color: #01D8FE;
}

#NavHeader
{
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #333333;
}

#NavHeader #Logo
{
    float: left;
    margin-top: 5px;
    margin-left: 10px;
}

#Logo img
{
    width: 235px;
    height: 50px;
}

@media (max-device-width: 850px) 
{
    #Logo img
    {
        width: 165px;
        height: 35px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

.NavInline
{
    display: inline-block;
}

#NormalSearch
{
    background-color: white;
    width: 240px;
    height: 35px;
    color: rgb(61, 61, 61);
    text-align: left;
    border-radius: 20px;
    border: 2px solid white;
    padding-left: 10px;
}

#NormalSearchTwo
{
    background-color: white;
    width: 240px;
    height: 35px;
    color: rgb(61, 61, 61);
    text-align: left;
    border-radius: 20px;
    border: 2px solid white;
    padding-left: 10px;
}

#NormalSearch:hover
{
    border-color: #01D8FE;
}

#NormalSearchTwo:hover
{
    border-color: #01D8FE;
}

#NormalSearchContainer
{
    float: left;
    padding-left: 20px;
    padding-top: 13px;
}

#NormalSearchContainerTwo
{
    float: left;
    padding-left: 20px;
    padding-top: 13px;
}

#NormalSearch #SearchIcon
{
    width: 20px;
    height: 25px;
    display: inline-block;
}

#NormalSearchTwo #SearchIcon
{
    width: 20px;
    height: 25px;
    display: inline-block;
}

#NormalSearch input
{
    display: inline;
    font-family: NormalTextFont;
    font-size: 12pt;
    width: 200px;
    border-radius: 0px 15px 15px 0px;
    margin-top: 2px;
    border: none;
    outline-color: #747474;
    height: 27px;
}

#NormalSearchTwo input
{
    display: inline;
    font-family: NormalTextFont;
    font-size: 12pt;
    width: 200px;
    border-radius: 0px 15px 15px 0px;
    margin-top: 2px;
    border: none;
    outline-color: #747474;
    height: 27px;
}

#NormalSearch input:active
{
    border-color: #747474;
    outline-color: #747474;
}

#NormalSearchTwo input:active
{
    border-color: #747474;
    outline-color: #747474;
}

@media (max-device-width: 850px) 
{
    #NormalSearch
    {
        width: 100px;
        height: 30px;
        padding-top: 0px;
    }

    #NormalSearchTwo
    {
        width: 100px;
        height: 30px;
        padding-top: 0px;
    }

    #NormalSearch input
    {
        display: inline;
        font-family: NormalTextFont;
        font-size: 10pt;
        width: 50px;
        border-radius: 10px;
        margin-top: 0px;
        border: none;
        outline:none;
    }

    #NormalSearchTwo input
    {
        display: inline;
        font-family: NormalTextFont;
        font-size: 10pt;
        width: 50px;
        border-radius: 10px;
        margin-top: 0px;
        border: none;
        outline:none;
    }

    #NormalSearch #SearchIcon
    {
        width: 15px;
        height: 25px;
    }

    #NormalSearchTwo #SearchIcon
    {
        width: 15px;
        height: 25px;
    }

    #NormalSearchContainer
    {
        float: left;
        padding-left: 7px;
        padding-top: 10px;
    }

    #NormalSearchContainerTwo
    {
        float: left;
        padding-left: 7px;
        padding-top: 10px;
    }
}

/*======================================================================== HamBurger Menu ============*/
#HamBurgerMenuButton
{
    float: right;
}

#HamBurgerMenuButton:hover
{
    background-color: #222222;
    cursor: pointer;
}

#BurgerLineWrapper .BurgerLine
{
    border-top: 3px solid white;
    width: 40px;
    height: 1px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-left: 10px;
    margin-right: 14px;
}

@media (max-device-width: 850px) 
{
    #BurgerLineWrapper .BurgerLine
{
    border-top: 3px solid white;
    width: 40px;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
}

#HamBurgerMenu
{
    color: white;
    position: fixed;
    overflow-y: scroll;
    width: 300px;
    height: 100%;
    z-index: 1001;
    background-color: #333333;
    transition: 0.4s;
}

#HamBurgerDarkBackground
{
    position: fixed;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.HamBurgerItem
{
    padding-top: 9px;
    padding-bottom: 5px;
    padding-right: 5px;
    padding-left: 7px;
    margin: 20px;
    border-radius: 4px;
}

#CloseHamburger
{
    margin-top: 20px;
    margin-left: 240px;
    width: 45px;
    height: 55px;
    padding-top: 4px;
    padding-bottom: 7px;
    padding-right: 7px;
    padding-left: 10px;
    border-radius: 10px;
}

#CloseHamburger:hover
{
    color: #01D8FE;
    cursor: pointer;
    background-color: #222222;
}

.HamBurgerItemHover
{
    padding: 10px;
    border-radius: 4px;
    height: 45px;
}

.HamBurgerItemHover:hover
{
    background-color: #222222;
    color: #01D8FE;
    cursor: pointer;
}

.HamBurgerItem p
{
    padding: 4px;
}

.HamBurgerItem li
{
    border-radius: 3px;
}

.HamBurgerItem li:hover
{
    background-color: #0e0e0e;
    color: #01D8FE;
    cursor: pointer;
}

#HamBurgerBusiness
{
    overflow-y: hidden;
    transition: 0.4s;
}

#HamBurgerHomeAndLeisure
{
    overflow-y: hidden;
    transition: 0.4s;
}

#HamBurgerTravel
{
    overflow-y: hidden;
    transition: 0.4s;
}

#HamBurgerListings
{
    overflow-y: hidden;
    transition: 0.4s;
}

/*======================================================================== Business Dropdown Menu ============*/
#BusinessDropdownMenu
{
    color: white;
    background-color: #222222;
    position: fixed;
    z-index: 888;
    width: 100%;
    padding-top: 80px;
    height: 430px;
    transition: 0.4s;
}

#BusinessDropdownMenu #CloseX
{
    margin-top: 10px;
    margin-right: 90px;
    float: right;
    width: 58px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 10px;
    border-radius: 10px;
}

#BusinessDropdownMenu #CloseX:hover
{
    color: #01D8FE;
    background-color: #111111;
    cursor: pointer;
}

#BusinessDropdownMenu li
{
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    height: 50px;
    border-radius: 5px;
}

#BusinessDropdownMenu li:hover
{
    background-color: #111111;
    cursor: pointer;
    color: #01D8FE;
}

#DropDownBackground
{
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 887;
}
/*
#DropDownBackground ul
{
    border-width: 0px 2px 0px 0px;
    border-color: white;
    border-style: solid;
    list-style: none;
}
*/
/*======================================================================== Second Header ============*/
#SecondHeaderBg img
{
    z-index: 1;
    width: 100%;
    height: 800px;
    position: absolute;
    object-fit: cover;
}

#SecondHeaderBg #ImageOvelay
{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 800px;
    background-color: rgba(0, 0, 0, 0.35);
}

#SearchBarOverlay
{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 800px;
    padding-top: 300px;
    color: white;
    text-align: center;
}

#SearchBar #SearchIcon
{
    width: 29px;
    height: 35px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

#SearchBar
{
    background-color: white;
    width: 400px;
    height: 47px;
    color: rgb(61, 61, 61);
    margin: auto;
    border: 3px solid white ;
    text-align: left;
    border-radius: 25px;
    
}

#SearchBar:hover
{
    border-color: #01D8FE;
}

#SearchBar input
{
    font-family: NormalTextFont;
    font-size: 15pt;
    width: 350px;
    height: 41px;
    position: relative;
    border: none;
    display: inline-block;
    border-radius: 0px 25px 25px 0px;
    outline-color: #3b3b3b;
}

@media (max-device-width: 850px) 
{
    #SearchBar input
    {
        width: 70vw;
       
    }

    #SearchBar
    {
        width: 90vw;
        
    }
}

#SearchBar input:active
{
    border: #3b3b3b;
    outline-color: #3b3b3b;
}

#AdvancedSearchButton
{
    background-color: #333333;
    width: 260px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    overflow-y: hidden;
    text-align: left;
}

#ContactButton
{
    background-color: #333333;
    width: 150px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-align: left;
}

#ContactButton h4
{
    background-color: #333333;
    width: 150px;
    padding: 10px;
    border-radius: 10px;
}

#ContactButton h4:hover
{
    background-color: #222222;
    cursor: pointer;
    color: #01D8FE;
}

@media (max-device-width: 850px) 
{
    #AdvancedSearchButton
    {
        width: 240px;
        overflow-x: hidden;
    }
}

#AdvancedSearchButton h4
{
    background-color: #333333;
    width: 260px;
    height: 50px;
    padding-top: 11px;
    padding-left: 20px;
    border-radius: 10px;
}

#AdvancedSearchButton h4:hover
{
    background-color: #222222;
    cursor: pointer;
    color: #01D8FE;
}

#AdvancedSearchButton label
{
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 7px;
}

#AdvancedSearchButton input
{
    border-radius: 6px;
    width: 212px;
    border: 1px solid white;
}

#AdvancedSearchButton select
{
    border-radius: 6px;
    padding: 2px;
    border: 1px solid white;
    height: 28px;
}

#AdvanceSearchButton
{
    text-align: center;
    background-color: #474747;
    width: 90px;
    padding-top: 10px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    margin: auto;
    transition: 0.2s;
}

#AdvanceSearchButton:hover
{
    transform: translateY(-3px);
    color: #01D8FE;
    background-color: #111111;
    cursor: pointer;
}

#AdvancedSearchButton #AdvancedDownArrow
{
    width: 15px;
    height: 10px;
    margin-left: 5px;
    margin-top: 10px;
    transition: 0.3s;
}

#Line
{
    height: 5px;
    width: 100%;
    background-color: #01D8FE;
}

/*======================================================================== Site Description ============*/
#SiteDescription
{
    color: white;
    background-color: #545454;
    padding: 50px;
}

#SiteDescription img
{
    border-radius: 10px;
}

#DescrptionHeading
{
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 100px;
    text-align: left;
}

#DescrptionHeading h1
{
    display: inline-block;
    font-size: 40pt;
}

#DescrptionHeading p
{
    font-size: 12pt;
}

#DescrptionHeading #DesHeadColour
{
    color: #01D8FE;
}

#DescriptionImage
{
    width: 500px;
    height: 350px;
    margin-bottom: 100px;
}

#DescriptionImage img
{
    width: 100%;
    height: 100%;
    margin: 0px;
}

.DescriptionInline
{
    display: inline-block;
}

@media (max-width: 750px) 
{
    #DescrptionHeading
    {
        margin: 0px;
    }

    #DescriptionImage
    {
        width: 73vw;
        height: 200px;
        margin-top: 50px;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 50px;
    }
}

/*======================================================================== Three Card Services ============*/

#ThreeCardServices
{
    background-color: #F7F7F7;
    padding-top: 10%;
    padding-bottom: 10%;
}

.ThreeCardImages
{
    border-radius: 10px 10px 0px 0px;
    width: 93%;
}

.Card
{
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.46);
    width: 330px;
    height: 550px;
    padding-top: 10px;
    display: inline-block;
    margin: 40px;
}

@media (max-device-width: 850px) 
{
    .Card
    {
        width: 90vw;
        margin-top: 40px;
        margin-bottom: 40px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

/*======================================================================== Listing Cards ============*/
#ListingCards
{
    padding-top: 10%;
    padding-bottom: 10%;
}

#ListingHeadingHolder
{
    margin: auto;
    text-align: left;
    width: 58vw;
}

@media (max-width: 1600px) 
{
    #ListingHeadingHolder 
    {
        width: 80vw;
    }
}

@media (max-width: 850px) 
{
    #ListingHeadingHolder 
    {
        width: 90vw;
    }
}

.ListingCardWrapper
{
    display: inline-block;
    margin: 40px;
    width: 520px;
    height: 250px;
    border: solid 5px white;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.46);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 600px) 
{
    .ListingCardWrapper 
    {
        width: 90vw;
        margin-top: 40px;
        margin-bottom: 40px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

#ListingCardImageOne
{
    width: 520px;
    height: 250px;
    background-image: url(../media/images/business-zoom.jpg);
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    z-index: 4;
    position: relative;
}

#ListingCardImageTwo
{
    width: 520px;
    height: 250px;
    background-image: url(../media/images/holiday-zoom.jpg);
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    z-index: 4;
    position: relative;
}

#ListingImageOverlay
{
    position: relative;
    border-radius: 10px;
    margin-top: -250px;
    z-index: 5;
    width: 520px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.5);
}

#ListingText
{
    margin-top: -250px;
    position: relative;
    z-index: 6;
    height: 250px;
    color: white;
    padding-top: 90px;
}

#ListingTextButton
{
    background-color: #333333;
    border-radius: 10px;
    width: 300px;
    padding: 10px;
    margin: auto;
    text-align: center;
}

@media (max-width: 600px) 
{
    #ListingTextButton
    {
        width: 70vw;
    }
}

#ListingTextButton:hover
{
    background-color: #222222;
    color: #01D8FE;
    cursor: pointer;
}

/*======================================================================== Back to top ============*/
#BackToTop
{
    right: 0;
    bottom: 0;
    margin-right: 50px;
    margin-bottom: 50px;
    width: 60px;
    height: 60px;
    color: white;
    background-color: #202020;
    border-radius: 50px;
    z-index: 886;
    position: fixed;
    text-align: center;
    padding-top: 14px;
}

@media (max-width: 600px) 
{
    #BackToTop
    {
        margin-right: 30px;
        margin-bottom: 50px;
    }
}

#BackToTop:hover
{
    color: #01D8FE;
    background-color: #020202;
    cursor: pointer;
}

#UpArrow
{
    width: 30px;
    height: 25px;
}

/*======================================================================== Footer ============*/
footer
{
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    color: white;
    width: 100%;
    background-color: #333333;
    margin-top: auto;
}





/*///////////////////////////////////////////////////////////////////////////////////// Contact Us Page ///////////*/
/*======================================================================== Form ============*/
#ContactUsHeading
{
    margin-left: 120px;
}

@media (max-width: 1200px) 
{
    #ContactUsHeading
    {
        margin-left: 50px;
    }
}

@media (max-width: 600px) 
{
    #ContactUsHeading
    {
        margin-left: 20px;
    }
}

@media (max-device-width: 1200px) 
{
    #ContactUsHeading
    {
        margin-left: 50px;
    }
}

@media (max-device-width: 600px) 
{
    #ContactUsHeading
    {
        margin-left: 20px;
    }
}

#ReturnHome
{
    margin-left: 120px;
    background-color: #333333;
    color: white;
    border-radius: 10px;
    font-size: 27px;
    border: none;
    padding-top: 4px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 4px;
    width: 200px;
    font-family: HeadingTextFont;
    font-weight: bold;
    transition: 0.2s;
}

#ReturnHome:hover
{
    background-color: #111111;
    cursor: pointer;
    color: #01D8FE;
    transform: translateY(-3px);
}

@media (max-width: 1200px) 
{
    #ReturnHome
    {
        margin-left: 50px;
    }
}

@media (max-width: 600px) 
{
    #ReturnHome
    {
        margin-left: 20px;
    }
}

@media (max-device-width: 1200px) 
{
    #ReturnHome
    {
        margin-left: 50px;
    }
}

@media (max-device-width: 600px) 
{
    #ReturnHome
    {
        margin-left: 20px;
    }
}

#Form
{
    background-color: white;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: left;
    width: 400px;
    padding: 15px;
}

@media (max-width: 600px) 
{
    #Form
    {
        width: 90vw;
    }
}

#Form input
{
    width: 100%;
    border-radius: 6px;
    border: 2px solid #868686;
    padding: 3px;
}

#Form textarea
{
    width: 100%;
    border-radius: 6px;
    border: 2px solid #868686;
}

#Form label
{
    margin-bottom: 20px;
    width: 100%;
}

#Form #TempCaptcha
{
    background-color: #acacac;
    width: 250px;
    height: 70px;
}

#Form #SubmitButton
{
    margin-top: 20px;
    background-color: #333333;
    color: white;
    border-radius: 10px;
    font-size: 27px;
    border: none;
    padding-top: 4px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 4px;
    width: 90px;
    font-family: HeadingTextFont;
    font-weight: bold;
    transition: 0.2s;
}

#Form #SubmitButton:hover
{
    background-color: #111111;
    cursor: pointer;
    color: #01D8FE;
    transform: translateY(-3px);
}

/*======================================================================== Request a Listing page half ============*/
#RequestListingButton
{
    margin-top: 20px;
    background-color: #333333;
    color: white;
    border-radius: 10px;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 1px;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    transition: 0.2s;
}

#RequestListingButton a, a:hover, a:focus, a:active
{
    text-decoration: none;
    color: inherit;
}

#RequestListingButton:hover
{
    background-color: #111111;
    cursor: pointer;
    color: #01D8FE;
    transform: translateY(-3px);
}





/*///////////////////////////////////////////////////////////////////////////////////// Request a listing Page ///////////*/
/*======================================================================== Prerequisites ============*/
#RequestListingHeading
{
    margin-left: 100px;
}

@media (max-width: 1200px) 
{
    #RequestListingHeading
    {
        margin-left: 50px;
    }
}

@media (max-width: 600px) 
{
    #RequestListingHeading
    {
        margin-left: 20px;
    }
}

#Prerequisites
{
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 70px;
    margin-bottom: 50px;
    width: 58vw;
    text-align: left;
}

@media (max-width: 1600px) 
{
    #Prerequisites
    {
        width: 80vw;
    }
}

@media (max-width: 600px) 
{
    #Prerequisites
    {
        width: 90vw;
    }
}

/*======================================================================== Form ============*/
.RequestForm
{
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 50px;
    width: 450px;
    text-align: left;
    margin-top: 50px;
}

@media (max-width: 600px) 
{
    .RequestForm
    {
        width: 90vw;
        padding: 20px;
    }
}

.RequestForm input
{
    width: 100%;
    border-radius: 6px;
    border: 2px solid #868686;
    padding: 3px;
}

.RequestForm textarea
{
    width: 100%;
    border-radius: 6px;
    border: 2px solid #868686;
    padding: 3px;
}

.RequestForm select
{
    width: 100%;
    border-radius: 6px;
    border: 2px solid #868686;
    padding: 3px;
}

.RequestForm label
{
    margin-bottom: 20px;
    width: 100%;
}

.RequestForm h3
{
    margin-bottom: 20px;
}

#TempCaptcha
{
    background-color: #acacac;
    width: 250px;
    height: 70px;
    margin-top: 50px;
    margin-bottom: 20px;
}

#RegSubmitButton
{
    margin-top: 20px;
    background-color: #333333;
    color: white;
    border-radius: 10px;
    font-size: 27px;
    border: none;
    padding-top: 4px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 4px;
    width: 90px;
    font-family: HeadingTextFont;
    font-weight: bold;
    transition: 0.2s;
}

#RegSubmitButton:hover
{
    background-color: #111111;
    cursor: pointer;
    color: #01D8FE;
    transform: translateY(-3px);
}







/*///////////////////////////////////////////////////////////////////////////////////// Product listings Page ///////////*/
/*======================================================================== DropDown ============*/
#ProductListingHeadingWrapper
{
    background-color: #646464;
    color: white;
    height: 180px;
    transition: 0.3s;
    overflow: hidden;
}

#ProductListingHeadingWrapper li
{
    border-radius: 3px;
}

#ProductListingHeadingWrapper li p
{
    padding: 3px;
}

#ProductListingHeadingWrapper li:hover
{
    color: #01D8FE;
    cursor: pointer;
    background-color: #333333;
}

#ProductListingHeading:hover
{
    color: #01D8FE;
    cursor: pointer;
}

#ProductListingsDownArrow
{
    width: 25px;
    height: 20px;
    margin-left: 20px;
    margin-top: 2px;
    transition: 0.3s;
}

.activeProduct
{
    background-color: #333333;
    color: #01D8FE;
}

/*======================================================================== Product cards ============*/
.ProductCard
{
    border-radius: 15px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 100px;
    text-align: left;
}

.ProductCantactDetails
{
    background-color: #e9e9e9;
    border-radius: 0px 15px 15px 0px;
    padding: 20px;
}

@media (max-width: 990px) 
{
    .ProductCantactDetails
    {
        border-radius: 0px 0px 15px 15px;
    }
}

@media (max-width: 600px) 
{
    .ProductCard
    {
        width: 90vw;
    }
}

#ProductInformationWrapper
{
    height: 160px;
    overflow: hidden;
    transition: 0.3s;
}

.ProductInformation
{
    padding: 20px;
}

#ProductReadMoreText
{
    color: #01D8FE;
    width: 150px;
}

#ProductReadMoreText:hover
{
    color: #3d3d3d;
    cursor: pointer;
}



/*///////////////////////////////////////////////////////////////////////////////////// All listings Page ///////////*/
/*======================================================================== Filter ============*/
#filter
{
    border: 3px solid #202020;
    font-size: 18pt;
    border-radius: 7px;
}


@media (max-width: 990px) 
{
    .nobreak
    {
        display: none;
    }
}

@media (max-device-width: 990px) 
{
    .nobreak
    {
        display: none;
    }
}

.ProductCard img
{
    width: 80%;
    margin-bottom: 30px;
    margin-top: 30px;
}