@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-title-area {
    position: relative;
    z-index: 1;
    background:url("./Marushika/banner-bg1.jpg");
    background-position: center center;
    padding-top: 150px;
    padding-bottom: 65px;
    text-align: center;
}

.contact-info-box {
    text-align: center;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 30px;
    widows: 100%;
    height: 100%;
}

.contact-info-box .icon {
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 62px;
    background: #f7fafd;
    border-radius: 50%;
    font-size: 30px;
    /* color: #44ce6f; */
    -webkit-transition: .4s;
    transition: .4s;
}

.contact-info-box h3 {
    font-size: 18px;
    margin: 25px 0 15px;
}

.contact-info-box p {
    margin-bottom: 0;
}
.contact-info-box p {
    margin-bottom: 0;
    text-align: center;
}
p {
    color: #6084a4;
    line-height: 1.9;
    text-align: justify;
}
.contact-info-box p a {
    color: #6084a4;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
.page-title-area h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.shape1 {
    position: absolute;
    top: 20%;
    z-index: -1;
    left: 30px;
    -webkit-animation: rotate3d 4s linear infinite;
    animation: rotate3d 4s linear infinite;
    opacity: .4;
}
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.shape3 {
    position: absolute;
    left: 25%;
    bottom: 15%;
    z-index: -1;
    -webkit-animation: animationFramesOne 15s infinite linear;
    animation: animationFramesOne 15s infinite linear;
}
.shape4 {
    position: absolute;
    right: 25%;
    bottom: 15%;
    z-index: -1;
    -webkit-animation: animationFramesOne 20s infinite linear;
    animation: animationFramesOne 20s infinite linear;
}

.shape5 {
    position: absolute;
    right: 5%;
    top: 10%;
    z-index: -1;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
    opacity: 0.2;
}

@-webkit-keyframes movebounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes movebounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.shape7 {
    position: absolute;
    left: 25%;
    top: 15%;
    z-index: -1;
    -webkit-animation: animationFramesOne 20s infinite linear;
    animation: animationFramesOne 20s infinite linear;
}
.shape8 {
    position: absolute;
    z-index: -1;
    top: 15%;
    right: 10%;
}


/* -------------------------------------Map-------------------------------------------- */
#map iframe {
    height: 500px;
    width: 100%;
    border: none;
    margin-bottom: -5px;
}

.map_body{
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ---------------------------End---------------------------------- */



  input[type="range"] {
    width: 108px;
    -webkit-appearance: none;
    /* background: #00ff0061; */
    border-radius: 5px;
    height: 5px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }

  input[type="range"]:hover {
    opacity: 1;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    /* background: #4CAF50; */
    cursor: pointer;
  }

  input[type="range"]::-moz-range-thumb {
    width:15px;
    height:15px;
    border-radius: 50%;
    /* background: #4CAF50; */
    cursor: pointer;
  }

  .section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 600;
}
.section-title p {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}
.align-items-center {
    align-items: center!important;
}

.justify-content-center {
    justify-content: center!important;
}
.h-100 {
    height: 100%!important;
}
img {
    max-width: 100%;
}
.form-group {
    margin-bottom: 18px;
}

.formcontrol {
    height: 45px;
    padding: 10px;
    font-size: 14px;
    color: #0e314c;
    border: 1px solid #eeeeee;
    border-radius: 0;
    background: #eeeeee;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#contactForm textarea.formcontrol {
    height: auto;
    min-height: auto;
}
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.formcontrol:focus {
    outline: 0;
    background: #ffffff;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: #44ce6f;
}

.formcontrol {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-group {
    margin-bottom: 18px;
}

.contact-info-area .contact-row2{
    display: flex;
    justify-content: space-evenly;
    margin-top: 2rem;
}

@media only screen and (min-width:1300px) and (max-width:2500px){
    .contact-info-area{
        padding-left: 12rem;
        padding-right: 12rem;
    }
    .contact-area{
        padding-left: 12rem;
        padding-right: 12rem;
    }

}


@media only screen and (min-width:768px) and (max-width:991px) {
    .contact-info-box {
        margin-bottom: 30px;
    }

    #contactForm {
        margin-top: 45px;
    }
    .col-lg-4.col-md-6.col-sm-6.offset-lg-0.offset-md-3.offset-sm-3.mgb {
        margin-top: 50px;
    }
    .mobile_sb_form {
        margin-top: 50px;
    }
}
@media only screen and (min-width:571px) and (max-width:768px) {
    .page-title-area {
        background-position: center center;
        padding-top: 150px;
        padding-bottom: 65px;
    }
    .col-lg-4.col-md-6.col-sm-6.offset-lg-0.offset-md-3.offset-sm-3.mgb {
        margin-top: 30px;
    }
    .mobile_sb_form {
        margin-top: 50px;
    }
}
@media only screen and (min-width:320px) and (max-width:570px) {
    .page-title-area {
        background-position: center center;
        padding-top: 150px;
        padding-bottom: 65px;
    }
    
    .mobile_sb{
        margin-bottom: 30px;
    }

    .mobile_sb_form {
        margin-top: 50px;
    }
    .ptb-80 {
        padding-top: 24px;
        padding-bottom: 0px;
    }
}

