﻿
.gold-btn:hover {
    /*#A47B31*/
    /*background-color: white !important;
    color: brown;*/
}

.gold-btn {
    background-color: #B98B37;
    border-radius: 30px;

      padding: 15px;
  width: 170px;
  transition: all 0.5s;
}


.gold-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.gold-btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.gold-btn:hover span {
  padding-right: 25px;
}

.gold-btn:hover span:after {
  opacity: 1;
  right: 0;
}








.bg-text {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    /*border: 3px solid #f1f1f1;*/
    position: absolute;
    /*top: 50%;
           left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    z-index: 2;
    width: 55%;
    padding: 15px;
    text-align: center;
}

    .bg-text > h1 {
        font-weight: 600;
        font-size: 40px;
    }






Services Section --------------------------------*/ #services {
    padding: 30px 0 0 0;
}

#services .box {
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
    background: #fff;
    transition: 0.4s;
}

    #services .box:hover {
        box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
    }

    #services .box .icon {
        float: left;
    }

        #services .box .icon i {
            /*color: #006190;*/
            font-size: 64px;
            transition: 0.5s;
            line-height: 0;
            margin-top: 34px;
        }

            #services .box .icon i:before {
                background: #075074;
                /*background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);*/
                background-clip: border-box;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

    #services .box h4 {
        margin-left: 100px;
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 22px;
    }

        #services .box h4 a {
            color: #444;
        }

    #services .box p {
        font-size: 14px;
        margin-left: 100px;
        margin-bottom: 0;
        line-height: 24px;
    }



/*preloader*/

/*.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fafafa;
    z-index: 999999;
}*/




/*.spinner {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; 
  animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}*/


/*.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;

}*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

#myDiv {
    display: none;
    text-align: center;
}



.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 18px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    z-index: 100;
    
}

.my-float {
    margin-top: 14px;
}







.modal {
    z-index: 10000000000000000;
}

.modal-dialog,
.modal-content {
    height: 97%;
}

.modal-body {
    /*overflow-y: scroll;*/
    overflow-y: auto;
}



/*background imgae*/

/*.bg-overlay-My {
    position: relative;
}

    .bg-overlay-My:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: black;
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        filter: alpha(opacity=50);
    }*/




/*Zoom image effects*/

.zoomimg {
    overflow: hidden;
}

    .zoomimg img {
        transform: scale(1);
    }

    .zoomimg:hover img {
        transform: scale(1.1);
    }



    .zoomimg img,
    .zoomimg:hover img {
        transition: all 1s ease-in-out;
        -webkit-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
    }






