
PK 
@font-face {
font-family: 'Cormorant Garamond';
src: url('../fonts/cormorant_garamond.woff') format('woff');
font-style: normal;
font-display: auto;
}
@font-face {
font-family: 'Futura PT Light';
src: url('../fonts/FuturaPTLight.woff') format('woff');
font-style: normal;
font-display: auto;
}
/* All delay classes will take half the time to start */
:root {
--animate-delay: 0.5s;
}
body {
font-family: 'Cormorant Garamond', sans-serif;
color: #100146;
font-size: 13px;
line-height: 20px;
cursor: default;
background: #f9f4ef;
}
html{scroll-behavior:smooth}
a { color: #000; text-decoration: none;}
a { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; }
a:hover, a:focus, a:active { text-decoration:none; outline:none; }
button:focus {
outline: none;
}
input:focus, textarea:focus, select:focus{
outline: none;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
background-color: #b2aba5;
}
.form-control:focus {
box-shadow: none;
border-bottom: #000 solid 1px;
border-color : #000;
}
.form-control {
background: transparent;
border-color: #000;
}
.navbar-light .navbar-toggler {border: none;}
.navbar-brand { font-size: 1.65rem }
.navbar-light .navbar-nav .nav-link { color: #000; font-size: 18px; font-family: 'Futura PT Light';}
.pd-lr{ padding-left: 3rem; padding-right: 3rem; }
.mobile-only {display: none!important;}
.marginbtm {margin-bottom: 120px}
.theme-btn{
background-color: transparent;
border: solid 1px #000;
color: #000;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
padding: 15px 50px;
font-size: 16px;
}
.theme-btn:hover{
background-color: #000;
color: #fff;
}
.bg-light-cream{
background-color: #f9f4ef;
}
.navbar{
background: #fff;
z-index: 1000;
margin-top: 30px;
}
.navbar-nav{
padding: 15px 0px;
}
.nav-link{
color: #000;
padding-left: 30px!important;
padding-right: 30px!important;
font-weight: 100;
font-size: 14px;
text-transform: uppercase;
}
#carouselExampleCaptions{
/*top: -116px;*/
z-index: 10;
}
.small-heading {
margin-bottom: 20px;
}
.paragraph{
margin-bottom: 20px;
}
.border-black{
border: solid 1px #000;
border-radius: 0px;
}
.section {
position: relative;
z-index: 1;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 15vh;
padding-bottom: 15vh;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background-color: #f9f4ef;
}
.centered {
position: absolute;
top: 60%;
left: -8%;
/*transform: translate(-50%, -50%);*/
}
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
}
.topleft {
position: absolute;
top: 10%;
left: 16px;
}
.top-left {
position: absolute;
top: 50%;
left: 16px;
}
.top-right {
position: absolute;
top: 8px;
right: 16px;
}
.bottom-right {
position: absolute;
bottom: 8px;
right: 16px;
}
.portfolioBox { padding: 20px; }
.portfolioBox .portfoliotitle{
font-size: 26px;
margin-top: 25px;
text-decoration: none;
}
.heading-lg{
font-size: 40px;
text-decoration: none;
}
.sub-heading{
font-size: 20px;
text-decoration: underline;
}
.subscribe-box {
position: absolute;
top: 20%;
left: 50px;
padding: 30px 30px 20px;
border-radius: 15px;
text-align: left;
background-color: #00000099;
width: 45%;
}
/*subscribe*/
.email-input {
background: transparent!important;
border: 0;
border-bottom: #fff solid 1px;
border-radius: 0;
color: #fff;
}
.send-btn {
background: transparent!important;
border: 0;
color: #fff;
padding: 0;
}
.send-btn :hover{
color: #000;
opacity: 0.8;
}
/*end subscribe*/
.about-mt{
margin-top: 250px;
}
.contact-frm-box {
padding-top: 5rem;
padding-left: 3rem;
padding-right: 3rem;
}
.input-btn {
background: transparent!important;
border: 0;
border-bottom: #000 solid 1px;
border-radius: 0;
color: #000;
}
.center-box {
/*position: absolute;*/
padding-top: 20%;
padding-left: 15%;
}
/*Extra small devices portrait phones, less than 576px*/
@media (max-width: 575.98px) {
.pd-lr{ padding-left: 0; padding-right: 0; }
.section {padding-top: 5vh; padding-bottom: 5vh;}
.mobile-only {display: block!important;}
.centered{ left: 5%; top: 10%; }
.top-left { top: 10%; }
.heading-lg{ font-size:30px; text-decoration: underline;}
.sub-heading{ font-size: 15px; text-decoration: none;}
.maindiv{ margin-top: 100px; }
.navbar{ background-color: transparent; }
.navbar-collapse { background-color: #dfd6ce; }
.subscribe-box {width: 60%}
.about-mt{ margin-top: 150px;}
.center-box { padding: 20% 5%; }
}
/*Small devices landscape phones, 576px and up*/
@media (min-width: 576px) and (max-width: 767.98px) { ... }
/*Medium devices tablets, 768px and up*/
@media (min-width: 768px) and (max-width: 991.98px) { ... }
/*Large devices desktops, 992px and up*/
@media (min-width: 992px) and (max-width: 1199.98px) { ... }
/*Extra large devices large desktops, 1200px and up*/
@media (min-width: 1200px) { ... }


PK 99