/*

[Main Stylesheet]

Project: VOIP Pricing Table - VOIP Calling Rates, SMS Rates, Mobile Top Up Rates Calculator
Version: 1.0
Author : themelooks.com

[Table of contents]

1. GENERAL STYLES
    1.1. SECTION TITLE
    1.2. CUSTOM BUTTON
    1.3. PRELOADER
    
2. PAGE TITLE AREA

3. COPYRGIHT AREA

4. HELPER CLASSES
    4.1. RESET-GUTTER
    4.2. RESET-MARGIN
    4.3. RESET-PADDING
    4.4. VERTICAL-CENTERING

*/

/*------------------------------------*\
    1. GENERAL STYLES
\*------------------------------------*/
html,
body {
    height: 100%;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

a, a:link, a:visited, a:hover, a:active {
    color: #fff;
    text-decoration: none;
    outline: 0;
}

/* 1.1. SECTION TITLE */
.section-title h2 {
    position: relative;
    margin-top: -6px;
    margin-bottom: 80px;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}
.section-title h2:before {
    content: " ";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 50px;
    height: 2px;
    background-color: #6aaf08;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.section-title.text-left h2 {
    text-align: left;
}
.section-title.text-left h2:before {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

/* 1.2. CUSTOM BUTTON */
a.btn {
    font-weight: 400;
}
a.btn-custom {
    background-color: #2e3138;
    border-radius: 0;
    -webkit-transition: background-color .25s;
            transition: background-color .25s;
    text-transform: uppercase;
}
a.btn-custom.btn-lg {
    padding: 12px 20px;
    font-size: 16px;
}
a.btn-custom:hover,
a.btn-custom:focus {
    color: #fff;
    background-color: #3575d3;
    box-shadow: none;
}
.btn-custom-reverse,
a.btn-custom-reverse {
    background-color: #6aaf08;
    border-radius: 0;
    -webkit-transition: background-color .25s;
            transition: background-color .25s;
    text-transform: capitalize;
}
.btn-custom-reverse:hover,
a.btn-custom-reverse:hover,
a.btn-custom-reverse:focus {
    color: #fff;
    background-color: #2e3138;
    box-shadow: none;
}
.btn-custom-reverse.btn-lg,
a.btn-custom-reverse.btn-lg {
    padding: 12px 20px;
    font-size: 16px;
}

/* 1.3. PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #6aaf08;
    z-index: 9999999999;
}
.preloader--spinners {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    -webkit-animation: preloaderRotate 2.0s infinite linear;
            animation: preloaderRotate 2.0s infinite linear;
}
.preloader--spinner,
.preloader--spinner {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: preloaderBounce 2.0s infinite ease-in-out;
            animation: preloaderBounce 2.0s infinite ease-in-out;
}
.preloader--spinner-2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
}

@-webkit-keyframes preloaderRotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes preloaderRotate { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }}

@-webkit-keyframes preloaderBounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes preloaderBounce {
  0%, 100% { 
    -webkit-transform: scale(0.0);
            transform: scale(0.0);
  } 50% { 
    -webkit-transform: scale(1.0);
            transform: scale(1.0);
  }
}

/*------------------------------------*\
    2. PAGE TITLE AREA
\*------------------------------------*/
#pageTitle {
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('img/page-title-bg.jpg');
    text-align: center;
    z-index: 0;
}
#pageTitle:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48,48,48,0.6);
    z-index: -1;
}
#pageTitle .section-title h2 {
    margin: -7px 0 15px;
    color: #fff;
}

.page-title-text {
    margin-top: 38px;
    color: #fff;
}
.page-title-text p:last-child {
    margin-bottom: 0;
}

.page-title-btn {
    margin-top: 10px;
    font-size: 0;
    line-height: 0;
}
.page-title-btn a {
    margin: 15px 15px 0;
    padding: 8px 25px;
}

/*------------------------------------*\
    3. COPYRGIHT AREA
\*------------------------------------*/
#copyright {
    padding: 16px 0 15px;
    color: #fff;
    background-color: #222;
    text-align: center;
}

#copyright p {
    margin-bottom: 0;
}

#copyright p a {
    color: #6aaf08;
    font-weight: 700;
}

/*------------------------------------*\
    4. HELPER CLASSES
\*------------------------------------*/
/* 4.1. RESET-GUTTER */
.reset-gutter {
    margin-left: 0;
    margin-right: 0;
}
.reset-gutter > [class*='col-'] {
    padding-left: 0;
    padding-right: 0;
}

/* 4.2. RESET-MARGIN */
.reset-margin {
    margin-right: 0;
    margin-left: 0;
}

/* 4.3. RESET-PADDING */
.reset-padding {
    padding-right: 0;
    padding-left: 0;
}

/* 4.4. VERTICAL-CENTERING */
.vc-parent {
    width: 100%;
    height: 100%;
    display: table;
}
.vc-child {
    display: table-cell;
    vertical-align: middle;
}
