/* fonts */
@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../../font/ProximaNova-Regular.woff2') format('woff2'), url('../../font/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Lt';
    src: url('../../font/ProximaNova-Semibold.woff2') format('woff2'), url('../../font/ProximaNova-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../../font/ProximaNovaBold-webfont.woff2') format('woff2'), url('../../font/ProximaNovaBold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* italic */
.italic {
    font-style: italic;
}

/* Background color */

.bg-dark-sky-blue {
    background-color: #179DCE;
}

.bg-teal {
    background-color: #33718b;
}

.bg-teal-dark {
    background-color: #2d6a84;
}

.bg-opacity-dark {
    background-color: rgba(0,0,0,.5);
}

/* Text color */

.text-sky-dark-sky-blue {
    color: #179DCE;
}

.text-color-dark{
    color: #252525;
}

.text-teal {
    color: #33718b;
}

/* button */

.btn-dark-sky {
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 5px 16px 2px rgba(23, 157, 198, 0.32);
}

/* heading */

.heading-font {
    font-family: 'Proxima Nova Lt';
    font-weight: 600;
}

.font-normal {
    font-family: 'Proxima Nova Rg';
    font-weight: normal;
}

.font-bold {
    font-family: 'Proxima Nova Rg';
    font-weight: bold;
}

.heading-sub{
    font-size: 54px;
}

/* button */
.btn-blue-gredient {
    background: rgb(22, 147, 190);
    background: linear-gradient(0deg, rgba(22, 147, 190, 1) 0%, rgba(30, 169, 216, 1) 100%);
}

/* background gredient */
.bg-blue-gredient {
    background-color: #4f9bb6;
    background-image: -moz-linear-gradient( 90deg, rgb(83,183,200) 0%, rgb(78,149,179) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(83,183,200) 0%, rgb(78,149,179) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(83,183,200) 0%, rgb(78,149,179) 100%);
}

/* svg fill current color */
.fill-current {
    fill: currentColor;
}

.group input {
    padding-right: 35px;
}

.group input + .addon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

/* font size */
.text-lg {
    font-size: 1.125rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-6xl {
    font-size: 4rem;
}

@media (min-width: 768px) {
    .text-md-6xl {
        font-size: 4rem;
    }
}

/* width */
.w-6 {
    width: 1.5rem;
}

.w-40 {
    width: 10rem;
}

/* height */
.h-6 {
    height: 1.5rem;
}

.h-40 {
    height: 10rem;
}

/* border */
.border-2 {
    border-width: 2px solid;
}

.border-teal-dark {
    border-color: #2d6a84;
}

/* pagination */

.page-link {
    border: none;
    color: #252525;
}

.page-item.active .page-link {
    border-radius: 17px;
    background-color: #2d6a84;
    width: 34px;
    height: 34px;
    text-align: center;
}

.pagination > li + li {
    margin-left: 0px;
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: transparent;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: none;
}

/* Top / Right / Bottom / Left
Utilities for controlling the placement of positioned elements. */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inset-x-0 {
    right: 0;
    left: 0;
}

.bottom-0 {
    bottom: 0;
}

.right-0 {
    right: 0;
}

/* pading */
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* margin */
.-mt-3 {
    margin-top: -0.75rem;
}

/* overflow */
.overflow-hidden {
    overflow: hidden;
}

/* cursor */
.cursor-pointer {
    cursor: pointer;
}

/* opacity */
.opacity-0 {
    opacity: 0;
}