/* !!!..... DEFAULT CSS BODY CODE STARTS HERE .....!!!*/

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    color: #000;
    font-family: "Open Sans" , sans-serif;
    position: relative;

}

a
{
    text-decoration: none;
    transition: 0.5s;
    color: #d3d8dd;
}

ul, li
{
    list-style-type: none;
}

/* !!!..... DEFAULT CSS BODY CODE ENDS HERE .....!!!*/



/* !!!..... HEADER CSS CODE STARTS HERE .....!!!*/

.header
{
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.4)), url(Images/Background.jpg);
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    background-position: center;
    position: relative;
}

.welcome-text
{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.welcome-text h1
{
    font-family: 'Poppins', 'sans-serif';
    font-size: 62px;
    color: #fff;
}

.welcome-text p
{
    margin: 10px 0 40px;
    font-size: 15px;
    font-family: 'Poppins', 'sans-serif';
    color: #fff;
}

.welcome-text a
{
    margin-left: 20px;
    margin-right: 20px;
}

.welcome-text a .ctn-home
{
    font-family: 'Poppins', 'sans-serif';
}

label #btn,
label #cancel
{
    color: #fff;
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check
{
    display: none;
}

.ctn-home
{
    padding: 12px 34px;
    background: #f44336;
    color: #fff;
    border: 1px solid #f44336;
    border-radius: 2px;
    box-shadow: inset 0 0 0 0;
}

.ctn-home:hover
{
    background: none;
    border: 1px solid #fff;
    color: #fff;
    transition: ease-out 0.5s;
}

nav
{
  display: flex;
  height: 100px;
  width: 100%;
  background: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}

nav .logo
{
    background-size: contain;
    width: 150px;
    height: 100px;
    padding-top: 20px;
}

nav ul
{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}

nav ul li
{
  margin: 0 30px;
}

nav ul li a
{
  color: #d3d8dd;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 50px;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

nav ul li a.active-navbar
{
    color: #d3d8dd;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    width: 150px;
    height: 40px;
    padding-top: 10px;
    background-color: transparent;
    border: 1px solid #d3d8dd;
    text-align: center;
}

nav ul li a:hover
{
  color: #fff;
  background: transparent;
  border: 1px solid white;
}

nav .menu-btn i
{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"]
{
  display: none;
}

@media (max-width: 1000px)
{
  nav
    {
        padding: 0 40px 0 50px;
    }
}

@media (max-width: 700px)
{
    .welcome-text h1
    {
        font-size: 31px;
    }
    
    .welcome-text p
    {
        font-size: 10px;
    }
}

@media (max-width: 920px) 
{
  nav .menu-btn i
    {
        display: block;
    }
    
  #click:checked ~ .menu-btn i:before
    {
    content: "\f00d";
    }
    
  nav ul
    {
    position: fixed;
    top: 95px;
    left: -100%;
    background: #334959;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    }
    
  #click:checked ~ ul
    {
    left: 0;
    }
    
  nav ul li
    {
    width: 100%;
    margin: 40px 0;
    }
    
  nav ul li a
    {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
  #click:checked ~ ul li a
    {
    margin-left: 0px;
    }
    
nav ul li a.active,
nav ul li a:hover
    {
    background: none;
    color: cyan;
    }
}

.content
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}

.content div
{
  font-size: 40px;
  font-weight: 700;
}

/* !!!..... HEADER CSS CODE ENDS HERE .....!!! */





/* !!!..... ABOUT, T&Cs, COOKIES, PRIVACY POLICY CODE STARTS HERE .....!!! */

.about-container
{
    width: 100%;
    height: 100vh;
    justify-content: center;
    padding-top: 10px;
    display: flex;
}
        
.about-content
{
    margin-top: 80px;
    width: 900px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;    
    text-align: center;
    position: absolute;
}

.terms-content
{
    margin-top: 0px;
    width: 900px;
    height: 700px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;    
    text-align: center;
    position: absolute;
}

.cookies-content
{
    margin-top: 80px;
    width: 900px;
    height: 600px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;    
    text-align: center;
    position: absolute;
}

.privacy-content
{
    margin-top: 80px;
    width: 900px;
    height: 550px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;    
    text-align: center;
    position: absolute;
}


.cookies-button
{
    padding: 12px 34px;
    background: #f44336;
    color: #fff;
    border: 1px solid #f44336;
    border-radius: 50px;
    box-shadow: inset 0 0 0 0;
}

.cookies-button:hover
{
    background: none;
    border: 1px solid #fff;
    color: #fff;
    transition: ease-out 0.5s;
}

.terms-content h1,
.privacy-content h1
{
    padding-top: 20px;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
}
        
.about-content h1,
.cookies-content h1
{
    padding-top: 50px;
    text-decoration: underline;
    text-decoration-color: red;
    text-underline-offset: 5px;
}
    
.about-content p,
.cookies-content p
{
    padding-top: 50px;
}

.terms-content p,
.privacy-content p
{
    padding-top: 20px;
}
        
.about-socials .about-facebook i
{
    color: #fff;
    padding: 10px;
}

.about-socials .about-facebook i:hover
{
    color: #3b5998;
    transition: 0.3s;
}
        
.about-socials .about-facebook i::after
{
    content: '';
    height: 3px;
    width: 0%;
    background-color: red;
    display: block;
    margin-top: 5px;
    transition: 0.3s ease-in-out;
}
        
.about-socials .about-facebook i:hover:after
{
    content: '';
    height: 3px;
    width: 100%;
    background-color: red;
    display: block;
    margin-top: 5px;
}
        
.about-socials .about-twitter i
{
    color: #fff;
    padding: 10px;
}
        
.about-socials .about-twitter i:hover
{
    color: #00acee;
    transition: 0.3s;
}
        
.about-socials .about-twitter i::after
{
    content: '';
    height: 3px;
    width: 0%;
    background-color: red;
    display: block;
    margin-top: 5px;
    transition: 0.3s ease-in-out;
}
        
.about-socials .about-twitter i:hover:after
{
    content: '';
    height: 3px;
    width: 100%;
    background-color: red;
    display: block;
    margin-top: 5px;
}
        
.about-socials .about-instagram i
{
    color: #fff;
    padding: 10px;
}
        
.about-socials .about-instagram i:hover
{
    color: #bc2a8d;
    transition: 0.3s;
}
        
.about-socials .about-instagram i::after
{
    content: '';
    height: 3px;
    width: 0%;
    background-color: red;
    display: block;
    margin-top: 5px;
    transition: 0.3s ease-in-out;
}
        
.about-socials .about-instagram i:hover:after
{
    content: '';
    height: 3px;
    width: 100%;
    background-color: red;
    display: block;
    margin-top: 5px;
}

/* !!!..... ABOUT, T&Cs, COOKIES, PRIVACY POLICY CODE ENDS HERE .....!!! */



/* !!!..... CONTACT INFO STARTS HERE .....!!! */

.contact-box
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box-form
{
    width: 100%;
    max-width: 1000px;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-box-form
{
    width: 100%;
    max-width: 1000px;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-info-box
{
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info-box:before 
{
    content: "";
    position: absolute;
    width: 150px;
    height: 130px;
    border: 24px solid #224f74;
    border-radius: 50%;
    bottom: -80px;
    right: 40px;
    opacity: 0.5;
}

.contact-info-box .contact-title 
{
    color: #224f74;
}

.paragraph-text 
{
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.contact-information 
{
    display: flex;
    color: #666;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.social-media-icon 
{
    width: 30px;
    margin-right: 0.8rem;
}

.social-media-div 
{
    padding: 1px 1px 0 0;
}

.social-media-div p 
{
    color: #666;
}

.social-media-icons 
{
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
}

.social-media-icons a 
{
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: linear-gradient(45deg, #224f74, #40749d);
    color: #fff;
    text-align: center;
    line-height: 37px;
    margin-right: 0.6rem;
    transition: 0.4s;
}

.social-media-icons a:hover 
{
    transform: scale(1.05);
}

.contact-form-box
{
    background-color: #224f74;
    position: relative;
}

.contact-form-box:before
{
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #224f74;
    transform: rotate(45deg);
    top: 80px;
    left: -13px;
}

.circle
{
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #40749d);
    position: absolute;
}

.circle.one
{
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two
{
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-box .contact-box-form .contact-form-box form
{
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact-title
{
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.contact-input-container
{
    position: relative;
    margin: 1rem 0;
}

label
{
    position: relative;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 1px;
    margin: 2px 2px;
    color: #fafafa;
    font-size: 18px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
}

.contact-input-container.textarea label
{
    top: 0;
    transform: translateY(0);
}

.btn
{
    left: 30%;
    position: relative;
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #224f74;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.6s;
    margin: 0;
}

.btn:hover
{
    background-color: transparent;
    color: #fff;
}

.join-btn
{
    left: 30%;
    position: relative;
    padding: 0.6rem 1.3rem;
    margin-top: 10px;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #224f74;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.6s;
    margin-left: 40px;
}

.join-btn:hover
{
    background-color: transparent;
    color: #fff;
}

.reg-label
{
    position: relative;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4px;
    margin: 2px 2px;
    color: #224f74;
    font-size: 18px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
}

.reg-btn
{
    left: 30%;
    position: relative;
    padding: 0.6rem 1.3rem;
    background-color: #224f74;
    border: 2px solid #224f74;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.6s;
    margin: 0;
    margin-left: 20px;
}

.reg-btn:hover
{
    background-color: transparent;
    color: #224f74;
}

.reg-input
{
    width: 100%;
    outline: none;
    border: 2px solid #224f74;
    background: none;
    padding: 0.6rem 1.2rem;
    margin: 10px;
    color: #224f74;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.join-form
{
    margin-top: 60px;
}

.input
{
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    margin: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

textarea .input
{
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

@media (max-width: 850px) 
{
.form 
{
    grid-template-columns: 1fr;
}

.social-media-div:before 
{
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
}

.contact-form-box:before 
{
    top: -13px;
    left: initial;
    right: 70px;
}

.text 
{
    margin: 1rem 0 1.5rem 0;
}

.social-media-icon
{
    padding: 1.5rem 0 0 0;
}
    
}

@media (max-width: 480px) 
{
.contact-info-box:before 
{
    display: none;
}

form,
.contact-info-box 
{
    padding: 1.7rem 1.6rem;
}

.text,
.contact-information,
.social-media-div p 
{
    font-size: 0.8rem;
}

.contact-title 
{
    font-size: 1.15rem;
}

.social-media-icons a 
{
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.social-media-icon 
{
    width: 23px;
}

.input 
{
    padding: 0.45rem 1.2rem;
}

.btn 
{
    padding: 0.45rem 1.2rem;
}
    
}

/* !!!..... CONTACT INFO ENDS HERE .....!!! */



/* !!!..... SUCCESS MESSAGE POP UP STARTS HERE .....!!! */

.success-popup
{
    width: 500px;
    background: #ecedef;
    border-radius: 10px;
    position: absolute;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: visible;
    transition: transform 0.3s, float 0.3s;
    z-index: 1000;
}
        
.success-popup img
{
    width: 150px;
    margin-top: 5px;
}
        
.success-popup h2
{
    font-size: 38px;
    font-weight: 500;
    margin: 0px 0 10px;
}
        
.success-popup p
{
    margin-bottom: 15px;
}
    
.success-popup button
{
    padding: 10px 20px;
    background: #224f74;
    color: #f5f5f5;
    border: 2px solid #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}
        
.success-popup button:hover
{
    color: #224f74;
    background: #f5f5f5;
    border: 2px solid #224f74;
}

/* !!!..... SUCCESS MESSAGE POP UP ENDS HERE .....!!! */



/* !!!..... SERVICES CODE STARTS HERE .....!!! */

.services
{
    font-family: 'raleway';
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: transparent;
}

.services h1
{
    font-size: 3em;
    margin: 25px 0;
    font-weight: 600;
    color: #fff;
}

.services p
{
    color: #f2f2f2;
    text-align: center;
}

.services-box
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
    padding-bottom: 50px;
}

.services-list
{
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}

.services-list i
{
    margin: 20px;
    color: red;
}

.services-list h2
{
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
}

.services-list p
{
    color: #6c757d;
    text-align: center;
}

.services-list:hover h2
{
    font-weight: 600;
    color: #f2f2f2;
}

.services-list:hover i,
.services-list:hover p
{
    color: #fff
}

.services-list:nth-child(1):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/Hotel Room.jpg');
    background-size: cover;
}

.services-list:nth-child(2):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/Mountain Hiking.jpg');
    background-size: cover;
}

.services-list:nth-child(3):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/Road Trip.jpg');
    background-size: cover;
}

.services-list:nth-child(4):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/Sightseeing.jpg');
    background-size: cover;
}

.services-list:nth-child(5):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/BBQ Party Night.jpg');
    background-size: cover;
}

.services-list:nth-child(6):hover
{
    cursor: pointer;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.8) 0%, rgba(255, 0, 82, 0.8) 100%), url('Images/Customer Care.jpg');
    background-size: cover;
}

@media(max-width: 991px)
{
    .services
    {
        padding: 25px;
    }
    
    .services h1
    {
        font-size: 2.5em;
        font-weight: 600;
    }
    
    .services p
    {
        font-size: 1em;
        font-weight: 400;
    }
    
    .services-box
    {
        flex-direction: column;
        width: 100%;
    }
    
    .services-list
    {
        min-width: 300px;
        margin: 10px auto;
    }
}

/* !!!..... SERVICES CODE ENDS HERE .....!!! */



/* !!!..... BOTTOM / BODY CONTENTS STARTS HERE .....!!! */

.bottom-contents
{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.bottom-contents h1
{
    font-size: 36px;
    font-weight: 600;
}

.bottom-contents p
{
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.bottom-row
{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.bottom-column
{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.3s;
    cursor: pointer;
}

.bottom-column:hover
{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

h3
{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

@media (max-width: 700px)
{
    .bottom-row
    {
        flex-direction: column;
    }
}

.places
{
    width: 97%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

.places h1
{
    font-size: 36px;
    font-weight: 600;
}

.places p
{
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.places-column
{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.places-column img
{
    width: 100%;
    height: 100%;
    display: block;
}

.layer
{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(54, 121, 138, 0.7);
}

.layer h3
{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover h3
{
    bottom: 49%;
    opacity: 1;
}

.layer p
{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover p
{
    bottom: 40%;
    opacity: 1;
}

.user-review
{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.user-review h1
{
    font-size: 36px;
    font-weight: 600;
}

.user-review p
{
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.review-column
{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    margin-right: 12px;
    margin-left: 12px;
    text-align: center;
    background: #fff3f3;
    padding: 25px 12px;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
}

.review-column:hover
{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.review-column img
{
    height: 40px;
    width: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}

.review-column p
{
    padding: 0;
}

.review-column h3
{
    margin-top: 15px;
    text-align: left;
}

.review-column .fa
{
    color: #f44336;
}

/* !!!..... BOTTOM / BODY CONTENTS ENDS HERE .....!!! */





/* !!!..... CSS FOOTER STARTS HERE .....!!! */

 .footer-arrow-1
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_arrow
{
  border-radius: 50%;
  border: 1px solid #506275;
  background: #334960;
  padding: 20px; 
  width: 10px;
  height: 10px;
  text-align: center;
  margin: auto;
}

.lomba-line
{
    width: 100%;
    height: 45px;
    position: relative;
}

.lomba-line::after, .lomba-line::before
{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #506275;
    width: 45%;
    top: 45%;
    z-index: -2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lomba-line::after
{
    left: 0;
}

.lomba-line::before
{
    right: 0
}

.footer-link-color
{
    color: #7c858a;
}

.footer-link-color:hover
{
    color:#fff;
}

.footer-link-color-up-arrow
{
    color: #506275;
    top: 50%;
    left: 50%;
    position: absolute;
    display: block;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.footer-link-color-up-arrow:hover
{
    color: #fff;
}

footer
{
    top: 100%;
    position: sticky;
    background-color: #334960;
    color: #d3d8dd;
}

.all-footer
{
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding: 30px 0;
}

.all-footer .footer_width
{
    padding: 0 15px;
}

.all-footer h2
{
    margin-bottom: 20px;
}

.about
{
    width: 40%;
}

.contact
{
    width: 30%;
}


.link
{
    width: 30%;
}

.socials
{
    margin-top: 30px;
}

.socials ul
{
    display: flex;
}

.socials ul li a
{
    display: inline-block;
    margin-right: 50px;
    width: 50px;
    height: 50px;
    padding-top: 12px;
    background-color: transparent;
    border: 1px solid #d3d8dd;
    text-align: center;
}

.socials ul li a:hover
{
    background-color: #fff;
    color: #000;
}

.link ul li a
{
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.link ul li a:hover
{
    color: #fff;
}

.contact ul li
{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact ul li span
{
    margin-right: 15px;
}

.copyright
{
    padding: 10px 0;
    text-align: center;
    background-color: #334960;
    color: #fff;
    margin-top: 0px;
}

.copyright::before
{
    content: " ";
    display: block;
    width: 100%;
    height: 1px;
    background: #959da7;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.aboutusp1
{
    color: #85888f;
}

@media screen and (max-width: 992px)
{
    .about , .contact
    {
        width: 35%;
    }
    
    .footer-arrow
    {
        height: 20px;
        width: 20px;
        padding-bottom: 30px;
    }
    
    .copyright
    {
        padding: 30px;
    }

    .lomba-line
    {
        height: 25px;
    }
    
    .link
    {
        width: 30%;
    }
    
}

@media screen and (max-width: 767px)
{
    .about , .contact , .link
    {
        width: 100%;
        margin-bottom: 30px;
    }

    .lomba-line
    {
        height: 25px;
    }

    .all-footer
    {
        flex-direction: column;
    }

}

/* !!!..... CSS FOOTER ENDS HERE .....!!! */

/* !!!..... TABLE CSS STARTS HERE .....!!! */

table
{
    width: 500px;
    box-shadow: -1px 12px 12px -6px rgba(0, 0, 0, 0.5);
}

table, td, th
{
    padding: 5px;
    border: 1px solid lightgray;
    border-radius: 3px;
    border-collapse: collapse;
    text-align: center;
    cursor: pointer;
}

td
{
    font-size: 14px;
}

th
{
    background-color: #224f74;
    color: #fff;
}

tr:nth-child(odd)
{
    background-color: lightgray;
}

/* !!!..... TABLE CSS ENDS HERE .....!!! */


